Works

Here are some projects I have completed and am currently working on, and might be some that I never end up finishing 🤣.

  • Tasks List

    In Progress

    A task list application for storing work-related tasks and notes. Unlike a simple to-do list application this will be able to add categories and priorities for sorting and reporting purposes.

  • Portfolio v3

    Completed

    I am currently updating my portfolio website after three years of working as a front-end developer, utilizing ReactJs and NextJs.

  • Gatsby + Sanity Template

    Completed

    I decided to create the blog with GatsbyJS and SanityIO as the CMS for the post.

📓 Latest Posts

  • TS Basic: Typing Errors in Try-Catch

    March 24, 2025

    Sometimes you don’t really know what error your backend or API is providing so Typescript will question the type on your try...catch block your using so this are the different types you can use.

  • TS Basic: Utilities

    March 19, 2025

    Type utilities you can use to transform types or make them more reusable. These are set of built-in generic types.

  • TS Basic: Narrowing

    February 26, 2025

    Narrowing refers to the process of refining the type of a variable or expression based on certain condition. It’s allow us to filter more specific assertions about the type of a value enabling better type checking.

  • TIL: text-decoration-offset

    October 22, 2024

    CSS property that add spacing on your underlined text.

  • TS Basic: Type VS Interface

    September 19, 2024

    When do we use type vs interface? Which should we use? When do we use type and interface? And why I’m starting my post like this? I read too many self-help books I guess.

  • TS Basic: Typing Promises and Async Request

    September 13, 2024

    What if our data is coming from an API? How do we ensure we have type-safe on our `async` function data?