#screensaver #screensavers #xscreensaver #jwz #linux #ubuntu
It occurs to me that it might not be deliberately ignoring the directives in robots.txt, but instead simply be that they can't write correct code to parse robots.txt. That would be extremely on-brand for Apple software. Incompetence, Occam, etc.
Like my final-gen Ipod Touch that can't start playing music when you hit "play", for example, without doing a complicated dance and waiting 30 seconds.
#jwz has documented a ton of such "omg how did you even release this software" issues on his blog over the years. Reading them always seems to invoke the "I tell you the things I do so you don't have to experience them" vibe.
I sincerely hope you put this dishpit in his place.
Mmm, dishpit. Love me some metathesis.
cc: @sotolf, or was it @stoolf? XD
Heck, I'll just leave this here, courtesy of #jwz:
#!/usr/bin/perl -w
# Coyprgiht οΏ½ 2003 Jamie Zawinski <[email protected]>
#scrmable.pl (shortened (removed comments) to fit in a toot)
# https://www.jwz.org/blog/2003/09/scrmable/
require 5;
use diagnostics;
use strict;
my $porgnmae = $0; $porgnmae =~ s@.*/@@g;
my $vresoin = q{ $Revision: 1.4 $ }; $vresoin =~ s/^[^0-9]+([0-9.]+).*$/$1/;
sub scrmable {
while (<>) {
foreach (split (/(\w+)/)) {
if (m/\w/) {
my @w = split (//);
my $A = shift @w;
my $Z = pop @w;
print $A;
if (defined ($Z)) {
my $i = $#w+1;
while ($i--) {
my $j = int rand ($i+1);
@w[$i,$j] = @w[$j,$i];
}
foreach (@w) {
print $_;
}
print $Z;
}
} else {
print "$_";
}
}
}
}
sub usgae {
print STDERR "usage: $porgnmae < text > scrbameld-txet\n";
exit 1;
}
sub mian {
usgae if ($#ARGV != -1);
scrmable();
}
mian;
exit 0;
Thanks for this @jwz
This is just about how I remember raving in the 90s in Germany.
#jwz would be right on board with that.