This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # usage: | |
| # 1. install imagemagick, e.g. brew install imagemagick | |
| # 2. ./convert.sh path-to-input-directory path-to-output-directory | |
| inputdir="$1" | |
| outputdir="$2" | |
| echo "input directory: $inputdir" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Kotlin version | |
| // Maven dependency: | |
| // <dependency> | |
| // <groupId>org.locationtech.proj4j</groupId> | |
| // <artifactId>proj4j</artifactId> | |
| // <version>1.0.0</version> | |
| // </dependency> | |
| package at.agsolutions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "encoding/base64" | |
| "encoding/json" | |
| "encoding/xml" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Thinkpad infos: https://medium.com/@tim_888/lenovo-thinkpad-t480-ubuntu-18-04-install-log-linux-tweaks-379b96151372 | |
| # Trackpoint optimization: sudo apt-get install xserver-xorg-input-synaptics | |
| # Power saving: https://thinkwiki.de/TLP_-_Linux_Stromsparen | |
| # | |
| #!/bin/bash | |
| echo ">>> switch to home dir" | |
| cd ~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # this file has to be placed in ~/.ssh/config | |
| Host myserver | |
| HostName myserver.myhost.com | |
| User myuser | |
| IdentityFile ~/.ssh/id_rsa | |
| ServerAliveInterval 30 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # JVM options | |
| #export JAVA_OPTS="-Xms128m -Xmx256m" | |
| # Modify these lines to set your locale | |
| export LANG="en_US.UTF-8" | |
| export LC_CTYPE="en_US.UTF-8" | |
| export LC_ALL="en_US.UTF-8" | |
| # Uncomment these lines to the set your machine's default locale (and comment out the UTF-8 ones) | |
| # export LANG=$(locale -uU) |