Ask HN: Tools you have made for yourself?
311–320 of 458 posts
Re: Ask HN: Tools you have made for yourself?
#312Re: Ask HN: Tools you have made for yourself?
#313So, I wrote this script [0] that would combine the gerbers in a single PDF that I could print in a single go. I used it a lot and saved a lot of Money to keep the hobby alive :)
Re: Ask HN: Tools you have made for yourself?
#314Re: Ask HN: Tools you have made for yourself?
#315[0] http://rohitg.in/2014/12/14/Tinker-Rule/ [1] http://rohitg.in/2016/01/01/MakersRule/
Re: Ask HN: Tools you have made for yourself?
#316Not sure whether this meets your "definition of a tool" but I started tracking my investments publicly a couple of years ago here https://docs.google.com/spreadsheets/d/1tBrZEMFK9XNWxiqOxE8o... The GoogleFinance Function has been a great way to help me "visualize progress" in a very different way compared to default visualizations provided by stock brokers I have also tried to keep track of analytics more manually bu…
Re: Ask HN: Tools you have made for yourself?
#317Made it in like 20 minutes for that absolutely weird use case. Almost never used it again.
Re: Ask HN: Tools you have made for yourself?
#318This is a small script made to do one thing: take an SQL query from the clipboard and output a CSV file with results.
As a data analyst, part of my job was sending results of ad-hoc queries to a bunch of people on slack. The data warehouse was quite slow, so I had to:
- write a query in DataGrip (or any SQL client)
- execute it
- wait for results
- remember that there was a request for data
- save the results to CSV file (with my mouse)
- send it to the person on Slack who asked for it
With many requests per day, many of them concurrent, this was a problem.
With this tool, I just had to write a query, make sure it works, copy it to clipboard and execute:
vertica-query-paste | slackcat --channel some.person
and not worry about remembering to send it afterwards.I also had an alias in my shell set to
vqp=vertica-query-paste | pv -l
and a bunch of shortcuts for slackcat for people that most often asked for ad-hoc query results.It works with Vertica, but can be generalized to any DB engine that has a CLI client.
Really simple, but probably saved my many hours.
Re: Ask HN: Tools you have made for yourself?
#319Earlier quoted context omitted.
> it also trims 0.1 seconds from both ends of each sentence's audio so the key press noise is removed If you wanted to, you could probably use something to wait for sound level to drop, and then cut until the silence ended. Although a fixed cut probably works fine, too.
Or trigger on key up? Though I suppose maybe there's a slight sound still when the cap hits it's maximum travel if it releases the switch before that?