Useful for when the inbox gets to 1k unread messages.
Ask HN: Tools you have made for yourself?
171–180 of 458 posts
Re: Ask HN: Tools you have made for yourself?
#172Re: Ask HN: Tools you have made for yourself?
#173Additionally there is hbscan.py to generate a list of potential outfiles from handbrake's --scan argument. One day I'd like to integrate it with hbr (in C) using peg/leg [1]. Currently using pyparsing.
This is still a lot of manual work, but it saves doing it twice. When you find a mistake in an encode there's a log with the file, and it's easy to go back and modify the keyfile and re-encode it.
[0] https://github.com/epakai/hbr
[1] https://www.piumarta.com/software/peg/ (not mine)
Re: Ask HN: Tools you have made for yourself?
#174Probably not the kind of tool you are asking about, but I made a pair of woodworking planes that cut a quarter inch wide, quarter inch deep groove a quarter of an inch from the edge of a board. This operation is commonly needed for drawer bottoms and raised paneling. Two symmetric planes are needed so that you can always work with the rising grain of the wood. You can buy adjustable grooving planes and old molding pl…
Re: Ask HN: Tools you have made for yourself?
#175My though, because I haven't, is that if you want to essentially work on someone else's idea then go be an employee, otherwise the first actually passionate person will steal the show as soon as they show up.
Re: Ask HN: Tools you have made for yourself?
#176Re: Ask HN: Tools you have made for yourself?
#177[rofimoji]: https://github.com/fdw/rofimoji
Professionally, I (and the whole team) lost track of our deployed artifacts, as we're not on a release schedule but also not really on continuous deployment. Mainly, we released when someone noticed that a release has been running stably on staging for a while. We also needed a way to ensure our configurations were correct and to track API versions. So I started hacking together a small React app (new for me at the time) to collect and display all that information. It had a good welcome in our team, and so a colleague and I improved it a lot, added an actual backend and, for example, integrated it into our CI so that you can now see which commits happened since the last deployment and deploy through it, with just two clicks. We also automated a lot of our previously manual checks for larger deployments. It's become the main tool for that stuff, even for our not-so-technical PO.
Re: Ask HN: Tools you have made for yourself?
#178I am currently learning SQL/Python, I often just wanted to know the headers and how many rows are in a CSV file, so I just wrote a small Python script for it. import csv import readline readline.set_completer_delims(' \t\n=') readline.parse_and_bind("tab: complete") def csvOpen(file): with open(file, "r", newline='', encoding='utf-8-sig') as csvfile: reader = csv.reader(csvfile) i = next(reader) dRows = sum(1 for lin…
what does sq in sqhead mean?
Re: Ask HN: Tools you have made for yourself?
#1791. Dark mode by default
2. Dead simple
I am looking to make a couple of WPF projects over the next couple of years and wanted to track them but found all the online Kanban tools missed the mark by miles in one way or another: in particular, they were all far, far too complicated.
So I built my own: https://allthetasks.com
It's not long up and missing a bunch but it works and scratches my itch :)
Edit: Oh, almost forgot. It was also to use some of the stuff I don't get to use in my day job... we tend to just build something and ship it as fast as possible (development speed, not application speed) so I wanted to make something as small as possible and fast as possible too!
Re: Ask HN: Tools you have made for yourself?
#180I recently wrote a shell script bound to a keyboard shortcut, that pops up a window with a text input field that accepts LaTeX input, and immediately converts it to a JPG that is then copied to the clipboard. Super useful.