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 […]
Reference- UI color schemes https://www.mockplus.com/blog/post/ui-color-schemes 100 color combinations and how to apply them to your designs https://www.canva.com/learn/100-color-combinations/ 12 Logo Color Combinations to Inspire Your Design https://www.tailorbrands.com/blog/logo-color-combinations
1 ) CSS Units – vh/vw, % CSS properties take “length” values, such as width, margin, padding, font-size, etc. 2 ) New Box Modal https://elad.medium.com/new-css-logical-properties-bc6945311ce7 3) The Viewport 4 ) Positioning How […]
My guess: In the use case of returning a value/reference from a function, I do feel return-by-reference in PHP is more efficient than return a value in JavaScript. […]