I wrote several games early on.
One of my first game in memory that I wrote from scratch (i.e. not typing in from a book) is a Space Invaders clone I tried.
The primary outcome of that project best expressed by abusing Edison: "Results! I have gotten a lot of results. I know several thousand things that won't work."
The most interesting problem I had was trying to figure out which alien I was hitting with the missile. I really struggled with that. The solution I came up with was each alien has a different ASCII (or whatever it was on the TRS-80) character in its center.
When the missile hit, I would "search" for the thing on the screen that looked like the ASCII character, and use that to determine the correct alien to delete.
Now, clearly, this is wrong way to do it. Heck it was obviously wrong at the time I was doing it, but I at the time simply could not think of a better way, and at least the technique let me progress.
What I think the real take away from that experience is that much of the time, software builds software. Only through the creation process do you really flesh out the details of a project. In a way, a project can start one way and end another because you simply didn't see or plan the path that you inevitably took. But, like music, you have to play something just to see how it sounds and how it works. Otherwise you get nowhere.
The best quality of software is simply that it is cheap to fail. Sure there's time invested, but the material is 100% recyclable, and free to use. So, don't be afraid to try stupid things. Don't be afraid to leave "stupid things" in your code if it advances the goal and opens up something new. You can always come back and fix the stupid things.
In fact, that only way you're going to learn the stupid things is to do them and later through experience or learning, discover the errs of your ways.
Risk is cheap in software, may as well take it.