HN user

saamm

273 karma

https://www.samueltaylor.org/

If you email hn at that domain, it'll get to me.

Posts2
Comments62
View on HN

I wrote a bad Python script that I use to encode WAV files, upload to B2, and generate an RSS feed. I host my MP3 files on Backblaze B2 and the RSS feed on GitHub pages. With my usage, I stay in B2's free tier.

This is interesting! It sounds like this v1 gets your local environment up and running in a Docker container. I maintain something similar for analysts on my team, and we've seen success in terms of decreasing time spent on environment setup.

As another interesting use of Docker in the data space, I'm excited about Pachyderm [0] (though I haven't had the chance to use it in production). In particular, the data provenance story seems compelling.

0: https://github.com/pachyderm/pachyderm

Thank you for this! I used it to make a little script to download audio from each lecture:

  youtube-dl --get-id https://www.youtube.com/playlist?list=PLyGKBDfnk-iAQx4Kw9JeVqspbg77sfAK0 -i > ids.txt
  while read id; do
      youtube-dl -f bestaudio https://www.youtube.com/watch?v=$id
  done < ids.txt

My experience of high school debate was dramatically different from that of the author, though I also did policy + engaged in spreading.

I learned a ton about research, writing, and effective argumentation.

Apologies for the mislead! When I titled this, I imagined talking a lot more about stepping through the registration system in something like mitmproxy to find the exact requests to send, which feels a lot closer to hacking/reverse engineering. I ended up not really talking about that, but neglected to change the title.