I hereby claim:
- I am splittingred on github.
- I am splittingred (https://keybase.io/splittingred) on keybase.
- I have a public key whose fingerprint is DDFF 7D05 78C7 C3BD B1B9 45C5 6D10 B616 3AD3 FC69
To claim this, I am signing this object:
| syntax = "proto3"; | |
| package demo; | |
| service Jobs { | |
| rpc GetJob(GetJobReq) returns (GetJobResp) { } | |
| } | |
| message GetJobReq { | |
| uint64 id = 1; |
| <?xml version="1.0" encoding="utf-8"?> | |
| <interface-response> | |
| <CertGetApproverEMail> | |
| <Success>False</Success> | |
| </CertGetApproverEMail> | |
| <Command>CERTGETAPPROVEREMAIL</Command> | |
| <APIType>API</APIType> | |
| <Language>eng</Language> | |
| <ErrCount>1</ErrCount> | |
| <errors> |
| Things Nick Hates | |
| 0) Ann Kitchen | |
| 1) non-shallow tests | |
| 2) `if !` | |
| 3) ants | |
| 4) rock stars | |
| 5) sunlight off porch windows when drinking coffee | |
| 6) people who feed the meter | |
| 7) using floats for money |
I hereby claim:
To claim this, I am signing this object:
| ## | |
| # Finds a normalized ranking of word frequency given an article of text | |
| # | |
| class Hash | |
| ## | |
| # Normalize the array to values between 0 and 1 | |
| # | |
| # @param [Boolean] weight_lower_value Set to true to give more weight to lower values | |
| # | |
| def normalize(weight_lower_value = false) |
| $config = array( | |
| 'baseUrl' => rtrim('http://mywebsite.com/rest/api/','/'), | |
| 'format' => 'json', // json or xml, the format to request | |
| 'suppressSuffix' => false, // if false, will append .json or .xml to the URI requested | |
| 'username' => 'myuser', // if set, will use cURL auth to authenticate user | |
| 'password' => 'mypass', | |
| 'curlOptions' => array( | |
| 'timeout' => 30, // cURL timeout | |
| 'otherCurlOption' => 1, |
| modx -2by2host -from:modx -from:modx_feeds -to:modx -from:wehatejbieber -modx_ch -mr_modx -/logs/modx -noon_modx lang:en |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{REQUEST_FILENAME} !-s | |
| RewriteRule ^(.*)$ rest/index.php?_rest=$1 [QSA,NC,L] | |
| RewriteCond %{REQUEST_FILENAME} -d | |
| RewriteRule ^(.*)$ rest/index.php [QSA,NC,L] | |
| </IfModule> |
| <?php | |
| set_time_limit(0); | |
| class Timer { | |
| public $timer = 0; | |
| public function start() { | |
| $mtime = microtime(); | |
| $mtime = explode(" ", $mtime); | |
| $mtime = $mtime[1] + $mtime[0]; | |
| $this->timer = $mtime; |