Live data from Hacker News

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

news.ycombinator.com

801–810 of 1001 posts

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

#801
https://NameSampler.com

I’m working on a name generation tool that uses 83 structured naming methods. Examples: React (Verb-based), Vue (Obsolete English), Facebook (Compound), Netflix (Portmanteau), Lyft (Creative Misspelling), Alexa (Personal First Name), etc.

I wasn’t happy with the slop generated by the overly general name generators or my own prompting/brainstorming. I went on a tangent and read the top (5) books on naming from Amazon. From there I was able to create very specific and detailed prompts which started producing consistently good names, the odd great one, and a small amount of crud.

Eventually this escalated from a large spreadsheet of detailed prompts to a side project.

Please give it a try, I’d be happy for any feedback on this early version. (I recommend the options tabs for some granular tweaking)

(The name was inspired digital music samplers where there is a lot of rapid experimentation and tweaking similar to this app)

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

#803
Work with sensitive data without seeing it.

We're building Redactsure.com

A novel technology whose goal is to separate data from interactions entirely. We are building a custom OS whose first goal is to detect, hide, and then use sensitive data throughout any web interface.

Building a new browser rendering layer with real time transformer inferencing is hard but it's been an amazing tech to work on. Long term we think this technology will change the way all remote work is done at a fundamental level.

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

#804
working on a cross web, self organizing digital footprint that serves as a human memory and identity for LLMs

https://github.com/saxenauts/persona

90 percent of the AI companion use cases today can work well with just a vector DB to retrieve facts, and chunks of memory, but a connected digital footprint would need a graph+vector hybrid.

memory in the coming future will not just be about fact retrieval but need backlinks of memetics, new streams of data, holistic analysis, infinite schema-less key value store, causal reasoning and other things that define "who and why" of a human and imitate neuroscience's understanding of how our identities work today. this then needs to be translated as language chunks to LLMs

benchmarking this against popular tools, on longmemeval. getting good results so far. i would love to learn from you guys, what's your take on identity and human representation for LLMs in the coming future

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

#805

Just built a last-mile logistics management solution to replace a SaaS solution for a delivery company I used to be involved with. Handles everything from real-time driver tracking, public order tracking links, finding suitable drivers for orders, batch push notifications for automatic order assignment, etc. Backend: Feathers.JS, Postgres + TimescaleDB & PostGIS, BullMQ, Valhalla (for multi-stop route optimization al…

Would you be interested in sharing the code? I'm working a similar project and wouldn't mind exploring your code base.

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

#806
Compiler back-end for WASM and more, but with the core at a slightly lower abstraction level than WASM and with a somewhat novel ABI.

To abstract around register file differences in different ISAs, I'm using SSA-form with spilling to a separate "safe stack". Enforces code-pointer integrity for security's sake (not unlike WASM) but extended also to virtual method tables.

"Partial-ISA migration" allows a program to run on multiple cores with slightly different ISA extensions. "Build-migration" is migration to another build of the same program in the same address space: Instead of trying to debug an optimised program, you would migrate it to a "debug-build" to attach a debugger. Or you could run a profiling build, compile a new build using the result and then migrate the running program to the optimised build: something that previously only JIT-compilers have done AFAIK.

I'm out of the research stage and at the stage of writing the first iteration of the main passes of the compiler, but now and then I've had to back-track and reread a paper on a compiler algorithm or refine the spec. It has taken a few years, and I expect it to take a few years more.

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

#808
I moved my blog over to Jekyll hosted via Github: https://blog.andrewrondeau.com/

The site itself isn't anything "special." I've had a personal website for about 25 years; the past few years I finally moved from making HTML by hand to using various CMSes. I tried a "no database" CMS that my hosting page had, then I wrote my own CMS, https://github.com/GWBasic/z3, to learn node.js, but then I had to go back because Heroku dropped the free tier.

Jekyll is interesting. As a Mac user, I'm surprised there isn't a push-button app, like MAMP, to just run it. Instead, I got exposed to some weirdness with Ruby versioning that, because I don't have any Ruby experience, was frustrating.

The default Jekyll template has warnings, but when I tried to fix them, I ended up jumping into a rabbit hole of sass versioning.

I also ended up jumping into a rabbit hole with setting up redirects from old urls on my blog to their new locations. I don't touch Apache / cpanel that often, so there was a bit of a learning curve for me.

One funny thing was that I set up two redirects, in cpanel, from the same url to two different urls. (It was a mistake!) I couldn't delete them, so I had to submit a service request with my host.

Two interesting things that I do not have time to do:

- Set up Github actions to deploy on my original host (andrewrondeau.com) - Set up redirects from blog.andrewrondeau.com -> andrewrondeau.com

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

#809
Phoenix — https://github.com/shofetim/phoenix

A multi-server process supervisor. Existing init processes (systemd, runit, s6, etc) work great on a single server but when you need to manage/deploy many servers, the tooling gets really complicated (K8s). Phoenix extends the process supervision model from one server, to many. Run this thing once / keep one copy of this around / keep this running on all machines that match pattern X etc.

Turns out the (obvious in hindsight?) problem is automated but simple networking. Currently digging deep into wireguard based overlay networking before rolling the next version of Phoenix out.

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

#810

A few months ago I launched SpiesInDC - https://spiesindc.com , a mail-based (as in the real mail) subscription service about Cold War history. Subscribers, ahem secret agents, receive packages every few weeks containing reproductions of famous documents, stanps from the USSR, Cuba, Czechoslovakia, coins, and other fun stuff. I keep refining the packages every week to make it better and it is so much fun.

Something similar regarding American history by mail was pitched as a successful business on shark tank this season:

https://www.youtube.com/watch?v=aA4h3WBeohc

Post reply on HN