Live data from Hacker News

Ask HN: What Are You Working On? (June 2025)

news.ycombinator.com

931–940 of 1001 posts

Re: Ask HN: What Are You Working On? (June 2025)

#931

After 10 years in defense tech, watching missile attacks in Ukraine and the Middle East made it clear how little most people really get about air defense. So I'm builiding this simulator which drops you into the operator’s seat. You can test out different scenarios and build an air defense network against various types of threats (stats from real world). Also have Ukraine, Israel-Iran scenarios. https://airdefense.de…

Looks very interesting!

In your pre-made Estonia-scenario, some of the attacks come from Finland. What's that about?

I understand the launches from the Baltic Sea, but launching Kalibr next to a Finnish garrison seems a bit far-fetched.

Re: Ask HN: What Are You Working On? (June 2025)

#932
I'm working on Alis Studio (https://github.com/alphatica/alis)- software to manage portfolios and research stock market ideas.

It's an MVP but perfectly usable. I needed features that I couldn't find anywhere else:

Parameter optimization with a genetic algorithm

Fuzzy optimization: randomly remove trades or whole markets and see what happens

Data mining: find rules how to exit trades sooner for better profit

Compare strategy results to random trading

Check current drawdown for statistical significance

Write trading systems in Java so I can test every idea under the sun and never be held back by some custom "scripting" language.

Of course, it's open-source. A GitHub star is much appreciated. Thanks!

Re: Ask HN: What Are You Working On? (June 2025)

#935
post #57

I've been working on a 3D voxel-based game engine for like 10 years in my spare time. The most recent big job has been to port the world gen and editor to the GPU, which has had some pretty cute knock-on effects. The most interesting is you can hot-reload the world gen shaders and out pop your changes on the screen, like a voxel version of shadertoy. https://github.com/scallyw4g/bonsai I also wrote a metaprogramming…

It looks wonderful, well done on the design

Re: Ask HN: What Are You Working On? (June 2025)

#936
I'm building a site that tracks the price of power tool batteries (currently Milwaukee and Dewalt). It's been an itch I've wanted to scratch for a while so I would know when the battery was a good price vs. the Ah rating. The prices are scraped nearly daily and plotted on a price-per-ah vs. total Ah chart.

https://drillhound.com/batteries

Re: Ask HN: What Are You Working On? (June 2025)

#938
post #132

I'm working on a new app for creating technical diagrams - https://vexlio.com . It's an area with some heavyweight incumbents (e.g. Visio, Lucid) but I think there's good opportunity here to differentiate in simplicity and overall experience. I'm still in the fairly early phase, and I suspect I haven't quite found the best match of features to customers yet. From a dev perspective this area has a ton of super interes…

Years ago I was making a diagram editor with the intent of doing code generation from diagrams (like simulink, not stateflow). I started with splines for the connections and decided straight lines and junctions would be better for complex diagrams. I realized that a better way to internally define the connecting wires is via a set of lines and their connectivity (vs their endpoint coordinates). Imagine each line segment is defined by a direction (vertical or horizontal) and a position (perpendicular distance from the origin) Like ax+by=d where a and b are either 0 or 1. You also need to define which other lines it connects to. Given the list of connections you can then calculate the intersections at rendering time. By sorting the list of connections you can render the line without features at the start and end, and then draw junctions for any intermediate connections. The beauty of this would be to allow dragging blocks around and having the lines follow with the junctions passing through each other as needed. There is some housekeeping with this data structure (merging colinear segments that connect, breaking segments when needed) but the UI for dragging should be much better than anything out there.

Re: Ask HN: What Are You Working On? (June 2025)

#940

I'm finally getting my online presence in order... This week, I'll set up a Hugo blog with the Ed theme, love it, looks exactly what I'm looking for, and as a former LaTeX enthusiast, it's pretty close. It's readable, minimalist. I'll need to customize the theme, though. I plan to publish blog posts about anything I find interesting. https://gohugo-theme-ed.netlify.app/ In parallel to this work, I'm setting up a simp…

> as a former LaTeX enthusiast, it's pretty close. It's readable, minimalist.

Really nice! But you still need at least basic justification if you want to relate it to LaTeX. ;)

Post reply on HN