Software engineer, web developer

Hi, I'm Jovert, a software engineer based in Manila, Philippines. I'm passionate about building web applications and learning new technologies. I love to travel as well, exploring the beauty of nature and experiencing different cultures.

Adding an RSS Feed in Next.js 13 (App Router)

We'll setup an RSS feed in Next.js while also using the new App Router. The rss npm package will be used to generate the feed in xml format, then we can render it in the browser

Multiple Dynamic Classes in Svelte Using a Custom Directive

Svelte has a nice `class` directive for dynamically adding classes but it lacks the ability to dynamically add multiple class names. Imagine if you use a utility first CSS framework like Tailwind, you can't possibly do that without opting to use ternaries

Running Cypress integration tests before deployment with Github Actions

Github Actions is indeed a very powerful CI / CD tool, now if you are using Cypress for end to end testing and you want to make sure that the integration tests are all passing before deployment, there is a Github action you can utilize to simplify your workflow.