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
カラオケソング | |
Mandy | |
Break my stride | |
Sooner than you think - new order | |
Flesh for fantasy | |
Makafushigi adventure | |
A cruel angels thesis | |
Just a friend biz | |
Lovefool | |
Out of touch |
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 Fix translate for Notion | |
// @author Jason Woodland (jasonwoodland) | |
// @include https://notion.so/* | |
// ==/UserScript== | |
m = new MutationObserver(() => { | |
document.querySelectorAll('[contenteditable]').forEach(e => { | |
e.removeAttribute('contentEditable'); | |
e.addEventListener('dblclick', () => { |
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 python | |
import MySQLdb | |
import getpass | |
host = raw_input('Host? (default is "localhost") ') or 'localhost' | |
user = raw_input('User? (default is "root") ') or 'root' | |
passwd = getpass.getpass() | |
running = True | |
while running: |