frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Why write code if the LLM can just do the thing? (web app experiment)

https://github.com/samrolken/nokode
237•samrolken•9h ago•184 comments

Show HN: A simple drag and drop tool to document and label fuse boxes

https://github.com/alexadam/fuse-box-labels
5•eg312•1d ago•1 comments

Show HN: KeyLeak Detector – Scan websites for exposed API keys and secrets

https://github.com/Amal-David/keyleak-detector
14•amaldavid•4h ago•2 comments

Show HN: Duper – The Format That's Super

https://duper.dev.br/
12•epiceric•3h ago•4 comments

Show HN: Strange Attractors

https://blog.shashanktomar.com/posts/strange-attractors
742•shashanktomar•1d ago•72 comments

Show HN: Find and download fonts from any website (weekend project)

https://typecatch.com
3•zdenham•4h ago•0 comments

Show HN: Pipelex – Declarative language for repeatable AI workflows

https://github.com/Pipelex/pipelex
113•lchoquel•4d ago•24 comments

Show HN: Micro-RLE ≤264-byte compression for UART/MCU logs, zero RAM growth

https://github.com/CoreLathe/Micro-RLE
7•CoreLathe•8h ago•2 comments

Show HN: In a single HTML file, an app to encourage my children to invest

https://roberdam.com/en/dinversiones.html
242•roberdam•2d ago•429 comments

Show HN: UnisonDB – Log-native KV database that replicates like a message bus

https://unisondb.io
3•ankuranand•8h ago•0 comments

Show HN: Settling the Score – A point-and-click adventure rhythm game

https://easel.games/@raysplaceinspace/settling-the-score/
19•BSTRhino•5d ago•6 comments

Show HN: Quibbler – A critic for your coding agent that learns what you want

https://github.com/fulcrumresearch/quibbler
112•etherio•2d ago•26 comments

Show HN: Just vibe coded a HN TV dashboard

https://github.com/fellowgeek/hacker-news-dashboard
2•pcbmaker20•8h ago•0 comments

Show HN: Proxmox-GitOps: Container Automation Framework

https://github.com/stevius10/Proxmox-GitOps
2•gitopspm•9h ago•1 comments

Show HN: Run a GitHub Actions step in a gVisor sandbox

https://github.com/geomys/sandboxed-step
85•FiloSottile•1w ago•3 comments

Show HN: Front End Fuzzy and Substring and Prefix Search

https://github.com/m31coding/fuzzy-search
54•kmschaal•3d ago•4 comments

Show HN: Learn German with Games

https://www.learngermanwithgames.com/
122•predictand•3d ago•104 comments

Show HN: LocalSend Alternative Built with Iroh

https://github.com/tonyantony300/alt-sendme
4•SandraBucky•11h ago•0 comments

Show HN: I made a heatmap diff viewer for code reviews

https://0github.com
262•lawrencechen•2d ago•68 comments

Show HN: C Generic Queue Data Structure

https://github.com/kostakis/Generic-Queue
2•kostakisgr•14h ago•0 comments

Show HN: Chess960v2 – Stockfish tournament with different starting positions

https://chess960v2.com/en
3•lavren1974•14h ago•4 comments

Show HN: Bash Screensavers

https://github.com/attogram/bash-screensavers
245•attogram•4d ago•77 comments

Show HN: Research Hacker News, ArXiv & Google with Hierarchical Bayesian Models

https://sturdystatistics.com/deepdive-search
82•kianN•4d ago•23 comments

Show HN: Jod – Conversational observability with MCP, no more dashboard juggling

https://jodmcp.com
9•prastik•15h ago•4 comments

Show HN: ekoAcademic – Convert ArXiv papers to interactive podcasts

https://www.wadamczyk.io/projects/ekoacademic/index.html
52•wadamczyk•2d ago•14 comments

Show HN: Text Generator – online font generator

https://text-generator.app/
19•epistemovault•1d ago•2 comments

Show HN: An ergonomic metrics crate for Rust

https://github.com/chainbound/prometric
3•mempirate•17h ago•0 comments

Show HN: Build your own Bracket City puzzle

https://builder.bracket.city
30•brgross•1d ago•8 comments

Show HN: ISS in Real Time – 25 Years Aboard the International Space Station

https://issinrealtime.org
160•bfeist•5d ago•24 comments

Show HN: Paykit – one SDK for Stripe, PayPal, Paddle (stop reading 5 API docs)

https://www.usepaykit.dev/
8•emmanuelodii•1d ago•0 comments
Open in hackernews

Show HN: Micro-RLE ≤264-byte compression for UART/MCU logs, zero RAM growth

https://github.com/CoreLathe/Micro-RLE
7•CoreLathe•8h ago
I needed to stuff twice the telemetry through the same 115 kbaud line on a Cortex-M0+ that only had 8 kB flash left.

Micro-RLE is the smallest drop-in I could come up with: 264 B of Thumb code, 36 B of state, no malloc, worst-case 14 cycles/byte and still lossless for every 8-bit pattern.

On the usual sensor streams (ADC, IMU, GPS) it’s 33-70 % smaller than raw output and boots in < 600 µs, so you can fire-and-forget from main() before the PLL even locks.

Repo is a single .c file and a 3-function API—replace the weak emit() hook with your UART / DMA / ring-buffer and you’re done.

Size proof: arm-none-eabi-size micro_rle.o text data bss 264 0 36

MIT licensed, link in the repo. Happy to hear where else this fits!

Comments

dmitrygr•2h ago
I am thinking of my trace prints and they are usually text which actually does not compress too well with RLE. English doesn’t have too many repeated letters. LZ (even with a tiny window) would work better.

That is to say: I am doubting the 33-70% compression

CoreLathe•1h ago
The 33-60 % figure is for repetitive firmware logs (periodic status lines, hex dumps, etc.) where the XOR-delta between successive bytes is zero most of the time.

The headline should read “compresses repetitive logs”; sorry for the noise.