The First Dive in Multi-Threaded Patterns

Prefix Here’s a little side note from Chapter 6 - Multithreaded Patterns in this book: Multithreaded JavaScript. In this chapter, introducing some multi-threaded patterns: Thread Pool Mutex Ring Buffers Actor Model Thread Pool The thread pool is a very popular pattern that is used in most multithreaded applications in some form or another. A thread pool is a collection of homogeneous worker threads that are each capable of carrying out...

Sep 27, 2022 Published · Oct 3, 2024 Updated · 3 min · Inori Inuyama

E2E Testing Oriented Developing Process

One day, we got a mockup from designer. Then we start crafting the page. At first, we might work on making UI and UX of components. That’s the main part. E2E testing is not a concern at the moment. When developing, if we were luckily get the test case from QAs (or whoever wrote it), should we consider it when crafting our components? (And yeah only if we have enough...

Aug 27, 2022 Published · Oct 3, 2024 Updated · 3 min · Inori Inuyama