Ask HN: Tools you have made for yourself?
421–430 of 458 posts
Re: Ask HN: Tools you have made for yourself?
#422I once wrote a script to record the Tinder profiles I swiped left and right on, then fine tuned a CNN using the data and integrated it into an automatic swiper. It swiped right on my now partner!
That’s awesome, is the source available?
Re: Ask HN: Tools you have made for yourself?
#423About 18 months ago I started using Letterboxd. Also, I like Roger Ebert's reviews. I wanted both in one place. So I wrote some code to scrape his nearly 8000 reviews from rogerebert.com and then import them to letterboxd: https://letterboxd.com/re2/ (I only put the first two paragraphs of his review on letterboxd then link to his full review on his site.) The hard parts of this were: - Extracting the text of his rev…
Re: Ask HN: Tools you have made for yourself?
#424I have a small YT channel [1] and I used to spend 30-40 mins recording and then 2-4 hrs editing to get a final 10-15 min video. Then I fully scripted my video editing using Python+MoviePy [2]. The time savings are sweet. I just feed it my raw video and get the finished video a few minutes later. It cuts out all the dead air as well as the parts I don't want (which I indicate in-video). In general scripting video edit…
I personally know a few people who could very likely be your customer,so I second other commenter: do release it as a product.
I think the huge shift that happens from "this project is fun/useful for myself" to "I need to integrate payment/multi-user/backups/uptime/user requested features/random uses of the product that I never thought of" is wildly underestimated!
But, that's just me, after killing more than a few projects that I enjoyed by trying to make them products...
Re: Ask HN: Tools you have made for yourself?
#425I built a tiny Windows desktop app to hide files on my lap top from anyone who might be using the lap top briefly - visiting in-laws, friends who wanted to check email, etc. Building it was triggered by a nosy but technically un-savy sister who was always poking around. This was about 8 years ago and I use it on all my machines since, even work ones. It 'hides' files by randomly renaming a folder's contents and remov…
Consider creating a dedicated user account for guests
Re: Ask HN: Tools you have made for yourself?
#426I have recently developed my own terminal-based UI for todo/task tracking [1] in markdown files because I was sick of rearranging todos in other tools. The main advantage is that you can "migrate" all unfinished todos to a new page/day and thus get a clean start each day. This idea comes from bullet journalling. To get it done I had to dig a bit into ncurses, which turned out more interesting than I thought. For inst…
LuaJIT ffi allows me to load the ncurses shared library and use straight C to call whatever ncurses functions I want, or write light lua wrappers. I've been breaking my head thought over separation of concerns, coded myself in a corner a few times already but mixing the UI with the data...
Re: Ask HN: Tools you have made for yourself?
#427Re: Ask HN: Tools you have made for yourself?
#428Re: Ask HN: Tools you have made for yourself?
#429I'm not allowed to install anything so thank god for autohotkey!