Live data from Hacker News

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

news.ycombinator.com

321–330 of 1001 posts

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

#321
https://opendocs.to

It's web service that allows you to channel your google docs through a more human-friendly name. So, you link

opendocs.to/your-name/resume (an example link)

to your public resume at docs.google.com/dlkjbalksdfd

It's a simple redirect service, but it just looks nicer, and I think the opendocs.to sounds natural. Got to learn a lot with this one, using Vite/React, Node, Postgres all in Docker, with a local profile that builds nginx inside with the containers, or a prod profile on the server where nginx proxies into the containers.

Anyways, check it out!

Right now, only free tier available as I some last tweaking and checking.

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

#322
I've been working on cardcast.gg. It gives you the ability to play Magic: The Gathering with your friends remotely using a webcam.

I got back into MTG back during the pandemic after a long hiatus and Spelltable is what brought me back. My playgroup lamented more features and something tailored to our needs, so curiosity got the better of me and here we are. :)

I've never worked with computer vision before, but I went through a whole journey that started with the classical computer vision techniques and ended with recently migrating to the transformer-based models. Been a really cool adventure!

My playgroup has been loving it so far, and I would love for people to try it and tell me what breaks! Discord is on the site.

https://cardcast.gg

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

#323
I built a desktop X.509 certificate decoder, and a user recently asked for a CLI version that outputs JSON — so I ended up building x509dump.

It’s a command-line tool for decoding certificates and CSRs into structured JSON rather than OpenSSL-style text output.

It decodes the underlying ASN.1/DER structure so fields and extensions are fully expanded, making the output easier to work with programmatically.

I’m planning to expand it to support more PKI artefacts (e.g. CRLs, Keys) over time.

I’m also planning to handle less well-formed inputs (e.g. missing PEM headers/footers, whitespace, or extra surrounding text), which tends to come up in real-world data.

It’s free to download — would be great to get feedback if anyone tries it.

https://www.redkestrel.co.uk/products/x509dump

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

#324
A boring solution for a boring problem - Working with PDFs.

I've been making a browser-based PDF editor that runs on-device via Webassembly / PDFium. Many of the hard parts were done by the open source embedpdf project, and I've been adding my own custom tools on top of it.

It does the usual annotation stuff — highlights, comments, stamps, etc. working on some more advanced stuff now - regex search/redact, measurements and takeoff tools for AEC industry.

https://www.Draftpdf.com

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

#329
I've been using speech-to-text tools every day now especially for dictating detailed prompts to LLMs and coding agents. I personally use VoiceInk which is open-source.

I tried to look for what other solutions are available and I've collected all the best open-source ones in this awesome-style GitHub repo. Hope you find something that works for you!

https://github.com/primaprashant/awesome-voice-typing

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

#330
My daughter introduced me to Pokémon TCG. We found a local group and have been playing for about a year and a half. At this point we have so many bulk cards that it takes way too long to search through them. Other than a few specific pulls we keep in a binder, we honestly have no idea what we own.

I’ve been building a phone app + website (https://MyBulkCards.com) to scan cards and organize where everything is. It’s pretty basic right now, but I can store cards in boxes like “Box 1 AAA, Box 1 BBB, …” and find cards easy peasy. There’s also a friends feature so I can see what others have locally. We borrow cards from each other quite a bit.

It’s been a fun project to build. I trained one model to find a card in the camera frame and another to identify it. Still iterating a lot. One epoch on my Mac M4 takes about 2 hours, and I’m still seeing improvements past epoch 10. Even now, it can find and identify a card more often than not, even without the OCR bits. Both models are under 20MB, run directly in the camera frame, and are fast enough to identify a card as I slide it into view.

I started with Android since that’s what I have, and I’ve shared the app store testing link with my local group for testing. The app is built in React Native, and I’m hoping to get an iPhone version out soon since there are a bunch of iPhone peeps. A couple of the players also got me into MTG, so now I’ve got a pile of Turtles cards too. I’ll be training an MTG model next. I don’t think it’ll be too bad since I can reuse most of the same approach.

Post reply on HN