Web Development

  • Start a basic server using express

    Express is an amazing framework. We can start running a server by writing only 4 lines of code. After that, we can also set routes and assign responses if someone is requesting those routes. For now, let's spin up our basic server.

    Read More
  • Pseudo Elements and Pseudo Classes

    Understanding pseudo elements and pseudo classes is crucial to fully exploit the versatility and power of CSS. They provide a broad range of functionality that can bring your web designs to life with a level of detail and nuance that would be challenging to achieve otherwise. In this article, we’re going to delve into the […]

    Read More
  • Get values from PHP to Javascript

    When developing web applications, there are often times when you need to pass data from the server-side (PHP) to the client-side (JavaScript). While PHP and JavaScript are two separate programming languages running in different environments, there are a few techniques to efficiently share data between them. In this article, we’ll explore one of the most […]

    Read More