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 Font Ligatures | |
// @namespace https://gist.github.com/scarf005/ | |
// @version 0.5.0 | |
// @description ligatures are good | |
// @author youkim | |
// @match *://*/* | |
// @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
// ==UserScript== | |
// @name Sanitize Stackoverflow | |
// @namespace https://gist.github.com/scarf005/ | |
// @version 0.2.1 | |
// @description excesive information is crime | |
// @author scarf005 | |
// @match https://stackoverflow.com/* | |
// @match https://*.stackexchange.com/* | |
// @match https://askubuntu.com/* | |
// @match https://superuser.com/* |
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
{ | |
"symbolMasks.masks": [ | |
{ | |
"language": "python", | |
"patterns": [ | |
{ | |
"pattern": "(lambda)|(?<=lambda).?\\s?|(?<=lambda[^:]*):", | |
"replace": { | |
"lambda": { "text": "λ" }, | |
": ": { "text": "() => " }, |
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
#!/bin/env python3 | |
from __future__ import annotations | |
from os import environ, system | |
from pathlib import Path | |
from typing import Dict, Generator, List | |
CacheDirs = Dict[Path, List[str]] | |
HOME = Path(environ["HOME"]) |
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 python3 | |
from aiohttp import ClientSession as Session | |
from asyncio import run | |
from bs4 import BeautifulSoup as Soup | |
from pprint import pprint | |
from sys import argv | |
yes24 = "http://www.yes24.com" |
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 python3 | |
from io import BytesIO | |
from os import chdir, environ, getcwd, system | |
from pathlib import Path | |
from subprocess import run | |
import requests | |
HOME = environ["HOME"] |
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
from os import environ | |
from pathlib import Path | |
from typing import Tuple | |
template = """\ | |
{line} | |
{s:39} {e} | |
{s:39} ::: :::::::: {e} | |
{s:4} {filename:50.50} :+: :+: :+: {e} | |
{s:39} +:+ +:+ +:+ {e} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 Sanitize DCinside | |
// @namespace https://gist.github.com/scarf005/72089ee97f9c2984273a90da05c42bd7 | |
// @version 0.3.0 | |
// @description make this site less of a pain to read | |
// @author scarf005 | |
// @match https://gall.dcinside.com/* | |
// @grant none | |
// ==/UserScript== | |
{ |
OlderNewer