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
| import gzip | |
| import os | |
| import sys | |
| import StringIO | |
| import struct | |
| #This script will <EVIL> patch the pre-compiled zImage | |
| #to bypass the /system remount block on the AcerA500 | |
| #ICS rom ... please run this script in linux or cygwin as | |
| #the unix gzip is required |
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
| // OE Version | |
| javascript:eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('l{6(m["7"]){8 0=o.p(q,9,r,b,s,t,u,v,b,w,9,x,y,z,A,B);8 3=C("D E "+0+" c d.\\F e G H I 2 J K L f.\\n\\M N g 2 5 2 O P:","");6(3){3+="\\n[Q R "+0+" c d]";7.S().T(U(a){V.W("X g 2 "+a+"..");h Y().Z("/10/11/5.12").13({14:(h 15().i())+":"+(16()+1),17:18.i(),2:a,19:3}).5()});4(0+" 1a.")}j 4("1b 1c!")}j 4("f 1d e 1e.")}1f(k){4(0+" 1g 1h:\\n"+k)}',62,80,'_ssname||to|_sstext|alert|send|if|AvailableList|var|116||105|by|Kopiro|not|Facebook|message|new|getTime|else|ex|try|window||String|fromCharCode|83|101|102|115|99|114|112|32|118|49|46|52|prompt|Welcome|in|nDo|use|this|script|make|spam|on|nInsert|the|online|users|sent|using|getAvailableIDs|forEach|function|console|log|Sending |
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
| require 'fileutils' | |
| start_time = Time.now | |
| SOURCE_DB = { | |
| :name => 'db_name', | |
| :user => 'db_user', | |
| :password => 'db_pass', | |
| :host => 'localhost' |
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
| require 'ubygems' | |
| require 'finalcut' # http://gist.github.com/397955 | |
| files = ARGV | |
| tick = 0.2 | |
| margin = 0.2 | |
| out = 'out.mp4' | |
| FinalCut.open(*files) do |fc| | |
| durations = files.map {|f| fc.get_duration f } |
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
| // Ported from Stefan Gustavson's java implementation | |
| // http://staffwww.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf | |
| // Read Stefan's excellent paper for details on how this code works. | |
| // | |
| // Sean McCullough banksean@gmail.com | |
| /** | |
| * You can pass in a random number generator object if you like. | |
| * It is assumed to have a random() method. | |
| */ |
NewerOlder