Your Coding Teacher
371 subscribers
10 links
Coding, software engineering & #bitcoin technologies. I'll make you a better thinker, not just a better developer | Ex
Amazon, Senior DevOps @eBay
Download Telegram
"A language that doesn't affect the way you think about programming is not worth knowing." - Alan J. Perlis
Obsessing over clean code is like reorganizing your clothes closet on a daily basis.
Only Half of programming is coding The other 90% is debugging
A comparison sort algorithm cannot perform better than O(NlogN) Algorithms not based on comparisons, such as counting sort, can have O(N) performance.
In JavaScript, a function always returns a value. If the return value is not specified, then it returns undefined.
VPCs in GCP & AWS Google VPC networks are global, and subnets span regions, not availability zones, as in the case of AWS.
The worst mistake you can make is to equate years of experience with wisdom. There are people with 10 years of experience. And people who have experienced the same year ten times.
Always Be Learning For instance, if you already know how to work with AWS, try out GCP Don't be a one trick pony.
"Dealing with failure is easy: Work hard to improve. Success is also easy to handle: You've solved the wrong problem. Work hard to improve." - Alan J. Perlis
Change your questions from - How long will it take me to master X? - Will it be hard? To - Will it be worth it?
Using a consistent style makes your code more approachable and easier to read. It facilitates collaboration on projects and makes it easier to change things later even if you're working alone. For Python, check PEP8.
"The question, 'Can machines think?' I believe to be too meaningless to deserve discussion." - Alan Turing
"I think there's a world market for about five computers." - Thomas J Watson Senior, 1945
"It works on my machine"
For every problem you solve, every bug you kill, every glitch you resolve, you learn something new.
Code is never finished
Do not equate years of experience with wisdom. There are people with 10 years of experience and people who have experienced the same year ten times. Don't get too comfortable with what you are doing and keep growing.
7 Platforms to improve your problem solving skills: - codingcompetitions .withgoogle .com - topcoder .com - codechef .com - leetcode .com - hackerrank .com - projecteuler .net - uva .onlinejudge .org
Design patterns in 1 tweet Factory Method. Centralize logic to create items from a family of objects Ex: Create Buttons for different OS //Pseudocode createButton(OS) { if (windows == OS) return new WinButton(); else return new MacButton(); }
For software developers, one of the most important things you can do is writing code you can come back to later.