Explore >> Select a destination


You are here

dogweather.dev
| | www.softdevtube.com
8.6 parsecs away

Travel
| | Programming history is filled with bugs that turned out to be features and limitations that pushed developers to make even more interesting products. We'll journey through code that was so 'bad' it was actually good. Along the way we'll look at the important role failure plays in learning. Then we'll tame our inner perfectionists and
| | markodenic.com
11.5 parsecs away

Travel
| | Free programming books, algorithms, public APIs, and much more.
| | cyberchris.xyz
13.1 parsecs away

Travel
| | This was an older writeup of mine that I posted before I had set up this blog. I am reposting it for my blog now. Whats this for? After stumbling upon the youtube-dl program (link to the repo), I was impressed with its functionality but found it quite inconvenient to have to leave the terminal to search for the url. This led me to write this python script that lets you search Youtube and display the video/playlist ID, all in the command line.
| | aimatters.wordpress.com
51.8 parsecs away

Travel
| There is a strong principle in software engineering of reusing code wherever possible. It's considered so important, that it's got its own TLA: DRY ("Don't Repeat Yourself"). In other words, don't reinvent the wheel. There are obvious benefits to this. Nobody wants to type the same piece of code over and over. Sowrite it...