Ask HN: What simple tools or products are you most proud of making?
291–300 of 892 posts
Re: Ask HN: What simple tools or products are you most proud of making?
#292Earlier quoted context omitted.
Might be better to go in the reverse direction - get them to store their DNS records under revision control and then when changes are committed/pushed they are deployed. I wrote something like that for Amazon's rout53, https://dns-api.com/ but it wouldn't be hard to wire up a git hook with APIs from DNSMadeSimple, Dyne, or similar I'm sure. (Of course if you don't host your clients DNS then it might be a fight to get…
I thought about that, but some of our clients use 3rd party contractors / internal IT to manage their DNS as well so getting those entities to use it would be hard. Eventually that would lead to mismatched records. The current way, I can actually monitor DNS changes to clients without them having to change anything they are doing. I have thought about a syncing type of feature where you'd be able to schedule a one-ti…
If you had the option the simplest way to poll for changes would be to do a hourly/daily/weekly zone-transfer. But many DNS-hosts disable those for security reasons.
Re: Ask HN: What simple tools or products are you most proud of making?
#293https://github.com/brennen/bpb-kit/blob/master/home/bin/phot... - copy photos from some common camera media locations.
https://github.com/brennen/bpb-kit/blob/master/home/bin/gif-... - wrap Byzanz and Festival to record a gif of a screen region (and tell me what it's doing so I know when to do stuff).
https://github.com/brennen/bpb-kit/blob/master/home/.sh_comm... - an alias for navigating directory history.
Re: Ask HN: What simple tools or products are you most proud of making?
#294http://antigen.sharats.me I'm not the original creator but currently maintaining Antigen: A plugin manager for zsh, inspired by oh-my-zsh and vundle. Back in the days I made and found quite useful Dumpr: Command line download tool written in bash. https://github.com/desyncr/dumpr
Re: Ask HN: What simple tools or products are you most proud of making?
#295A small script to ease chrooting (or docker running) into a development environment with usual set of workarounds (toggleable) like passing virtual filesystems, SSH/X11 env, home directory, etc.
Re: Ask HN: What simple tools or products are you most proud of making?
#296The simplest one that I also use the most is start.sh: https://github.com/JangoSteve/start I've been using it for 3 years now, but keep forgetting to tell anyone about it. It's a simple bash script that detects what kind of project your current directory is and runs the appropriate command to start the development server. I created it, because I found myself constantly switching between projects of different types, a…
As a somewhat related tool, I started using autoenv (https://github.com/kennethreitz/autoenv) a while ago (automatically sources a .env file when you cd into the directory). I use it to set environment variables, start docker images...
Re: Ask HN: What simple tools or products are you most proud of making?
#297It was just cool to be able to contribute to a small package I used a lot at the time.
Re: Ask HN: What simple tools or products are you most proud of making?
#298https://github.com/Foxboron/iii
It's essentially just a file based IRC client. Using FIFO files as input, and spitting out the loggs into an out file. I really enjoy the simplicity of the idea and how easy it is to script. Been using it to learn goroutines and some more go, the code isn't the best but it's fun.
Planning to create something like "wii" where you can use the same structure but with HTTP requests. POST to send data into the FIFO file, and GET to read the out file.
Re: Ask HN: What simple tools or products are you most proud of making?
#299rsync.net. I am very, very proud of the (very simple) platform that we've built there. It's a basic tool that "just works" - and just works exactly like you'd expect it to . If I were a consumer of cloud storage, this is what I would want it to look like. It pleases me so greatly to know that, right now, someone is doing something like this: pg_dump -U postgres db | ssh user@rsync.net "dd of=db_dump" ... while simult…
On the other hand, we need a word about that scrolljacking on your homepage...
Re: Ask HN: What simple tools or products are you most proud of making?
#300Earlier quoted context omitted.
I thought about that, but some of our clients use 3rd party contractors / internal IT to manage their DNS as well so getting those entities to use it would be hard. Eventually that would lead to mismatched records. The current way, I can actually monitor DNS changes to clients without them having to change anything they are doing. I have thought about a syncing type of feature where you'd be able to schedule a one-ti…
I guess it's good you've got a solution that works then ! If you had the option the simplest way to poll for changes would be to do a hourly/daily/weekly zone-transfer. But many DNS-hosts disable those for security reasons.