Live data from Hacker News

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

news.ycombinator.com

111–120 of 1001 posts

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

#111
Awhile ago I made an remote infrared sending tool so a raspberry pi can control my A/C unit

https://blog.bschwind.com/2016/05/29/sending-infrared-comman...

Since then I made a much slimmer, cheaper, more efficient version based on the ESP32 but I haven't written up much about that.

I also created my own keyboard with firmware in Rust

https://github.com/bschwind/key-ripper

I've done a bunch of other small one-off projects too.

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

#112
I wrote tweetscreenr.com to fetch articles from my twitter feed, and convert it into an RSS feed. The initial use case was to follow AI researchers on twitter and get notified whenever they post a link to an arxiv.org paper. Works well for me - I get all the news from Twitter, minus all the politicized/opinionated crap.

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

#113
I originally built OnlineOrNot (https://onlineornot.com) to have a convenient way to convince my contracting clients that their hosting sucks.

They'd be like "Oh but I pay $5/mo for this wordpress host, it's fine?" and I'd send them a report saying their website was offline for say 10 hours that week, and to calculate how much being offline for 10 hours would cost them.

Eventually a client asked to be setup with their own account, so I took the time to go full-SaaS.

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

#115
A few weeks ago, I built myself a web based IDE and deployment solution (like Replit) for quick experiment projects. It's built on Docker and designed to be self-hostable - I run it on a pair of servers at home.

It's called Dock'n'Roll https://youtu.be/nITIMrND0Z0

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

#116

My townhome complex had one of those call boxes at the front gate. When Doordash/FedEx/the cleaners/the in-laws/etc arrived they would have to call me from the call box and I'd have to answer it and listen to garbled audio to figure out who it was and press 9 to open the gate. It was kind of a pain, so I made a Twilio app to answer calls from the call box. I set up custom entry codes that I could hand out to anyone.…

The product should be a LLM learning from each interaction globally. So you walk up to the door and it says Hello Jim, I see you work for fedex now. Could you please show me the label on the package?

With triggers like: If the cleaner is more than 15 min late 5 times in a period of 3 months and there are more than 5 resumes posted for cleaning positions do not open the door and fire them.

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

#117
I built a wifi controlled led strip controller with an ESP8266. I had it connected to an Android sleep tracking app (sleep as android), so that at some point I had the lights in my room go from 0 to 2500 lumens smoothly (following a log curve so that it's perceptually linear) over 5min or so in the morning at the optimal detected time for my sleep cycle. It was pretty awesome. I scrapped the entire thing since I last changed appartement though...

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

#118
I built an ice cream pail drum machine interface as a kid using cheap piezoelectric speakers (in reverse to generate a signal). This was amplified and brought into a micro-controller to generate a MIDI signal for the drum machine. It actually worked pretty well.

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

#119
I have glued BLE beacons onto my trash cans in the backyard and written a Python program for a Raspberry Pi that uses its Bluetooth interface to detect the beacons and keep track of whether they are present or not. It also downloads the trash collection calendar from the local utility provider responsible for collecting them and produces an overview over all four types of trash cans with info on their whereabouts (in the backyard or next to the street, based on whether the beacons are visible or not) and number of days until they are collected. If collection is imminent (tomorrow) and the location is still "the backyard", a big flashing warning is shown, requesting whoever reads it to move the trash can to the street so it can be collected.

The Python program produces a regularly updated XML document, which references some XSLT so that when it's loaded in a browser it'll render a nice HTML page with styling and images and stuff. The Raspberry Pi serves that over an HTTP server in the local WiFi, and in the kitchen there's an old Amazon Fire 7 tablet stuck to the wall where a Kiosk browser keeps that page on fullscreen display and regularly updated. The tablet also has all sleep modes deactivated so it is on all the time.

This way we never forget to move out the trash for collection, which we did regularly before I had this solution in place (built it about 5 or 6 years ago). It's horrible in a family of four if the trash is overflowing just because you forgot to move the trash cans to the street so they can be picked up.

2 years ago the solution (called "Internet of Trash") was extended by a little Bluetooth label printer located next to the tablet in the kitchen and some UI on the web page allowing to quickly print sticky labels with two lines of text, usually used to label boxes with food leftovers and pre-cooked ingredients (such as sauces for example) with what's in the box and the date when it was cooked. The UI has easy quick-choice buttons for the common food items we usually have and the last few days for the second line, but also allows free-form entry. It relays all input via the Raspberry Pi which sends it over Bluetooth to the printer. The labels help us immensely to keep track of leftovers stored in the fridge or the freezer - not just to know the exact type of food in the boxes, but also to determine when stuff has to be thrown away or which to use first when multiple boxes contain the same food ingredient.

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

#120
Something I've recently worked on is building an SQLite database of all the dependencies my organisation uses, which makes it possible to write our own queries and reports. The tool is all Open Source (https://dmd.tanna.dev) and has a CLI as well as the SQLite data.

Ive used it to look for software that's out of date (via https://endoflife.date), to find vulnerablilities (via https://osv.dev) and get license information (via https://deps.dev)

It's been hugely useful for us understanding use of internal and external dependencies, and I wish I'd built it earlier in my career so I could've had it for other companies I've worked at!

Post reply on HN