Apache Commons CSV

Commons CSV reads and writes files in variations of the Comma Separated Value (CSV) format.

The most common CSV formats are predefined in the CSVFormat class:

Custom formats can be created using a fluent style API.

https://commons.apache.org/proper/commons-csv/index.html

https://github.com/apache/commons-csv

Download java from oracle without login \ oracle account

Java SE 8u291 is the latest release for the Java SE 8 Platform
Java SE Development Kit 8u291
Windows x64
https://download.oracle.com/otn-pub/java/jdk/8u291-b10/d7fc238d0cbf4b0dac67be84580cfb4b/jdk-8u291-windows-x64.exe

Java SE Development Kit 11.0.11
Windows x64 Installer
https://download.oracle.com/otn-pub/java/jdk/11.0.11%2B9/ab2da78f32ed489abb3ff52fd0a02b1c/jdk-11.0.11_windows-x64_bin.exe

Windows x64 Compressed Archive
https://download.oracle.com/otn-pub/java/jdk/11.0.11%2B9/ab2da78f32ed489abb3ff52fd0a02b1c/jdk-11.0.11_windows-x64_bin.zip

Java SE Development Kit 16.0.1
Windows x64 Installer
https://download.oracle.com/otn-pub/java/jdk/16.0.1+9/7147401fd7354114ac51ef3e1328291f/jdk-16.0.1_windows-x64_bin.exe

Windows x64 Compressed Archive
https://download.oracle.com/otn-pub/java/jdk/16.0.1+9/7147401fd7354114ac51ef3e1328291f/jdk-16.0.1_windows-x64_bin.zip

To download any JRE or JDK from the Oracle download page without signing in, go to the downloads page for the version you want (such as https://www.oracle.com/java/technologies/javase-downloads.html) and click on the Download link of your choice.

When a window pops up saying you need to accept the license agreement, check the box that says you agree. But instead of clicking on the green Download link (which will send you to the login page), right-click the download link and select Copy Link Location.
NOTE: If clicking Download doesn’t show a box and takes you straight to the login page instead, you will need to clear your cookies on the Java website (or open in incognito mode). Paste the copied link into a text editor like Notepad. You’ll see the link points to something like oracle.com/webapps/redirect/signon, but it has a query attached that starts with „nexturl=“. The URL that follows nexturl= is the actual link that will download the file to your computer.

If you want to download any JRE or JDK without signing into Oracle, go to the downloads page for the version you want (such as https://www.oracle.com/java/technologies/jdk12-downloads.html) and right-click on the Download link of your choice. Select „Copy Link Location“ and then paste it into a text editor like Notepad.
NOTE: you may need to change the otn in the path to otn-pub as described below.

https://gist.github.com/wavezhang/ba8425f24a968ec9b2a8619d7c2d86a6

Buckling-Spring! => IBM Model M

Die Model-M-Tastatur bezeichnet eine Computertastatur-Gattung, die auf die zwischen 1984 und 1999 von IBM millionenfach hergestellte Tastatur „Model M“ zurückgeht.

https://de.wikipedia.org/wiki/IBM_Model_M

Die einzige Tatstatur mit Buckling-Spring Mechanik: Model M von Unicomp https://www.pckeyboard.com/

Alle anderen Mechanische Tastaturen arbeiten mit anderen Systemen. Mechanische Tastaturen: https://www.getdigital.de/shop/haushalt/buero/computer-zubehoer-und-hardware/mechanische-tastaturen

Insbesondere die Cherry MX switches erzeugen einen spürbaren „Rückschlag“ beim loslassen… was das original nicht macht.

https://www.bastel-bastel.de/blog/index.php/2019/01/28/ibm-model-m-die-beste-je-gebaute-tastatur/

https://www.bastel-bastel.de/blog/index.php/2020/02/13/die-perfekte-tastatur/

https://www.golem.de/news/ibms-tastaturklassiker-im-test-und-ewig-klappert-die-model-m-1705-127541-4.html

https://www.eurogamer.de/articles/2017-01-19-unicomp-buckling-spring-ultra-classic-white-model-m-keyboard-test

Patterns for Managing Source Code Branches from Martin Fowler

Like most software patterns, few of them are gold standards that all teams should follow. Software development workflow is very dependent on context, in particular the social structure of the team and the other practices that the team follows.
In thinking about these patterns, I find it useful to develop two main categories. One group looks at integration, how multiple developers combine their work into a coherent whole. The other looks at the path to production, using branching to help manage the route from an integrated code base to a product running in production.

https://martinfowler.com/articles/branching-patterns.html