-
Travis Account erstellen bzw. Github Account zulassen
-
Github Access Token erstellen
"Access public repositories" genügt als Permission
- Access Token verschlüsseln, auf dem Client
# on macosx
| #!/bin/bash | |
| # Function to display usage information | |
| usage() { | |
| echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]" | |
| exit 1 | |
| } | |
| # Check if at least one argument (input file) is provided | |
| if [ $# -lt 1 ]; then |
| #!/usr/bin/env bash | |
| JDKS_DIR="/Library/Java/JavaVirtualMachines" | |
| JDKS=( $(ls ${JDKS_DIR}) ) | |
| JDKS_STATES=() | |
| # Map state of JDK | |
| for (( i = 0; i < ${#JDKS[@]}; i++ )); do | |
| if [[ -f "${JDKS_DIR}/${JDKS[$i]}/Contents/Info.plist" ]]; then | |
| JDKS_STATES[${i}]=enable |
| #!/usr/bin/env bash | |
| # | |
| # Author: Markus (MawKKe) [email protected] | |
| # Date: 2018-03-19 | |
| # | |
| # | |
| # What? | |
| # | |
| # Linux dm-crypt + dm-integrity + dm-raid (RAID1) | |
| # |
Travis Account erstellen bzw. Github Account zulassen
Github Access Token erstellen
"Access public repositories" genügt als Permission
# on macosx
This was explanation by Grant McLean
cpan the CPAN shell has been shipped with Perl since about 1997. When you run it the first time it asks a bunch of questions and saves the answers in a config file. Then you can install a module by running:
cpan -i Module::Name
The shell provides other commands for searching CPAN and looking inside distribution files.
| #!/usr/bin/env ruby | |
| # | |
| # vtplayer.rb - A simple script to play vt100 animations. | |
| # Made with ❤︎ by [email protected] - v0.1 | |
| # | |
| # Some places to find vt100 animations: | |
| # http://artscene.textfiles.com/vt100/ | |
| # http://www.scovetta.com/archives/textfiles/art | |
| require 'open-uri' |