This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name AoPS Downloader | |
| // @namespace http://www.artofproblemsolving.com/ | |
| // @version 0.0.1 | |
| // @description Download the AoPS WOOT (or other classes) transcripts! | |
| // @author Nikhil Jha | |
| // @match http://www.artofproblemsolving.com/class/*/transcript/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| darkwater4213@home ~ $ git gud | |
| git gud at https://git-scm.com/docs/ | |
| darkwater4213@home ~ $ git gud help | |
| git gud with | |
| git gud [--install] [--auto-open] [-s source|-l local-source] [-t type] | |
| source: [git|pro-git|...] | |
| type: [epub|pdf|mobi|html|zip|md|txt|rtf|...] | |
| git gud at git gud with |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env nu | |
| # aliases df to a hacky way of turning it into a somewhat nice table | |
| # because df | detect columns actually doesn't work all that well. | |
| alias df = nu -c ( nu -c 'df | rg -e " +" -r " " | rg -Ue "\n" -r "] [" | rg -e "Mounted on\\]" -r "Mountpoint];" | rg -e "Filesystem" -r "[[Filesystem" | rg -e "\\] \\[$" -r "]]"' ) |