I hereby claim:
- I am undonekittens on github.
- I am undonekittens (https://keybase.io/undonekittens) on keybase.
- I have a public key ASCTIk36-CKaRm3O6Fs5o3YSPOg1fP_WuZY3azvPr3MeqAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
require_once __DIR__ . '/Workerman-master/Autoloader.php'; | |
use Workerman\Worker; | |
use Workerman\Connection\AsyncTcpConnection; | |
use Workerman\Protocols\Websocket; | |
use Workerman\Lib\Timer; | |
$udp1 = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP); | |
socket_set_option($udp1, SOL_SOCKET, SO_BROADCAST, 1); |
I hereby claim:
To claim this, I am signing this object:
/* Cheerio-powered parser for the DJ DATA score page on the beatmania IIDX website. | |
Requires 'cheerio', 'request', and 'iconv' packages. | |
Needs 'Cookie' header from manual login for authentication. | |
Results in an array of JSON-formatted scores, which looks like this: | |
{ | |
"songs": [{ | |
"song": { | |
"name": "SONG NAME", |
server { | |
listen 80; | |
server_name example.com www.example.com; | |
if ($http_x_forwarded_proto = "http") { | |
return 301 https://$server_name$request_uri; | |
} | |
... directives to generate a response | |
} |