+ 6
Can you give me an expert tip on coding
6 odpowiedzi
+ 10
I'm no expert, but one thing that's really important in coding are the comments. You need to realize that at some point, someone else will need to read and figure out code you did...
+ 8
I agree with you Koen, elegant code is always an ideal but there are instances that 'brute force' can work
+ 7
But it goes without saying that at some point, you'll get back to it and improve it
+ 6
The code we write will need revisions, improving and expansion. If we leave comments, it'll be easier for others to make it a better app
+ 5
Go Back; Debug the code,
Improve the code, publish it on GitHub or something(maybe) or Sololearn
+ 4
Look for some programming idioms to get great tips. Commenting code, and using clear method and variable names to keep code readable is one of the essential tips everyone will ussually give you.
And my personal tip, dont be afraid to change things that work but are not optimal and feel clumsy, it will almost always benefit you later.