Skip to content

Instantly share code, notes, and snippets.

@camillobruni
camillobruni / wiki readifier
Created February 1, 2011 13:18
Makes wikipedia pages more readable
javascript:(function(){width=32;$.getScript('http://hyphenator.googlecode.com/svn/tags/Version%203.2.0/Hyphenator.js?bm=true');$('#toc').css('position','fixed').css('top','0').css('right','0').toggle(function(){$('#toc ul').show()},function(){$('#toc ul').hide()});$('#toc ul').hide();$('body').css('font-size','19px').css('text-align','justify').css('font-family','Tex Gyre Termes, Times New Roman, Georgia');/* center the infobox */$('.infobox').css('float','none') .css('margin-left','auto') .css('margin-right','auto');/* center images */$('.tright').css('float','none');$('.thumbinner').css('margin-left','auto').css('margin-right','auto');$('#bodyContent').css('left','50%').css('width',width+'em').css('marginLeft','-'+(width/2)+'em');})()
#!/usr/bin/perl
use strict;
use warnings;
use Net::Google::Code;
use Net::GitHub;
use LWP::UserAgent;
use Text::CSV_XS;
my($gc_proj, $gh_proj) = @ARGV;