Base URL: https://plug.dj/_
| Field | Type | Description | 
|---|---|---|
| data | array | endpoint-specific return data | 
| meta | object | unknown | 
| status | string | unknown - success of the request? | 
| time | float | unknown - time to process request? | 
| // ==UserScript== | |
| // @name OSRS HiScores | |
| // @namespace orsrs_hs | |
| // @description Modifies the high scores table for the Old School RuneScape website. | |
| // @include *services.runescape.com/m=hiscore_* | |
| // @version 1 | |
| // @run-at document-end | |
| // @require https://code.jquery.com/jquery-3.2.1.slim.min.js | |
| // ==/UserScript== | 
| class Files { | |
| hidden [String] $iExt | |
| hidden [String] $oCodec | |
| hidden [String] $oExt | |
| hidden [String] $iDir | |
| hidden [String] $oDir | |
| hidden [System.Object] $files | |
| Files ([String] $iExt, [String] $oCodec, [String] $oExt) { | |
| $this.iExt = $iExt | 
| meta: | |
| id: dc6 | |
| title: Diablo CEL 6 | |
| application: Diablo II | |
| file-extension: dc6 | |
| license: MIT | |
| ks-version: 0.7 | |
| encoding: ASCII | |
| endian: le | |
| seq: | 
| enum Result | |
| { | |
| OK = 1, | |
| Fail = 2, | |
| NoConnection = 3, | |
| InvalidPassword = 5, | |
| LoggedInElsewhere = 6, | |
| InvalidProtocolVer = 7, | |
| InvalidParam = 8, | |
| FileNotFound = 9, | 
| [DISASM] | |
| 000000 // | |
| dcdcdc //Default color | |
| 4e8b60 //Regular comment | |
| 3b6848 //Repeatable comment | |
| 666666 //Automatic comment | |
| dcdcdc //Instruction | |
| c57aaf //Dummy Data Name | |
| c57aaf //Regular Data Name | |
| 9fe7f9 //Demangled Name | 
| import * as assert from "assert"; | |
| import * as util from "util"; | |
| interface Test { | |
| input: any[]; | |
| expected: any; | |
| } | |
| export class Problem { | |
| readonly name: string; | 
| from pdfrw import PdfReader, PdfWriter | |
| fname = "Docs" | |
| pdf = PdfReader(fname + ".pdf") | |
| for i, page in enumerate(pdf.pages, 1): | |
| writer = PdfWriter() | |
| writer.addpage(page) | |
| writer.write(f"{fname}-{i}.pdf") | 
| from ctypes import * | |
| from ctypes.wintypes import * | |
| winmm = windll.winmm | |
| class MciException(Exception): | |
| def __init__(self, code): | |
| self.code = code | |
| success, self.message = mci_get_error_string(code) | 
| #define WIN32_LEAN_AND_MEAN | |
| #include <Windows.h> | |
| #include <mmsystem.h> | |
| #include <iostream> | |
| int main() | |
| { | |
| MCI_OPEN_PARMS open_params; | |
| ::ZeroMemory(&open_params, sizeof(MCI_OPEN_PARMS)); |