Tuesday, March 17, 2026

Show HN: TerraShift: What does +2°C (or -20°C) look like on Earth? https://ift.tt/OsIQaUk

Show HN: TerraShift: What does +2°C (or -20°C) look like on Earth? I built an interactive 3D globe to visualize climate change. Drag a temperature slider from -40°C to +40°C, set a timeframe (10 to 10,000 years), and watch sea levels rise, ice sheets melt, vegetation shift, and coastlines flood... per-pixel from real elevation and satellite data. Click anywhere on the globe to see projected snowfall changes for that location. --- I'm an amateur weather nerd who spends a lot of time on caltopo.com and windy.com tracking snow/ice conditions. I wanted to build something fun to imagine where I could go ski during an ice age. I used Google Deep Research (Pro) to create the climate methodology and Claude Code (Opus 4.6 - High) to create the site. The code: https://ift.tt/AjZy6IC The models aren't proper climate simulations, they're simplified approximations tuned for "does this look right?" but more nuanced than I expected them to be. The full methodology is documented here if anyone wants to poke holes in it. https://ift.tt/XtOc1MA... https://terrashift.io March 18, 2026 at 01:08AM

Show HN: Updated version of my interactive Middle-Earth map https://ift.tt/PGsLi0q

Show HN: Updated version of my interactive Middle-Earth map Hi again HN, simply sharing an updated version of a Middle-Earth map started last year. This is an interactive map, dependency-free at runtime, developed with custom elements in JavaScript. The latest update replaced the big `.svg ` making navigating the map slow and inefficient" with a `.jpg` tiled system handling 7 levels of zoom. Everything is now smoother, and points of interest are no longer distorted when zooming. https://ift.tt/OYvhUyw March 17, 2026 at 09:51PM

Monday, March 16, 2026

Show HN: Hecate – Call an AI from Signal https://ift.tt/N51jrZC

Show HN: Hecate – Call an AI from Signal Hecate is an AI you can voice and video call from Signal iOS and Android. This works by installing Signal into an Android emulator and controlling the virtual camera and microphone. Tinfoil.sh is used for private inference. https://ift.tt/ZwcgksG March 16, 2026 at 08:11PM

Sunday, March 15, 2026

Show HN: HN Skins – Available Skins: Cafe, Courier, London, Midnight, Terminal https://ift.tt/W2YdXy6

Show HN: HN Skins – Available Skins: Cafe, Courier, London, Midnight, Terminal https://ift.tt/tTDsRB5 March 16, 2026 at 01:04AM

Show HN: Goal.md, a goal-specification file for autonomous coding agents https://ift.tt/U0z6Lp4

Show HN: Goal.md, a goal-specification file for autonomous coding agents https://ift.tt/vPEg0Xc March 15, 2026 at 11:52PM

Saturday, March 14, 2026

Show HN: Zap Code – AI code generator that teaches kids real HTML/CSS/JS https://ift.tt/7Ttc1Gw

Show HN: Zap Code – AI code generator that teaches kids real HTML/CSS/JS Zap Code generates working HTML/CSS/JS from plain English descriptions, designed for kids ages 8-16. The core loop: kid types "make a space shooter game", AI generates the code, live preview renders it immediately. Three interaction modes - visual-only tweaks, read-only code view with annotations, and full code editing with AI autocomplete. Technical details: Next.js frontend, Node.js backend, Monaco editor simplified for younger users, sandboxed iframe for preview execution (no external API calls from generated code). Progressive complexity engine uses a skill model to decide when to surface more advanced features. Main thing that was focused on was the gap between block-based coding (Scratch, etc.) and actual programming. Block tools are great for ages 6-10 but the transition to real code is rough. This tries to smooth that curve by letting kids interact with real output first, then gradually exposing the code behind it. Limitations: AI-generated code isn't always clean or idiomatic. Content is filtered for age-appropriateness but its not perfect. Collaboration features are still basic. The complexity engine needs more data to tune well. Free tier, 3 projects. Pro at $9.99/mo. https://www.zapcode.dev March 15, 2026 at 01:07AM

Show HN: Auto-Save Claude Code Sessions to GitHub Projects https://ift.tt/gopUaAO

Show HN: Auto-Save Claude Code Sessions to GitHub Projects I wanted a way to preserve Claude Code sessions. Once a session ends, the conversation is gone — no searchable history, no way to trace back why a decision was made in a specific PR. The idea is simple: one GitHub Issue per session, automatically linked to a GitHub Projects board. Every prompt and response gets logged as issue comments with timestamps. Since the session lives as a GitHub Issue in the same ecosystem, you can cross-reference PRs naturally — same search, same project board. npx claude-session-tracker The installer handles everything: creates a private repo, sets up a Projects board with status fields, and installs Claude Code hooks globally. It requires gh CLI — if missing, the installer detects and walks you through setup. Why GitHub, not Notion/Linear/Plane? I actually built integrations for all three first. Linking sessions back to PRs was never smooth on any of them, but the real dealbreaker was API rate limits. This fires on every single prompt and response — essentially a timeline — so rate limits meant silently dropped entries. I shipped all three, hit the same wall each time, and ended up ripping them all out. GitHub's API rate limits are generous enough that a single user's session traffic won't come close to hitting them. (GitLab would be interesting to support eventually.) *Design decisions* No MCP. I didn't want to consume context window tokens for session tracking. Everything runs through Claude Code's native hook system. Fully async. All hooks fire asynchronously — zero impact on Claude's response latency. Idempotent installer. Re-running just reuses existing config. No duplicates. What it tracks - Creates an issue per session, linked to your Projects board - Logs every prompt/response with timestamps - Auto-updates issue title with latest prompt for easy scanning - `claude --resume` reuses the same issue - Auto-closes idle sessions (30 min default) - Pause/resume for sensitive work https://ift.tt/8HNIlSF March 14, 2026 at 11:49PM

Friday, March 13, 2026

Show HN: AI milestone verification for construction using AWS https://ift.tt/fU1J8k3

Show HN: AI milestone verification for construction using AWS Hi HN, I built Build4Me to address a trust problem in diaspora-funded construction projects. Many families send money home to build houses but have no reliable way to verify that work is actually being done. Photos can be reused, progress exaggerated, or projects abandoned after funds are sent. Build4Me introduces milestone-based funding where each construction milestone must be verified before funds are released. The system verifies progress using: - geotagged photo capture - GPS location verification - AI image analysis - duplicate image detection It runs on serverless AWS architecture using services like Rekognition, Bedrock, Lambda, DynamoDB, and Amazon Location Service. Would love feedback on the architecture and fraud detection approach. https://builder.aws.com March 13, 2026 at 10:54PM

Show HN: Svglib a SVG parser and renderer for Windows https://ift.tt/QmfIBVk

Show HN: Svglib a SVG parser and renderer for Windows svglib is a SVG file parser and renderer library for Windows. It uses Direct2D for GPU assisted rendering and XMLLite for XML parsing. This is meant for Win32 applications and games to easily display SVG images. https://ift.tt/F5PoTg8 March 10, 2026 at 08:34PM

Thursday, March 12, 2026

Show HN: Every Developer in the World, Ranked https://ift.tt/uHP1OXp

Show HN: Every Developer in the World, Ranked We've indexed 5M+ GitHub users and built a ranking system that goes beyond follower counts. The idea started from frustration: GitHub is terrible for discovery. You can't answer "who are the best Python developers in Berlin?" or "who identified transformer-based models before they blew up?" without scraping everything yourself. So we did. What we built: CodeRank score - a composite reputation signal across contributions, repository impact, and community influence Tastemaker score - did you star repos at 50 stars that now have 50,000? We track that Comparison Builder - allows users to build comparison graphics to compare devs, repos, orgs, etc. Sharable Profile Graphics - share your scores and flex on your coworkers or the community at large Some things we found interesting: Most-followed ≠ most influential. The correlation between follower count and tastemaker score is surprisingly weak. There's a whole tier of developers who consistently find projects weeks and months before they trend, with almost no public following. Location data on GitHub is a disaster. We spent an embarrassing amount of time on normalization and it's still not anywhere near perfect. Try it: https://coderank.me/ If your profile doesn't have a score, signing in will trigger scoring for your account. Curious what the HN crowd thinks about the ranking methodology, happy to get into the weeds on any of it. https://coderank.me March 13, 2026 at 02:12AM

Show HN: Baltic security monitor from public data sources https://ift.tt/rkqI0uL

Show HN: Baltic security monitor from public data sources People around me started repeating stuff from various psyop campaigns on TikTok or other social media they consume. Especially when living in Baltics it's basically 24/7 fearmongering here from anywhere, either it's constant russian disinfo targeted campaigns via their chains of locals or social media campaings or some bloggers chasing hype on clickbait posts, so it was driving me mad, and it is distracting and annoying when someone from your closest ones got hooked on one of these posts and I was wasting time to explain why it was a bs. So I took my slopmachine and some manually tweaking here and there and made this dashboard. Main metric is basically a daily 0-100 threat score, which are just weighted sums and thresholds - no ML yet. https://estwarden.eu/ March 12, 2026 at 11:14PM

Show HN: Raccoon AI – Collaborative AI Agent for Anything https://ift.tt/T06jwhH

Show HN: Raccoon AI – Collaborative AI Agent for Anything Hey HN, I'm Shubh, Co-Founder of Raccoon AI. Raccoon AI is like having something between Claude Code and Cursor in the web. The agent has its own computer with a terminal, browser, and internet, and it is built with the right balance of collaboration and autonomy. You can talk to it mid-task, send it more files while it's still running, or just let it go and come back to a finished result. It's the kind of product where you open it to try one thing and end up spending two hours because you keep thinking of more things to throw at it. The thing that most people get excited about is that sessions chain across completely unrelated task types. You can go from market research (real citations, generated charts) to raw data analysis (dump your db, ask questions) to a full interactive app, all in one conversation sharing the same context. It has unlimited context through auto summarization, which is really good with Ace Max. It connects to Gmail, GitHub, Google Drive, Notion, Outlook, and 40+ other tools. You can add your own via custom MCP servers. Raccoon AI is built on top of our own agents SDK, ACE, which hit SOTA on GAIA benchmark with a score of 92.67. A bit of background: We're a team of 3, and we started about 1.5 years ago to build the best possible browser agent to ever exist, after a couple of pivots we arrived at this and have been constantly shipping and growing since October. Happy to go deep on the architecture or talk about the limitations and excited about the feedback. Site: https://raccoonai.tech https://raccoonai.tech March 12, 2026 at 11:50PM

Wednesday, March 11, 2026

Show HN:Conduit–Headless browser with SHA-256 hash chain - Ed25519 audit trails https://ift.tt/YnbGh79

Show HN:Conduit–Headless browser with SHA-256 hash chain - Ed25519 audit trails I've been building AI agent tooling and kept running into the same problem: agents browse the web, take actions, fill out forms, scrape data -- and there's zero proof of what actually happened. Screenshots can be faked. Logs can be edited. If something goes wrong, you're left pointing fingers at a black box. So I built Conduit. It's a headless browser (Playwright under the hood) that records every action into a SHA-256 hash chain and signs the result with Ed25519. Each action gets hashed with the previous hash, forming a tamper-evident chain. At the end of a session, you get a "proof bundle" -- a JSON file containing the full action log, the hash chain, the signature, and the public key. Anyone can independently verify the bundle without trusting the party that produced it. The main use cases I'm targeting: - *AI agent auditing* -- You hand an agent a browser. Later you need to prove what it did. Conduit gives you cryptographic receipts. - *Compliance automation* -- SOC 2, GDPR data subject access workflows, anything where you need evidence that a process ran correctly. - *Web scraping provenance* -- Prove that the data you collected actually came from where you say it did, at the time you say it did. - *Litigation support* -- Capture web content with a verifiable chain of custody. It also ships as an MCP (Model Context Protocol) server, so Claude, GPT, and other LLM-based agents can use the browser natively through tool calls. The agent gets browse, click, fill, screenshot, and the proof bundle builds itself in the background. Free, MIT-licensed, pure Python. No accounts, no API keys, no telemetry. GitHub: https://ift.tt/VokERwG Install: `pip install conduit-browser` Would love feedback on the proof bundle format and the MCP integration. Happy to answer questions about the cryptographic design. March 12, 2026 at 04:45AM

Show HN: Free audiobooks with synchronized text for language learning https://ift.tt/zYZry6v

Show HN: Free audiobooks with synchronized text for language learning https://ift.tt/8EIpUQH March 12, 2026 at 02:42AM

Show HN: TerraShift: What does +2°C (or -20°C) look like on Earth? https://ift.tt/OsIQaUk

Show HN: TerraShift: What does +2°C (or -20°C) look like on Earth? I built an interactive 3D globe to visualize climate change. Drag a tempe...