I hereby claim:
- I am notslang on github.
- I am slang (https://keybase.io/slang) on keybase.
- I have a public key whose fingerprint is 9A7C 41E7 279F 8032 42FE AF31 F6D1 7F02 3968 6E16
To claim this, I am signing this object:
| /* ---------------------------------------------------------------------------------------------------- | |
| ------------------------------------------------------------------------------------------------------- | |
| ------------------------------------------------------------------------------------------------------- | |
| Offerpop Photo Contest | |
| ------------------------------------------------------------------------------------------------------- | |
| ------------------------------------------------------------------------------------------------------- | |
| ---------------------------------------------------------------------------------------------------- */ | |
| /* ---------------------------------------------------------------------------------------------------- |
| function g(a) { | |
| throw a; | |
| } | |
| var j = void 0, | |
| k = !0, | |
| m = null, | |
| o = !1; | |
| function aa() { | |
| return function () {} |
I hereby claim:
To claim this, I am signing this object:
| if (isset($_SERVER['HTTP_ORIGIN']) && in_array($_SERVER['HTTP_ORIGIN'], array('http://chazsouthard.com', 'http://localhost:1111'))) { | |
| header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}"); | |
| header('Access-Control-Allow-Credentials: true'); | |
| header('Access-Control-Max-Age: 86400'); // cache for 1 day | |
| $_SERVER['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest'; | |
| } |
| http = require 'http' | |
| url = 'http://xapi.snapapp.com/xapi/v2/promotions/528557c027ce261e6f000018/entries' | |
| http.get(url, (res) -> | |
| body = '' | |
| res.on('data', (chunk) -> | |
| body += chunk | |
| ) |
| function isPalindrome(inputWord){ | |
| //split up string | |
| var array = []; | |
| for(i = 0; i < inputWord.length; i++){ | |
| array.push(inputWord.charAt(i)); | |
| } | |
| if(array.compare(array.clone().reverse())){ | |
| return true; | |
| } else { |
| <html> | |
| <head> | |
| <style> | |
| html, body { | |
| height:100%; | |
| font-family: Arial, Verdana, Tahoma; | |
| } | |
| #nav { | |
| width: 50px; | |
| height:270px; |
| <?php | |
| //this file would be at /demo/flickr.php | |
| $zipPleaseAPIEndpoint = "http://www.zipplease.com/api/zips"; | |
| $uniqueZipName = "zipPleaseFlickrDemo_" . uniqid() . ".zip"; | |
| // Create the JSON payloy to send to ZipPlease | |
| $zipRequest = json_encode(array( | |
| 'accountKey' => "6B5qClA0SG2er7x7PmZTK4QU", // Not real. | |
| 'accountSecret' => "jHxRb2y3CevJyROL96hYKcE0oAIQ", // Get your own. |