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
 

Sorry, I know this isn't exactly a dev question, but how do I make a project without a tutorial? I know how to make functional code that does simple things, or to solve a problem/question. But nw I want to try to make some projects to add to my portfolio. I've found websites with different ideas, and I can find some tutorials, but what if I don't have a tutorial? Like, what do I do if I want to make something from scratch myself?

you are viewing a single comment's thread
view the rest of the comments
[–] magic_lobster_party@fedia.io 5 points 4 months ago (1 children)

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:

  1. Show an empty window
  2. Add some text
  3. Add a button
  4. Make the button do something
  5. Add another button
  6. Etc

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.

[–] 3rr4tt1c@programming.dev 2 points 4 months ago

Thanks, this is really helpful advice.