Issue36
The five pillars of a successful career in software
Coding skills, team communication, ecosystem awareness, personal productivity and career management.…
Issue36
5 powerful ways to make your code run faster
Optimize only if the program is important and it is genuinely slow. Don’t tune anything without using a good profiling tool first that can help find the hotspots in a program.…
Issue36
7 ways more methods can improve your program
Methods help you hide unnecessary details making the code easier to read. Methods that have well-written names make the programs easy to understand. Methods make programs shorter by avoiding duplication of code.…