@Tarren_Gill Agreed on breaking up "gamers". I'd take it one step further though. The same person plays Minecraft with their kid, FIFA with friends and Hearts of Iron alone at 2am. That's not three profiles, it's three contexts.
@BecomingCaptain Really sorry to hear that, especially knowing how much effort goes into making a game. If you don't mind me asking, how many wishlists did you have at launch?
The thing that cost me most hours on this project wasn't code or art.
It was redoing parts I took for granted because I never had a clear idea of what game I was making. Who it's for, the tone, the market.
I started building features instead an strategy.
Lesson learned.
#gamedev
@sensational965 Always loved the idea of game dev as a kid but never got around to it. One day I was playing a tower defense game and thought, 'Damn, I can build something like this.' So here I am.
@vivoplt In JS, 'b' + 'a' becomes 'ba'. The next + 'a' tries a number conversion and fails, turning into NaN. Concatenating them creates 'baNaN'. Adding the final 'a' and .toLowerCase() turns into "banana".