My Blog

Deploy Astro.js Website to GitHub Pages using BUN and GitHub Actions
astrojs

Deploy Astro.js Website to GitHub Pages using BUN and GitHub Actions

In this blog post, we'll guide you through the process of deploying an Astro.js website to GitHub Pages using BUN as your package manager and GitHub Actions for automation.

Running Sass in a Vite project
sass

Running Sass in a Vite project

Modern web development is all about speed and efficiency, and two tools that exemplify this philosophy are SASS and Vite. We will walk you through the steps to run SASS on Vite.

Asynchronous JavaScript: Exploring Promises with Real-World Examples
javascript

Asynchronous JavaScript: Exploring Promises with Real-World Examples

Asynchronous programming is a crucial skill for any JavaScript developer. Promises, a feature introduced in ES6

Asynchronous JavaScript: Simplifying Complex Tasks with Async/Await
javascript

Asynchronous JavaScript: Simplifying Complex Tasks with Async/Await

Async/Await, introduced in ES2017, has become a game-changer in asynchronous programming. This feature allows developers to write asynchronous code in a more synchronous and readable manner.

Asynchronous JavaScript: Promises, Async/Await, and Callbacks
javascript

Asynchronous JavaScript: Promises, Async/Await, and Callbacks

Asynchronous programming is a crucial aspect of JavaScript that allows developers to execute tasks concurrently, without blocking the main thread.

Spread Operator and Rest Operator in Javascript
javascript

Spread Operator and Rest Operator in Javascript

The Spread operator, represented by three dots ( ... ). The Rest operator, also represented by three dots ( ... ), works in the opposite way to the Spread operator.