Fetch Product Details from SKU in Shopify

query getInventoryItems($afterCursor: String) { inventoryItems(first: 200, after: $afterCursor, query: “sku:${itemSku}”) { nodes { id sku tracked } pageInfo { hasNextPage endCursor } } }

Published
Categorized as Shopify

The core library for generate PDFs in the browser

 1. jspdf This is the core library that lets you generate PDFs in the browser (client-side). Key Features: Create PDF documents directly in the browser (no backend needed). Supports text, images, lines, rectangles, circles etc. Add fonts, font sizes, colors. Insert images (PNG, JPEG, WebP). Multiple pages: auto-create new pages when text overflows. Orientation &… Continue reading The core library for generate PDFs in the browser

What can I do with the Firebase Hosting emulator?

The Firebase Hosting emulator provides high-fidelity local emulation of Hosting services, providing much of the functionality found in production Hosting. The Hosting emulator lets you: Prototype your static sites and web apps without incurring storage or access charges Prototype, test and debug HTTPS functions before deploying to your Hosting site Test sites and web apps in containerized, continuous integration workflows. Choose a Firebase… Continue reading What can I do with the Firebase Hosting emulator?

Implementing Skeleton Loading in Next.js for a Table

Step 1: Project Structure (in an Existing App) Assume your app is already set up with the app/ directory. Add these files for a table page at /users: app/   users/     page.tsx       // Your main table page (fetches and renders data)     loading.tsx    // Separate skeleton file (called automatically… Continue reading Implementing Skeleton Loading in Next.js for a Table

Genie 3: Google DeepMind’s New World Model

Genie 3: Google DeepMind’s New World Model In August 2025, Google DeepMind unveiled Genie 3, the latest in its series of world models—AI systems that create interactive, simulated environments from text prompts. Genie 3 represents a leap forward, offering real-time interaction, long-horizon consistency, and environments that feel physically and visually coherent. What Makes Genie 3… Continue reading Genie 3: Google DeepMind’s New World Model

Published
Categorized as AI Tagged

Exploring NetSuite’s AI-Powered Forecasting Tools

NetSuite’s AI-powered forecasting tools are designed to transform traditional planning and budgeting processes by embedding intelligent, adaptive analytics directly into the ERP system. These tools utilize machine learning algorithms to analyze vast amounts of historical financial and operational data, identify patterns, and generate predictive models that evolve over time. Unlike static spreadsheets or rule-based forecasting,… Continue reading Exploring NetSuite’s AI-Powered Forecasting Tools

Published
Categorized as AI Tagged ,

Future of AI Chatbots: From Textual Guidance to Video Demonstrations

For years, AI chatbots have served as text-based assistants, providing users with answers, step-by-step instructions, and troubleshooting tips whenever they encounter difficulties. While this has greatly improved accessibility to knowledge, textual instructions often fall short when users need to perform complex tasks inside software applications such as Oracle NetSuite, ERP systems, or even specialized tools… Continue reading Future of AI Chatbots: From Textual Guidance to Video Demonstrations

Troubleshoot with your Browser’s Developer Tools

Accessing the JavaScript Console Open Chrome DevTools with Command+Option+I (Mac) or Control+Shift+I (Windows/Linux), then select the Console tab. This is your starting point for inspecting global objects and variables in SCA. Inspect the Global SC Variable SCA uses a global SC variable that holds site data. Type SC in the console to view its objects,… Continue reading Troubleshoot with your Browser’s Developer Tools

Building Cloud Functions as Services for Firestore in Firebase

Building Cloud Functions as Services for Firestore in Firebase  In the world of serverless development, Firebase has revolutionized how we build scalable apps with its seamless integration of authentication, real-time databases, and hosting. At the heart of many Firebase projects lies Firestore, a NoSQL document database that excels at handling structured data with real-time synchronization.… Continue reading Building Cloud Functions as Services for Firestore in Firebase

Published
Categorized as Next.Js

Monolith to Microservices: Building an Application

Introduction I built a Formula 1 application to manage Teams, Tracks, Drivers, and Races, starting as a monolithic Next.js + Payload CMS app. As my needs grew, I transitioned to a microservices architecture for better scalability, modularity, and autonomy. This article details my process—folder structure, code changes, challenges, and deployment—using my F1 app as an… Continue reading Monolith to Microservices: Building an Application