Live data from Hacker News

Ask HN: Tools you have made for yourself?

news.ycombinator.com

141–150 of 458 posts

Re: Ask HN: Tools you have made for yourself?

#141

I wrote https://github.com/banga/git-split-diffs mainly to scratch an itch about not having side by side git diffs in the terminal, then ended up adding more fancy features like syntax highlighting and it got somewhat popular.

Looks awesome! Also worth looking at is Delta diff.

Re: Ask HN: Tools you have made for yourself?

#143
post #50

I made a webapp (sheetUI) that turns a simple google sheet into a beautiful webpage. I used it when I was apartment hunting, amongst other things. I tabulated the data of each apartment I found (fb marketplace, craigslist, etc), along with images, into a google sheet. Then I used my tool to display them as a grid of cards. There were auto generated filters on the top of the webpage that I could use to filter the card…

That's extremely impressive.

Re: Ask HN: Tools you have made for yourself?

#144

I 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.

Re: Ask HN: Tools you have made for yourself?

#145

I was too lazy to learn how to use a packager so I built one in Node. It's dead simple and lacks features but works great. On my website: https://benergize.com/software/pyleon/ On git: https://github.com/benergize/pyleon

I love the disclaimer at the end of your Readme. It really symbolizes the spirit of it all!

Re: Ask HN: Tools you have made for yourself?

#146
1. A design system, to create web sites on the fly.

2. A content-as-code framework, to help me writing complex articles, mini-books. The ideas are visualized as a directed graph, so I’m sure I’m sticking to them, and the result is complete.

3. A color scheme generator for web sites, to help me creating themes with accessible typography.

4. Gravity point calculator, to help me localize the focus point of a web page / slide, to make sure the message is delivered.

5. Art directed images, displaying the same image in portrait/landscape, depending on the device/orientation.

6. Hand made web decorative elements, to make uniquely looking web sites.

Re: Ask HN: Tools you have made for yourself?

#147
A whole bunch of little things, mainly command line tools.

Most of them are open source and also have extensive documentation and a screencast video going over them.

Here's a few examples:

- https://github.com/nickjj/notes

- https://github.com/nickjj/invoice

- https://github.com/nickjj/wait-until

And a few recent scripts to optimize very specific workflows:

- https://nickjanetakis.com/blog/using-ffmpeg-to-get-an-mp3s-d...

- https://nickjanetakis.com/blog/a-shell-script-to-keep-a-bunc...

- https://nickjanetakis.com/blog/bash-aliases-to-prepare-recor...

Re: Ask HN: Tools you have made for yourself?

#148
Made something really similar to apple's recently unveiled "universal control," but from Windows -> Mac. Lets me have the mouse wander off the side of the screen if "pushed hard" and it "pops out" on the mac. It has some issues with modifiers sticking and it's hard-coded to my network IPs and screen resolutions, PLUS it requires an unrelated tool I made to actually build the thing; it's on my "open source someday" list but it's not very other-programmer-friendly.

Made lots of other things but that's probably my fave and the strongest one for productivity.

Re: Ask HN: Tools you have made for yourself?

#149
Just yesterday I wrote a command line tool I called “slice” that acts like Python list slicing for lines in a file. It’s a bit simpler than piping head to tail, and I’ve needed it enough times this week that I went ahead and wrote it in Zig. Haven’t used it yet in practice, but I’m excited to!

Re: Ask HN: Tools you have made for yourself?

#150
I made a little script for quickly spinning up KVM virtual machines on my testing rig. It just grabs a minimal Ubuntu image, preseeds it with a ssh key, clones a VM on the default NAT network, and sets up the disk size/CPUs/memory allocation. It's not meant to replace orchestration or config management tools, just for quick and dirty VMs.

https://github.com/noahbailey/kvmgr

Post reply on HN