Blog

T3 Large Pricing Overview

User Aws hosting t3 large instance price Assistant The AWS EC2 t3.large instance is a general-purpose, burstable performance instance featuring 2 vCPUs and 8 GiB of memory. It's well-suited for workloads like web applications, development environments, and small databases. ### 💰 Pricing Overview #### On-Demand Pricing (Asia Pacific – Mumbai Region) – **Hourly Rate**: Approximately […]

Responsive Weather App

User import React, { useState } from "react"; import './App.css' const App = () => { const [city, setCity] = useState(""); const [weather, setWeather] = useState(null); const [loading, setLoading] = useState(false); const [error, setError] = useState(null); const fetchWeather = async () => { if (!city) return; setLoading(true); try { const apiKey = "befc7401a9421bbb0ea7cf26e8b75bb3"; const url […]

JavaScript Destructuring Explained

User destrcturing in js Assistant **Destructuring in JavaScript** is a convenient way of extracting values from arrays or properties from objects into distinct variables. It helps write cleaner and more readable code. — ### 🔹 1. **Array Destructuring** const numbers = [1, 2, 3]; // Destructure const [a, b, c] = numbers; console.log(a); // 1 […]

Slider Decimal Support Fix

User Add New Feed URL <style> .price-input { width: 100%; display: flex; margin: 30px 0 35px; } .price-input .field { display: flex; width: 100%; height: 45px; align-items: center; } .field input { width: 100%; height: 100%; outline: none; font-size: 19px; margin-left: 12px; border-radius: 5px; text-align: center; border: 1px solid #999; -moz-appearance: textfield; } input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button […]

Community Store Category Issue

User community_store concrete cms product category add option not showing "No pages have been used to categorise products" Assistant The error message: > **"No pages have been used to categorise products"** in **Community Store for Concrete CMS** typically means that no product categories have been set up using **Concrete pages**, which Community Store uses to […]

Concrete CMS Package Setup

User Create concrete cms 9 package 1- crud for add title and unique feed url 2- then create front end controller that will ge erate xml based on above unique url Assistant Here's a complete setup for a **Concrete CMS 9 package** with: 1. **Dashboard CRUD** to manage `title` and unique `feed_url`. 2. **Frontend controller** […]

LocalStorage Mobile Issue Fix

User × DESIGN YOURDREAM BATHROOM with Emma Butler of White Meadow Interiors Join us at our Sandyford Showroom for an exclusive in-store event featuring 1-on-1 design consultations with Emma Butler and a live Bathroom Design Q&A session. Saturday 24th May, 9am – 5pm House of Tiles Sandyford Apply for your 1-on-1 design consultation <style> #popup-overlay […]

HTML CSS Popup Design

User design ths popup in html and css ! Assistant Here’s how you can create an HTML + CSS popup similar to the design in the image you provided: — ### ✅ **HTML (`popup.html`)** <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Popup</title> <link rel="stylesheet" href="style.css" /> </head> <body> <div class="popup"> […]

SiteGround OTP Request

User Hi sir , as we are currebtly working on house of tiles (mckenna), for that I need siteground access , and when I'm lgging in its asking for otp ! could you please share? rephrase Assistant Sure! Here's a more polished version of your message: — **Subject:** Request for SiteGround Access – OTP Required […]

React Projects Roadmap

User Suggest projects in react from beginner to immediate ! suggest learning topics before that so that , I cannot take help ! Assistant Great approach! To build React projects **without needing help**, it's smart to first *master core concepts*. Here's a structured path: — ## ✅ **Topics to Learn Before Starting Projects** ### 🔰 […]