Live data from Hacker News

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

news.ycombinator.com

141–150 of 922 posts

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

#141

I live next to a school, so there's a low speed limit (30 km/h). Still, people drive like race drivers and the city hasn't ever responded to the residents' hopes of introducing a speed camera. I wanted to have some data on how many people speed, the max speed recorded, that sort of thing. Things the city should be doing after many complaints of dangerous driving and people being almost killed on zebra crossings. I ha…

Not sure where you are, but 30kmh sounds Dutch. Filming the public road from your private residence is illegal. In practice, no one cares. Cops will even ask you nicely for footage if something went down in your street. Anyway, best of luck with your project.

It's a complex discussion in the Netherlands in which the data protection agency (AP) has a very strict view (they claim it's not allowed) while for example the associated press sees it very different.

There is a key difference between recording vs publishing. There are more restrictions on publishing and an objective assessment needs to be made between the interests of the person in the footage and the general public or publisher.

I would argue that recording the road to collect speed data, not keeping the recording longer than needed and not for example recording license plates, would pass in the Netherlands. Since you're making an assessment between different interests and the is limited privacy impact. Of course assuming this is happening on a public road and not someone's property.

Publishing the recordings instead of just the average speed data would be a very different story, especially if the cars or drivers can be identified.

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

#142
post #93

Earlier quoted context omitted.

>A parser combinator library. Cool. I got interested in this subject recently. Have been checking out some text articles and videos about it. Unfortunately there is not much info available (and some of it is advanced stuff), or at least I couldn't find much, so far. I am working on a library, which is not exactly a parser combinator one, but borrows some of those ideas, for use in other projects. >One of them is call…

> Unfortunately there is not much info available [.] Parser combinators are a bit hard to get into, the most helpful resource for me was `nom`'s "Choosing a Combinator" document [1], which is dense but gives you an overview of all the Lego bricks which you can then start imagining how to fit together. I've not really read it, but there's also the original paper on the subject [2] (as linked to by the `parsec` documen…

Thanks for the reply. I will check out those links.

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

#143
post #24

A parser combinator library. I'm writing a tool that will do static analysis of SQL (in a very limited fashion, it's a build tool and not a static analyzer, but I need to understand dependency relationships between statements). I started out using `nom`, but found it imperfectly matched to my needs (underpowered in areas I desired and overpowered in areas I didn't need for my project). `nom 8` came out with some inte…

I did something like this some time ago [0] and still using it in prod - feel free to get inspiration in case you find it useful.

[0] https://github.com/preludejs/parser

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

#144
Taking a sabbatical and spending more time on an open source XMPP web client that I started 10 years ago already.

https://conversejs.org

The website is a bit old, but lots of exciting changes are happening under the hood and I finally have the time to make big architectural and performance improvements.

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

#145

I've been working on The Road to Next [0] for almost a year. In the end, it's more than just a course on Next.js. It's a deep dive into full-stack development, covering key third-party integrations that empower you to build your own products. [0] https://www.road-to-next.com/

Oh hell yeah, your Road to React was exactly what the doctor ordered when I first waded my way into the full stack ocean years ago. I'm excited to see how this progresses!

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

#146
Building a wheeled robot with arms to help automate household chores - https://x.com/ajhai/status/1891933005729747096

I have been working with LLMs and VLMs to automate browser based workflows among other things for the last couple of years. Given how good the vision models have gotten lately, the perception problem is solved to level where it opens up a lot of possibilities. Manipulation is not generally solved yet but there is a lot of activity in the field and there are promising approaches to solve (OpenVLA, π0). Given these, I'm trying to build an affordable robot that can help around with household chores using language and vision models. Idea is to ship capable enough hardware that can do a few things really well with the currently available models and keep upgrading the AI stack as manipulation models get better over time.

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

#147
Another movie recommendation web app. Long ago, I used Jinni, and I liked their labelling method a lot, categorising movies by mood, plot type, character types, etc. Then, Jinni was sold, disappeared and I wanted to create something similar. The Christmas days off I had the time and I started making it.

* https://moviematey.com/

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

#150
I've been building https://canine.sh for the past year, which is an open source Render / Fly / Heroku, etc.

It's based on some learnings I've had in the past building where building on managed platforms like Heroku and Render, and watched our costs explode, with an annoying amount of vendor lockin.

It uses Kubernetes under the hood (which you can now get fully managed for $12 / month on linode), which lets you take advantage of a ton of things that Kubernetes does really well, like automatic healthchecks, zero downtime deployments, auto scaling, etc, while also making it easy to use for solo developers or small teams.

The additional benefit of Kubernetes is that it's also possible to host a bunch of other stuff in your cluster via Helm charts, that you’d normally have to pay for like: Sentry, Wordpress, Postgres, etc.

Post reply on HN