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
#ifdef GL_ES | |
precision highp float; | |
#endif | |
uniform sampler2D from, to; | |
uniform float progress; | |
uniform vec2 resolution; | |
uniform float dots; | |
void main() { |
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
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
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
ls | grep ..._.... | while read f; do mv $f `echo $f | sed "s/\(..._\(..\)\(..\)\)/2012-\3-\2/g" `; done |
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
/*! iepp v2.2 MIT/GPL2 @jon_neal & afarkas */ | |
(function(win, doc) { | |
//taken from modernizr | |
if ( !window.attachEvent || !doc.createStyleSheet || !(function(){ var elem = document.createElement("div"); elem.innerHTML = "<elem></elem>"; return elem.childNodes.length !== 1; })()) { | |
return; | |
} | |
win.iepp = win.iepp || {}; | |
var iepp = win.iepp, | |
elems = iepp.html5elements || 'abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|subline|summary|time|video', | |
elemsArr = elems.split('|'), |
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
/* | |
* Are my mangas out yet?? AMMOY?? | |
* a little script that could be croned to know if the mangas you follow are out. | |
*/ | |
// Website where to fetch infos | |
var urlMV = "http://www.mangaverse.net/html/planning/listesorties.htm"; | |
// The regexp to get the info | |
var reTitre = /- (.+) ([0-9]+) \(.+\)/; | |
// The titles you follow |
NewerOlder