OWOm Walzadeinmobile-dev-blog.hashnode.dev·May 19 · 8 min readExpo Router vs. React Navigation: Which One Should You Use in 2026?If you have ever built a React Native app, you know the dread of opening a Navigation.js file only to find a 500-line monolith of nested <Stack.Navigator>, <Tab.Navigator>, and <Screen> components. Ma00
OWOm Walzadeinmobile-dev-blog.hashnode.dev·May 19 · 10 min readMoving Beyond the Monolith: How Tech Giants Would Build with Expo Router TodayRemember when React Native development felt like the Wild West? You’d spin up a project, throw all your components into a /components folder, handle navigation with a deeply nested, brittle configurat00
OWOm Walzadeinlinux-insight.hashnode.dev·May 10 · 4 min readThe Ghost in the Machine: A Forensic Tour of the Linux FilesystemMost users treat Linux like a black box—input a command, get an output. But if you peel back the terminal, you realize that in Linux, everything is a file. To understand the OS, you don't look at the 00
OWOm Walzadeinreact-dev-new.hashnode.dev·May 8 · 6 min readUnderstanding the Virtual DOM in ReactModern web applications need fast and smooth user interfaces. Users click buttons, type into forms, update lists, switch pages, and expect everything to happen instantly. But updating the browser’s DO00
OWOm Walzadeintech-content.hashnode.dev·May 2 · 3 min readWhat is a Nested Array?In JavaScript, an array can hold any data type, including other arrays. When an array contains another array, we call it nested. Imagine you are organizing a shopping list: const shoppingList = ["Appl00