×
Jinxia Li
I/O multiplexing and JavaScript Event Loop

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 […]

Read More
Application-level Concurrency (Concurrent Programming)

#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 […]

Read More
Dataflow through services: REST an PRC

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

Read More
Tree Structure is everywhere

Tree structure is everywhere: 1 ) Site map (structure of web pages) 2 ) DOM tree 3 ) folder structure in a computer 4 ) Process tree in […]

Read More
How the HTML and CSS code interface with JavaScript code? And so on so forth

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 […]

Read More
Style guide for building a responsive website

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 […]

Read More
Using the ::before and ::after pseudo-elements as design elements

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 […]

Read More
JavaScript Event Loop

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 […]

Read More