frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: An LLM-Powered Tool to Catch PCB Schematic Mistakes

https://netlist.io/
12•wafflesfreak•45m ago•4 comments

Show HN: Glasses to detect smart-glasses that have cameras

https://github.com/NullPxl/banrays
420•nullpxl•12h ago•152 comments

Show HN: Spikelog – A simple metrics service for scripts, cron jobs, and MVPs

https://spikelog.com
25•dsmurrell•1d ago•12 comments

Show HN: Bodge.app – μFaaS for hacked-together personal tools and small projects

https://bodge.app/
5•azdle•1h ago•2 comments

Show HN: An AI powered Welcome Note Generator in Go (Moderation and LLM and UI)

https://github.com/vnaveen-mh/welcome-note-generator
2•vnaveen9296•1h ago•0 comments

Show HN: Research Papers as Memes

https://near.tl/tech
6•QueensGambit•1h ago•1 comments

Show HN: Oblit – A zero-dependency, binary-first protocol for Node.js (Show HN

3•_melikeymen_•58m ago•1 comments

Show HN: DB Pro – A Modern Desktop Client for Postgres, MySQL, SQLite and LibSQL

https://www.dbpro.app/
9•upmostly•4h ago•0 comments

Show HN: KiDoom – Running DOOM on PCB Traces

https://www.mikeayles.com/#kidoom
352•mikeayles•2d ago•49 comments

Show HN: Simple xbox360 inspired CSS library: 360CSS

https://github.com/tarmo1/360css
3•Tarmo362•5h ago•2 comments

Show HN: Runprompt – run .prompt files from the command line

https://github.com/chr15m/runprompt
127•chr15m•1d ago•40 comments

Show HN: MkSlides – Markdown to slides with a similar workflow to MkDocs

https://github.com/MartenBE/mkslides
70•MartenBE•1d ago•14 comments

Show HN: Total Reciprocity Public License

https://trplfoundation.org/
4•jaypatelani•6h ago•0 comments

Show HN: SyncKit – Offline-first sync engine (Rust/WASM and TypeScript)

https://github.com/Dancode-188/synckit
83•danbitengo•1d ago•33 comments

Show HN: Era – Open-source local sandbox for AI agents

https://github.com/BinSquare/ERA
59•gregTurri•1d ago•18 comments

Show HN: Swatchify – CLI to get a color palette from an image

https://james-see.github.io/swatchify/
3•jamescampbell•12h ago•1 comments

Show HN: I built an interactive HN Simulator

https://news.ysimulator.run/news
532•johnsillings•4d ago•214 comments

Show HN: I turned algae into a bio-altimeter and put it on a weather balloon

https://radi8.dev/blog/stratospore/
137•radeeyate•6d ago•13 comments

Show HN: Safe-NPM – only install packages that are +90 days old

https://github.com/kevinslin/safe-npm
88•kevinslin•4d ago•61 comments

Show HN: SiteIQ – LLM and Web security testing tool (built by a high schooler)

https://github.com/sastrophy/siteiq
4•sastrophy•10h ago•1 comments

Show HN: Open-source RAG server with retrieval visualization (Postgres+pgvector)

https://github.com/jakops88-hub/Long-Term-Memory-API
4•northerndev•11h ago•1 comments

Show HN: We built an open source, zero webhooks payment processor

https://github.com/flowglad/flowglad
392•agreeahmed•3d ago•217 comments

Show HN: ZigFormer – An LLM implemented in pure Zig

15•habedi0•1d ago•4 comments

Show HN: AnyMusic – AI music generator (royalty‑free, songs,stems, lyrics)

https://anymusic.ai
5•lovelycold•14h ago•1 comments

Show HN: I built a website for games that catch my eye

https://alistof.games
4•RaycatRakittra•15h ago•3 comments

Show HN: Yolodex – real-time customer enrichment API

https://api.yolodex.ai
36•hazzadous•4d ago•23 comments

Show HN: FounderPace – A leaderboard for founders who run

https://www.founderpace.com/
4•leonagano•18h ago•1 comments

Show HN: Lissa Saver macOS Screen Saver

https://github.com/johnrpenner/LissaSaver
2•johnrpenner•18h ago•0 comments

Show HN: I wrote a minimal memory allocator in C

https://github.com/t9nzin/memory
135•t9nzin•4d ago•32 comments

Show HN: I built a free astro and tailwind static site for GitHub pages

https://tariqdude.github.io/Github-Pages-Project-v1/
3•chiengineer•19h ago•2 comments
Open in hackernews

Show HN: An LLM-Powered Tool to Catch PCB Schematic Mistakes

https://netlist.io/
12•wafflesfreak•45m ago

Comments

wafflesfreak•45m ago
Netlist.io is a web app that ingests your KiCad/Altium netlist and relevant datasheets so an LLM can reason about the actual circuit. It’s built to catch schematic mistakes that traditional ERC tools often miss, and it can even help debug already-fabbed boards by letting you describe the failure symptoms.

I built this because I was tired of shipping boards with avoidable mistakes — hopefully it saves you from a re-spin too!

proee•28m ago
Back in the day our hardware group created a pre-flight checklist before sending boards off to fab. This reduced our errors significantly and got rid of stupid mistakes. Your product idea sounds great and has ton of opportunity for additional features like supply chain analysis, alternate part sourcing, EMC advisory, etc.
wafflesfreak•19m ago
Thank you so much! Totally agree. Knowing people in the space to sanity-check designs has saved me countless times. I’m hoping this tool can bring some of that ‘pre-flight checklist’ group wisdom to solo and newer designers as well. Really appreciate the feature ideas too!
iamjackg•3m ago
Somewhat related: a while ago I was working on a project and wanted to use an RS485 to TTL conversion board which came with badly translated instructions. However, somebody had reverse engineered the design and uploaded an EasyEDA schematic. I shoved the raw JSON for the schematic (which looked quite cryptic to me) into Gemini 2.5 Pro and asked it if it could understand it, and it cheerfully responded with:

> Of course, Jack. I can understand the schematic from the provided JSON file. It describes an RS485 to TTL Converter Module. > Here is a detailed breakdown of the circuit's design and functionality

...followed by an absolutely reasonable description of the whole board. It was imprecise, but with some guidance (and by putting together my basic skills with Gemini) I was able to figure out a few things I needed to know about the board. Quite impressive.