I hereby claim:
- I am chocolatkey on github.
- I am chocolatkey (https://keybase.io/chocolatkey) on keybase.
- I have a public key whose fingerprint is 50E5 28E0 F896 FA06 CF88 32F0 43B7 B2E0 0E2D 335F
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name RekMathletics.exe | |
| // @version 1.0 | |
| // @downloadURL https://gist.githubusercontent.com/chocolatkey/0c98caaee25e425e066d361d0493e534/raw | |
| // @supportURL https://gist.github.com/chocolatkey/0c98caaee25e425e066d361d0493e534 | |
| // @description Get reked | |
| // @author chocolatkey | |
| // @homepage https:/github.com/chocolatkey | |
| // @include http://*live.mathletics.com* | |
| // @run-at document-start |
| /* | |
| * Jaimini's Box status page | |
| * Henry (chocolatkey) 2017 | |
| */ | |
| // Reader DB | |
| var mangaz = [[!status6]]; | |
| //https://stackoverflow.com/questions/4992383/use-jquerys-find-on-json-object | |
| function getObjects(obj, key, val) { |
| # Icons8 fetcher | |
| import json | |
| import urllib.request | |
| import os | |
| import sys | |
| import argparse | |
| import re | |
| apihome = "https://api.icons8.com/api/iconsets/v3/search" |
| // ==UserScript== | |
| // @name EBookJapanRipper | |
| // @version 1.10 | |
| // @downloadURL https://gist.githubusercontent.com/chocolatkey/ad0c04b0768f5fcdd3ea3c6cb089b8b2/raw | |
| // @supportURL https://gist.github.com/chocolatkey/ad0c04b0768f5fcdd3ea3c6cb089b8b2 | |
| // @description Send my regards to "t-hamaguchi" lol | |
| // @author chocolatkey | |
| // @homepage https:/github.com/chocolatkey | |
| // @include http://*br.ebookjapan.jp* | |
| // @include https://*br.ebookjapan.jp* |
| # Mangatown Scraper 1.2 | |
| # Henry (chocolatkey) 2017 | |
| # coding=utf-8 | |
| import urllib.request | |
| from bs4 import BeautifulSoup | |
| import re | |
| import threading | |
| import time | |
| import logging | |
| import os |
| #!/bin/bash | |
| echo "-------------------------------" | |
| echo "| OxfordOrb by chocolatkey |" | |
| echo "-------------------------------" | |
| rm -R -- */ # Clean slate | |
| for f in *.orb; do unzip -d "${f%*.orb}" "$f"; done | |
| for D in *; do |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Collatz conjecture (multithreaded, C++) | |
| * chocolatkey 2016 | |
| */ | |
| // STUFF YOU CAN CHANGE | |
| #define MAX_THREADS 512 // For self-restraint | |
| #define MODE 0 // 0 = RAM storage (warning: can eat up ram quickly with calculations > 1000000 iterations), 1 = HDD split files storage (very low RAM usage, but more disk r/w)) | |
| // END OF STUFF |
| <?php | |
| //FoolSlide RSS Feed loader/formatter v2 | |
| //Henry Stark 2016 | |
| //ini_set('display_errors', 1); | |
| //error_reporting(E_ALL ^ E_NOTICE); | |
| //CONFIG/////////////////////////////// | |
| $url_prefix = "//PATH_TO_FOOLSLIDE/";//Fooslide location | |
| require_once("/PATH_TO_medoo.php");//Path to medoo |
| //Original function: https://jsfiddle.net/terryyounghk/kpegu/ | |
| function exportTableToCSV($table, filename) { | |
| var $rows = $table.find('tr:has(td)'), //Put tr:has(input:checkbox:checked) for ones with checked checkboxes | |
| // Temporary delimiter characters unlikely to be typed by keyboard | |
| // This is to avoid accidentally splitting the actual contents | |
| tmpColDelim = String.fromCharCode(11), // vertical tab character | |
| tmpRowDelim = String.fromCharCode(0), // null character |