While some said #JavaScript is easy to learn, some said It’s easy to learn partially, but much harder to learn completely or even sufficiently. I agree with the latter point of […]
#1 Logic control flow: is the sequence of Program Counter (PC) values (that corresponding exclusively to instructions contained in a program’s executable file or in shared objects linked […]
The patterns of communication between clients and the application, as well as between application components, are different than in a monolithic application. Reference: https://www.infoq.com/articles/microservices-intro/ Amazon Architecture https://netflixtechblog.com/optimizing-the-netflix-api-5c9ac715cf19
Tree structure is everywhere: 1 ) Site map (structure of web pages) 2 ) DOM tree 3 ) folder structure in a computer 4 ) Process tree in […]
I’ve been working mostly on HTML and CSS code intensively in the past 7 weeks, now it’s the time to connect some dots. PART 1 – How the […]
Here is a list of things that I learned for building a responsive website when I was building a WordPress portfolio project: The site 1 ) Understand the […]
What are the ::before and ::after Pseudo-elements? They both act like a child element of a parent element which is the CSS selector before the ::before or ::after […]
Both web browser & Node have an event loop. Node’s event loop is built on libuv. Web browser’s event loop is built on a different library. 1) Below […]