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
export const num = 1; |
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
var i = setInterval(function() { | |
var $p = document.createElement('p') | |
$p.textContent = new Date() | |
document.body.appendChild($p) | |
}, 2 * 1000) | |
eval('var $p = document.createElement("p"); $p.textContent = "Im evaled"; document.body.appendChild($p)') | |
setTimeout(function() { | |
var $p = document.createElement('p') |
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
# kudos to https://coderwall.com/p/euwpig/a-better-git-log | |
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |
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/sh | |
# push picture to android device and make it available in gallery | |
# kudos to https://groups.google.com/forum/#!topic/appium-discuss/QWkhvs_rEtk | |
PICTURES=/mnt/sdcard/Pictures | |
adb push $1 $PICTURES | |
adb shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file://$PICTURES |
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
@-moz-document domain("blog.fefe.de") { | |
/* | |
* $brand-primary: #673AB7; // deep purple 500 | |
*/ | |
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
margin: 0; |
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
@-moz-document url("http://dj4br.home.t-link.de/lautspr.htm") { | |
html { | |
font-size: 16px; | |
} | |
body { | |
background-image: none; | |
font-family: Georgia, serif; | |
} |
Hallo liebes unlimited-Team,
wir wollen mit einem gemeinsam Racletteessen das Jahr beenden, dazu lade ich euch herzlich ein:
Mittwoch 17.12. 19:00 Uhr in der Böhlstraße 5, Ludwigshafen
Damit wir Raclettegeräte, Kartoffeln und den Einkauf planen können, tragt euch bitte verbindlich in die folgende Doodle ein: http://doodle.com/v3r72wdesa6tfsne
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
Verse | |
Das ist eine Antwort auf Dein Geschenk: | |
Vater, wir können nicht aus eigener Kraft zu Dir kommen. | |
Wir kommen im Namen deines Sohnes, | |
der Dich und die Kraft Deines Geistes verherrlicht. | |
--- | |
Pre-Chorus | |
Wir sind zu etwas so mysteriösem gekommen, | |
was wir mit unserem Verstand nicht verstehen können, | |
durch die offene Tür, wo die Engel singen, |
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
.responsive-image( @file, @responsive-postfixes, @hidpi-postfix ) { | |
@filename: `(function() { return @{file}.substring(0,@{file}.lastIndexOf('.')) })()`; | |
@filetype: `(function() { return @{file}.substring(@{file}.lastIndexOf('.')) })()`; | |
@amount: unit(`(function() { return Object.keys(JSON.parse(@{responsive-postfixes})).length })()`); | |
.loop( @index ) when ( @index < @amount ) { | |
@breakpoint: `(function() { return Object.keys(JSON.parse(@{responsive-postfixes}))[@{index}] })()`; | |
@nextBreakpoint: `(function() { return ( @{index} + 1 < @{amount} ) ? Object.keys(JSON.parse(@{responsive-postfixes}))[@{index}+1] : '99999px' })()`; | |
@postfix: `(function() { return JSON.parse(@{responsive-postfixes})[@{breakpoint}] })()`; | |