Skip to content

Instantly share code, notes, and snippets.

@cloph
cloph / parse_rocksmith.pl
Created May 24, 2021 10:32
perl script to parse the list of Rockmith songs from the Ubisofts website for ease of search/filtering locally
#!/usr/bin/perl -CSD
use warnings;
use strict;
use utf8;
use File::Slurp;
use XML::LibXML;
# works with the output as of May 2021
@cloph
cloph / weblate-download.pl
Created October 4, 2019 16:02
helper script to download multiple files (components) from a weblate project
#!/usr/bin/perl -CSDA
use strict;
use warnings;
use utf8;
BEGIN { $Pod::Usage::Formatter = 'Pod::Text::Termcap'; }
use LWP::UserAgent;
use HTTP::Request;
use JSON;