Skip to content

Instantly share code, notes, and snippets.

View tthn0's full-sized avatar
💻
Coding

Thomas ☻ tthn0

💻
Coding
View GitHub Profile
@tthn0
tthn0 / settings.json
Created May 16, 2024 04:50
VS Code Settings
{
// Minimal
"editor.folding": false,
// "editor.guides.indentation": false,
// "editor.glyphMargin": false,
// "editor.lineNumbers": "off",
// "editor.renderLineHighlight": "none",
// Aesthetic
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.cursorBlinking": "smooth",
@tthn0
tthn0 / music.py
Last active May 31, 2020 22:43
A music downloader (using YouTube link) in python. Note: This was made for Mac OS with Bash
"""
usage:
$ python3 music.py <link>
example:
$ python3 music.py https://www.youtube.com/watch?v=dQw4w9WgXcQ
"""
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
@tthn0
tthn0 / typewrite.py
Last active July 3, 2023 10:25
"Typewrite" effect in Python
"""A snippet for string "typewriting" in Python.
Note: On PyCharm, this effect doesnt look that good because
PyCharm outputs the letters at low FPS (on my machine).
Author: tthn0 (GitHub)
Gist Link: https://gist.github.com/tthn0/5636b9b15d41d53c241f87a884490728
"""
import sys