Place json file into $HOME/.local/share/tor-browser_en-US/Browser/TorBrowser/Data/Browser/.mozilla/native-messaging-hosts/
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
import gi.repository.GLib | |
from dbus.mainloop.glib import DBusGMainLoop | |
from io import BytesIO | |
from pprint import pprint | |
import colorthief | |
import mpris2 | |
import requests |
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
import glob | |
import os | |
from os import path | |
import psycopg2 | |
DATA_DIR = '[MEDIA_PATH]/accounts' | |
URL = '[DATABASE_URI]' |
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 whois drag | |
// @namespace https://github.com/Kjwon15/whois-drag | |
// @version 0.1 | |
// @description Fuck Whois.or.kr | |
// @author Kjwon15 | |
// @match https://xn--c79as89aj0e29b77z.xn--3e0b707e/*/whois.jsc* | |
// @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
#!/bin/bash | |
set -eo pipefail | |
TARGET_BRANCH=master | |
GIT_DIR="$(git worktree list | head -n1 | cut -d' ' -f1)" | |
APPNAME="${GIT_DIR##*/}" | |
build_app() { |
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
import sys | |
import requests | |
from pyquery import PyQuery | |
def get_content(link): | |
resp = requests.get( | |
link, |
I hereby claim:
- I am kjwon15 on github.
- I am kjwon15 (https://keybase.io/kjwon15) on keybase.
- I have a public key ASBSamu1MoW7c4KdRIKSwKA9-_lgUHedtbKBBsQ8JGlreQo
To claim this, I am signing this object:
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 collections import namedtuple | |
from datetime import timedelta | |
import functools | |
import os | |
from os import path | |
import sys | |
import time | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1"/> | |
<title>Fez</title> | |
<style type="text/css"> | |
body { | |
font-size: 80px; | |
} |
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 | |
import io | |
import shutil | |
import sys | |
from urllib.request import urlopen | |
from PIL import Image | |