I hereby claim:
- I am adhipg on github.
- I am adhipg (https://keybase.io/adhipg) on keybase.
- I have a public key whose fingerprint is 5E62 8E26 72D6 C581 8F6F 33F5 AFB8 5A15 777F 6EF7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "491289025" : "ijinshan-kappmarket://", | |
| "301521403" : "fb103361823069955://", | |
| "492178411" : "ils492178411://", | |
| "346142396" : "fb234434003713://", | |
| "310633997" : "whatsapp://", | |
| "370614765" : "com.condenet.newyorker://", | |
| "325058491" : "rnmddisco://", | |
| "382952264" : "epichttp://", | |
| "477048487" : "predictwind://", |
| * | |
| !.gitignore | |
| !/wp-content | |
| /wp-content/* | |
| !/wp-content/themes | |
| /wp-content/themes/* | |
| !/wp-content/themes/raison-winetrust/ |
| function colorThem ( domElement ) { | |
| var green = parseInt ( ( domElement.text() / 100 ) * 255 ); | |
| var red = 255 - green; | |
| greenString = green.toString ( 16 ); | |
| redString = red.toString ( 16 ); | |
| if ( greenString.length == 1 ) greenString = '0' + greenString; | |
| if ( redString.length == 1 ) redString = '0' + redString; | |
| <script src="http://maps.google.com/maps?file=api&v=2.x&key=ABQIAAAAEX95M5gKl7Nn_i4Mzl1TAhT4b5KCiYFj3ZfOJov1Qpq4YsRyghTrgMf7VDdXUg9oULkwfWhrlOumiQ" type="text/javascript"></script> | |
| <script type="text/javascript"> | |
| var map = null; | |
| var geocoder = null; | |
| function initialize() { | |
| if (GBrowserIsCompatible()) { | |
| map = new GMap2(document.getElementById("map_canvas")); | |
| map.setCenter(new GLatLng(29.427394,-98.624654), 15); |
| # Reset the panels in GNOME: | |
| gconftool --recursive-unset /apps/panel | |
| rm -rf ~/.gconf/apps/panel | |
| pkill gnome-panel |
| UPDATE wp_posts SET post_content = REPLACE (post_content, 'oldlink', 'newlink'); |
| function getJavaScriptDate(timestamp) { | |
| var regex=/^([0-9]{2,4})-([0-1][0-9])-([0-3][0-9]) (?:([0-2][0-9]):([0-5][0-9]):([0-5][0-9]))?$/; | |
| var parts=drink.post_date.replace(regex,"$1 $2 $3 $4 $5 $6").split(' '); | |
| return new Date(parts[0],parts[1]-1,parts[2],parts[3],parts[4],parts[5]); | |
| } |
| <?php | |
| function formatDates( $dates ) { | |
| $output = ''; | |
| $month = ''; | |
| $year = ''; | |
| sort( $dates, SORT_NUMERIC ); | |
| foreach ( $dates as $date ) { |
| <?php | |
| function getHash( $n = '' ) { | |
| if( $n == '' ) { | |
| $n = rand(); | |
| } | |
| $codeset = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
| $base = strlen($codeset); |