g
: 04.11.12, 60€, Grüne Converse Sneakersb
: 08.01.14, 13€, Blaue YouTurn Sneakterr
: 27.02.15, 45€, Rote Converse Sneakersw
: 09.03.15, 20€, Weiße Converse Chucks
This file contains 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
// I just figured out you could do this in ES6: | |
function foo ({ a = 3, b = 5 } = {}) { | |
console.log(a, b); | |
} | |
foo() // => 3 5 | |
foo({a: 0}) // => 0 5 | |
foo({b: 0}) // => 3 0 | |
foo({a: 4, b: 6}) // => 4 6 |
This file contains 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
#2016-04-25 | |
MS4wLjU5|Q2hlYXRlciA6KAoKN4IgrgdglgLjCeAHApgZxALlFCA3KqUARgDbIAWAhjAMbnIBO8mIAjCADQgC2y1LADgB0AJgDsAsQAYAzKwkCZMgKxiALAE5lI5cgDUrKey4lKDXJRZShygds4gaAe2dOILeWJkC7IgVOUpAQA2ZWCHGEYGWCcmFhEheQ1DYJkxP1ZgqTVDHxl9MWMQZAhGAHNmDDYpIxlRERE1YIENLJblDVaHBjQUGgBRUoYKqwdSgA8wdCrlBxomVBhKElGubjAlspLVkEQe9c3tqo01MLV1EQ0Ah0pUGhLCNw8HADMe5AAlXuQaFhkHAAmDDcyD+QgEOQCaWCImyDVhQUk+h8DgAjmBkEcQMJ5GEpBoBKxvK1Quc1DkCrMuKVFh4hGJlB0VH5gk1WMoZPiQqx9KyHGUetRGOjMe4qnUfKwNDImlJ0nJgp0pFldHoOQ5yFBcKCqsFEloocEYZk1AJGq1WAJ9Gp/lxNdqRVjlEITkZlDllOzgkSlCJWH79DKHMhuHs0NMQGp6dktE1CSpOnI1CJgmJ9CmHHsnIh6DAPAyrl7GuoJGJpEENPynACAeHBJa5TJjZnKBAYPQnlUpC22x2ICIdohW+3kG5/l2eyO3GpB8O+7MJ1wnNqGNwcACdsvGGuIACB4uQFvV+vxyBu0uVzuATOD0erwuzw47+vwgfUAB3MzcEg4Mo7Ra/owHgyI0IGBCcajniAqCIFAtYMDs3BOKg6IxDsJAuFMeYHsClB0DsZRQMOMFwUBVSXKWrD+jo0iNHMJQwFAKC1jsn4wTsta4E4YA9AhB5lE4nZsIofjklcPg2mW4TUlAZTkDARBgH+B5Ie2LDlg4RD8ORlwOAcc7UHQjCVI+awbMOWnYaZPDmW2NAYaUiG2TAH5fp+DCIE5SxtgwUzkF5w58PhxyWrCDR6c5bzIKifzsucXRmd5MATFMAVtl+JlQfpba8Npj4AL5cACQqYKAixmJEG7kUYwQALS |
This file contains 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
/** | |
* A resumable interval timer. | |
* Will call `callback` every `delay` milliseconds. | |
* Use go() to start and stop() to quit triggering the callback. | |
*/ | |
function Interval(callback,delay){ | |
this.go = function () { | |
this._ref = window.setInterval(callback,delay); | |
return this; | |
} |
This file contains 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
jQuery(function($){ | |
/* | |
var slideUrls=['slide001.png','slide002.png','slide003.png','slide004.png']; | |
var slide=Math.floor(Math.random()*slideUrls.length); | |
var switcherHtml='<div id="slideSwitcher">'; | |
for(var i=0;i<slideUrls.length;i++) switcherHtml+='<a href="javascript:;" title="Nummer '+(i+1)+' anzeigen">slide '+(i+1)+'</a>'; | |
$("#slides").append(switcherHtml); |
This file contains 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
read -p "Bitte geben Sie die Auswahlen ein:" -r -a CHOICES | |
RHYME="Ene mene Miste, es rappelt in der Kiste, ene mene meck und du bist weg! \"weg\" bist du noch lange nicht, sag mir erst wie alt du bist?" | |
CHOICE=0 | |
function l { | |
for i in $1; do | |
say -v Anna $i |
This file contains 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
# Test all the voices: | |
say -v '?' | awk '{ print($0); c1="say -v "$1" "; $1=""; $2=""; $3=""; c=c1 "\"" $0 "\""; system(c); }' | |
# Test the english voices only: | |
say -v '?' | awk '/en_US/{ print($0); c1="say -v "$1" "; $1=""; $2=""; $3=""; c=c1 "\"" $0 "\""; system(c); }' | |
# Test the international voices: | |
say -v '?' | awk '!/en_US/{ print($0); c1="say -v "$1" "; $1=""; $2=""; $3=""; c=c1 "\"" $0 "\""; system(c); }' | |
# Creepy: |
This file contains 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 | |
MAIN=${1:-development} | |
BRANCHES=$(git branch --merged $MAIN | grep -v -e 'master\|staging\|development\|\*') | |
echo Branches merged into $MAIN: | |
echo $BRANCHES | |
read -p "Delete these branches (y/n)? " answer |
This file contains 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
urxvt -depth 32 -bg rgba:ff00/f900/db00/dddd -bd rgba:ff00/f800/d000/dddd -fg rgba:0000/0000/0000/eeee -sr -scrollstyle plain -geometry 140x37+$[ 50 + $[ RANDOM % 100 ]]+$[ 500 + $[ RANDOM % 200 ]] |
This file contains 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
function acc(i) { | |
return function(d) { | |
return d[i]; | |
} | |
} | |
function ch(a,b) { | |
return function(d) { | |
return a(b(d)); | |
} |