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
body { background: red; } |
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
<!DOCTYPE html><html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="format-detection" content="telephone=no" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css"> | |
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script> | |
<script src="http://code.jquery.com/mobile/1.1.0-rc.2/jquery.mobile-1.1.0-rc.2.min.js"></script> | |
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 Downpress = function(){ | |
this.doSomethingCool(); | |
this.doSomethingElse(); | |
this.doSomethingNext(); | |
}; | |
Downpress.prototype.doSomethingCool = function(){}; | |
Downpress.prototype.doSomethingElse = function(){}; |
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
function Test(){ | |
this.element = document.querySelector(".hello"); | |
this.helloWorld(); | |
} | |
Test.prototype.helloWorld = function(){ | |
var that = this; |
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
- Learn Python | |
create small testcases, understand syntax, write funny program | |
- Finish Downpress | |
great generator of static websites |
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
Flighs :) | |
16 May 2014 | |
13:20 Amsterdam, P+R Zeeburg | |
18:50 Düsseldorf, Hbf., Worringer Str. | |
17 May 2014 | |
Dusseldorf (DUS) ~ Warsaw (Chopin WAW) | |
07:10 ~ 08:50 |
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
"use strict"; | |
var Boilerplate = function() { | |
require("events").EventEmitter.call(this); | |
this.on("synch", function(){ | |
console.log("synch passed"); | |
}); |
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
Zodpovednosť R.Fica – LEN za svoju PRVÚ vládu 2006-2010: | |
Rozdelenie kvót CO2 – kvóty obchodované v EÚ | |
Suma: 11 086 000 000 Sk | |
Zodpovednosť: SNS | |
Nástenkový tender na ministerstve výstavby | |
Suma: 350 000 000 Sk | |
Zodpovednosť: SNS |
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
/* | |
File: CarbonSound/Sound.h | |
Contains: Sound Manager Interfaces. | |
Version: CarbonSound-116~1 | |
Copyright: © 1986-2008 by Apple Computer, Inc., all rights reserved | |
Bugs?: For bug reports, consult the following page on |
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
document.addEventListener("deviceready", function(){ console.log(device) }, false); |