Live data from Hacker News

Ask HN: What Are You Working On? (June 2025)

news.ycombinator.com

281–290 of 1001 posts

Re: Ask HN: What Are You Working On? (June 2025)

#281
Started on a dependency-free (including manual object file creation, excluding manual linker) single-pass C compiler with a goal of it being self-hosting. Spawned after my previous project (single-pass Wasm JIT) started to plateau a bit and wanted to start something more "full-stack compiler"-y.

https://github.com/csjh/c-liva

Re: Ask HN: What Are You Working On? (June 2025)

#284
I've been working on my own version of a literate programming system (https://github.com/adam-ard/organic-markdown). It's kind of a mix of emacs org-mode, jupyter, and Zettelkasten. But, because it's based on standard pandoc-style markdown, you can use it with a much wider range of tools. Any markdown editor will do.

Even though I made it as a toy/proof of concept, it's turned out to be pretty useful for small to medium size projects. As I've used it, I've found all kinds of interesting benefits and helpful usage patterns. I've tried to document some; I hope to do more soon.

--https://rethinkingsoftware.substack.com/p/the-joy-of-literat...

--https://rethinkingsoftware.substack.com/p/organic-markdown-i...

--https://rethinkingsoftware.substack.com/p/dry-on-steroids-wi...

--https://rethinkingsoftware.substack.com/p/literate-testing

--https://www.youtube.com/@adam-ard/videos

The project is at a very early stage, but is finally stable enough that I thought it'd be fun to throw out here and see what people think. It's definitely my own unique spin on literate programming and it's been a lot of fun. See what you think!

Re: Ask HN: What Are You Working On? (June 2025)

#285
Still working on https://periplus.app, and recently started to see some traction.

It's an environment for open-ended learning with LLMs. Something like a personalized, generative Wikipedia. Has generated courses, documents, exams and flashcards.

Each document links to more documents, which are all stored in a graph you grow over time.

Re: Ask HN: What Are You Working On? (June 2025)

#286
Tiny program that batch renumbers sections/clauses in documents.

It is like MS Word "Bullets and numbering" but it's a small UNIX filter, no GUI, much faster and smoother than MS Word or Google Docs.

Perhaps the beginning of a markup language for text or HTML files intended to be converted to MS Word.

Re: Ask HN: What Are You Working On? (June 2025)

#287
It's kind of boring but I'm learning k8s and argo-cd to figure out if I can do feature-branch deployment to a cluster.

like, it would be very cool to do something like have your feature branch be deployed to a separate pod in dev cluster, and have an ingress rule set up so that it points to that pod only.

So if your dev environment usually points to .dev.example.com,

Deploy your feature branch to a dev cluster, but on a different pod. Then have it reachable to .feature-branch-1.dev.example.com without touching main.

I think it's a neat idea and I'm sure it should be possible if I configure some istio settings.

It's all new thing and it's fun to have a direction towards learning

Re: Ask HN: What Are You Working On? (June 2025)

#288
https://sivic.life

The premise is that when I read social spaces like Reddit or X, if the government has done anything contentious you get nothing more than strident left takes, or strident right takes on the topic. Neither of which is informative or helpful.

So I have set up a site which uses AI which is specifically guided to be neutral and non-partisan, to analyses the government actions from the source documents. It then gives a summary, expected effect, benefits and disadvantages, and ranks the action against 19 "things people care about" (e.g. defence, environment, civil liberties, religious protection, etc.)

The end result is quite compelling. For example here's the page that summarises all the actions which are extremely beneficial or disadvantageous to individual liberties: https://sivic.life/tyca/tyca_individual_liberties/

Re: Ask HN: What Are You Working On? (June 2025)

#289
I'm working on an MCP to give your coding agent the ability to generate on-demand Mermaid diagrams about anything in your codebase. Among other benefits, it is very helpful for spotting unnecessary code or architecture that can accumulate while vibe coding.

https://www.npmjs.com/package/@mindpilot/mcp

Claude Code Quickstart:

``` claude mcp add mindpilot -- npx @mindpilot/mcp ```

Re: Ask HN: What Are You Working On? (June 2025)

#290
post #264

I've been working on a fully electric last-mile delivery company: https://hudsonshipping.co Beyond the landing page (built with Astro), I've been building all of the route optimization, the delivery and warehouse management systems. A combination of go and java has allowed me to write a few microservices in the past 6 months to handle all of my logistical processes, and I'm just testing the mobile app in the field as…

This is interesting! Have you considered leveraging Google OR Tools[1] for route optimization? At a previous hyper-local eCommerce startup I worked for, we used it to solve similar problems. Although the setup and integration is not super easy, but the results far outweighed the effort.

1 - https://github.com/google/or-tools

Post reply on HN