Graphic design problem
Over the past couple of weeks I've done a considerable amount of work to port ick-, the disgusting URL-
The function of ick- is to arrange for a web browser to notice when it's asked to visit selected classes of URL, and modify the URLs into different ones before going there. I use this to append ‘?style=mine’ to nearly all Livejournal URLs I visit, so that I see everyone's LJs in my own nice readable style instead of the eye-
The method by which ick- achieves this function is to load the browser with a complicated Javascript proxy configuration file which recognises specifically those URLs which require a rewrite, and tells the browser to retrieve them by going via a custom web proxy. That web proxy –ick- program itself –ick- is never required to do any real HTTP proxying –
However, since it just took me two longish and quite technical paragraphs to describe what the program does, it's unclear to me how I can express anything even approximating that in a 16x16 icon, or even a 32x32 one. My best idea so far is to have the icon represent the program's name rather than its function, by showing a human face screwed up with its tongue poking out in an ‘ick!’ expression. Unfortunately, I don't think I can draw that recognisably.
So, anyone else got any clever ideas for a suitable icon?
no subject
no subject
no subject
no subject
no subject
For bonus points you want the pink and orange gunk to be flashing.
no subject
[This is because I use Greasemonkey to acheive the same thing, in case you don't get it...]
no subject
One thing I like about
ick-proxyis that it's a cross-browser solution to the problem, since the only thing it requires of the browser is that it support Javascript PAC files, and they're fairly widely understood.no subject
FWIW, I looked into doing this for myself today, and found that if you're already using Squid (as I am), then this is quite easy to set up without requiring new software. I have in
/etc/squid/squid.conf:... and in
/etc/squid/redirector:#! /usr/bin/perl -w use strict; $| = 1; while (<>) { my @args = split; my $url = $args[0]; if ($url =~ m[^https?://[^/]*\.?livejournal\.com/] and $url !~ /\.bml/ and $url !~ /style=mine/) { my $newurl; if ($url =~ /\?/) { $newurl = "$url&style=mine"; } else { $newurl = "$url?style=mine"; } print "302:$newurl\n"; } else { print "\n"; } }I could probably do a better job of the redirector script, of course!
Reposted without auto-formatting. Grr.
no subject
no subject
no subject
Oh, or could you fit a few letters of an URL altered in red pen?
no subject
no subject