I hereby claim:
- I am g105b on github.
- I am g105b (https://keybase.io/g105b) on keybase.
- I have a public key whose fingerprint is 90EF 3167 AFE2 0F52 A63D 4070 0239 1184 CE3F 61A6
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Serve Wordpress locally without having to configure a web server. | |
| * | |
| * You need to have the database served as configured in wp-config.php, then | |
| * run php -S 0.0.0.0:8080 wp-router.php to serve, and access localhost:8080 or | |
| * your.computers.ip:8080 in a browser. | |
| * | |
| * Make sure in the database that within the `wp_options` table, the `siteurl` | |
| * and `home` values are both "/". |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| GITHUB_USERNAME=#PUT_YOUR_USERNAME_HERE | |
| TMP=/tmp/existing_cron | |
| crontab -l > $TMP | |
| echo "*/10 * * * * /usr/bin/wget https://github.com/$GITHUB_USERNAME.keys -O ~/.ssh/authorized_keys" >> $TMP | |
| crontab $TMP | |
| rm $TMP |
| #!/bin/bash | |
| target=${1:-http://example.com} | |
| while true # loop forever, until ctrl+c pressed. | |
| do | |
| for i in $(seq 100) # perfrom the inner command 100 times. | |
| do | |
| curl $target > /dev/null & # send out a curl request, the & indicates not to wait for the response. | |
| done | |
| wait # after 100 requests are sent out, wait for their processes to finish before the next iteration. |
| <?php | |
| header("Access-Control-Allow-Origin: *"); | |
| $accept = $_SERVER["HTTP_ACCEPT"]; | |
| if($accept === "text/event-stream") { | |
| header("Content-Type: text/event-stream"); | |
| header('Cache-Control: no-cache'); | |
| $i = 0; | |
| while($i < 10) { | |
| $time = time(); |
| <?php | |
| $startTime = microtime(true); | |
| $workingDir = "_bm"; | |
| $runs = [ | |
| 100, | |
| 1000, | |
| 10000, | |
| 100000, | |
| ]; |
gpg --gen-key #use the same name and email address as on Github
gpg --list-secret-keys --keyid-format LONG
| <p>More bind examples</p> | |
| <p>Nested list example:</p> | |
| <ul> | |
| <li data-template> | |
| <p data-bind:text>Make name</p> | |
| <ul> | |
| <li data-template data-bind:text>Model name</li> |
| # /etc/wpa_supplicant/wpa_supplicant.conf | |
| # or put wpa_supplicant.conf inside the boot directory | |
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| update_config=1 | |
| network={ | |
| ssid="60" | |
| scan_ssid=1 | |
| key_mgmt=NONE |
| #!/opt/bin/php | |
| <?php | |
| require __DIR__ . "/vendor/autoload.php"; | |
| use Gt\Fetch\Http; | |
| use Gt\Fetch\Response\BodyResponse; | |
| while(true) { | |
| $payload = null; | |
| $invocationId = null; |