https://www.youtube.com/watch?v=LxO-6rlihSg
- Horiztonal Horizons
- hold the camera with the horizon (no jaunty angles)
- saves crop and loss
- Rule of thirds -
- Use grid
- if person walking, put bigger space to the side they are walking. Move/See into.
HotKeySet("!a", "Main") ;wait for ALT-a keystroke, then go to Main() | |
While 1 | |
Sleep(100) | |
WEnd | |
Func Main() | |
AutoItSetOption( "MouseCoordMode", 0 ) | |
WinWait( "@Alexander - Discord" ) | |
WinActivate( "@Alexander - Discord" ) |
https://www.youtube.com/watch?v=LxO-6rlihSg
Pack
Done
import datetime as DT | |
from itertools import cycle | |
import csv | |
rota = cycle( | |
[ | |
"Brown", | |
"Blue", | |
"Green + Brown", | |
"Blue", |
Subject | Start date | |
---|---|---|
Brown bin day | 2023-01-06 | |
Blue bin day | 2023-01-13 | |
Green + Brown bin day | 2023-01-20 | |
Blue bin day | 2023-01-27 | |
Brown bin day | 2023-02-03 | |
Green + Blue bin day | 2023-02-10 | |
Brown bin day | 2023-02-17 | |
Blue bin day | 2023-02-24 | |
Green + Brown bin day | 2023-03-03 |
#!/usr/bin/env python3 | |
# Create a JSON of every team and the members for that team | |
# Final file has the form {"Team 1": [{"name": "Bob Smith", "email": "[email protected]", "login": "bobsmith"}]} | |
from collections import defaultdict | |
import os | |
import json | |
from github import Github # pip install pygithub | |
github_api = Github(os.environ.get("GITHUB_ACCESS_KEY")) |
from collections import Counter | |
from random import randrange | |
results = [] | |
# Run this 10k times | |
for _ in range(0, 10000): | |
# Give me 23 random birth dates given 365 days in a year | |
birthdays = [randrange(365) for _ in range(23)] | |
# Check for any overlap |
Write a function that returns whether two words are exactly "one edit" away using the following signature:
bool OneEditApart(string s1, string s2);
An edit is:
Implement a function that outputs the Look and Say sequence:
1
11
21
1211
111221
312211
13112221