frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kimi K3: Open Frontier Intelligence

https://www.kimi.com/blog/kimi-k3
1057•vincent_s•9h ago•660 comments

LM Studio Bionic: the AI agent for open models

https://lmstudio.ai/blog/introducing-lm-studio-bionic
125•minimaxir•3h ago•50 comments

Microsoft Comic Chat is now open source

https://opensource.microsoft.com/blog/2026/07/16/microsoft-comic-chat-is-now-open-source/
487•jervant•7h ago•109 comments

The Little Book of Reinforcement Learning

https://github.com/alxndrTL/little-book-rl/
31•mustaphah•1h ago•4 comments

Decoy Font

https://www.mixfont.com/experiments/decoy-font
359•ray__•7h ago•89 comments

Mathematics of Data Science

https://arxiv.org/abs/2607.11938
77•Anon84•3h ago•2 comments

My car's OTA update broke Android Auto, and it's a indictment of modern software

https://imdanielkendall.com/the-great-software-regress-how-move-fast-and-break-things-broke-our-l...
84•Expletive4138•1h ago•87 comments

NotebookLM is now Gemini Notebook

https://blog.google/innovation-and-ai/products/gemini-notebook/notebooklm-gemini-notebook/
218•xnx•7h ago•119 comments

'Likweli': A new monkey species discovered in the Congo Basin

https://news.yale.edu/2026/07/15/meet-likweli-new-monkey-species-discovered-congo-basin
27•gmays•2h ago•4 comments

Ring-Zero: Scaling Zero RL to a Trillion Parameters for Emergent Reasoning

https://arxiv.org/abs/2607.12395
23•binyu•2h ago•6 comments

Show HN: Mojibake – a low-level Unicode library written in C

https://mojibake.zaerl.com/
20•program•1h ago•1 comments

Helium escaping from atmosphere of nearby rocky exoplanet in a habitable zone

https://www.science.org/doi/10.1126/science.aea9708
51•anyonecancode•3h ago•12 comments

Detecting LLM-Generated Texts with “Classical” Machine Learning

https://blog.lyc8503.net/en/post/llm-classifier/
141•uneven9434•7h ago•103 comments

OnePlus halts operations in USA and Europe

https://community.oneplus.com/thread/2170715118587871237
526•pilililo2•13h ago•309 comments

Immersive Linear Algebra Book with Interactive Figures (2015)

https://immersivemath.com/ila/
154•srean•8h ago•24 comments

Abstracting Effects with Continuations

https://crowdhailer.me/2026-07-15/abstracting-effects-with-continuations/
31•crowdhailer•13h ago•0 comments

Show HN: Clx – Compile Lua to Native Executables Through C++20

https://github.com/samyeyo/clx
74•_samt_•5d ago•2 comments

The privacy problems hidden in your period tracker

https://www.bbc.com/future/article/20260715-how-period-trackers-share-womens-private-details
59•tchalla•3h ago•35 comments

CVE-2026-25089: FortiSandbox unauthenticated command injection added to CISA KEV

https://hellorecon.com/blog/cve-2026-25089
12•slvnx•1h ago•0 comments

Adaptional (YC S25) Is Hiring

https://www.ycombinator.com/companies/adaptional/jobs
1•acesohc•7h ago

Timeline Scan – AI fixes the dates on your scanned photos

https://timelinescan.com/
19•HoserHoser•3h ago•19 comments

Solod: Go can be a better C

https://solod.dev
9•koeng•3d ago•1 comments

Goes-19 weather satellite enters Safe Hold mode

https://www.spaceweather.gov/news/goes-19-safe-hold
144•yabones•10h ago•73 comments

How Our Rust-to-Zig Rewrite Is Going

https://rtfeldman.com/rust-to-zig
386•jorangreef•12h ago•212 comments

Show HN: ReasonGate- An explainable gate that blocks LLM prompt injection

https://github.com/cgrtml/reasongate
6•Cagritemel•1h ago•7 comments

How to Train a Gen AI Kick Drum Model on Your Old Linux Desktop with 6GB VRAM

https://www.zhinit.dev/blog/training-a-kick-drum-diffusion-model
87•zhinit•8h ago•53 comments

Show HN: Libretto PR agents – Automatically fix failing playwright scripts

https://libretto.sh/debug-agents
16•muchael•3h ago•1 comments

The LLM Critics Are Right. I Use LLMs Anyway

https://www.theocharis.dev/blog/llm-critics-are-right-i-use-llms-anyway/
180•JeremyTheo•12h ago•182 comments

Launch HN: Traceforce (YC S26) – Company-wide security monitoring for AI apps

22•XiaHua•7h ago•11 comments

Scaling to 1M concurrent sandboxes in seconds

https://modal.com/blog/scaling-to-1-million-concurrent-sandboxes-in-seconds
12•thundergolfer•3h ago•1 comments
Open in hackernews

Show HN: Mojibake – a low-level Unicode library written in C

https://mojibake.zaerl.com/
20•program•1h ago
I've written Mojibake because I don't like the other Unicode libraries for Unicode support.

It consists of only two amalgamation files: mojibake.h and mojibake.c. I've added all the most important Unicode algorithms, such as normalization, case conversion, segmentation, bidirectional text, collation, confusable, and others.

I regularly test it in these OSes: Linux, macOS, FreeBSD, OpenBSD, NetBSD, and Windows 11.

You can find a WASM demo on that site of all the public API functions and the documentation. If you want to participate, feel free to do it. Any kind of help is welcome. Check the CONTRIBUTING.md and API.md files in the GitHub repository for instructions on how to do it.

Comments

digg99•4m ago
Love the amalgamation approach—the C/C++ ecosystem desperately needs cleaner, lightweight Unicode support without pulling in massive dependencies... thanks for sharing