Live data from Hacker News

Ask HN: What are you working on? (May 2026)

news.ycombinator.com

241–250 of 1001 posts

Re: Ask HN: What are you working on? (May 2026)

#241
We're working on AI user testing, to make it dramatically faster and cheaper for product managers and dev teams to find major usability issues with web sites. Give us a web site and a task users would do (e.g. "Add a pink shirt to the shopping cart"), and we have some AI users try their best to do the task. The output is a report with a prioritized list of problems identified, plus narrated videos that show each AI user trying the site.

If you want to try it out, we offer some free credits at https://fuguux.com

Any feedback you have would be incredibly helpful! We're considering more kinds of reporting, support for QA testing, better integration with CI/CD, and more.

Note: we don't want to replace real user testing, but rather complement it. With AI user testing, you can get quick feedback on potential usability problems in hours for a fraction of the cost, making it so you can iterate much faster. We advocate doing user tests with real people to understand problems that require domain knowledge or nuance.

Re: Ask HN: What are you working on? (May 2026)

#243
Acoustic diagnosis of electrical problems on the electric grid!

I'm building a tool that allows you to determine the health of an electric transformer from only your phone. It tells you:

    - the loading
    - the health of the windings and core
    - and whether the phases are unbalanced
I used to be a submariner, so my professional background is in power plants and sonar analysis, so I'm getting to combine the two in this.

Acoustic diagnosis of electric issues is FASCINATING, and it feels like there hasn't been a lot of research into this, so I have been slowly chasing down various acoustic patterns I find and try to derive them from first principles of physics.

I'm making an iPhone app for it, and Xcode has been truly awful: non-deterministic, crashing all the time, and error messages that tell me absolutely nothing. I would like to use xtool, but it doesn't have the preview, which I need for debugging.

Re: Ask HN: What are you working on? (May 2026)

#244
GBP (Google Business Profile) is getting extremely popular for B2C business marketing - e.g., https://trends.google.com/trends/explore?date=today%205-y&q=...

We just received the API usage approval from Google, and I'm integrating GBP to https://pinpost.io this week (our reliability first social media management tool)

Re: Ask HN: What are you working on? (May 2026)

#245
post #25

[NO-AI] Being a weightlifter for 20+ years now, I'm working on a barbell speed and path tracking sensor based on newer IMU hardware technologies, which makes it both more precise and cheaper than camera- or actuator-based systems. Ultimately it helps you lift and train safer and better. It's an intersection of industrial design, hardware, firmware, and software (and some sport science, of course). This intersection i…

i'm curious about how effective path tracking can be in comparison with computer vision based inverse kinematics of the body itself. do all forms of bad form have detectable imu signatures?

i wonder if it would make sense to consider it as a data problem, capture a bunch of high fidelity inverse kinematics data for various forms of bad form/dangerous lifting along with the imu data and then work from there. there could be some interesting and unexpected features that are easier to detect than straying from straight line paths with some tolerance.

Re: Ask HN: What are you working on? (May 2026)

#246
muster and muster-pattern-library. (https://github.com/azide0x37/muster)

an agentic coding scaffold/framework you can reference when building out your next random raspi project. prefer to build around systemd units first; make an idempotent installer script, then put as little as possible custom coding around that.

`impl muster` comes down to: /build out this tool wiring together `patterns` like: C3.dropfolder-trigger; R2.device-binding; C4.lazy-resource-gate

or composite patterns like:

T2R4.device-triggered-conveyor "Bind a physical device event to a bounded ingest job that waits for hot-storage capacity, proves cold-storage capability, stages local work, and hands output to a hot/cold conveyor."

I need to back up a couple hundred DVDs, so with muster I get out:

dvd-ingester T2R4.device-triggered-conveyor

Architecture DVD media becomes ready -> udev rule adds SYSTEMD_WANTS=dvd-rip@%k.service -> systemd runs /opt/dvd-ingester/current/bin/dvd-rip-one /dev/%I --apply -> dvd-rip-one proves DEST_DIR and waits for HOT_DIR capacity -> completed rip moves to HOT_DIR/ -> dvd-publish-one.timer drains HOT_DIR to DEST_DIR -> publish writes DEST_DIR/.incoming- and atomically renames final output

Pipelined; ejects after rip completed. Monitors local disk capacity, retries after NAS comes back online; resumes after random reboot; etc.

Re: Ask HN: What are you working on? (May 2026)

#247
Closing up work on my modular, hobbyist, analog computer. (Finishing up the manual—the hardware is already a wrap).

Something I can finally enjoy: just playing with it. I tediously wired up a pair of pendulum simulations to drive an XY oscilloscope—got a nice Lissajous curve.

But now I want to double it to four pendulums. Each axis (still just X and Y) to be driven by the sum of a pair of pendulums. With them out of phase, the curves appear to sometimes collapse but then suddenly explode again…

(Love to eventually hook it up to an actual plotter.)

Re: Ask HN: What are you working on? (May 2026)

#250
Fitting lines to 'xray' scans of buildings - turning pixels into vector art.

Lets say you have a complex industrial plant, or datacenter you want to upgrade.

You scan it with lidar and get a pointcloud and 360 panorama images. This gives you a large dataset, but what you really want is a floorplan, a lite CAD plan showing the racks, cable trays etc.

You take the scan, slice the pointcloud and make an ortho image .. it really looks like an xray of a building from the top down.

Then someone has to manually trace that in CAD to make a useful 3D model they can use for designing the upgrade.

So Im automating the boring manual part - turning the xray plan pixels into vector polylines, using machine learning.

One of our clients scanned their datacenter, and we generated a floorplan that shows all the rack box positions, cable trays, pipes etc.

Other examples : drawing the weld lines of patches in steel storage tanks, drawing in all the steel girder beams in a scan of an old railway bridge, or the windows, doors, ceiling pipes of a commercial realestate refurb.

gord at quato.xyz

As part of this work, were looking at running our custom machine learning kernel on multi-core x86 CPUs.

Post reply on HN