Built an AI Flat-Finder in a Weekend: Scraping Reddit to Beat Broker Spam
A developer built TruRent in ~10 hours to solve a specific problem: Indian rental sites like NoBroker, MagicBricks, and 99acres are ~70% broker spam, even with "direct owner" filters. Reddit has honest owner listings, but they're unsearchable. The solution? A conversational AI that scrapes Reddit and lets you chat with the listings.
How It Works
- Stack: Next.js 16 with raw
fetchto Anthropic — no SDK, full control of the streaming loop. - Model: Claude Haiku 4.5. The task doesn't need Sonnet, and Haiku is 5x cheaper.
- Tools: Only two —
searchandget_details. Comparison and ranking happen in the model's prose, not separate tools. More tools = more failure modes. - Streaming: NDJSON to the browser. Easier than parsing SSE.
- Scrape pipeline: PullPush API to pull Reddit posts, then Haiku to extract structured listings from raw post text, Nominatim for geocoding.
Numbers
- 1,412 posts scraped
- ~600 passed a local pre-filter
- Only 131 ended up being real listings — dataset is tiny but the pipeline is source-agnostic. Swap the fetcher and nothing else changes.
Key Design Decision
The builder deliberately used fewer tools and let the model reason over richer tool outputs. Comparison and ranking happen in the model's prose, not via separate tools. This reduces failure modes and keeps costs low. The same principle applies: let the model think, not just filter.
Try the demo: https://trurent-five.vercel.app/
📖 Read the full source: r/ClaudeAI
👀 See Also

Agentic Coding Fatigue: Why More Agents Won't Save You
Sid's blog post argues that agentic coding compresses the normal ebb and flow of development, forcing developers into a constant cycle of decision fatigue and burnout. The solution isn't more agents—it's better verification, but building that is a catch-22.

Building a Discord Cat Monitoring Bot with ESP32-S3, MiniClaw, and Multimodal AI
A developer built a Discord bot using an ESP32-S3 Sense with MiniClaw that captures images or audio of their cat, sends them to Zhipu AI's VLM-4V model, and returns natural language descriptions instead of generic motion alerts.

OpenClaw setup on 8-year-old Raspberry Pi with $0 spent
A developer successfully set up OpenClaw on an old Raspberry Pi 4 with 8GB RAM, running 24/7 for three weeks with minimal costs. The setup includes basic skills like ClawHub, Notion, GOG, local Whisper, and Nano Banana, plus a human-like memory system and five agents.

Claude Code AI Agent Controls Physical iPhone via Accessibility APIs
A developer demonstrated Claude Code autonomously operating a physical iPhone through the Blitz Mac app, using WebDriverAgent and accessibility APIs with a zero-distance swipe workaround for taps.