Live data from Hacker News

Ask HN: Is there any software you only made for your own use but nobody else?

news.ycombinator.com

241–250 of 484 posts

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#241
At various times I've made apps for my own use. I tried a few times to do a DIY notes app.

But I usually find that the hassle of having to maintain it at random times whenever some platform changes happens, or else not be able to use some important feature,vis just not worth it.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#242
Technically it's possible to see most of my code on github, but most of it definitely wasn't intended for sharing, mostly protection from losing it.

A number of SmartThings device handlers and arduino code for home automation (early Ambilight clone, light strips, sump pump monitoring, desk fans).

A janky pendant to run on RPi for my CNC (clockworkpi.com devices are cool btw!)

Reddit bookmarks manager that google somehow scanned so technically there are a few people using it... accidentally

Custom Mailspring build with themes and minor annoyance tweaks

Not counting various TamperMonkey scripts that fix some site annoyances

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#243
I wrote a pair of PHP scripts that let me subscribe to YouTube channels as podcast feeds, with enclosure URLs and all. One script parses the channel's RSS feed and inserts enclosure tags, with the target URLs pointing to the second script with the video ID as a parameter. The second script then wraps youtube-dl and redirects to the raw video URL obtained for that video ID by youtube-dl.

This worked great for years, but recently, YouTube stopped serving their `22` format for most videos, which coupled 720p video with the audio stream. Now, the best resolution you can get with audio and video interleaved is `18`, which contains only 360p video. So that's the best resolution obtainable this way for now, unless I add a whole layer to this to reconstruct an interleaved video from separate audio and video streams selected from the DASH manifest.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#244
Absolutely. Of late I have an iOS app to measure the grade of hills. Initially this was to avoid parking tickets in San Francisco which requires curbing your tires for a 3% grade. The reality is that this is basically no grade and you should just curb no matter what in SF. Still fun to know how steep the hills are when walking. The other one is to set the exif data on photos to be taken in Pyongyang 100m underground tomorrow. This me is probably going to get me and my friends in trouble with the NSA for messing up their database, but these things happen.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#245
post #8

Currently working on a hub of “simple apps” which currently include a basic social network and car maintenance tracker. I plan to keep adding more useful apps, for example next on my list is budgeting app. Also will make it a PWA so that I can get notifications for example about posts from friends or maintenance reminders and such.

Also working on a budgeting app because everyone on the market is so annoying to use. Designed from the ground up just for my wife and I, we both love it: https://porkybank.io

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#246
Yes!

The two most used ones in the past few years:

WAP – a small utility to control my balcony-local drip irrigation system https://github.com/kitallis/WAP

hisaab – expense tracking and categorizing because my bank doesn't do apis and sends credit card reports in PDFs https://github.com/nid90/hisaab-clj

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#247
I got really into breathwork a few years ago. For the longest time I struggled to find an app that had anything more than basic functionality. Also, I found it absurd that most wanted to charge a subscription fee.

I ended up creating my own application that lets me create advanced, multi-stage exercises. I spent time building the trimmings that I felt other applications were also lacking such as: background visuals with procedurally generated shaders, easy gestures, etc.

I think one day I'll publish it to the app stores so other people who had similar desires have something.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#248
Yes, I run a daily hyper-local email newsletter that is custom built. It's called BTV Daily: https://btvdaily.com

I wrote the newsletter generator in Python. It uses all kinds of different APIs (news, social media, MailChimp, scraping, weather, even some LLM for summarizing some of the news, etc.). It runs every day at 8 AM on a little server.

It's not a super long script, but I've changed and refined it over the years many times. It's like I've spent many dozens of hours editing the same <1000 lines of code as I've modified, removed, and added features to the newsletter.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#249
> Just wondering if any of you has created any software that is meant for your use only and will never see the light of the day for anyone else.

Sure: For an operating system, I wanted to concentrate on exactly one, one of Windows or Linux. For this, that, and those reasons I picked Windows. Most important tool, KEDIT. Next most important, Rexx scripting language. Software for own use, console applications. Real effort, starting a business. For this, developing a Web site. Got the code -- Visual Basic .NET, ASP.NET, ADO.NET -- running as desired. Had a disaster, recovering, and spending too much time in system management mud wrestling and unanesthetised root canal procedures but getting back to the important computing and the business.

So, have ~100 of each of Rexx scripts, Kedit macros, and TeX macros. Will be moving back to working with Visual Basic .NET.

Just wrote a Rexx program of ~1200 lines of typing to do -- sitting down for this? -- file copying. WHYYYYY????? Did some copying, should have copied 99,024 files, but actually got only 41,462. Disaster.

So, wrote a Rexx script with three sections:

First, check and be clear on what copying want to do and use the Windows XCOPY, with carefully selected options, to do the copying.

Second, use Rexx function SysFileTree to get a list of the files/directories that should have been copied and then, in a loop, one name at a time, use Rexx function SysFileExists to be sure the copying was done.

Third, one file at a time, again from SysFileTree, use the Windows program FC.EXE (file check) with option "/B" for binary, to check that all the files were actually copied correctly down to the last bit.

My software does some good checking on the work to be done and some good reporting on what was done so that, now, if something goes wrong, e.g., the case of 99,024 files where copied only 41,462, at least I will know there was a problem.

Right, tools for such things should have been rock solid 20+ years ago and shouldn't have to do that. But, only 41,462 out of 99,024 provided a "reality check" so wrote the code I did.

Re: Ask HN: Is there any software you only made for your own use but nobody else?

#250
post #243

I wrote a pair of PHP scripts that let me subscribe to YouTube channels as podcast feeds, with enclosure URLs and all. One script parses the channel's RSS feed and inserts enclosure tags, with the target URLs pointing to the second script with the video ID as a parameter. The second script then wraps youtube-dl and redirects to the raw video URL obtained for that video ID by youtube-dl. This worked great for years, b…

On the off chance you don't already know about it, yt-dlp can do that interleaving for you. Still a headache to add to the pipeline, but less to invent at least.
Post reply on HN