- repo: https://github.com/vseplet/PPORT
Ask HN: What are you working on? (April 2025)
681–690 of 1001 posts
Re: Ask HN: What are you working on? (April 2025)
#682Its been a blast to build. At one point I was hosting my own ORS server but that's extremely silly to do when Mapbox has a very generous free tier. Learning about all of the open source tooling and open data available in the mapping world has been incredible.
The cost of the Hetzner box it runs on isn't much more than a Caltopo pro subscription with the added bonus of being much easier to share with non-hikers.
A quick demo: https://www.loom.com/share/a5f7a7c23457400aa92b3f0f71a0008f
The app: https://go.trailboundapp.com
No marketing site, no onboarding, or any real UX attention paid to the app at this point, it is mostly Just For Me and will probably remain that way once I land a job again.
I'm starting to chip away at an iOS app so I can get offline access to maps and routes, but I'm not a Swift dev so the going is slow.
Re: Ask HN: What are you working on? (April 2025)
#683I got tired of waiting for Perplexity to launch Comet, so me and a friend just decided to build our own. This is probably the most fun I have had building a project.
Re: Ask HN: What are you working on? (April 2025)
#684An easier and more secure way to work with secrets during local development. It’s open source, cloud/vault agnostic, and doesn’t require a single line of code change to use. I call it RunSecret.
RunSecret is a CLI that replaces your static secrets with “secret references” in your ENV VARs (or .env files). These references are then replaced when your application starts up by reaching out to your secret vault of choice - making your .env safe to share across your whole team and removing a slew of gotchas when you use git ignored env files. Even better RunSecret redacts any instance of these secrets from your application output, reducing your chances for accidental leaks.
The approach is inspired by the 1password CLI, but built for the rest of us. I’ve got AWS Secrets Manager support pretty well baked, but the goal is to support all major secret vaults within the next couple of months (Azure KeyVault is already in progress).
Re: Ask HN: What are you working on? (April 2025)
#685I learned a lot about text encodings, multipart emails, inline attachments, postgres' tsvector/tsquery, etc. I'm particularly proud of how I was able to use `WITH RECURSIVE` to get an email's entire thread, which seems basic but the other archive apps I tried didn't have that feature.
Re: Ask HN: What are you working on? (April 2025)
#686More advanced digital marketing features, scaling and what's typical for mature product, an upgrade cycle of for major 3rd party dependencies.
Re: Ask HN: What are you working on? (April 2025)
#687Open, secure personal genomics using fully homomorphic encryption.
With 23andMe bankrupt, I want to put out somewhere secure people can put their genomic data and receive insights. In a few months, I'll have a protocol in place to open up the data to third party apps (with user consent). The data does not have to be decrypted ever to be operated upon!
Re: Ask HN: What are you working on? (April 2025)
#688https://akprasad.github.io/tamil/
It's been a lot of fun getting the basic tools going: transliterators, morphological generators and analyzers, and some other things on top. But the main goal is to improve fluency as quickly and efficiently as possible.
Re: Ask HN: What are you working on? (April 2025)
#689It's a translation map of Indian languages - type in a word, see the translations across 22 languages.
I was inspired by this HN post (https://news.ycombinator.com/item?id=43152587), and wanted to make something similar for India (which has similar linguistic diversity). Translations are fetched with Google Translate, but I also display 'romanizations' (transliterated into Latin script), which are generated with a local ML model.
Now that it's done, I've mostly been working on a little Markdown-to-HTML parser in Haskell.
Re: Ask HN: What are you working on? (April 2025)
#690https://github.com/runsecret/rsec An easier and more secure way to work with secrets during local development. It’s open source, cloud/vault agnostic, and doesn’t require a single line of code change to use. I call it RunSecret. RunSecret is a CLI that replaces your static secrets with “secret references” in your ENV VARs (or .env files). These references are then replaced when your application starts up by reaching…
I assume this is to cover the non-CI/CD scenario.