Skip to content

Instantly share code, notes, and snippets.

View techiediaries's full-sized avatar

Techiediaries techiediaries

View GitHub Profile
@techiediaries
techiediaries / download-and-install-latest-version-of-youtube-dl.md
Last active August 21, 2019 06:55
Installing the latest version of youtube-dl

Installing the latest version of youtube-dl

If you are getting this error when downloading a whole youtube playlist

youtube-dl ERROR: Unable to extract title

Then you need to install the latest version of youtube-dl.

To install the latest version of youtube-dl you can use the PPA webUpd8: ppa:nilarimogard/webupd8 which contains the latest version of youtube-dl.

@clhenrick
clhenrick / README.md
Last active April 1, 2024 14:55
PostgreSQL & PostGIS cheatsheet (a work in progress)
@yeban
yeban / jekyll.tag-cloud.rb
Created April 3, 2012 07:36
Flexible, logarithmic distribution, tag cloud for Jekyll.
# Copyright (C) 2011 Anurag Priyam - MIT License
module Jekyll
# Jekyll plugin to generate tag clouds.
#
# The plugin defines a `tag_cloud` tag that is rendered by Liquid into a tag
# cloud:
#
# <div class='cloud'>
@panike
panike / log2html.pl
Created February 4, 2011 16:51
Convert a git log to html
sub new_hl {
my @l = ();
return \@l;
}
@args = @ARGV;
shift @args;
print "<html><body><pre>\n";
open REVLIST, "git log " . join(' ',@args) . " --cc --parents --topo-order|" || die "Cannot get log";
while(<REVLIST>){