this post was submitted on 08 Aug 2025
19 points (100.0% liked)
No Stupid Questions (Developer Edition)
1091 readers
1 users here now
This is a place where you can ask any programming / topic related to the instance questions you want!
For a more general version of this concept check out !nostupidquestions@lemmy.world
Icon base by Lorc under CC BY 3.0 with modifications to add a gradient
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Start small. Solve one piece of the problem at a time. The project will grow over time.
For example, say you want to make a GUI app. The steps might be:
For each step you might need to follow a guide or a tutorial.
Don’t worry if you do any step wrong. You can always make it right later. Nobody is designing the perfect software on the first go. It’s better to have something than nothing.
Don’t worry if you need tutorials, documentation or examples on the way. Everybody needs to use some reference. I recommend to start following a tutorial (e.g. how to make a GUI app), and use it as a starting point for the rest of the project. Go off track from the tutorial and explore on your own.
Thanks, this is really helpful advice.