Your Coding Teacher
381 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
When you learn to code, not being "smart enough" is not the problem. The problem is using it as an excuse.
30 minutes of coding on your own will do more for your skills than 3 hours of watching tutorials.
The best developers are really just philosophers in disguise. Always asking why.
As a developer, these two acronyms are important: - CI: Continuous Integration - CD: Continuous Deployment But the most important one is CL: Continuous Learning
Learning to code is simple Things you don't need: - A genius IQ - A MacBook - Three screens - An expensive chair - Buying 2000 courses - A degree Things you need: - 1 or 2 good books/courses - Consistency - Patience
Don't envy money. Envy people whose code compiles at the first attempt.
If you like to help people, You will love building a Twitter account.
People still haven't realized that coding 3 times a week is a thousand times harder than coding every day.
Bad developers are afraid to look dumb Good developers are afraid not to ask enough questions
One hour of coding a day keeps unemployment away
The more you code, the lazier you become as a programmer
There are many ways to become a developer. But I can assure you, mindlessly copying code from Stackoverflow is not one of them
You're allowed to make mistakes when coding. In fact, professional developers have made and still make many more mistakes than you. That's how they became professionals
Developers who like to learn have an advantage over everybody else
If you hate learning, forget about being a programmer
You want to learn to program quickly, which is why it is taking so long.
Dogecoin, a coin created as a joke, reached a market cap of $69 billion, but you can't find 30 minutes a day to learn to code
"If you get it free, it is worthless. If you pay for it, it has value. If you build it yourself, it is priceless." - Raj More
9 commands you should know grepPrint lines matching a pattern findSearch for files in a directory hierarchy odOctal dump chmodChange access permissions wcWord count psReport process status manDisplay manual page infoRead info documents killTerminate a process
Some C++ notes for my Amazon interviews Iterate map: for (auto &itr : my_map) f(itr.first, itr.second); Random number in rage v= rand() % 30 + 100;// 100-129 Flip boolean b= !b; stable_sort vs sort -> guarantees that equal items retain their original order
In coding, it's not only about choosing the right technology. Putting good practices into place is key.