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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
S
SegmentFault 最新的问题
博客园 - Franky
博客园_首页
T
Tailwind CSS Blog
雷峰网
雷峰网
罗磊的独立博客

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 didn't win the gemma 4 challenge but here's what i actu...
Ayush Shekhar · 2026-06-20 · via DEV Community

Ayush Shekhar

Gemma 4 Challenge: Write about Gemma 4 Submission

Results came out today. ScreenMind didn't make it.

i'll be honest, i refreshed that page a few times hoping i misread it. i didn't. so okay, that's that.

then i did the thing you're supposed to do and actually read the winners instead of sulking. and i'm glad i did,because it answered a question i didn't know i had.

What won

go look at them, they're good:

  • LIKAS, an offline disaster app for the philippines that keeps working when the cell towers go down
  • AccessLens, basically eyes for blind and low-vision users, on-device
  • a local postgres triage co-pilot someone built because HIPAA means they literally can't paste their db panic into chatgpt at 3am
  • a phone agent that runs fully offline, peer to peer, so no prompt ever hits a server

every single one of these is a "here's a person who was stuck, here's how i unstuck them" story.

What i built

ScreenMind is a privacy-first take on microsoft recall. it watches your screen, understands what you're doing with gemma 4, and lets you search and chat with your own history later. "what did aachii say on discord" and it pulls up the actual message.
The engineering, i'm proud of it. it runs all three of gemma 4's modalities, vision audio and reasoning, on a 4gb gtx 1650. that constraint was the whole game. to make continuous analysis survivable on a card that small i had to build:

  • a perceptual-hash cache so it doesn't re-analyze the same vs code window fifty times
  • a chat that can cancel an in-flight analysis mid-inference and grab the GPU back in about a second, so you never wait a minute for a background job to finish
  • meeting transcription straight off gemma's audio encoder, no whisper bolted on

honestly it's the most involved thing i've built.

The part that stung in a useful way

none of that is why the winners won.

i pitched ScreenMind as "recall but private." that's a feature comparison. it's me, an engineer, going "look how it works." the winners went "look who this helps." and that wins. every time, apparently.

i think i knew this in some abstract way but seeing it laid out next to my own submission made it concrete. the depth of the engineering didn't lose to better engineering. it lost to a better reason for the thing to exist.
that's a genuinely useful thing to get wrong once, early, on a challenge and not on something that mattered more.

So

i'm not shelving ScreenMind, it's open source and i'm still building on it: https://github.com/ayushh0110/ScreenMind

but the next thing i build, i'm starting from the person, not the spec. figure out who's actually stuck before i write a line of code.

congrats to everyone who won, and honestly to everyone who shipped something at all. that part's harder than it looks. On to the next one.