Relevant properties:
// amount of visitors
"place_active_visitors": 50149,
// ???
"place_wait_seconds": 0,
// width of the canvas element| {"19760546": [ | |
| { | |
| "queue": "RANKED_SOLO_5x5", | |
| "name": "Corki's Fists", | |
| "entries": [{ | |
| "leaguePoints": 95, | |
| "isFreshBlood": false, | |
| "isHotStreak": false, | |
| "division": "V", | |
| "isInactive": false, |
| #!/usr/bin/expect | |
| set PASS [lindex $argv 0]; | |
| spawn vncpasswd | |
| expect "Password: " | |
| send "$PASS\r" | |
| expect "Verify: " | |
| send "$PASS\r" | |
| expect "Would you like to enter a view-only password (y/n)? " | |
| send "n\r" | |
| expect eof |
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: Xvfb | |
| # Required-Start: $local_fs $syslog | |
| # Required-Stop: $local_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start or stop Xvfb - X virtual framebuffer. | |
| # Description: Start or stop Xvfb - X virtual framebuffer. |
| param ( | |
| [string]$server = "http://example.com", | |
| [string]$filename = "test.exe", | |
| ) | |
| Invoke-WebRequest $server -OutFile %temp%\$filename |
| var rp = require("request-promise"); | |
| var fs = require("fs"); | |
| var db = JSON.parse(fs.readFileSync("db.json")); | |
| var jar = rp.jar(); | |
| const CONFIG_EMAIL = "<insert email>"; | |
| checkIn({"confirmationNumber": "GGEZ69", "firstName": "Joe", "lastName": "Shmoe"}); | |
| function checkIn(user){ |
| #!/usr/bin/env python | |
| import time | |
| import signal | |
| import dbus | |
| import dbus.service | |
| import dbus.mainloop.glib | |
| import gobject | |
| import logging | |
| import hashlib |
| const express = require("express"); | |
| const BlueLinky = require("bluelinky"); | |
| const bodyParser = require("body-parser"); | |
| const config = { | |
| validation_key: 'something you make', | |
| username: 'username', | |
| password: 'password', | |
| vin: 'vin', | |
| pin: 'pin', |
| const express = require('express'); | |
| const BlueLinky = require('bluelinky'); | |
| const bodyParser = require('body-parser'); | |
| const config = { | |
| validation_key: 'something you make', | |
| username: 'username', | |
| password: 'password', | |
| region: 'EU', | |
| vin: 'vin', |