ATAman Tamrakarinaman-blog-fundamentals.hashnode.dev·Mar 1 · 6 min readJS Promises - The 3 Idiots WayLets start with basics : JavaScript runs in a single thread. A thread is like a single worker doing tasks one at a time. In JS, that means only one piece of code executes at a time. console.log("R00
ATAman Tamrakarinaman-blog-fundamentals.hashnode.dev·Feb 25 · 6 min readDNS Record TypesHow does a browser know where a website lives? Suppose you open the gallery on your phone and see various photos stored in your phone’s internal memory. Those photos exist somewhere physically inside 00
ATAman Tamrakarinaman-blog-fundamentals.hashnode.dev·Feb 14 · 7 min readHow DNS Resolution WorksDo you ever thought that why websites have a specific website name like when you go to browser and enter google.com and how you instantly go to google’s search page. These website names are our DNS ,it is a human-readable website names but computer d...00
ATAman Tamrakarinaman-blog-fundamentals.hashnode.dev·Feb 13 · 8 min readUnderstanding Network DevicesWhat is MODEM? A modem is a device that allows your home or office network to communicate with the internet.It basically acts as bridge between your home network and your Internet Service Provider(ISP). The word “modem” comes from MOdulator–DEModulat...00
ATAman Tamrakarinversionscontrol.hashnode.dev·Feb 13 · 5 min readUnderstanding Git: Unveiling the Secrets of the .git FolderBefore understanding the internal working of Git, lets briefly understand What is git? Git is a Version Control System(VCS) . It is used for tracking changes, collaborating with other developers and manage different versions of a project. Understandi...00