SShortSingh.
Back to feed

How One Developer Ships a Real Mobile App Using an Entirely Free Tech Stack

0
·1 views

A developer has built and deployed a fully functional mobile app with real users without incurring any monthly infrastructure costs. The stack combines Expo for mobile builds, Supabase for database and authentication, Render for background jobs, and Vercel for landing page hosting — all on free tiers. Each service comes with limitations, such as Supabase pausing idle projects after seven days and Render services experiencing slow cold starts after 15 minutes of inactivity. The developer works around these constraints using scheduled pings and strategic build timing rather than paid upgrades. The setup demonstrates that, as of 2026, free tiers from major cloud platforms are generous enough to support a production-grade mobile app from launch onward.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Generative AI Writes, Agentic AI Acts: Why the Difference Matters

A developer reflection sparked by an IBM/Coursera course on agentic AI draws a sharp line between generative and agentic AI systems. Generative AI takes a prompt and returns text — it translates, summarizes, or drafts code, but leaves no trace in any system. Agentic AI, by contrast, operates in a loop: it observes, decides, calls tools, and takes real-world actions like opening pull requests, calling APIs, or processing payments. The author warns that mislabeling generative outputs as 'agentic' is a common mistake, and that acting — unlike generating — carries genuine consequences. Security considerations such as least privilege, human-in-the-loop controls, and audit trails become essential once an AI model can write to the world, not just describe it.

0
ProgrammingDEV Community ·

LangChain vs LangGraph: Choosing the Right Orchestration Layer for AI Agents

A developer completing IBM's Agentic AI course on Coursera draws a practical distinction between LangChain, LangGraph, and IDE-based agent harnesses. LangChain uses a linear chain model — input, output, done — with no built-in loop, persistence, or human-in-the-loop support. LangGraph adds stateful nodes, conditional cycles, checkpointing, and pause-and-resume capabilities, making it suited for true agentic workflows. The author notes that using LangChain's agent shortcut does not eliminate the graph layer; the runtime still runs one under the hood. The key takeaway is that teams should define their flow's structure before picking a library, since a stateless invoke pipeline is not an agent, regardless of which tool is used.

0
ProgrammingDEV Community ·

Developer Builds Dubai Business Directory by Tiling City into 1,760 Grid Segments

A developer in Dubai built an open-source business directory toolkit after finding no existing tool could comprehensively browse or filter Google Maps data for an entire city. The core challenge was Google Maps' hard limit of roughly 200 results per query, which made a single API call insufficient to enumerate all businesses in a large city. To work around this, the developer divided Dubai into 44 geographic squares crossed with 40 business categories, creating 1,760 tile-and-category pairs that were crawled using SearchApi's Google Maps engine. A total of 1,400 API requests returned 15,246 unique businesses, with the pipeline using place_id as a stable deduplication key and GPS coordinates to reassign each business to its actual location. The MIT-licensed toolkit, deployed live at directory.pooyagolchian.com, was built as part of SearchApi's developer ambassador programme and is designed so that pagination depth is the primary cost variable.

0
ProgrammingHacker News ·

Study Compares CadQuery and OpenSCAD Performance for AI-Driven CAD Tasks

A benchmark study published on ModelRift's blog evaluates CadQuery and OpenSCAD, two popular open-source CAD tools, for use in agentic or AI-assisted design workflows. The comparison examines how well each tool performs when driven programmatically by automated agents rather than human users. CadQuery is a Python-based scripting library, while OpenSCAD uses its own declarative language, making them distinct approaches to code-based 3D modeling. The study aims to help developers and researchers choose the most suitable tool when building AI-powered CAD pipelines. The article attracted modest early attention on Hacker News with six points and no comments at the time of posting.

How One Developer Ships a Real Mobile App Using an Entirely Free Tech Stack · ShortSingh