Most "created" thing was a fishing bot for a MMORPG that used computer vision to navigate the interface and detect when you had caught a fish and reel it in.
Ask HN: Most interesting tech you built for just yourself?
141–150 of 1001 posts
Re: Ask HN: Most interesting tech you built for just yourself?
#142- A ChatGPT shell that integrates well into my editor of choice https://xenodium.com/chatgpt-shell-available-on-melpa - A scriptable screenshot/video capture utility https://xenodium.com/recordscreenshot-windows-the-lazy-way - An iOS habit tracker that's neither cloud-based, nor needs an account, social, wants my attention, data, etc. https://flathabits.com - An iOS scratch pad that removes further friction than typi…
Re: Ask HN: Most interesting tech you built for just yourself?
#143I made a small service which aggregates receipts from assorted sources (usually webpages, pdfs), takes a screenshot of them, parses the information out, and uploads them automatically for reimbursement.
Re: Ask HN: Most interesting tech you built for just yourself?
#144Browser extensions that I use everyday.
Emacs packages that I use everyday.
Re: Ask HN: Most interesting tech you built for just yourself?
#145- Instagram-like, private photo feed, where my partner and me can share pictures of our kids with relatives and friends. Posting works via e-mail, cron job generates the feed html. Imagemagick output multiple image formats, supports iOS live photos too. The feed isn't paginated, but with lazy loading the images it's still very performant.
- Most recently and still ongoing: A recipe clean-up tool. Removes all the gunk and fluff from online recipes. Shows just the ingredients and instructions. Also understands units and quantities, so unit conversion is up next. Here it is: https://pretty-recip.es/recipe?recipe-url=https%3A%2F%2Fwww....
Re: Ask HN: Most interesting tech you built for just yourself?
#146I got tired of installations that would break others and of project requirements that would differ from others in tooling. So I use dew to run most of the CLI tools that I need and to build development environments that fit the (sub-)project at hand. When things go mad or disk space has become short, it is only a matter of cleaning the set of docker images to recover.
You don't need dew to do all this, aliases will do in most cases. They would all be mostly the same and you would have to remember how to solve problems for each tool at hand. So dew groups those under a few concepts that you can turn on and off for the specific tool/environment to run. It hides all those ugly CLI parameters behind configuration variables, and finds the set of necessary variables for a given tool/environment under a .env file automatically. dew is quick enough. In most cases there is little difference between running "dew yourfantastictool" compared to running yourfantastictool installed directly on the host.
The code has grown with time so I have used dew as an exercise in trying to write readable code and organise it, even though it's written in good old shell and has long passed the size of what should be written in shell...
Things that perhaps are a little cool with dew: - It can rebase a barebone image on top of another one, so that you can use the tool from the barebone image and perhaps rebase on something that has coreutils or similar. This is remembered as a local image for next time. - It can inject commands to be run before becoming "you" in the shell, so you can install more (as root inside the container) before switching to a gentle user. This is remembered as a local image for next time. - It can use a local Dockerfile for complex scenarios. This can replace the two cases above. - You can have access to docker from inside the container, and it downloads the latest version of the docker client for you (by default: this can be turned off). - It can create files and directories, possibly with initial content for you before running the container. This is because -v xxx:xxx will always create a directory if xxx did not exist, and because some tools require a minimal configuration file to run. - It has initial support for podman, but I still haven't given this as much love than the rest so your mileage may vary...
Re: Ask HN: Most interesting tech you built for just yourself?
#147https://github.com/dclowd9901/olccChecker
It updated itself against the remote repo and ran on a daemon.
Re: Ask HN: Most interesting tech you built for just yourself?
#148I built myself an automated hydroponic grow tent. It measures and corrects pH, electrical conductivity, oxidation reduction potential, temperature of the air and water, water level, and humidity. It also automates pumps, lights, and fans (I know people normally advise against this). None of it is particularly sophisticated, but I’m really proud of it. I initially used a deep water culture and later moved on to the nu…
Re: Ask HN: Most interesting tech you built for just yourself?
#149She is fond of music from old classics (from the 60's and earlier), so I hooked up a Raspberry PI with an FM transmitter and created her own private radio station. She tells me what songs she likes and I create different playlists that get broadcast on her station. It preserves the surprise element of radio, and there is nothing in there she doesn't like.
The tiny FM transmitter is surprisingly powerful. Her neighbours (of similar vintage) are very happy too, so their requests have also started coming in :)
EDIT: I wanted to add that I am the UI ... she doesn't get to choose the playlist. To make my life easier, I just created different playlists for different times of the day ... calm/spiritual/slower numbers in the early and late hours, peppy during the late morning and evening etc.
Re: Ask HN: Most interesting tech you built for just yourself?
#150I built carefulwords.com simply because I wanted to type a word into the address bar and get a large list of synonyms and some historical quotes using the word quickly. For example: https://carefulwords.com/solitude https://carefulwords.com/think etc. Also unlike thesaurus.com, the search bar actually focuses so you can just start typing! It's not perfect, I need to do a lot of editing, but nonetheless I use it almos…