Author: sarnathindia

My name is Rohit Vadaviya and I am Programmer, Analyst And Blogger based in Baroda, India. I try to share some awesome scripts on my blog which I personally feel are useful for me as well as all developers, programmers and designers while working on any project.

Node.js is a popular JavaScript runtime environment that allows developers to build fast, scalable, and efficient applications. If you’re a Windows user and want to use Node.js for your projects, you’ll need to install it on your machine. In this blog post, we’ll walk you through installing Node.js on your Windows machine. How to Install Node.Js on Windows Machine Step 1: Download the installer The first step to installing Node.js on your Windows machine is downloading the installer from the official Node.js website. You can access the website by visiting https://nodejs.org. Once you’re on the website, click the “Download” button to…

Read More

Uploading files or images is a common task in web development. In this tutorial, we will learn how to upload files or images using PHP and jQuery with the progress bar. Uploading files with progress bar helps users to track the progress of the upload process and also gives them an idea of how much time is left for the upload to complete. Prerequisites Before we start, make sure you have the following: PHP installed on your system A web server like Apache or Nginx Basic knowledge of HTML, CSS, and JavaScript jQuery library installed on your system Image/File Upload…

Read More

In today’s digital age, displaying locations on a map has become a crucial component of web applications. With the increasing popularity of location-based services, users expect to see their desired locations on maps, which makes it important for developers to integrate mapping functionality into their web applications. One popular tool for displaying locations on maps is the Google Maps API, which provides developers with a set of tools to embed maps into their web applications. In this blog post, we will discuss how to use the Google Maps API to display a location on a map based on an address.…

Read More

A profile picture is one of the most important aspects of an online identity, and having a rounded profile picture can add a more professional touch to your online presence. In this tutorial, we will show you how to create a rounded profile picture using pure CSS. Step 1: HTML Markup First, let’s create the HTML markup for our profile picture. We will create a container for the profile picture and an image tag inside the container. We will also give the container a class of “profile-pic” so that we can style it with CSS later on. HTML<div class="profile-pic"> <img…

Read More

CSS Media Queries are a feature of Cascading Style Sheets (CSS) that allow you to apply different styles to a website or web application based on the characteristics of the device or screen that is being used to view it. This can include the size of the screen, the orientation of the device, the resolution of the screen, and many other factors. Using media queries, you can create different layouts and styles for different devices, such as desktop computers, laptops, tablets, and mobile phones. This allows you to create responsive web designs that adapt to different screen sizes and provide…

Read More

Today, we’re going to explore the fascinating world of CSS wave animation. Cascading Style Sheets (CSS) is an essential component of web development that enables designers to style and layout web pages. With CSS, you can create dynamic and interactive web pages that engage users and enhance the user experience. One of the most exciting aspects of CSS is the ability to create animations that add life and movement to your website. In this post, we’ll walk you through the process of creating a beautiful wave animation using CSS. We’ll cover the essential concepts of CSS animation, including keyframes, transforms,…

Read More

CSS skeleton loading is a popular technique used to improve the user experience on websites. This technique involves displaying a basic layout of the page before the actual content is loaded. This helps to reduce the perceived loading time and keeps the user engaged. In this article, we’ll take a look at 10+ CSS skeleton loading examples with source code. CSS Skeleton Loadings Example Simple Skeleton Loading This example uses a simple skeleton loading animation with a gray background and a white border. The animation is created using CSS animations and transitions. Source Code: CSS<div class="skeleton"> <div class="skeleton-box"></div> </div> .skeleton…

Read More

Hello Friends, Recently i discovered a tool by which we can create desktop application environment instantly for any website. If you’re a frequent user of a website, you might find it more convenient to have it as a desktop application rather than having to open it in a browser every time. Fortunately, with the help of NodeJS and a tool called nativefier, you can easily create a desktop application from any website. In this tutorial, we’ll go over the steps to convert any website into a desktop application using nativefier. Prerequisites NodeJS installed on your computer Basic knowledge of the…

Read More

RSS (Really Simple Syndication) is a popular format used to publish and share content from websites, blogs, and other online platforms. RSS feeds allow users to stay updated with the latest content from their favorite websites without having to visit each site individually. In this tutorial, we will explore how to read an RSS feed of a website using PHP. Read RSS feed of website (blog) using php Step 1: Find the RSS feed URL The first step is to find the RSS feed URL of the website you want to read. Most websites have an RSS feed, and you…

Read More

Node.js and PHP are two of the most popular programming languages for web development. Both languages have their own unique features and advantages. In this article, we will compare Node.js and PHP and try to answer the question, which is better for web development: Node.js or PHP? Overview of Node.js and PHP Node.js is an open-source, cross-platform, server-side JavaScript runtime environment that allows developers to build scalable, high-performance applications. It was developed by Ryan Dahl in 2009 and has gained significant popularity since then. PHP is a server-side scripting language that is designed to create dynamic web pages and applications.…

Read More