Life Soundtrack
Idea
- Android sound app that changes over time
Technology
- LibPd http://libpd.cc/ Puredata as embedable library
// ==UserScript== | |
// @name Delete Bandcamp Cookies | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var getCookieByMatch = function(regex) { | |
var cs=document.cookie.split(/;\s*/), ret=[], i; | |
for (var i=0; i<cs.length; i++) { | |
if (cs[i].match(regex)) { | |
ret.push(cs[i].split("=")[0]); |
I hereby claim:
To claim this, I am signing this object:
if (window.addEventListener) { // DOM | |
window.addEventListener('load', function () { | |
FUNCTION(); | |
}, false); | |
} else if (window.attachEvent) { // IE | |
window.attachEvent('onload', function () { | |
FUNCTION(); | |
}); | |
} else if (typeof window.onload === 'undefined') { // other | |
window.onload = function () { |