Freelancers using LangChain in GujaratFreelancers using LangChain in Gujarat
Full Stack AI Engineer |AI Agents| Generative AI |Automation
Full Stack AI Engineer |AI Agents| Generative AI |Automation
Automation engineer building full-stack business systems
Automation engineer building full-stack business systems
I build AI systems & tech solutions for businesses.
6
Followers
I build AI systems & tech solutions for businesses.
AI Automation Specialist β€” I build AI workflows that ship
New to Contra
AI Automation Specialist β€” I build AI workflows that ship
Cover image for TACTICAL DIMENSION is a 10-screen
TACTICAL DIMENSION is a 10-screen cinematic military HUD interface built entirely with Google Stitch. Inspired by dark tactical aesthetics, the project features a custom animated boot sequence, targeting ring systems, a live global logistics map, encrypted comms terminal with real-time decryption animation, sensor dashboards, diagnostics panels, and a final void sequence β€” all connected into one navigable prototype. The design system is locked across all 10 screens: void black #02040E, amber #FF8C00, cobalt #00A2FF, Bebas Neue + Space Mono. Every screen was generated and iteratively refined inside Stitch β€” moving from a single descriptive prompt to a fully interactive, motion-rich interface in one session. ============================================================= How Stitch was used by ME ? Google Stitch was the core tool for every stage of this project: STREAMING GENERATION I started with a single detailed prompt describing the tactical aesthetic, color system, and layout. Stitch streamed the full interface directly to the canvas in real time β€” letting me see the design direction immediately and course-correct early without wasted effort. IN-PLACE AI EDITS This was the game-changer. Instead of regenerating screens from scratch, I used Stitch's in-place edit feature to refine individual elements β€” adding HUD overlays, enhancing targeting rings, fixing layout issues, and layering motion effects β€” all while preserving the existing design. Every screen went through 2-4 rounds of in-place refinement. ITERATION WORKFLOW The canvas became a living design document. I could see all 10 screens side by side, compare iterations (old vs new shown simultaneously), and make decisions fast. Stitch's ability to show before/after versions on the same canvas made the iteration loop extremely tight. EXPORT + DEPLOYMENT Used Stitch's built-in Netlify export to deploy each screen individually, then connected all 10 into a unified prototype with a custom boot sequence and navigation system. DESIGN CONSISTENCY Stitch maintained the amber/cobalt/void color system and Space Mono + Bebas Neue typography automatically across all 10 screens β€” something that would have taken hours to enforce manually. ============================================================= My Feedback on Stitch Stitch is the fastest path I've found from idea to interactive interface. What works brilliantly: β€” Streaming generation to canvas feels genuinely exciting. Watching the design appear in real time changes how you think about iteration. β€” In-place AI edits are the killer feature. Clicking an element and describing what to change β€” without losing everything else β€” is exactly how creative tools should work. β€” The canvas as a workspace (seeing all screens together) gives a bird's-eye view that Figma-style tools miss entirely. What I'd love to see next: β€” Video file upload support (not just images) for video backgrounds β€” Multi-screen prototype linking built directly into Stitch β€” One-click full multi-page site deploy (not screen by screen) β€” More control over animation timing and easing in generated motion Overall: Stitch cut my design-to-prototype time by roughly 80%. The combination of AI generation + in-place editing + instant export is a workflow that genuinely didn't exist before. Impressive. ============================================================= Live Site : https://tactical-dimension-googleai.netlify.app/ Live Site v2 : https://tactical-dimension.netlify.app/ Stitch Project : https://stitch.withgoogle.com/projects/15697475248820729706 X : https://x.com/NDDimension/status/2062110075444203533?s=20 LinkedIN : https://www.linkedin.com/posts/dhanraj-sharma-nddimension_googlestitch-builtwithstitch-uidesign-ugcPost-7467876011657863168-i0Ep/?utm_source=social_share_send&utm_medium=member_desktop_web&rcm=ACoAAFzn9PQBrwaChcRrWWQQVV5SA6r16Jm6fP0
2
2
130
Senior Full Stack Developer | AI Agents | React, Node.js
5.0
Rating
5
Followers
Senior Full Stack Developer | AI Agents | React, Node.js
Building Scalable Software That Solves Real Business Problem
5.0
Rating
2
Followers
Building Scalable Software That Solves Real Business Problem
Cover image for I designed and built Pristine's
I designed and built Pristine's entire digital operations platform, from database architecture and role-based workflows to a production-deployed web suite and an AI analytics layer. The challenge was replacing a ceramic processing plant's paper-and-spreadsheet production logs with a system that floor operators would actually use, while giving management the traceability and insight the paper trail never could. Every decision focused on data integrity, least-privilege security, and keeping the interface simple enough for shift operators to work quickly. I built four services around a single PostgreSQL schema. The operator app handles the full production lifecycle: raw material intake, drying plant shifts, multi-section ball mill batch entry, quality control, and finished-goods inventory, with Excel export throughout and navigation that adapts to each of eight distinct plant roles. A modular Express and Prisma API enforces that access control at the route level. A separate React-Admin console keeps master data (mills, grades, recipes, suppliers, users) out of the operator's way. The most important piece was traceability. I designed a quality control gate that sits between production output and inventory. QC records are created automatically when a batch completes, reviewed by an inspector, and only generate an inventory entry if quality passes. Every finished bag carries an auto-derived lot number encoding its production date, flow rate, monthly sequence, and bag count, so any outbound shipment can be traced back through inventory and QC to the exact mill batch that produced it. On top of that I built an AI analytics agent that lets managers query the plant in plain English, architected around a zero-data-to-LLM guarantee. The model only ever sees the database schema and the question, never a row of production data. Five independent layers enforce it: two least-privilege Postgres roles separating read-only queries from insert-only auditing, a sqlglot AST guard that rejects any non-SELECT statement, a per-role table allowlist, the prompt design itself, and a full audit log of every interaction. Answers stream to the browser over Server-Sent Events through a LangGraph pipeline that routes, guards, plans the query, executes, then explains the result in business terms. Tech Stack: React 19, TypeScript, Ant Design, TanStack Query, Tailwind CSS v4, Node.js, Express, Prisma, PostgreSQL, React-Admin, MUI, Python 3.12, FastAPI, LangGraph, OpenAI, AWS EC2, Nginx, Supabase, Vercel.
1
98
Cover image for I designed and built the
I designed and built the Pristine Admin console, the back-office application that controls all master data behind a manufacturing plant's production system. The challenge was that master data in a factory setting is unforgiving. A mistyped grade name or a deleted material silently breaks months of historical production records, so the panel had to make the right action easy and the destructive action impossible. I built it as a deliberately constrained interface: records can be deactivated but never deleted, every write is validated on both sides, and access is restricted to admin roles at the authentication layer rather than just hidden in the UI. The console manages seven resources across the plant: ball mills, ball mill grades, raw material grades, materials, suppliers, users, and raw material recipes. The recipe builder was the most interesting piece. Each raw material grade needs a formula defining how many kilograms of each material go into one batch, so I built a nested form that pulls live material options, enforces a single recipe per grade by filtering out grades already configured, and validates quantities inline. Because the backend keys recipes by grade rather than by their own ID, I mapped the resource identity in the data layer so the standard list, create, and edit flows work transparently over a non-standard endpoint shape. Most of the engineering went into the data provider. The existing API returns enveloped responses and full collections rather than paginated ones, so instead of reshaping a working production API I wrote a provider that adapts to it: a client-side query engine handling full-text search, boolean filtering, multi-field sorting, and pagination, plus a per-resource field allowlist that strips any key the backend validators would reject before a request goes out. Delete operations throw by design, pointing the user to deactivation instead. Authentication runs through the same JWT service as the operator app, but the console rejects any account without an admin role at login and re-verifies that on every route change, clearing the session automatically on a 401 or 403. I finished it with a custom MUI theme and layout: an indigo and teal palette, a gradient-washed background, softened surfaces and radii, and a collapsible sidebar reworked to show clean centered icons rather than clipped labels when narrowed. Tech Stack: React 19, TypeScript, React-Admin 5, MUI 7, Tailwind CSS v4, Vite, Vercel.
0
39
Cover image for I worked as a Software
I worked as a Software Engineer on DripShop, a large-scale live-streaming e-commerce platform that enables creators and businesses to sell products through interactive live video experiences. My work focused on building production-ready features that supported high-traffic user journeys while maintaining performance, reliability, and a seamless shopping experience. The platform combines live video, real-time user interactions, payments, inventory management, and order processing into a single experience. My responsibility was to translate complex product requirements into scalable, maintainable frontend and full-stack solutions, collaborating closely with designers, backend engineers, product managers, and QA throughout the development lifecycle. I contributed to the development of customer-facing experiences across the platform, building reusable React and Next.js components, integrating backend APIs, implementing responsive interfaces, and improving application performance. Alongside feature development, I resolved production issues, optimized existing workflows, and helped ensure new releases met high standards for usability and reliability. Working on a product used by thousands of shoppers required careful attention to performance, state management, and code quality. I participated in code reviews, collaborated on architectural decisions, and followed modern engineering practices to keep the application scalable and maintainable as new features were introduced. This project strengthened my experience building production-scale web applications, working within a large collaborative engineering team, and delivering features that directly impacted real users and business outcomes. Tech Stack: React, Next.js, TypeScript, Node.js, GraphQL, REST APIs, Tailwind CSS, Git, GitHub Actions, Vercel, Agile Development.
0
53
Backend Engineer | DevOps | Building AI apps | MLOps
6
Followers
Backend Engineer | DevOps | Building AI apps | MLOps
Full stack Web | AI | Technical Writer
Full stack Web | AI | Technical Writer