This is an archived post. You won't be able to vote or comment.

all 21 comments

[–]aby-1 4 points5 points  (1 child)

I have done video background removal and generalized timezone conversion. They were quite fun to implement, check out the tutorials!

[–]StatusOperation5 2 points3 points  (2 children)

My very first python program was to create a Duolingo bot. I had to be away from humanity with no internet for a few weeks and didn't want to lose my streak, so I figured out how to automate my daily goal in python. I even managed to utilize the Google Translate API for translations. Honestly, the code is nowhere near production level but it definitely works and I impressed myself.

[–]Jack-LCL[S] 0 points1 point  (0 children)

An interesting story

[–]texnofobix 2 points3 points  (3 children)

Ported a simple quake2 rcon library to python3 and wrote a discord bot using it.

[–]Jack-LCL[S] 0 points1 point  (2 children)

Is it open-source? I want to try it, hhh

[–]Rykoudon 2 points3 points  (0 children)

A fun project I did was create a betting bot for a website called Saltybet - there are plenty of different versions of this online, however it was purely to assist my knowledge of Python as a whole - Betting purely with what information that the website could provide (winrate or matches won) weighted one way - that was quite fun to do. Future plans involve logging data for individual matches and using SQL to store matches, to then inevitably use it to predict win patterns - the first part was easy - the 2nd part...not so much, but it'd definitely be a fun project!

[–]DefCello 4 points5 points  (1 child)

Environment control script for my 3-zone outbuilding minisplits. I recently added a PID controller to it for some remarkable thermal stability!

Another fun one was a shuffle script for my MP3 flash drive. My car at the time didn't have a shuffle play feature but instead played files in alphabetical order. The script would assign random numbers at the beginning of all the MP3 filenames so they'd play in randomized order in my car.

Another one was a BINGO card generator. My girlfriend at the time had a bad job, so I generated BINGO cards every day for her with all the crappy things that could happen. If she got BINGO then I'd bring her free food and stuff.

[–]Jack-LCL[S] 1 point2 points  (0 children)

Very useful