Thursday, November 29, 2018
Sunday, September 30, 2018
Some Great Resources to learn Go
Cannot highlight enough how good this is. I think this is more of what I needed than the sentdex youtube videos (They are great too)
https://golangbot.com/
Monday, September 24, 2018
Thursday, September 20, 2018
Tuesday, September 18, 2018
Makefile Drama
If you know what I am talking, I find these online docs to be really well written on the subject.
https://www.gnu.org/software/make/manual/html_node/Overview.html#Overview
https://www.gnu.org/software/make/manual/html_node/index.html#Top
The mistakes I have been doing:-
https://stackoverflow.com/questions/19985936/current-working-directory-of-makefile
https://stackoverflow.com/questions/27204300/how-can-make-get-confused-without-phony-targets
https://www.gnu.org/software/make/manual/html_node/Overview.html#Overview
https://www.gnu.org/software/make/manual/html_node/index.html#Top
The mistakes I have been doing:-
https://stackoverflow.com/questions/19985936/current-working-directory-of-makefile
https://stackoverflow.com/questions/27204300/how-can-make-get-confused-without-phony-targets
Friday, August 10, 2018
Sunday, June 10, 2018
Tuesday, April 17, 2018
Monday, April 16, 2018
Principles of Programming Language
This lecture series on the topic seems great. Keeping it here so that in future I have tons of money and ands tons of free time, I will go through this series. Until then.. its just going to sit here..and gather dust..(not literally :D)
Monday, April 9, 2018
Friday, March 30, 2018
Sunday, March 25, 2018
Bash Cheat Sheet
This is one cheatsheet I think get's handy when on Linux system.
https://www.howtogeek.com/howto/ubuntu/keyboard-shortcuts-for-bash-command-shell-for-ubuntu-debian-suse-redhat-linux-etc/
This is another good quick tip I came across and don't want to loose
https://devhints.io/bash
Wednesday, March 21, 2018
Monday, March 5, 2018
Python Module Knowhow
If you were as confused as me on how modules importing work, this link is for you.
https://docs.python.org/2/tutorial/modules.html
Some background on Kernel Symbol Table might also help.
https://www.tutorialspoint.com/compiler_design/compiler_design_symbol_table.htm
Thursday, February 15, 2018
Python Generator
Generators are functions that create object which has __iter__ implemented.
https://wiki.python.org/moin/Generators
My Github Gist
https://gist.github.com/amitkc00/f20aa4ed0e34559b09ac39be3f5d5649
Reference for my gist
http://book.pythontips.com/en/latest/generators.html
Sunday, February 11, 2018
Let's build a Docker Competitor
System Design from USF
What does System Design for installing Solar Panels looks like? This is just to give a brief understanding of how other domains approach the same problem. I have no idea if this is the Best in the world as it proclaims :D
Tuesday, February 6, 2018
What is Proxy Server and Reverse Proxy Server?
I have been confused about this concept and get it mixed in my head. This video is short and simple.
In short, NGINX, HAPROXY is both load-balancer and reverse proxy. I think load-balancer and reverse-proxy means the same thing. But for now, I think I know what is going on. More about it later.
---------
If the above video still confuses you, you can read an excellent article here:
http://fullstackmastery.com/2017/06/17/5-ways-improve-server-architecture-nginx/
I have found all articles from this author to be well written and very clear.
Wednesday, January 3, 2018
System Design Cheatsheets
I just can't afford to loose any of these links. Hence a separate post on System Design Cheat Sheets.
https://gist.github.com/vasanthk/485d1c25737e8e72759f
https://github.com/jwasham/coding-interview-university#system-design-scalability-data-handling
https://github.com/shashank88/system_design#designques
Added on 18th March. System Design Flowchart/ Thought Process.
http://www.puncsky.com/blog/2016/02/14/crack-the-system-design-interview/
https://gist.github.com/vasanthk/485d1c25737e8e72759f
https://github.com/jwasham/coding-interview-university#system-design-scalability-data-handling
https://github.com/shashank88/system_design#designques
Added on 18th March. System Design Flowchart/ Thought Process.
http://www.puncsky.com/blog/2016/02/14/crack-the-system-design-interview/
Subscribe to:
Posts (Atom)
It's OK to be NOT-OK.
02/22/2021 Last week I was just un-productive and was not doing enough to talk about. I also wanted to say that weeks before the last, I ha...
-
I want to talk more about this video on a Philosophical level but for now in the interest of time, I have got this KEXP recording which yo...
-
Let me say to be honest "I had no idea of the impact of RPC in Distributed Systems" until I watched the UW session on Distributed...