frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

https://github.com/welcome-to-the-sunny-side/misa77
41•nonadhocproblem•1h ago•5 comments

Show HN: 18KB ls alternative in no_std rust and Libc

https://crates.io/crates/fli-tool
13•tracyspacy•3h ago•3 comments

Show HN: Summa, a tool that annotates over whatever you're reading

https://summa.josephruocco.net
2•jruocco•35m ago•1 comments

Show HN: Painterly – Turn pictures into digital paintings without generative AI

https://github.com/jbunke/painterly
2•flinkerflitzer•36m ago•0 comments

Show HN: Hedy runs its real-time meeting AI on-device (Mac/Windows/iOS)

https://www.hedy.ai/post/local-ai-meetings-hedy-3-2/
2•julp•57m ago•0 comments

Show HN: Figmaboy – Tauri Figma Clone with a Built in MCP-Enabled CLI for Codex

https://0xmiki.github.io/figmaboy/
2•mikiyas•57m ago•0 comments

Show HN: Running a Website Inside a Website

https://nonogra.ph/running-a-website-inside-a-website-07-15-2026
3•smalltorch•58m ago•1 comments

Show HN: Fork – Customize the web, just by asking

https://withfork.co
4•dhanaway518•1h ago•0 comments

Show HN: 3-line calendar for Apple Watch – free, open source, no sign-in

https://threelinecal.apps.zzn.im/
2•xinbenlv•1h ago•0 comments

Show HN: I Built a Capture the Flag Arena for Agents

https://lab.clayseal.com/
3•yuvvantalreja•1h ago•0 comments

Show HN: Lineation – One security control plane for all agents

https://lineation.ai
4•camsjams•1h ago•2 comments

Show HN: Aict – Unix coreutils that output XML/JSON, built for AI agents

https://github.com/synseqack/aict
12•ronak_parmar•3h ago•5 comments

Show HN: Ty-extended – a Ty fork with plugin support

https://github.com/regularkevvv/ty-extended
2•demoonkevin•1h ago•0 comments

Show HN: Greenflash – we read every conversation your AI agent has with users

https://www.greenflash.ai/sign-up
5•sailrock•1h ago•2 comments

Show HN: Map of every off-plan project in Bangkok (Thailand has no MLS)

https://baanscope.com
2•kesarito•1h ago•0 comments

Show HN: Mailberry – an AI-native email platform with The Email Brain

https://mailberry.ai/
2•alecbee•1h ago•1 comments

Show HN: AI-powered sports analytics and social betting platform

https://statsniper.com/
2•not_wowinter13•1h ago•1 comments

Show HN: OtoDock, run Claude Code and Codex as a team of agents on your server

https://github.com/OtoDock/oto-dock/
2•dimitrismrtzs•1h ago•0 comments

Show HN: Sign in with your ChatGPT account for free AI

https://openai-oauth.vercel.app/
2•EvanZhouDev•1h ago•1 comments

Show HN: A photo editor that develops RAW files in the browser

https://vajba.com/image-editor/
2•trivsamt•1h ago•0 comments

Show HN: SirixDB 1.0 Beta – Git-Like Versioning, Diffs, Time-Travel Queries

https://github.com/sirixdb/sirix
2•lichtenberger•1h ago•0 comments

Show HN: Homestead – Build apps for you, your family, and your agents

https://myhomestead.dev/
3•rambleraptor•1h ago•0 comments

Show HN: Generalized – AI agent skills with community proof

https://generalized.dev/
2•kubeden•1h ago•0 comments

Show HN: Leet Robotics: Learn robotics and ROS2 with hands-on courses

https://www.leetrobotics.com
7•deepresearch•5h ago•0 comments

Show HN: Zoable game. Solve it cheaply

https://zoable-game.com/?s=WDgdSiHyV67W_yEQTpWNUKB7HZF1xHI
2•damaru2•2h ago•1 comments

Show HN: StyleSeed – a design-rules engine so AI agents stop building generic UI

https://github.com/bitjaru/styleseed
22•bitjaru0402•3h ago•7 comments

Show HN: Production-grade LangGraph template

https://github.com/brescou/langgraph-agent-stack
3•Brescou•3h ago•0 comments

Show HN: Fast NF4 dequantization Triton kernel (1.41x faster than bitsandbytes)

https://github.com/Griffith-7/nf4-triton-kernel
3•Griffith-7•3h ago•0 comments

Show HN: Running server scripts from smartphone via SSH

https://c100k.eu/p/rebootx/updates/20260714-remote-runbooks
3•pmdfgy•4h ago•1 comments

Show HN: Web App Uses RTL-SDR to Align HDTV Antenna

https://tunerscope.com/
21•robotastic•2d ago•3 comments
Open in hackernews

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

https://github.com/welcome-to-the-sunny-side/misa77
41•nonadhocproblem•1h ago
I've spent the last few months working on this codec.

It has the following characteristics:

  - SOTA decompression throughput in its ratio class
  - Decent ratios (comparable to LZ4 at high effort levels)
  - Slow compression
Most of the gains can be attributed to reducing branches and making decompression very friendly to out-of-order cores, by using a smart format.

Results on the tarred Silesia corpus on Intel x86-64 follow:

  codec       decode      ratio    encode
  misa77 -0   5219 MB/s   42.64%   54.5 MB/s
  misa77 -1   4274 MB/s   39.65%   51.2 MB/s
  lz4         2505 MB/s   47.59%   371 MB/s
  lz4hc -12   2531 MB/s   36.45%   7.31 MB/s

Comments

bootlegbilly•57m ago
this is super interesting! im excited to give this a look this afternoon, since I specifically have wanted faster throughout for decompressing maps in a game engine.
throwaway74747•6m ago
What's the Weissman score?
logdahl•6m ago
Nice results, I will keep a watch on this! Would be interesting to see benchmarks vs Oodle compression, I think the most similar one is Selkie?
Sesse__•4m ago
Interesting, but if you are not robust to corrupted/malicious data, it is really in a different class of algorithm and it is hard to compare speeds directly.

From memory, 2505 MB/sec also sounds on the low side for LZ4 on a modern CPU?

nonadhocproblem•50s ago
Someone asked this on encode.su too (see my reply here: https://encode.su/threads/4514-misa77-ridiculously-fast-deco...).

In short, my decompressor is very simple, and a naive safe version of the decompressor is only about 5% slower than the current unsafe one (and I will add this safe version in v0.3.0).

As for the raw throughput numbers being low here, it's because Intel Turbo (frequency boost) was disabled for stability, and the CPU was running at a fixed frequency of 2.1 GHz (I've confirmed that the relative performance scales similarly even with Turbo enabled).