frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Revisiting Interface Segregation in Go

https://rednafi.com/go/interface-segregation/
1•ingve•29s ago•0 comments

Columnar and the ADBC Driver Foundry

https://columnar.tech/blog/announcing-columnar/
1•refset•4m ago•0 comments

(1) the Great American Soybean Con Job [video]

https://www.youtube.com/watch?v=PYEMuzss1Ys
1•xbmcuser•8m ago•0 comments

Comparison Traits – Understanding Equality and Ordering in Rust

https://itsfoxstudio.substack.com/p/comparison-traits-understanding-equality
1•rpunkfu•17m ago•0 comments

Leaving the Freedesktop.org Community

https://vt.social/@lina/115431232807081648
4•birdculture•23m ago•0 comments

A Death Train Is Haunting South Florida

https://www.theatlantic.com/technology/2025/10/brightline-train-florida/684624/
1•raw_anon_1111•26m ago•0 comments

Parsing with zippers improves parsing with derivatives

https://dl.acm.org/doi/10.1145/3408990
1•fanf2•35m ago•0 comments

Trump threatens to go into Nigeria 'guns-a-blazing' over attacks on Christians

https://www.theguardian.com/us-news/2025/nov/01/trump-nigeria-christian-persecution
2•prmph•40m ago•0 comments

Show HN: Postflare AI – An AI-Powered Social Media Strategist and Bulk Scheduler

1•techxeni•44m ago•1 comments

Throw and Catch-a 30-second relaxing dog fetch game (plays in browser)

https://throwandfetch.com
2•kwaeason•48m ago•0 comments

Lincoln Island – imaginary space for the entrepreneurial kind

https://growingfearless.substack.com/p/lincoln-island-is-ready-to-receive
2•josmor•49m ago•0 comments

Cali THCA Blend Vape pen 500mg

1•arbiabbasi•51m ago•0 comments

Apple is killing old phones/Macs instantly with the glass thing

7•vasan•52m ago•0 comments

Ask HN: How do you manage your prompts in agent workflows

2•ph4rsikal•57m ago•0 comments

Down with T2, long live T3 Metrics for q.computers that one should think about

https://m-malinowski.github.io/2025/09/07/quantum-coherence.html
1•wadamczyk•59m ago•0 comments

How Should Business and Tech Leaders Spend in 2026?

https://insurtechamsterdam.com/public/blog/ai-technology-spend
2•Venesha•1h ago•0 comments

Insurance and Climate Risk

https://insurtechamsterdam.com/public/blog/insurance-climate-risk
1•Venesha•1h ago•0 comments

Mixboard

https://labs.google.com/mixboard/welcome
1•ms7892•1h ago•0 comments

Build to Last – Chris Lattner on Software Craftsmanship and AI

https://www.fast.ai/posts/2025-10-30-build-to-last.html
3•tamnd•1h ago•0 comments

Through the Crystal Ball of VC Florian Graillot

https://insurtechamsterdam.com/public/blog/insurance-innovation
1•Venesha•1h ago•0 comments

Our newest model: Chandra (OCR)

https://www.datalab.to/blog/introducing-chandra
1•denysvitali•1h ago•0 comments

ChatGPT leaked conversations to Google Search console

https://www.quantable.com/ai/the-old-rules-are-dead/
4•miohtama•1h ago•0 comments

Context engineering

https://chrisloy.dev/post/2025/08/03/context-engineering
3•chrisloy•1h ago•0 comments

Samsung Internet Browser Launches on Windows

https://browser.samsung.com/beta
1•KoftaBob•1h ago•0 comments

Wealth, Shown to Scale

https://eattherichtextformat.github.io/1-pixel-wealth/
7•Manheim•1h ago•0 comments

Reimagining social media optimized for meaning, not engagement

https://www.facts.social/
3•guywithnoh•1h ago•1 comments

Ask HN: What are you working on? (November 2025)

5•tamnd•1h ago•3 comments

Computer Entertainer (1982 – 1990)

https://archive.gamehistory.org/folder/519c0dbd-0f5d-45fe-83c2-355a756391a9?sortField=date&sortDi...
1•jruohonen•1h ago•0 comments

Show HN: I built a free VPN that runs directly in Chrome

https://chromewebstore.google.com/detail/quickvpn-proxy-–-vpn-for/pnbbbdihfmedmgilpjldboihdodhnkel
2•hritik7742•1h ago•0 comments

FortNine – Google is often paid for fake ad influence [video]

https://www.youtube.com/watch?v=BfNIRyPi5QA
1•juliushuijnk•1h ago•1 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•15h 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•9h 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•8h 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.