▄███████▄ ▄████████ ▄██████▄ ▄█ ▄████████ ▄████████ ███ ▄████████ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▀█████████▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ █▀ ▀███▀▀██ ███ █▀ ███ ███ ▄███▄▄▄▄██▀ ███ ███ ███ ▄███▄▄▄ ███ ███ ▀ ███ ▀█████████▀ ▀▀███▀▀▀▀▀ ███ ███ ███ ▀▀███▀▀▀ ███ ███ ▀███████████ ███ ▀███████████ ███ ███ ███ ███ █▄ ███ █▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄█ ███ ▄████▀ ███ ███ ▀██████▀ █▄ ▄███ ██████████ ████████▀ ▄████▀ ▄████████▀ ███ ███ ▀▀▀▀▀▀
2024-now
Doesn't it suck when you go to your youtube playlist and it says "3 unavailable videos are hidden"? Those were probably the coolest videos in the playlist, and now you'll never see them again. Let me introduce you to youtube-dl (patched). It's a massive project with a ton of functionality, but you should just know that you can run
yt-dlp <url> -o <name>.<format>
to get your free copy of any youtube video.
I've recently started accumulating some pretty nice playlists. So I wrote a script to download any new videos from any of my public playlists. It downloads my music playlists as mp4s also. This is the source code, but you'd have to modify it a bit (shouldn't be too hard) to get it working for yourself.
I have a daily cronjob (with anacron) that runs this script. So far it's only protected me from 1 video deletion, but I'm sure that won't be the case in 10 years.
2023-2024
I was a programmer for my University's VEX robotics club. It's basically a sport, where each year there is a completely new game, with very complex rules. This school year's game was something like soccer, with the main twist being that the balls were triangular pyramids with rounded edges.
As a programmer, your biggest responsibility is the robot's autonomous functions. This means deciding on how you will manage the robot's odometry (current position / heading), and how you will make it move. Surprisingly, I found the hardest part of this to be tuning a PID. Our team for this year was pretty fresh, and the team is always modifying the robot, so you don't get much time to test your programming with it.
So our team went with the simplest method: no odometry, so we would manage our robot with two functions: turn, which would turn to an absolute heading, and go, which would drive a certain number of inches forwards (or backwards, with a negative number).
As you can imagine, writing out a complicated route with these methods is error prone. So I wrote a python script called route planner, which would let you click a series of points on the field for the robot to go to in succession. It would then do the simple math of determing the rotations and movements necessary, and then write these routes to our source code, to immediately be used after recompiling.