Live data from Hacker News

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

news.ycombinator.com

211–220 of 1001 posts

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

#211

I hacked my old kindle and turned it into a eink dashboard for my daughter’s school! Now planning to enahace it a bit further and make it easy to customise. Here’s a a detailed write up of the process: https://samkhawase.com/blog/hacking-kindle/

Genuinely brings a smile to my face. And such a nice exposure for the kid.

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

#212
After struggling with bloated, ad-filled debugging tools, I decided to build MyDebugTools—an open-source, clean, and ad-free debugging tool. It’s designed to simplify the debugging process and help developers stay focused. No ads, no distractions—just efficient debugging. You can check it out at mydebugtools.com, and I’d really appreciate your feedback or suggestions!

https://www.mydebugtools.com/

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

#213
Last year, I repurposed an old laptop into a simple home server.

Linux skills? Just the basics: cd, ls, mkdir, touch. Nothing too fancy.

As things got more complex, I found myself constantly copy-pasting terminal commands from ChatGPT without really understanding them.

So I built a tiny, offline Linux tutor:

  - Runs locally with Phi-2 (2.7B model, textbook training)
  - Uses MiniLM embeddings to vectorize Linux textbooks and TLDR examples
  - Stores everything in a local ChromaDB vector store
  - When I run a command, it fetches relevant knowledge and feeds it into Phi-2 for a clear explanation.
No internet. No API fees. No cloud. Just a decade-old ThinkPad and some lightweight models.

Full build story + repo here: https://www.rafaelviana.io/posts/linux-tutor

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

#214
Working on Uncloud [1] — open source tool for self-hosting containerised apps across multiple machines. You can combine cloud VMs and on-premises to create hybrid compute environments, e.g. for cost optimisation or data privacy.

While Kubernetes offers power at the cost of complexity, Uncloud focuses on simplicity for common deployment workflows.

Progress from this month:

  - Enhanced Docker Compose support: You can now deploy your entire stack from standard Docker Compose files. This includes volumes, environment variables, resource limits, scaling and logging configuration.
  - Volume management: Create and manage Docker volumes across your cluster with automatic scheduling based on volume location.
  - Context management: CLI command to quickly switch between multiple clusters, e.g. homelab and production one
I'm particularly excited about the volume management system as it provides the cluster semantics to the good old Docker volumes. It uses a constraint-based scheduler that ensures services sharing volumes are properly co-located.

If you're seeking something between "just Docker" and full Kubernetes for deploying applications on your own infrastructure, I'd love to get your feedback on Uncloud.

[1]: https://github.com/psviderski/uncloud

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

#215
I've been working on https://textquery.app -- query raw data from your desktop.

I love exploring data, but it always felt clunky to juggle multiple tools, write code/commads, just to import and query a dataset. While there are multiple GUI tools for databases, none are focused on raw data.

TextQuery is the tool I built to solve that. You can import CSV, JSON, and XLSX files and start querying them instantly using SQL. Want to create a chart? Just hop over to the Visualize tab.

I'm also rolling out a major update this week — adding tabs, filters, a redesigned UI, and keyboard shortcuts.

Looking ahead, I’m planning to expand support for more formats (like Parquet and ORC) and data sources (like Postgres and BigQuery), so you can import data from anywhere, and query it right from your desktop. Something like a local data warehouse. With Apple Silicon, the capability of a desktop can make it very cost-efficient compared to something like BigQuery, Snowflake, or Athena.

Happy to hear any feedback!

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

#217
I wrote a novel in French a couple of years ago that I want to translate to English. The way I do it is paragraph by paragraph: copy/paste a paragraph in OpenRouter (Sonnet or Gemini), get back the translation, and rewrite/adjust it.

It works well but copying/pasting back and forth gets old very fast, and it would be better if the process was done inside the word processor. For some reason (various reasons) I still use Office 2003, which doesn't have any AI feature. (It does have a "translate" function but it's awkward to use and not very good.)

So I wrote a macro to send selected text to OpenRouter and replace with the response (with a system prompt that says to only output the translation, otherwise most models start with "Here's the translated text:")

I had never written a macro in vba; I got started with Sonnet and adjusted many parts with the help of StackOverflow (which turns out to have more information about vba than Sonnet...)

And finally it worked; and it turns out to be an incredible boost to translation productivity!

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

#218
I’m working on Catchcam - https://hackaday.io/project/199220-catchcam-speed-camera-det..., a privacy-first, offline speed camera detector for drivers. Unlike apps like Waze or Radarbot, Catchcam doesn’t track your location or require an internet connection. Just plug it into your USB socket, and you’re good to go.

Key features:

• Built-in speaker and LED for alerts

• Preloaded with 66,000+ known speed camera locations (more to come)

• Easy updates via drag-and-drop on your PC

It’s been a fun project to build, and I’m excited to see it help drivers stay away from speeding tickets while keeping their data private.

I’d love to hear your thoughts or suggestions!

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

#219
post #96

I am working on the sunflower plant density estimation problem. The goal is to be able to estimate the germination rate as early as possible. Farmers benefit from such information, because: - there are lots of expenses still to be made (fertilizer, pesticide, salaries), which may not be worth it if germination is under certain threshold - if detected early, there is still time to plant another grain or to fill up the…

Interesting, I'm also involved in a project to do yield prediction, but with a ground-vehicle with camera's on top to drive between strawberry and blueberry plants.

Yield prediction is huge indeed, because overshooting your prediction means seller stuff for a lower price. Undershooting means paying for someone's product to make up for the difference. Probably there's quite a bit of matchmaking in between those under and overshooters and someone making a good buck out of that too.

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

#220
I'm working on a Kaggle competition about predicting subsurface models - a map of the geologic layers beneath a given area - from seismic data.

I don't expect to place competitively but I learn a lot from these competitions. I like competitions like this that are connected to physical problems and datasets (though sadly this one is largely simulated), I learn as much about the broader world as I do deep learning. I've always idly wondered how seismology worked, and now I have an excuse to dig into it.

It's also given me a greater appreciation for the "seismology" we perform in our day to day, like knocking on things to see if they're hollow, or (as I learned here a while back) the way battitores test the porosity of cheese by knocking on it with hammers.

Post reply on HN