Skip to content

Instantly share code, notes, and snippets.

View IronicUsername's full-sized avatar
🇧🇷
Terry A. Davis was the greatest programmer of all time.

Ironic Username IronicUsername

🇧🇷
Terry A. Davis was the greatest programmer of all time.
View GitHub Profile
@IronicUsername
IronicUsername / yt2mp3.py
Created August 20, 2021 12:37
Simple download tool
import youtube_dl
import sys
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
@IronicUsername
IronicUsername / .eslintrc.js
Created October 30, 2020 09:36
my default eslintrc
const OFF = 0;
const WARN = 1;
const ERROR = 2
module.exports = {
root: true,
env: {
node: true
},
'extends': [