Posts

Free API

Free API List In today's digital world, APIs (Application Programming Interfaces) are essential tools that allow developers to access data, services, and functionalities from various sources. Whether you're building a weather app, a travel site, or just looking to explore interesting data, there are numerous free APIs available to help bring your projects to life. In this blog, we'll explore a curated list of free APIs across different categories, with links and brief descriptions to get you started. 1. Geolocation and IP Address APIs Understanding where users are connecting from is fundamental for personalization and analytics. ipapi Provides detailed IP address information, including location, country, city, and more. Example: https://ipapi.co/8.8.8.8/json/ ipinfo.io Offers IP geolocation data with easy-to-use JSON responses. Example: https://ipinfo.io/124.155.214.47/json ipwhois.app Simple IP geolocation service with additional network info. Example: https://ip...

AI AGENT Prompt Copy Template

Click to Copy Copy

AI Test

Click to Copy Copy

Prompt Copy Template

Click to Copy Copy

Full Guide: How to Install Hestia Panel on Google Cloud Platform (GCP) – For Juniors

📝 Full Guide: How to Install Hestia Panel on Google Cloud Platform (GCP) – For Juniors 🛠️ What You’ll Learn How to set up a GCP virtual machine How to install and configure Hestia Control Panel Basic tips on managing a server through Hestia 1. 🔧 Prerequisites A Google Cloud account (free tier is okay) Basic knowledge of SSH and terminal commands Domain name (optional but helpful) 2. 🏗️ Create a Virtual Machine on GCP Go to Google Cloud Console Click on VM Instances → Create Instance Choose: Name: hestia-vm Region: Your preferred region Machine type: e2-micro (free tier) or higher Boot Disk: Ubuntu 22.04 LTS Check Allow HTTP and HTTPS traffic Click Create 3. 🔌 Connect to Your VM Use SSH from the GCP console or: gcloud compute ssh hestia-vm 4. 🧰 Install Hestia Panel Update the system: sudo apt update && sudo apt upgrade -y Download the installer: curl -O https://raw.githubusercontent.com/hestiacp/hestiacp/main/install/hst-install....

Deploying a Node.js Project with HTML, CSS, and JavaScript on Google Cloud (GCP)

Deploying a Node.js Project with HTML, CSS, and JavaScript on Google Cloud (GCP) This guide explains how to set up and run a Node.js project on a Google Cloud Platform (GCP) Virtual Machine (VM) instance, configure the firewall for external access, and manage file transfers using FileZilla. Step 1: Set Up a GCP Virtual Machine (VM) Log in to Google Cloud Console : Go to Google Cloud Console . Create a Compute Engine VM Instance : Navigate to Compute Engine → VM Instances . Click Create Instance . Configure the instance: Name : nodejs-server Region : Choose the nearest location. Machine type : e2-medium (recommended for small projects) Boot disk : Click Change . Select Ubuntu 22.04 LTS . Click Select . Firewall : Check Allow HTTP traffic and Allow HTTPS traffic . Click Create . Note the External IP Address : After the VM is created, note its External IP (you’ll need this later). Step 2: Connect to the VM via SSH Open the SSH Terminal : In Google Clo...