Ask HN: Tools you have made for yourself?
241–250 of 458 posts
Re: Ask HN: Tools you have made for yourself?
#242I wrote a small Python script that will SSH into my remarkable paper tablet, copy all of the raw files to my desktop, and then convert the binaries to pdf. I use this tool on a daily basis to offline backup my handwritten notes. https://github.com/awwong1/remarkable-cli
Re: Ask HN: Tools you have made for yourself?
#243I've had some annoyances with Insomnia and wanted to take a shot at making my own tool. so here's http-client[2].
Re: Ask HN: Tools you have made for yourself?
#244I operate a long-form nonfiction website, and back in 2012 we wanted to introduce a podcast episode version for each of our articles. I started tinkering with making recordings, but I suffered from the cringe of hearing my own voice, which was amplified by hearing every mistake and retake. I finally got past this problem by rolling my own audio recording software. I paste in the script, and the software highlights on…
Really hope you opensource it.
Re: Ask HN: Tools you have made for yourself?
#245I 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…
- `head -n 1 ` to get headers - `wc -l ` to count number of rows
Re: Ask HN: Tools you have made for yourself?
#246Earlier quoted context omitted.
Let me know if you've got any feedback, suggestions or feature requests.
I couldn't find results for the Arabic verb: يعيب or its past form عاب. It means something like criticize. Any tips?
In my backlog is adding additional dictionaries to fill in where Hans Wher is lacking, with next in line Lane's Lexicon. Hans Wehr is a good dictionary for students and contains approximately 90% of the words they will encounter in their first few years of studying. The issue I'm having at the moment is that both dictionaries are structured differently and it requires some manual work to unify their structures.
When searching a verb you can either search the root letters, or any other form even with affixes attached and the stemming algorithms should get the right root word.
Re: Ask HN: Tools you have made for yourself?
#247It seems like a toy compared to most of the other tools in this thread, but FWIW I have a little script I call "did": grep "$1" ~/.bash_history | tail It just shows me the last ten commands that include a search term. E.g. "did foo" shows the last ten commands that include "foo".
Re: Ask HN: Tools you have made for yourself?
#248I operate a long-form nonfiction website, and back in 2012 we wanted to introduce a podcast episode version for each of our articles. I started tinkering with making recordings, but I suffered from the cringe of hearing my own voice, which was amplified by hearing every mistake and retake. I finally got past this problem by rolling my own audio recording software. I paste in the script, and the software highlights on…
Re: Ask HN: Tools you have made for yourself?
#249Re: Ask HN: Tools you have made for yourself?
#250P.s. I’m not comp sci guy so forgive me if im not using the right words here.