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 script = document.body.appendChild(document.createElement('script')) | |
script.src='https://code.jquery.com/jquery-1.12.0.min.js'; | |
script.onload = function() { | |
var value = 360; | |
$("body") | |
.css("transition", "-webkit-filter 1s linear") | |
.css("-webkit-filter", "hue-rotate(0deg)").on("transitionend", function() { | |
value += 360 | |
$("body").css("-webkit-filter", "hue-rotate("+value+"deg)") | |
}); |
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
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
uniform float time; | |
uniform vec2 mouse; | |
uniform vec2 resolution; | |
//draw.glsl: Drawing functions for GLSL |
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
define brainfuck_meminit { | |
//Initialize Brainfuck's memory array | |
$i=1; | |
while (lte $i 256) { | |
put memory $i 0; | |
inc $i > i | |
}; | |
delete i | |
}; |
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
clrmamepro ( | |
name "Nintendo - Game Boy Advance" | |
description "Nintendo - Game Boy Advance" | |
version 20150715-185055 | |
comment "no-intro | www.no-intro.org" | |
) | |
game ( | |
name "007 - Everything or Nothing (USA, Europe) (En,Fr,De)" | |
description "007 - Everything or Nothing (USA, Europe) (En,Fr,De)" |
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
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<polymer-element name="my-element"> |
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
print("Hello, World!"); |
NewerOlder