Blog
If I were not creating stuff in computers, I would either be writing or acting. I figured I could still write and share my thoughts - which is what I do here. I write about things I learn, things I find interesting, and things I think you might find interesting too. Mostly tech, but sometimes not.
Google is Broken in 2024 - Why I am Adding "Reddit" to My Searches
Coming towards the end of 2024, I’ve found myself using Google less effectively than I used to. For years, it’s been the default search engine for almost everything, but lately, things have changed. From irrelevant results to an overwhelming number of ads, it feels like Google is, well, broken. One trick I’ve been relying on is adding “reddit” at the end of my searches to get authentic, human-driven responses.
Create Mobile Apps with Nuxt and Capacitor
You can build your Nuxt app just the way you do, enjoy the DX, and then use Capacitor to build native apps for iOS and Android with the same codebase. All you need to do is update your config after you install Capacitor.
Creating attribute combinations in ecommerce apps - using recursive function
If you have ever purchased something online, let's say shoes, you probably have selected a particular colour and perhaps a size as well. Easy-peasy - you purchase a variant that you want. But the devs have to create a variant for every single combination of attributes. How to do that?
Creating a Formatted Currency Input Component in Vue.js
In this tutorial, we will create a custom currency input component in Vue.js that formats the input value as currency as the user types, but keeps the actual value numeric.