frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft Weighs DeepSeek for Copilot Cowork

https://www.axios.com/2026/06/16/microsoft-copilot-cowork-tokenmaxxing-cowork
1•ajay-d•53s ago•0 comments

Recording and replaying events in a type-checker

https://kaleidawave.blog/posts/recording-and-replaying-events/
1•kaleidawave•2m ago•0 comments

Show HN: Pocket DB – a single-file append-only document store for Node.js

https://github.com/axfab/pocket-db
1•axfab•3m ago•0 comments

The Death of the Starter Home

https://www.architecturaldigest.com/story/what-happened-to-the-starter-home
2•littlexsparkee•3m ago•1 comments

Build a Basic AI Agent from Scratch: Human in the Loop and Security

https://www.ruxu.dev/articles/ai/build-an-ai-agent-human-in-the-loop-security/
1•ruxudev•5m ago•0 comments

Bitcoin and energy: the no-bullshit version, with sourced numbers

https://www.learnbitcoin.com/rabbit-hole/energy
1•granya•5m ago•0 comments

Zed Guild: What We Built, What We Learned

https://zed.dev/blog/zed-guild-retrospective
1•ilreb•5m ago•0 comments

Show HN: Microcrad – Micrograd Reimplemented in C

https://github.com/oraziorillo/microcrad
1•oraziorillo•6m ago•1 comments

Ask HN: What does it take to show something

2•LooksProtocol•7m ago•0 comments

Show HN: "Grid" – a spec-driven framework for coding agents

https://github.com/js-ojus/grid-framework
1•sigmaml•7m ago•0 comments

LinkedIn will tell others how you use Adobe's apps

https://www.theverge.com/tech/951291/linkedin-connected-apps-ai-summary-verification
1•ilreb•7m ago•0 comments

Help: Archiving a Source

https://en.wikipedia.org/wiki/Help:Archiving_a_source
1•bariumbitmap•8m ago•0 comments

A doomed marriage and a bad ad for Corvus Systems' drives

https://buttondown.com/suchbadtechads/archive/corvus-systems-omninet/
1•rfarley04•8m ago•0 comments

Show HN: LinguaX – a native macOS mouse enhancer (Logi Options+ alternative)

https://linguax.app/
2•deepzz0•8m ago•0 comments

Elon Musk is currently worth more than the next 5 richest people combined

https://www.forbes.com/real-time-billionaires/
1•iamben•8m ago•0 comments

Vercel launches eve agent framework

https://vercel.com/blog/introducing-eve
1•brbcoding•11m ago•0 comments

I built a free, all-in-one document toolkit that runs 100% in the browser

https://docuniversal.com/
1•zarner•11m ago•0 comments

Bash.org Archive

https://bash-org-archive.com/
1•TheSilva•11m ago•0 comments

Made with Wasp, Vol. 2 – from video editing to daycare lesson planning

https://wasp.sh/blog/2026/06/17/made-with-wasp-vol-2
1•cprecioso•12m ago•0 comments

14-point 2-page agreement between the US and Iran leaks

https://www.cnn.com/2026/06/17/middleeast/us-iran-war-mou-text-intl
1•ck2•12m ago•1 comments

Repo that automates ALL sides of building a business

https://github.com/AlexKapadia/AutoFirm
1•alexkapadia1•13m ago•0 comments

Show HN: Alpenglow, a Linux distribution that boots to login in 0.6s

https://github.com/tschk/alpenglow
1•undivisible•14m ago•0 comments

Show HN: A tool that scores your OpenAPI spec for test-generation readiness

https://resources.kusho.ai/openapi-spec-analyzer
4•AkshatVirmani•14m ago•2 comments

Ask HN: Is AI helping with personal projects/tools? What's your stack?

1•fourside•16m ago•0 comments

Show HN: Mira – Open-source and self-hosted AI code reviewer

https://github.com/miracodeai/mira
1•upmostly•16m ago•0 comments

Show HN: Transcribez,Transcription for Kenyan English and Swahili

https://www.transcribez.xyz
1•Smbugua•17m ago•0 comments

Valve Boss Gabe Newell Buys $70M Mansion with Its Own Tunnel to the Beach

https://www.wsj.com/real-estate/luxury-homes/videogame-billionaire-buys-florida-home-for-70-8-mil...
1•HelloUsername•19m ago•0 comments

I built a free JPEG XL converter that runs 100% in browser files never uploaded

https://jpegxlconvert.com/en/
1•El-Necora•23m ago•1 comments

Show HN: A knowledge graph of 15,941 math states – proof as path-finding

https://ansumandas441.github.io/mathematical-discovery-engine/
1•ansuman441•23m ago•0 comments

Pull Requests are Free Puppies [video]

https://www.youtube.com/watch?v=x8_ZZhRL3YU
1•ndr•24m ago•2 comments
Open in hackernews

MicroUI – A tiny, portable, immediate-mode UI library written in ANSI C

https://github.com/rxi/microui
27•peter_d_sherman•1h ago

Comments

peter_d_sherman•1h ago
>"Features

o Tiny: around 1100 sloc of ANSI C

o Works within a fixed-sized memory region: no additional memory is allocated

o Built-in controls: window, scrollable panel, button, slider, textbox, label, checkbox, wordwrapped text

o Works with any rendering system that can draw rectangles and text

o Designed to allow the user to easily add custom controls

o Simple layout system"

ur-whale•30m ago
Nice, except the hard part seems to be missing: interfacing with an actual window system (X11, TUI, WIN32, whatever ...)
foul•25m ago
In demo/ someone can "steal" the renderer part which, being based on SDL, is to some extent cross-platform.
exDM69•6m ago
That's the whole point!

You plug it into your project and it can be rendered on anything that can push pixels and/or triangles to the screen. Events from windowing system go in, list of triangles comes out.

This is intended to be used with OpenGL, Vulkan, D3D and other graphics environment and used in cases where integrating a "real" GUI toolkit would be more trouble than it's worth.

Other popular libs like Dear Imgui or Egui work the same way.

abtinf•29m ago
The first thing I look for in any UI library is accessibility support. Makes it trivial to filter out toy projects.
spwa4•21m ago
Then just save yourself some time. Immediate mode and accessibility are mutually exclusive.
whizzter•20m ago
This is a library in similar vein to "Dear imgui", minimal requirements for integration (rectangle and text rendering) so that it's easy to embed into game-engines,etc for debug UI's and similar things.
monocasa•17m ago
Or, not every UI library is intended for use cases where a13y even makes sense.

Like a debug UI in a game engine, or in an embedded device that doesn't even have input for a13y.

xyzzy_plugh•14m ago
No. As much as I would like it to be the case, that is most certainly a poor criteria to evaluate a UI library.

Dear ImGui [0] is without a doubt the most prevalent immediate mode UI library. It does not have native accessibility features, but that hasn't stopped companies such as Intel, Meta, IKEA and Google from shipping products built upon it. It's also used in a ton of games.

Calling Dear ImGui a toy project at this point would be like calling Unreal Engine a toy project.

It's a shame accessibility support is not more widespread, and furthermore it's a shame that it is so laborious to add it.

0: https://github.com/ocornut/imgui/