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
package main | |
import ( | |
"fmt" | |
"image" | |
"image/color" | |
"image/png" | |
_ "image/png" |
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/python3 | |
from datetime import date, datetime, timedelta | |
import sys | |
def parse(s): | |
""" | |
Parse strings in the form: | |
n days from now | |
- n: integer |
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 csv | |
from datetime import datetime | |
import re | |
def is_tv(title: str) -> bool: | |
synonyms = '(Season|Part|Volume|Chapter|Series|Book|Collection)' | |
text_numbers = '(One|Two|Three|Four|Five|Six|Seven|Eight|Nine|Ten)' | |
return (re.search(f'{synonyms} (\\d+|{text_numbers})', title) | |
or 'Limited Series' in title) |
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
''' | |
1. Parse csv | |
2. Convert 1st column to season and episode string | |
3. Parse season from 2nd column | |
4. Use first column to find video file | |
5. Dry run rename | |
6. Rename, creating folders when necessary | |
''' | |
import csv |
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
from datetime import date, timedelta | |
# http://www.voidware.com/moon_phase.htm | |
def moon_phase(y, m, d): | |
""" | |
0 => new moon | |
1 => waxing crescent | |
2 => first quarter | |
3 => waxing gibbous | |
4 => full moon |
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
Random, upper, 0, 1 | |
ToggleCase(c) { | |
global upper := !upper | |
if upper { | |
StringUpper, c, c | |
} else { | |
StringLower, c, c | |
} |
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
use std::collections::HashMap; | |
use std::env; | |
use std::fs::File; | |
use std::io::{self, prelude::*, BufReader}; | |
use std::process; | |
fn tokenize(letters: &str) -> HashMap<char, u8> { | |
let mut map = HashMap::new(); | |
for c in letters.chars() { | |
*map.entry(c).or_default() += 1; |
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 | |
from collections import Counter | |
import fileinput | |
counter = Counter() | |
for line in fileinput.input(): | |
counter.update(c for c in set(line) if c.isalpha()) | |
print(counter) |
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
From: https://www.reddit.com/r/programming/comments/8jjq33/11_best_programming_fonts/dz0xxs5/ | |
------ | |
o0O s5S z2Z !|l1Iij {([|})] .,;: ``''"" | |
a@#* vVuUwW <>;^°=-~ öÖüÜäÄßµ \/\/ | |
the quick brown fox jumps over the lazy dog | |
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG | |
0123456789 &-+@ for (int i=0; i<j; ++i) { } |
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
; https://www.autohotkey.com/docs/commands/SoundSet.htm#Ex | |
F13:: | |
MIC_ID = 7 | |
SoundSet, +1, MASTER, mute, %MIC_ID% | |
SoundGet, master_mute, , mute, %MIC_ID% | |
Msg := "Microphone online" | |
Action := "Insert" | |
NewerOlder