Live data from Hacker News

Ask HN: What Are You Working On? (April 2026)

news.ycombinator.com

231–240 of 1001 posts

Re: Ask HN: What Are You Working On? (April 2026)

#231
The same thing I do every night - try to make FreeBSD work better on EC2!

Ok in all seriousness, right now I'm tracking down an issue with the ENA network interface which results in sporadic packet loss. Triggering the issue is hard and seems to require a large number of TCP segments being pushed to the NIC very fast. So far I've found that my reproducer stops reproducing when I turn off write combining on the MMIO space used for low latency queueing, which is... just a little bit weird.

Re: Ask HN: What Are You Working On? (April 2026)

#232
I am working on [1] a modernized open (AGPL) stack for interactive tutoring systems. SRS++, with hooks for defining your own pedagogical protocols over knowledge dependency graphs, Elo rating systems, etc, and with an eye toward gracefully differentiable curriculum that can hill-climb in terms of its efficacy.

With this stack, I'm scaffolding several (fingers crossed) commercial learning SaaS products. The first [2] is LettersPractice - a minimalist early literacy app that's family-first, in so far as it presumes an adult supervisor who co-learns strong confidence as a phonetic coach both at and away from the app. Putting considered rails on the parent-child reading experience.

The second set of apps is in music, with some experimental dev right now against piano (via midi devices), flute [3], aural skills, and sightsinging.

[1] https://github.com/patched-network/vue-skuilder , https://patched.network/skuilder

[2] https://letterspractice.com

[3] https://flutor.app/

Re: Ask HN: What Are You Working On? (April 2026)

#233
I'm building an immediate mode GUI Win32 app on top of Windows.UI.Composition visuals, maybe building up a library with it along the way. Just a hobby project / experiment. I hate this problem [0] so I went down a rabbit hole trying to solve it.

https://github.com/microsoft/microsoft-ui-xaml/issues/5148

Re: Ask HN: What Are You Working On? (April 2026)

#235
Mirror Immich - macOS Photos exporter for Immich with full metadata: https://flowlogix.com/mirror-immich.html

Apache Shiro PMC chair (trying to get financial support for the project) https://shiro.apache.org

Jakarta EE Components: https://github.com/flowlogix/flowlogix and it's starter: https://start.flowlogix.com

Working on all of these for the last 15 years, looking for more exposure.

Re: Ask HN: What Are You Working On? (April 2026)

#239
My team and I have been building stagex, a FOSS multi-party reviewed/built/signed, deterministic, full source bootstrapped, llvm native, container native, musl/mimalloc native linux distribution to build all the things.

https://stagex.tools

Based on top of that is Caution, the first FOSS general purpose verifiable compute platform launching next week in private beta.

https://caution.co

Re: Ask HN: What Are You Working On? (April 2026)

#240
Creating interactive pivot tables from large relational tables.

Many people know that a handy data analysis feature in Excel is to create a pivot table from a spreadsheet. But spreadsheets are limited to just a million rows. You can get around this limit by jumping through a bunch of hoops.

My system lets you easily create tables with thousands of columns and hundreds of millions of rows. (Just drop a CSV, Json, or other file on a window to create a table.)

Now you can create a pivot table from it with just a few clicks of the mouse. It is fast (I created a pivot table against an 8.5 million row table of Chicago crime data in less than a second.)

The resulting pivot table is interactive. Each cell (row/column intersection) has all the row keys mapped to it. Double-click on any cell and it will instantly show you all the rows in the original table that were used to calculate the cell. You can then analyze those rows further.

It also works well against much larger tables. I have tested it out against 25M, 50M, 100M, and 200M+ row tables.

Post reply on HN