Skip to content

Instantly share code, notes, and snippets.

View helpimnotdrowning's full-sized avatar
🐒
how do code?

helpimnotdrowning

🐒
how do code?
  • in one of those ship in a bottle things
  • X @JeffBezos
View GitHub Profile
@helpimnotdrowning
helpimnotdrowning / userscript.user.js
Last active April 2, 2022 22:44 — forked from oralekin/userscript.user.js
osu! Logo Template for 2022 /r/place
// ==UserScript==
// @name osu! Logo template
// @namespace http://tampermonkey.net/
// @version 0.3
// @description try to take over the canvas!
// @author oralekin, LittleEndu, ekgame
// @match https://hot-potato.reddit.com/embed*
// @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant none
// ==/UserScript==
@helpimnotdrowning
helpimnotdrowning / onetab_to_keptab.py
Last active March 2, 2022 06:34 — forked from xunzhou/trans.py
Translate Onetab txt export → Keptab json import (by @xunzhou )
import time
import json
from urllib.parse import urlparse, urlunparse
class tab:
def __init__(self, url, title):
self.url = url; self.title = title
self.favIconUrl = urlunparse(urlparse(url)._replace(path='favicon.ico',params='',query='',fragment=''))
self.pinned = False; self.muted = False