this post was submitted on 22 Jun 2025
45 points (97.9% liked)

Programming

21093 readers
81 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
top 5 comments
sorted by: hot top controversial new old
[–] Tehhund@lemmy.world 12 points 1 day ago (1 children)

Hell yes. I've written a unit price calculator, a tip calculator, a "how many plates do I need to put on this barbell to reach X weight?" app, a "am I connected to the Internet" app, and a few other small things. Other people have already written apps like these. But these apps work the way I want them to, and they were good learning experiences.

[–] marlowe221@lemmy.world 3 points 1 day ago

We must do these things so that the deep lore does not become legend and is, in time, forgotten…

[–] tias@discuss.tchncs.de 8 points 1 day ago

If you're into doing these kinds of projects I wholeheartedly recommend Sebastian Lague's YouTube channel. Each video is a new project and it is presented in an accessible and inspiring way.

[–] astronaut_sloth@mander.xyz 9 points 1 day ago

Great article! For a few years, I was always deterred from projects because they had already been done and better, so there was no reason to do it. Now, though, I just enjoy implementing things in my own janky way and learning a bit along the way.

[–] cheese_greater@lemmy.world 0 points 1 day ago* (last edited 1 day ago)

I like Shortcuts as a way of implementing a more declarative understanding to create toy programs. These satisfy a modular and immediate need and you can chain them together to build bigger programs too

Scriptable is a javascript version of Shortcuts which I love for this purpose also

Actually just did this (used ChatGPT haha blush) to create a script to take a songlist and output it reformatted so it says what time each song plays and now i just need to find a good source for album tracklists and I'll have a great toy solution for that problem

I dont want to spend 3 days or even 3 hours on tinkering to get that right, its enough for me that if it doesnt do what I envision I know how to reprompt or reframe or do some trial and error tests that help nudge the approach to where it produces what I need from it and i can move on to the next problem or iterating on this to refine and improve the solution. Maybe even my overall process, who knows

I made a lot of these things when I was starting learning coding like a cash register app to make change which I'm actually super proud of but I kinda prefer to work a bit higher-level and limit the extent to which I have to reinvent the wheel. I have other innovations I'd like to pursue