/ Published in: Perl
URL: http://foundmagazine.com/
Just makes the actual found image larger in Liferea by grabbing the higher resolution URL.
Expand |
Embed | Plain Text
#!/usr/bin/perl -w use strict; use LWP::Simple; my $feed = get("http://foundmagazine.com/feed/news"); $feed =~ s/\/thumb\//\/full\//g; print $feed;
You need to login to post a comment.
