- Sådan stemmer danskerne
- forevnetet færdig: 27. Oktober
- layout: Screenshot%202014-10-24%2013.22.35.png
- Partiernes historik
- forevnetet færdig: 14. November
- layout: partierne%20historik.pdf
- Sæt din egen regering
- forevnetet færdig: ???
- layout: afventer zoran
- markup: 4539294/7250b788-4dfb-11e4-9a3a-b872358fad57.jpg
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
import {Component, View} from 'angular2/angular2'; | |
import {Http, httpInjectables} from 'angular2/http'; | |
@Component({ | |
selector: 'home', | |
appInjector: [ | |
httpInjectables | |
] | |
}) |
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
'use strict'; | |
var gulp = require('gulp'); | |
var connect = require('gulp-connect'); | |
var modRewrite = require('connect-modrewrite'); | |
// Rewriting rule for clean urls | |
var middleware = [ | |
modRewrite([ | |
'!\\.\\w+$ /index.html [L]', |
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
<link rel="stylesheet" href="/path/to/flipclock.css"> | |
<style> | |
.cd-container { | |
display: inline-block; | |
} | |
</style> | |
<div class="cd-container"> | |
<div class="countdown"></div> | |
</div> | |
<script src="/path/to/flipclock.min.js"></script> |
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
angular.module "onFinishRenderDirective", [] | |
.directive "onFinishRender", ($timeout) -> | |
restrict: "A" | |
link: (scope, element, attr) -> | |
if scope.$last | |
$timeout -> scope.$emit "ngRepeatFinished" |
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
youDie = function () { | |
var goatPos = $("#goat").offset() | |
var pooPos = $("#poo").offset() | |
if (goatPos.x === pooPos.x and goatPos.y === pooPos.y) { | |
alert("you fucking died!"); | |
} | |
} |
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
label | |
.text data.label | |
.style 'font-size', "24px" | |
.style "font-size", -> | |
r = innerRadius - 20 | |
return (2 * r) / this.getComputedTextLength() * 24 + "px" |
I hereby claim:
- I am tcarlsen on github.
- I am tcarlsen (https://keybase.io/tcarlsen) on keybase.
- I have a public key whose fingerprint is AF53 4F20 8D65 F19E 28AF 062A 3346 CDE8 75A2 9895
To claim this, I am signing this object:
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": { | |
"B": { | |
"afgang": 20000, | |
"tilgang": 343432, | |
"netto": 32423 | |
}, | |
"C": { | |
... | |
} |
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 updateIframeSize() { | |
$('iframe.dynamic').height(window.innerHeight - ($('.header').height())).width("100%"); | |
} | |
updateIframeSize(); |
NewerOlder