Nashe Omirro

Nashe Omirro @nasheomirro

About: I spent too much time hyper-fixated on how to program that I fell too far down the rabbit hole to make it back out. My life is now tied to being a software developer. And it's web development no less.

Location:
Philippines
Joined:
Jan 24, 2022

Nashe Omirro
articles - 13 total

My first deep dive into creating open source projects

Have you ever had that feeling of building something from scratch? The temptation of proving yourself...

Learn More 1 1Apr 27

making tailwind components more viable with "dip:"

So before diving into this, this code straight up isn't mine and I just found it on github written by...

Learn More 0 0Mar 20

Working with Astro and Alpine

A modern version of templating engines and Jquery. In this age of high-level frameworks, this stack...

Learn More 1 1Mar 2 '24

Thoughts on utility-first approaches in CSS

With Tailwind reaching 6,000,000+ weekly downloads on NPM, as well as becoming my personal go-to for...

Learn More 27 23Feb 17 '24

why using both mobile-first and desktop-first approach isn't bad practice

So I actually use both "max-width" queries and "min-width" queries. Why use both...

Learn More 0 0Dec 28 '23

Having fun with svelte stores using store proxies

So imagine this one big global store with lots of nested properties, how would you write a way to...

Learn More 2 1Nov 17 '23

Choosing what to spend your time on

Recently I've been stuck trying to start learning something new. I'm self-thought and am currently...

Learn More 2 2Oct 21 '23

Handling view types from supabase with typescript

When you have a view on supabase and grab the types using the supabase cli, you'll soon find out that...

Learn More 5 0Jun 13 '23

Hiding utility functions in Supabase

In Supabase, it is often useful to have utility functions to use in RLS Policies to re-use common...

Learn More 2 0May 23 '23

Understanding the react dev environment for beginners

If you're like me you probably made the mistake of jumping straight into react after you've gotten...

Learn More 3 0Jan 13 '23

Making polymorphic component implementations faster

👋 Hey if you're looking to add polymorphic components to your project, why not try react-polymorphed,...

Learn More 0 0Dec 25 '22

Creating fast type-safe polymorphic components using render props

UPDATE: After a few weeks of researching more about polymorphic components and other implementations,...

Learn More 3 0Nov 16 '22

Can you solve this reference problem?

let foo = () => {} let bar = () => foo foo = bar foo === bar() // ??? Enter fullscreen...

Learn More 1 0Jul 14 '22