![]() |
|
Your Programming Mindset - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: Your Programming Mindset (/Thread-Your-Programming-Mindset) |
Your Programming Mindset - Napoleon - 08-18-2019 Was wondering, my usually way of coding something is to start writing code right off the bat and building on it all from there, adding classes and methods as needed. Does anyone structure their code ahead of time before writing the logic/methods for it? I find it a lot harder to think in psuedocode than in actual code. RE: Your Programming Mindset - Leviathan - 08-18-2019 My way of doing it is: Opening up a notepad, write down what the program needs to do, maybe even think about class names already. Then working on everything step by step. Example: Login Checker - Get Proxies from txt - Connect with Proxie to page ... etc etc So yeah I kinda organize everything beforehand RE: Your Programming Mindset - Cr3aTor - 08-18-2019 (08-18-2019, 04:34 PM)Leviathan Wrote: My way of doing it is: ^^^ I would do pretty much the same. However, I will continually add/remove things to the scheme as new feature ideas come to mind or as I find easier ways of doing things. RE: Your Programming Mindset - Leviathan - 08-18-2019 (08-18-2019, 04:43 PM)Cr3aTor Wrote:(08-18-2019, 04:34 PM)Leviathan Wrote: My way of doing it is: Oh yeah that's what I do as well but I mostly just note down the core things and then add features to that later on as soon as the core is done |