惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
M
MIT News - Artificial intelligence
美团技术团队
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
有赞技术团队
有赞技术团队
L
LangChain Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
S
SegmentFault 最新的问题
V
Visual Studio Blog
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
B
Blog
I
InfoQ

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I shipped my first iOS app in 30 days for $300. Here's th...
Paul Shilla · 2026-06-14 · via DEV Community

Paul Shilla

I take a lot of screenshots. The article I'll read later. The recipe I'll cook on Sunday. The movie name from someone's Instagram story. A job post, a product, a tender.

Most of them die in my camera roll.

So I built Chista — an iOS app that auto-imports every screenshot, classifies it with AI (Article, Product, Event, Reference, Media), and surfaces a one-tap action: Buy on Amazon, Add to Calendar, Reserve on OpenTable, etc.

It shipped on the App Store thirty days after I started, for about $300 in total cost. The interesting part wasn't the app. It was what the build revealed.

What I built

Chista is a native iOS app + Python backend.

  • iOS reads new screenshots in the background via PHPhotoLibraryChangeObserver, scoped to PHAssetMediaSubtype.photoScreenshot (so it literally can't see your other photos).
  • Each new screenshot gets OCR'd on-device with Apple Vision, then the image + OCR text get POSTed to the backend.
  • Backend sends the pair to OpenAI GPT-4o with a structured prompt that returns a CategorizationResult JSON: category, subtype, title, suggested action, extracted data (price, deadline, URL, etc.).
  • Result gets persisted and pushed back to the inbox via Supabase real-time.

That's the whole thing. The "magic moment" is just: you screenshot something, switch to Chista a few seconds later, it's already sorted with a contextual action button.

Stack

Layer Tool Why
iOS app Swift 5.10, SwiftUI, StoreKit 2 iOS 17+, modern surface
Backend FastAPI on Railway One-file ergonomics, fast cold starts
Database + Auth Supabase Postgres + JWT auth out of the box
AI OpenAI GPT-4o (Pro), gpt-4o-mini (Free) Tier-routed at categorization time
Push APNs via aioapns Direct, no Firebase middleman
Subscriptions StoreKit 2 + app-store-server-library Server-side JWS verification
Affiliate routing Custom matrix in Supabase tables Amazon Associates wired, more pending
Hosting (web) Cloudflare Pages Free, fast, never goes down

No frameworks I wouldn't reach for again.

What it cost

Line item Cost
Apple Developer Account $99/yr
Domain (chista.app) $10/yr
OpenAI API credits $100 (one-off prepaid)
Cloudflare (web + DNS) free
Railway (backend) $5/mo trial credit, then hobby tier
Supabase free tier
Everything else mostly free tiers

Total to ship v1: about $300.

The hardest bug I shipped through

Apple App Review's reviewer kept hitting INVALID_CERTIFICATE when validating in-app purchase JWS payloads on our backend. We chased it through four library versions:

app-store-server-library==1.8.0  → INVALID_CERTIFICATE
app-store-server-library==1.9.0  → INVALID_CERTIFICATE
app-store-server-library==2.0.0  → INVALID_CERTIFICATE
app-store-server-library==3.1.2  → INVALID_CERTIFICATE

I enabled online cert checks. I bundled app_apple_id. I made the verifier environment switch independently from APNs. Nothing worked.

The actual problem: the library has a constructor like this:

SignedDataVerifier(
    root_certificates=[],   # ← THIS
    enable_online_checks=True,
    environment=Environment.SANDBOX,
    bundle_id="com.chista.app",
    app_apple_id=6771318695,
)

I assumed root_certificates=[] meant "use Apple's bundled roots." It doesn't. The library ships with zero root CAs. An empty list means "trust nothing." Every Apple-signed JWS fails because the cert chain has no trust anchor.

The fix: download Apple's Root CA G2 and G3 directly from apple.com/certificateauthority, check them into the repo, and pass the bytes:

cert_dir = Path(__file__).parent.parent / "data" / "apple_certs"
root_certs = [
    (cert_dir / "AppleRootCA-G3.cer").read_bytes(),
    (cert_dir / "AppleRootCA-G2.cer").read_bytes(),
]

SignedDataVerifier(
    root_certificates=root_certs,
    enable_online_checks=True,
    environment=env,
    bundle_id=bundle_id,
    app_apple_id=app_apple_id,
)

One line of additional config, ~2KB committed to the repo, problem solved.

If you're integrating Apple's library and hitting this: the empty default is the bug, not your environment. The official docs imply bundled roots; the code does not.

On AI-assisted development

I built Chista with heavy AI assistance — drafting Swift views, generating prompt templates, debugging gnarly things like the cert chain above. It would be dishonest to tell this story without saying so.

What that actually changed:

  • Things that would have been 4-hour debugging sessions became 20-minute conversations. Not because the AI solved them — because pasting an error message into a chat and getting three hypotheses to test beats reading Stack Overflow.
  • The cost of trying an architecture went from a weekend to a few hours. I rewrote the affiliate routing twice. Once in env vars (clean, inflexible), once in DB tables (verbose, manageable). The second version won. I wouldn't have explored both five years ago.
  • It does not write the app for you. Every non-trivial decision — what to categorize as a "product" vs a "reference," how to handle the Photo Library re-grant edge case, how to gate sensitive content from affiliate routing — was still mine to make. The AI accelerates execution. It does not replace judgment.

That last point is where I think the whole industry is heading.

The thesis

A decade ago, the hard part was writing software.

Today, the hard part is deciding what should exist.

The cost of creation is collapsing. The time from idea to first version is shrinking. The number of people who can build is exploding. None of this is news on dev.to — but watching it happen in real time on my own project felt different than reading about it.

Software is starting to behave like content. The bottleneck is moving from can you build this to should this exist, and is it actually better than what's already there.

That's a great problem to have.

Lessons learned

  1. The cheapest dependency is one that already trusts the right thing. Apple's library shipping with zero root CAs cost me ~6 hours of debugging. A 2KB file solved it. Audit the defaults of every security library.
  2. Sandbox testing is the unreliable narrator. TestFlight + Sandbox testers + propagation delays + cached storefronts = 12 hours of "why won't products load." Local StoreKit Configuration files let you skip 80% of that during dev. Switch back to real Sandbox only when you absolutely need server-side verification.
  3. Move config from env vars to DB tables earlier than you think. I started with AMAZON_ASSOCIATES_US=... style env vars for affiliate keys. Six countries in, I moved them all to a affiliate_keys Postgres table. Should have done it on day one.
  4. OCR locally, classify in the cloud. Running Apple Vision OCR on-device cut ~900 vision tokens per screenshot from the OpenAI bill. The hybrid is significantly cheaper than a pure cloud pipeline.
  5. Ship the unsexy quota system early. Day 1 free tier limits + cost ceilings, not "we'll add it later." Pre-emptive limits saved me from a half-dozen runaway-cost scenarios in testing alone.

Try it

Chista is on the App Store. Free tier covers 30 screenshots/month. Pro is $4.99/mo with a 14-day trial.

I'd love to hear what's in your camera roll graveyard.


This post mirrors a version on chista.app. The canonical link is set so dev.to credits the source domain for SEO.