Month: July 2018

  • alternative cygwin installer: apt-cyg

    https://stackoverflow.com/questions/3647569/how-do-i-install-curl-on-cygwin https://github.com/transcode-open/apt-cyg $ apt-cyg …

  • a “terminal multiplexer” is a software application …

    https://en.wikipedia.org/wiki/Terminal_multiplexer Features: persistence multiple windows AKA screen splitting, screen tiling (my most wanted feature) – other applications have that as well (and for the same purpose): emacs, KDE konsole, … session sharing … Implementations: https://en.wikipedia.org/wiki/Terminal_multiplexer#Implementations https://en.wikipedia.org/wiki/GNU_Screen https://en.wikipedia.org/wiki/Tmux https://github.com/ruda/splitvt / https://slouken.libsdl.org/projects/splitvt/ …

  • KDE Konsole is a terminal emulator (AKA console) for the K Desktop Environment — outdated — I now prefer qterminal over konsole

    https://konsole.kde.org https://docs.kde.org/stable5/en/applications/konsole/commandreference.html#settings-menu — shortcuts, how to move the focus to another tab, … http://kde-cygwin.sourceforge.net https://cygwin.com/packages/package_list.html https://cygwin.com/packages/x86_64/konsole/ https://cygwin.com/packages/x86_64/konsole4/ I urgently need to replace mintty within my Cygwin environment by something more serious. I need to split the screen horizontally or vertically. And I cannot cope with GNU screen‘s shortcomings – esp. with its learning curve. Context: https://en.wikipedia.org/wiki/Terminal_multiplexer…

  • GNU wdiff — front end to GNU diff — word differences

    https://directory.fsf.org/wiki/Wdiff Compares two files on a word per word basis, finding the word deleted or added from the first file to make the second. A word is defined as anything between whitespace. It works by creating two temporary files, one word per line, and the executes ‘diff’ on these fields. It collects the ‘diff’ output…

  • GNU Screen

    https://en.wikipedia.org/wiki/GNU_Screen Its own manual: https://www.gnu.org/software/screen/manual/ https://www.gnu.org/software/screen/manual/screen.html — entirely on one web page https://www.gnu.org/software/screen/manual/screen.html#Regions https://www.gnu.org/software/screen/manual/html_node/ — with one web page per node https://www.gnu.org/software/screen/manual/html_node/Regions.html https://www.gnu.org/software/screen/manual/screen.pdf The general prefix: C-a. Temporarily switching to the builtin command line: C-a :. Concepts, approaches, …: persistent shell session regions — displaying more than one window at a time, splitting horizontally or vertically (i.e. screen tiling…

  • DBCP: database connection pooling (service)

    https://en.wikipedia.org/wiki/Apache_Commons http://commons.apache.org/proper/commons-dbcp/ — this one lists (most of) the following links: http://commons.apache.org/proper/commons-dbcp/apidocs/ http://commons.apache.org/proper/commons-dbcp/apidocs/org/apache/commons/dbcp2/package-summary.html#package_description https://git-wip-us.apache.org/repos/asf?p=commons-dbcp.git https://git-wip-us.apache.org/repos/asf?p=commons-dbcp.git;a=tree;f=doc;hb=refs/heads/master — examples Tomcat: https://tomcat.apache.org/tomcat-8.0-doc/jndi-datasource-examples-howto.html http://commons.apache.org/proper/commons-dbcp/configuration.html