Live data from Hacker News

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

news.ycombinator.com

811–820 of 1001 posts

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

#811
I currently live in a place in which at 4:30am ~ 5am a mosque speaker loudly blares through my closed window, through earplugs, and wakes me up.

I built a white noise generator on a timer, which starts up a little while before the expected disturbance, plays through it, then stops a little while after.

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

#812
I built a starter template "create-rpc" [1] to help my freelancer friends to easily setup RPC API for Typescript projects.

The core is powered by meta-programming, aka code that further generates code.

It auto generate typed client SDK with named types for API input and output. And it comes with JWT integrated out of the box.

Compared to traditional untyped restful API over http, it helps developer to prototype and evolve the application with inferred type hint.

Upcoming improvement will be runtime type checking with cast.ts [2] or ts-type-check [3]

[1] https://www.npmjs.com/package/create-rpc

[2] https://www.npmjs.com/package/cast.ts

[3] https://www.npmjs.com/package/ts-type-check

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

#813
I’ve built https://www.plaasma.co/ to track the following activities of a group of people on Twitter (AI people, smart VCs, popular thinkers, etc.). That let me discovered new people, companies and tech projects to know about. Only few friends are using it! I’m definitively the most active user!

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

#814
In my new house with underfloor heating, an air source heat pump was installed that turned out to have a controller that switches it on and off over 80 times per day which reduces its lifespan significantly. I decided to see if I could improve on this so I started reading lots of papers regarding temperature control.

Since this is a tricky problem to solve, I built a quick fix solution while I work on the "real" version. The quick fix measures the average indoor temperature in the house using zigbee sensors and uses a number of weather forecast APIs to calculate the amount of heat lost from the house in a day based on the difference of outdoor / indoor temperature and the amount of solar irradiation. It runs at midnight and creates a 24h schedule based on the forecast energy price and expected COP. The heat pump is controlled with a relay from an ESP32. The algorithm/app runs on a raspberry pi and is written in Rust.

It worked surprisingly well last winter with some tweaking needed during very cold periods. And the heat pump only switches a few times per day now and makes very long efficient runs, theoretically greatly increasing its lifespan and simultaneously reducing my energy bill.

I'm still planning on building the better version I had planned based on a thermal model of my house, but that will require more studying and now that the quick&dirty version works so well the pressure is off a bit.

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

#815
Daily email I reply To to keep a diary: two php scripts and mailgun. My own recipe site: WordPress. Tag-based time tracking (in-progress) at timer.express: react, php api. Productively timer at timerdoro.com: react, WordPress. Configurable image cropper for client use at crop.express: vanilla JavaScript, html.

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

#816
post #760

My grandmother has dementia. About twice a day, she calls my parents every 5 minutes, forgetting that she just hung up. The calls are always the same: "You live there now. Yes you have money. We came to visit you yesterday." This can go on for an hour or so. My parents are incredibly patient, but after a couple of these calls, they'll just leave the phone to ring. The soundtrack of the phone constantly ringing in the…

Can't you get AI to answer the calls and have these conversations using your voice?

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

#817
Well, I've made something for a very niche group of people.

I made a really small simple tumblr clone social network, and a few months ago I was able to kind of bugily conect it with mastodon.

https://app.wafrn.net

It has 400 registred users, of wich in the last month 20 have posted.

https://app.wafrn.net/.well-known/nodeinfo/2.0

This endpoint I added it not too long ago to be more "friendly" towards other nodes

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

#818
Back in the late 80s, amused by the multitasking capabilities of the Commodore Amiga, with a friend we removed the keyboard for a Commodore 64, added the second keyboard to the Amiga so both could use the same computer in one display showing two different windows. The reverse of the purpose of terminals: sharing one display while having a single computer and two keyboards.

Clearly that involves electronics and 68k assembly programming.

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

#819
I wrote a script that takes all the info in the database of the FLOSS DJ Software Mixxx' databse (sqlite, yeah!), and writes it to the tags of the MP3s/OGGs/FLACs.

I have another script that reads the info from the tags and writes in back into the database. So I never have to set the cue-points/comments/scores/BPMs again for my tracks :) And all is self contained in the audio file.

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

#820

In my new house with underfloor heating, an air source heat pump was installed that turned out to have a controller that switches it on and off over 80 times per day which reduces its lifespan significantly. I decided to see if I could improve on this so I started reading lots of papers regarding temperature control. Since this is a tricky problem to solve, I built a quick fix solution while I work on the "real" vers…

This is fascinating, but what is the temperature swing in your house?
Post reply on HN