Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am mxmerz on github.
  • I am mxmerz (https://keybase.io/mxmerz) on keybase.
  • I have a public key ASDAdbM_57_keNaSUSbMvgbBR0FUx-kflXXZMxI9UW3dLAo

To claim this, I am signing this object:

@mxmerz
mxmerz / ANSI-Test.sh
Created November 2, 2015 16:29
Shell script to test support of ANSI color and style codes
# ANSI Start Codes
# Styles.
Normal="\x1b[0m"
Bold="\x1b[1m"
Faint="\x1b[2m"
Italic="\x1b[3m"
Underline="\x1b[4m"
Blink_Slow="\x1b[5m"
Blink_Rapid="\x1b[6m"
@mxmerz
mxmerz / beet-output.sh
Created November 1, 2015 20:41
Secret Tool for Command Line Mockups
# ANSI Start Codes
Normal="\033[0m"
Bold="\033[1m"
Faint="\033[2m"
Underline="\033[4m"
Inverse="\033[7m"
Black="\033[30m"
Red="\033[31m"
Green="\033[32m"
Yellow="\033[33m"
@mxmerz
mxmerz / vbr-comparison.txt
Created March 29, 2014 14:37
VBR Player Comparison
Audiodatei: http://meta.metaebene.me/media/mm/mm062-honey-rider.mp3
Wann sagt Tim “Herzlich willkommen zur letzten MobileMacs-Sendung im Atomzeitalter!”?
Player Zeitstempel Reproduzieren
------------------|-------------|-------------------------------------------------
SNE: 00:01:22
VLC: 00:01:44 Jump To (cmd+J): 104 sek
Podlove Webplayer: 00:01:45 http://freakshow.fm/mm062-honey-rider#t=1:45,1:50
Quicktime Player: etwa 00:01:44 scrollen und raten
iTunes: etwa 00:01:44 scrollen und raten
@mxmerz
mxmerz / cre049-das-zfs-dateisystem.txt
Last active August 29, 2015 13:57
CRE 049 Shownotes
00:00:00 Intro #chapter
00:00:41 CRE Intro #music
00:01:07 Begrüßung #chapter
00:01:20 Livestream
00:01:45 Denis Ahrens <https://twitter.com/denis2342>
00:02:03 Einstieg #chapter
00:02:06 ZFS <http://de.wikipedia.org/wiki/ZFS_%28Dateisystem%29> #glossary
00:02:25 FFS, UFS <http://de.wikipedia.org/wiki/Unix_File_System> #glossary
00:02:28 HFS <http://de.wikipedia.org/wiki/HFS_%28Dateisystem%29> #glossary
00:02:36 XFS <http://de.wikipedia.org/wiki/XFS_%28Dateisystem%29> #glossary
00:00:00 Intro #chapter
00:00:46 CRE Intro
00:01:13 Begrüßung #chapter
00:01:44 Version Control <https://de.wikipedia.org/wiki/Versionsverwaltung> #glossary
00:01:51 Distributed Version Control <https://en.wikipedia.org/wiki/Distributed_version_control> #glossary
00:01:59 hukl <http://smyck.net/>
00:02:16 Geschichte #chapter
00:02:35 Softwareentwicklung <https://de.wikipedia.org/wiki/Softwareentwicklung> #glossary
00:02:40 Systemadministration <https://de.wikipedia.org/wiki/Systemadministration> #glossary
00:02:41 Konfigurationsdateien <https://de.wikipedia.org/wiki/Konfigurationsdatei> #glossary
@mxmerz
mxmerz / body.json
Created February 3, 2013 02:27
Linebreaks and tabs in body.json are added for readability, the request body is without whitespace.
{
"entity":"http://mxmerz.de",
"types":["all"],
"notification_path":"notifications/KysQKUWdOscs1AUkXmQr",
"licenses":[]
}
@mxmerz
mxmerz / Quadrate.java
Created November 25, 2012 14:11
Aufgabe 4
public class Quadrate {
public static void main(String[] args) {
Staffelei s = new Staffelei();
maleFraktal(7, s, 100);
}
public static void maleFraktal(int n, Staffelei s, double l) {
s.move(l, l);
s.square(l);
}
@mxmerz
mxmerz / makePic.erl
Created November 22, 2012 20:03 — forked from J12D/gist:4132661
Forloop
forloop(0) ->
bin_fertig;
forloop(i) ->
weiter_gehts,
forloop(i-1).