RReact Read More 5 minute read React 18 features: batching, useTransition and useDeferredValuebyFabian AlejandroJune 27, 2023 Reading Time: 5 minutes A Fresh Look For React I love React applications, but there is always the problem that in applications…
SSoftware Engineering Read More 2 minute read Using Web Workers to Handle Memory Workload While Processing a Data Streambyfernando.trasvinaJune 20, 2023 Reading Time: 3 minutes Introduction When you are processing a data stream gradually over time, you usually don’t want to keep all…
JJavascript Read More 5 minute read Parallelism in Javascript: A Quick Introductionbyfernando.trasvinaApril 6, 2023 Reading Time: 5 minutes JavaScript is a single-threaded language, which means it can only execute one task at a time. However, Web…
JJavascript Read More 4 minute read Web Workers on Javascript for Intensive CPU Tasksbyfernando.trasvinaApril 4, 2023 Reading Time: 4 minutes In this article we will see how to use Web Workers to perform intensive CPU tasks in the…
RReact Read More 5 minute read Expo vs React Native CLI in 2023byArmando DuranMarch 8, 2023 Reading Time: 5 minutes In the React Native community, there are two popular ways to create an app, you can use the…
NNode.js Read More 3 minute read List of files processing in Node.jsbyfernando.trasvinaFebruary 16, 2023 Reading Time: 3 minutes Frequently you find yourself processing a list of files to read their content, process them, and produce results?…