Live data from Hacker News

Ask HN: Most interesting tech you built for just yourself?

news.ycombinator.com

11–20 of 1001 posts

Re: Ask HN: Most interesting tech you built for just yourself?

#11
I wrote a hearthstone simulator when the game came out.

https://github.com/jleclanche/fireplace

It was used and referenced by a few scientific papers and phds since. It’s my little pride, even though it would really need a rewrite at this point to work properly with all the additions in the game.

It contains its own little python driven dsl for actions. I could talk about it for hours. All that work led to me starting a company around hearthstone (I have since left it behind but it eventually grew into other games).

Re: Ask HN: Most interesting tech you built for just yourself?

#12
I wrote my own firmware for ESP-8266 IoT devices to connect them to Home Assistant. There are many like it, but this one is mine: https://github.com/thedanbob/mqtt_light https://github.com/thedanbob/mqtt_garage_door https://github.com/thedanbob/mqtt_power_cycle

Re: Ask HN: Most interesting tech you built for just yourself?

#15
Not very interesting, but used VB script to make Netflix sleep timer for the active tab. (looks for the browser process, makes the windows active,sends a ctrl+W to the window to close the video player, and finally sleeps the display.

This way I can fall asleep to noise that doesn't later wake me up.

Re: Ask HN: Most interesting tech you built for just yourself?

#16
A website to see a map of the world's tides, and bidirectional predictions for individual stations (edit: worldwide too, forgot I added that). The UI/UX is... archaic, but that's just how I wanted it. It works fully offline. https://solunar.pages.dev

Most fun part was transcribing 70+ year old NOAA tide calculation mathematic/astronomic/hydrologic research papers into modern TypeScript. Approach is semi-documented here: https://github.com/JacksonKearl/solunar

Re: Ask HN: Most interesting tech you built for just yourself?

#19
A webbapp that helps me remember names by showing them in a graph network. Super simple, use it constantly

A webapp for sharing files/text between two devices no matter the platform. Use this all the time. No more sending emails, Facebook message, dropbox link to yourself.

Re: Ask HN: Most interesting tech you built for just yourself?

#20
MUDs are a great breeding ground for bespoke programs. I've made my own system of triggers and aliases in Rust, which interfaces with Mudlet (very popular MUD client) through JSON over stdio. Being written in Rust, it has enabled a publicly usable web tool (http://seurimas.github.io/topper/explainer/?/topper/explaine...), but the majority of the code is just for me.
Post reply on HN