Your Programming Mindset



Joined
18.12.21
Messages
5
Reaction score
0
Points
1
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.
 

Sharky

Basic
Joined
04.10.21
Messages
10
Reaction score
0
Points
1
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
 

ven0m

Basic
Joined
20.10.21
Messages
6
Reaction score
1
Points
3
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
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.
 

Sharky

Basic
Joined
04.10.21
Messages
10
Reaction score
0
Points
1
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.
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

 

Lincoln

Senior Fraud Engineer
Premium
Joined
13.07.22
Messages
388
Reaction score
5,704
Points
93
If you use Linux, try Cherrytree for that
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
sudo apt-get install cherrytree
 
Top Bottom