I hereby claim:
- I am mzhang28 on github.
- I am michaelz (https://keybase.io/michaelz) on keybase.
- I have a public key ASCj-Dq90GmQOxh7T-KTZZikQvjCn6Mi4zAPNY-4srwBawo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name OsuTweaks | |
// @version 0.1.0 | |
// @author IOException | |
// @run-at document-start | |
// @include http://osu.ppy.sh* | |
// @include https://osu.ppy.sh* | |
// @require https://code.jquery.com/jquery-3.6.0.min.js |
// ==UserScript== | |
// @name make obwc website readable | |
// @version 1 | |
// @grant none | |
// @include https://obwc.net/* | |
// ==/UserScript== | |
function addGlobalStyle(css) { | |
var head, style; | |
head = document.getElementsByTagName('head')[0]; |
This userscript changes some styles on the osu website
If u have tampermonkey or greasemonkey installed, hit the "raw" button of the script to install automatically
Or create a new script and copy-paste the below in
There's some options in the code, modify stuff to customize but it may break on different zooms/phones, not fully tested
use std::convert::TryFrom; | |
use std::rc::Rc; | |
use symbol::Symbol; | |
#[derive(Debug)] | |
enum Error { | |
UnboundName(Symbol), | |
Mismatch(Rc<Type>, Rc<Type>), | |
NotArrow, |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
call plug#begin() | |
Plug 'vim-syntastic/syntastic' | |
Plug 'tomasiser/vim-code-dark' | |
Plug 'vim-airline/vim-airline' | |
Plug 'scrooloose/nerdtree' | |
Plug 'rhysd/vim-clang-format' | |
Plug 'kien/ctrlp.vim' | |
call plug#end() |
I hereby claim:
To claim this, I am signing this object:
chars = " FuMlX%3kBJ:.N*epqA0Lh=En/diT1cwyaz$7SH,OoP;rUsWv4g\\Z<tx(8mf>-#I?bDYC+RQ!K5jV69&)G" | |
def get_key(seed): | |
result = "" | |
seed = 16631 * (seed % 0x7fffffff) + 511115 | |
for i in range(16): | |
result += byte[seed % 0x7fffffff % 82] | |
seed = 16631 * (seed % 0x7fffffff) + 511115 | |
result += chars[seed % 0x7fffffff % 82] | |
return result |