Top
Best
New

Posted by david927 3/30/2025

Ask HN: What are you working on? (March 2025)

What are you working on? Any new ideas that you're thinking about?
390 points | 997 commentspage 5
wc_nomad 3/31/2025|
https://getapptrack.com/

I wanted a better way to keep track of applications I sent out, A spreadsheet just seemed like a poor way of tracking data. So overtime I built a desktop application to track my job search activity for me. Most alternatives are web-based, but I didn’t love the idea of broadcasting my job search to third parties. This is a native desktop app (Windows/macOS) that keeps everything local.

Still working on code signing (so no scary "unknown publisher" warnings), but otherwise, v1 is ready.

Would love feedback—especially from others who’ve struggled with job-search tracking!

adelowo 3/31/2025||
Maybe a kanban view might work? I use that on obsidian right now. I found it easier than a list
wc_nomad 3/31/2025||
I had thought about it, but I found that in practice that the majority of applications I send out wind up in the 'Applied' state and don't get much further, leading to a large list in a narrow swim lane.

That and I am able to customize the flow of applications, and the number of swim lanes would be a bit messy. I have my app setup to track interviews, phone screens, take home assignments, and many more.

I found that a smart sorting algorithm is best for displaying the applications.

But its still early days of the app, possibly someday.

ku-man 3/31/2025||
[dead]
Belphemur 3/31/2025||
I just finished building a Night Routine manager for me and my wife that help us keep alternating who does the toddler night routine. I needed this because we both have evening activities and trying to figure how to block day for it while keeping the routine fair was hard.

https://github.com/Belphemur/night-routine

I wanted to build everything from the ground up in Go and have it fully integrated with Google Calendar where we have our family calendar.

It setup full day event with the name of the parent in charge of the night routine. To override a routine, any of us can just rename the event with the the other parent name and the software recalculate the following routines.

I also wanted to give a try to Roo Code in VS Code it only took me 2 days (evenings) to code the whole thing with a proper sqlite db.

conductr 3/31/2025|
My wife and I alternate and handle conflicts by exception. Meaning, if we have a conflict the other person subs in. I think calendaring things around your home schedule will be hard for the 'things'. Like, a lot of our evening activities are scheduled events that we can't control (concert, theater, etc) or even a group (dad's dinner, etc) and the occasional work stuff. Anyways, I just think it would be hard to plan for the home duties as a conflict and instead we try to sub in for each other and shoot for something that 'feels fair' over time instead of quantitatively fair on a tracker. I'm all for building tools for youself so if you think this would be of use then that's awesome, just thought I'd share my 2 cents on the 'problem space' :)

Also, FWIW, I think I'm the one that is in the deficit of fair although dad's usually get a bad rep in this regard. I end up doing a lot more night time reps because she does frequent girls nights and has multiple friend groups she's trying to stay engaged with and is in a theater group and mahjong group, etc. However, I balance it with my occasional "take an entire day" to myself. Stuff like this is hard to track and why I think it's important to shoot for what 'feels fair' and make sure you talk about it occasionally so nobody suddenly has repressed feelings of inequality.

Belphemur 4/1/2025||
This is great advice. In our case, we realized we can't trust our memory anymore, it became hard to remember who done it the most.

We wanted both a system that keeps track of it for us. We want to be sure we can both have activities while still not leaving the other parent on the side and rely on feeling.

In our case we also have recurring events like sport in the evening that happens every week at the same time so this help plan around it and not become unbalanced. We already put everything in the calendar :)

bob1029 3/30/2025||
Still plugging away on my linear genetic programming experiments.

The big debate in my head right now is whether a next byte prediction architecture is better or worse than full sequence prediction.

The benefit of next byte prediction is that we only expect 1 byte of information to be produced per execution of the UTM program. The implication here is that the program probably doesn't need a whole lot of interpreter cycles to figure out this single byte each time (given reasonable context size). However, the downside is that you only get 256 levels of signal to work with at tournament selection time. There isn't much gradient when comparing candidates on a specific task.

The full sequence prediction architecture is expected to produce the entire output (i.e., context window size) for each UTM program invocation. This implies that we may need a much larger # of interpreter cycles to play with each time. However, we get a far richer gradient to work with at fitness compare time (100-1000 bytes).

Other options could involve bringing BPE into my life, but I really want to try to think different for now. If I take the bitter lesson as strongly as possible, tokenization and related techniques (next token prediction) could be framed as clever tricks that a different computational model could avoid.

matthewshere 3/31/2025||
I'm currently trying to transition from a fairly rigid day job into working as an independent developer. The goal is to build useful online tools and hopefully create a sustainable income stream doing something I find more engaging.

One consistent annoyance in my professional work has been dealing with PDFs – specifically, extracting information into editable formats without losing structure. Copy-pasting often creates a mess.

So, my first project tackling this is an online PDF to Markdown converter: https://pdftomarkdown.pro/

I've focused heavily on trying to maintain good formatting for headings, text flow, formulas, and especially table structure (getting rows/columns right in Markdown). It also has an online editor for quick modifications after conversion.

A key aspect for me was privacy: the application explicitly does not save the content of uploaded PDFs or the generated Markdown files. It only stores minimal metadata (email, filename, page count) for registered users' plan limits.

It's very much a "scratching my own itch" project born out of that PDF frustration. Early days, but hoping it proves useful for others too.

skwee357 3/31/2025||
Hey! You sound like an interesting person and I'd like to learn more about your path of transition from employee to an entrepreneur.

I couldn't find a way to contact you, so if you feel like it, drop me an email (email on my website in profile).

6510 3/31/2025||
I've often wanted a bulk tool that takes the title or some other easy to find value from a pdf and renames the file to that.
matthewshere 3/31/2025|||
Appreciate you sharing that requirement!

The need for batch processing to pull out targeted data points from PDFs (rather than converting the whole document) is a valuable insight.

While the current tool focuses on full conversion to Markdown, enhancing https://pdftomarkdown.pro/ to handle specific data extraction tasks like yours is definitely something I'll consider carefully for the future roadmap. Thanks for highlighting it!

voidUpdate 3/31/2025|||
Unfortunately, PDFs are right buggers to work with and there often isn't an "easy to find value" for anything
matthewshere 3/31/2025|||
You're absolutely right, PDFs can be incredibly tricky. That lack of a consistent, easily parsable structure for arbitrary data is the core challenge.
6510 3/31/2025|||
I mean easy in the PDF sense. I have folders full of randomString.pdf and name(15).pdf but those that share a folder all have the same layout.
tday1 3/30/2025||
A website that provides transparency into the new/used car market in Australia: https://carvalue.app/

The goal is to allow anyone to know how much any car is worth at a given age/mileage, and eventually help people make better purchasing decisions.

Be warned: It's still a very buggy prototype at this stage and the data confidence for all but the most popular models is low!

briankelly 4/3/2025||
I use CarGurus in the US to find used cars since you can very effectively filter on features and lifespan (age/mileage). Worth thinking about - used-car buyers might be after a specific year-range/model or only after a body type and set of features.
tacker2000 3/31/2025||
Where do you get the data from?
nickyvanurk 3/31/2025||
Been slowly chipping away at my browser mmo game http://everwilds.io. I've always been curious about MMO software/netcode architecture thanks to playing Guild Wars (the original) in my youth. It's the reason I became a programmer, I wanted to learn how to make games like those. For those interested in following the progress I made a discord channel: https://discord.gg/b3REbeavaT
morjom 4/2/2025|
Guild Wars 20th anniversary is just around the corner. Some of us are expecting an update like the 15th Anniversary one.
departed 3/31/2025||
I'm building a website for watching TV news channels from about the world.

https://worldnews24.tv/

With the recent flurry of historic events unfolding, I want to see it from different perspectives (e.g. U.S., Europe, Russia, China, pro-Palestine vs Pro-Israel), therefore I included channels from all these areas, even channels that may be considered propaganda. So keep a critical eye when watching them.

And it's a way for me to try out Vidstack and SvelteKit. Feels like the routing can be improved though.

1ilit 3/30/2025||
Have been building drawDB[1] for a while now. It's a database schema visualizer. Currently working on adding support for oracle databases. Wrote a parser[2] to allow importing from oracle sql. Have been struggling with motivation though, the pieces are pretty much there but I've been procrastinating on putting it all together. This has been my main side project for almost 2 years now.. I miss the feeling of novelty.. but can't come up with something worth building..idk

[1] https://github.com/drawdb-io/drawdb

[2] https://github.com/1ilit/oracle-sql-parser

iafiaf 3/31/2025|
Seems useful, why isn't this more popular?
blatantly 3/30/2025||
Not much :)

Which I think is a valid answer. I have a job, family and some health issues.

The main thing I am looking at is blogging. Just posts on a problem I solved that week at work kind of thing. Seems like a low time cost way to promote myself. I might dip my toe in the cooking fat of linkedin engagement using the posts.

As much as that is yuk I feel it may be beneficial. Just need one linked in lurker to be impressed and hire me in a few years time!

And by not posting about AI or working 200 hour weeks I might stand out :)

glth 3/30/2025|
I think that is a fantastic idea! I would be happy to see your blog take shape. Blogging is something I genuinely enjoy, as it allows me to put my thoughts into tangible form.
stpe 3/31/2025|
I love playing solitaire card games. But got sick of all privacy intrusive, subscription, ad-riddled crap out there. So I combined learning macOS/iOS development with doing my own games the way I want them (currently Klondike and Spider); https://menubar.games (originally I intended them to only be accessible through the menubar, but got carried away when I realized how easy it was to make iOS versions).

Will continue to refine and possibly do more - love iterating and polishing as a way to learn.

More comments...