I hereby claim:
- I am weiland on github.
- I am weiland (https://keybase.io/weiland) on keybase.
- I have a public key whose fingerprint is 4308 B093 7C00 84D8 0C11 B873 2019 4784 B4ED E7DC
To claim this, I am signing this object:
#!/bin/bash | |
hour=$(date +%H) | |
if [ "$hour" -lt 20 -a "$hour" -ge 6 ]; then | |
# execute stuff only between 6am and 8pm | |
fi |
I hereby claim:
To claim this, I am signing this object:
var letters = childrenElement.querySelectorAll('.small'); | |
function writingAnimation() { | |
var i = 0; | |
var textTimeout; // Timer Promise obj for the text writing | |
/** | |
* addText() | |
* |
var el = document.getElementById( 'text' ); | |
el.innerHTML = "i'm just eating cake"; | |
block(1600); | |
el.innerHTML = "jk, i am your boss"; | |
function block( ms ) { | |
var date = new Date(); | |
date.setTime( date.getTime() + ms ); | |
while( (new Date()).getTime() < date.getTime() ) ; | |
} |
(typeof exports !== "undefined" && exports !== null ? exports : window).moduleName = moduleName; | |
// just amd missing :( |
// var letters = angular.element(childrenElement.querySelectorAll('.small')); | |
/** | |
* writingAnimation() | |
*/ | |
function writingAnimation() { | |
var i = 0; | |
var textTimeout; | |
/** |
<header> | |
<input id="url"> | |
<button id="go">Go</button> | |
<button id="stop">Stop</button> | |
</header> | |
<iframe src="about:blank" mozbrowser remote></iframe> |
<script type="javascript/worker" id="testWorker"> | |
self.onmessage = function (evt) { | |
postMessage({ | |
'id': evt.data.id, | |
'evaluated': eval(evt.data.code) | |
}); | |
}; | |
</script> | |
<script> | |
var url = window.URL || window.webkitURL; |
angular.module('app') | |
.run(function($rootScope, $location, $routeParams, $window){ | |
$rootScope.$on('$routeChangeSuccess', function() { | |
var params = []; | |
angular.forEach($routeParams, function(value, key){ | |
params.push(key + '=' + value); | |
}); | |
var locationPath = $location.path() + '?' + params.join('&'); | |
$window._gaq.push(['_trackPageView', locationPath]); | |
}); |