Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Tagpro: fast group switcher
// @description leeeel
// @include http://tagpro-*.koalabeast.com/groups/*
// @include http://tangent.jukejuice.com/groups/*
// @include http://*.newcompte.fr/groups/*
// @version 1337
// @license do whatever the fuck you want
// @grant none
// @author Chalksy /u/chalks777
@Chalks
Chalks / tagpro-radians.user.js
Last active May 4, 2016 15:07 — forked from arfie/tagpro-radians.user.js
TagPro Radians
// ==UserScript==
// @name TagPro Fake Degree
// @namespace lel
// @description set your degree to whatever you want.
// @include *.koalabeast.com:*
// @include *.newcompte.fr:*
// @version 1
// @author Chalksy - modified from a script by Ruud Verbeek
// @grant none
// ==/UserScript==
"""""""""""""""""""" plugin config
" install plugin manager in ~/.vim/autoload
" https://github.com/junegunn/vim-plug
call plug#begin('~/.vim/plugged')
Plug 'https://github.com/ctrlpvim/ctrlp.vim' " ctrl+p search for files
Plug 'https://github.com/MaxMEllon/vim-jsx-pretty' " make jsx not ugly
Plug 'https://github.com/posva/vim-vue' " make vue not ugly
Plug 'https://github.com/dense-analysis/ale' " use eslint for javascript files
Plug 'https://github.com/nathanaelkane/vim-indent-guides' " visually display indentation
Plug 'https://github.com/scrooloose/nerdcommenter' " easy commenting
/**
* Adapted from https://github.com/vueform/multiselect#styling-with-tailwind-css
*/
.multiselect {
@apply relative mx-auto w-full flex items-center justify-end box-border cursor-pointer border border-gray-300 rounded bg-white text-base leading-snug outline-none;
}
.multiselect.is-disabled {
@apply cursor-default bg-gray-100;
@Chalks
Chalks / multiplay_chess_dot_com.js
Last active December 11, 2023 16:12
Greasemonkey/Tampermonkey script to add multiple play buttons to the chess.com home page
// ==UserScript==
// @name chess.com multiple play now buttons
// @description Show all the various play buttons without having to click on "new game"
// @author chalksy
// @include *://*chess.com*
// @run-at document-start
// @version 0.1
// ==/UserScript==
// set to `false` if you don't want to see that time control
@Chalks
Chalks / storygraph_book_rating_zen_mode.js
Last active January 22, 2025 06:16
Hide book ratings unless I click on them or I've rated the book myself
// ==UserScript==
// @name storygraph book rating zen mode
// @description Hide book ratings unless I click on them or I've rated the book myself
// @author chalksy
// @include *://*thestorygraph.com*
// @run-at document-start
// @grant window.onurlchange
// @version 0.1
// ==/UserScript==