<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description></description><title>isit?</title><generator>Tumblr (3.0; @skunkmuffin)</generator><link>http://0xdeadface.co.uk/</link><item><title>don’t put http:// in a ISA url set</title><description>&lt;p&gt;don’t put http:// in a ISA url set&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/16479537089</link><guid>http://0xdeadface.co.uk/post/16479537089</guid><pubDate>Wed, 25 Jan 2012 21:04:34 +0000</pubDate></item><item><title>http://pastehtml.com/view/bl1b3z00i.html</title><description>&lt;p&gt;&lt;a href="http://pastehtml.com/view/bl1b3z00i.html" target="_blank"&gt;http://pastehtml.com/view/bl1b3z00i.html&lt;/a&gt;&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/16005834031</link><guid>http://0xdeadface.co.uk/post/16005834031</guid><pubDate>Tue, 17 Jan 2012 13:45:00 +0000</pubDate></item><item><title>Friday top tech tip:
If your iLO mouse pointers are out of sync try moving your mouse around in...</title><description>&lt;p&gt;Friday top tech tip:&lt;/p&gt;
&lt;p&gt;If your iLO mouse pointers are out of sync try moving your mouse around in small circles inside the iLO console screen, after a few attempts you will notice the pointers getting closer and closer.&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/13298425091</link><guid>http://0xdeadface.co.uk/post/13298425091</guid><pubDate>Fri, 25 Nov 2011 14:15:00 +0000</pubDate><category>iLO mouse sync</category></item><item><title>get over yourselves</title><description>&lt;p&gt;get over yourselves&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/13208761642</link><guid>http://0xdeadface.co.uk/post/13208761642</guid><pubDate>Wed, 23 Nov 2011 17:03:41 +0000</pubDate></item><item><title>
A small bottle of whole milk


A small bottle of contact lens (saline) solution


A bottle of...</title><description>&lt;ul&gt;&lt;li&gt;
&lt;p&gt;A small bottle of whole milk&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A small bottle of contact lens (saline) solution&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;A bottle of regular fresh water.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tampons&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Sanitary pads&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Athletic tape&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;</description><link>http://0xdeadface.co.uk/post/11135894253</link><guid>http://0xdeadface.co.uk/post/11135894253</guid><pubDate>Fri, 07 Oct 2011 10:56:13 +0100</pubDate></item><item><title>BON SOME PRICKS WITH THE M ONE SIX</title><description>&lt;p&gt;BON SOME PRICKS WITH THE M ONE SIX&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/10810191422</link><guid>http://0xdeadface.co.uk/post/10810191422</guid><pubDate>Thu, 29 Sep 2011 17:47:16 +0100</pubDate></item><item><title>clinically deceased but I don’t give a fuck</title><description>&lt;p&gt;clinically deceased but I don’t give a fuck&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/10686410632</link><guid>http://0xdeadface.co.uk/post/10686410632</guid><pubDate>Mon, 26 Sep 2011 14:50:11 +0100</pubDate><category>zombie crew</category></item><item><title>dmsetup remove -f /dev/sdb</title><description>&lt;p&gt;dmsetup remove -f /dev/sdb&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/9411336436</link><guid>http://0xdeadface.co.uk/post/9411336436</guid><pubDate>Fri, 26 Aug 2011 11:52:37 +0100</pubDate></item><item><title>Twitter to IRC monitor bot (python)

A SSL IRC bot that takes a feed from search.twitter.com and...</title><description>&lt;p&gt;Twitter to IRC monitor bot (python)&lt;/p&gt;
&lt;!-- more --&gt;
&lt;p&gt;A SSL IRC bot that takes a feed from search.twitter.com and sends it to a irc channel. Edit the search variable to change the search terms. &lt;strong&gt;Needs python2.6&lt;/strong&gt;. Bot will display 5 tweets every 20 seconds. Twitter search code taken from &lt;a href="http://www.russellbeattie.com/blog/twitter-search-tracker-in-python" target="_blank"&gt;here&lt;/a&gt;. Tumblr screws up the quotes so unbroken code &lt;a href="http://pastebin.com/raw.php?i=0Lydv9gR" target="_blank"&gt;here&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;from xml.dom import minidom&lt;br/&gt;import time, urllib2, socket, ssl, time, random, string&lt;br/&gt;&lt;br/&gt;class bot:&lt;br/&gt;    def __init__(self, host, port, chan):&lt;br/&gt;        self.irchost=host&lt;br/&gt;        self.ircport=port&lt;br/&gt;        self.ircnick=”TMon-“&lt;br/&gt;        self.ircchan=chan&lt;br/&gt;        self.irc = socket.socket (socket.AF_INET, socket.SOCK_STREAM)&lt;br/&gt;        self.irc.connect ((self.irchost, self.ircport))&lt;br/&gt;        self.sslirc = ssl.wrap_socket(self.irc)&lt;br/&gt;        self.sslirc.write(‘NICK ‘+self.ircnick+’\r\n’)&lt;br/&gt;        self.sslirc.write(‘USER ‘+self.ircnick+’ ‘+self.ircnick+’ ‘+self.ircnick+’ :’+self.ircnick+’\r\n’)&lt;br/&gt;        time.sleep(1)&lt;br/&gt;        while 1:&lt;br/&gt;            self.ircdata = self.sslirc.read()&lt;br/&gt;            print(self.ircdata)&lt;br/&gt;&lt;br/&gt;            if ‘End of /MOTD command.’ in self.ircdata: #?&lt;br/&gt;               #time.sleep(1)&lt;br/&gt;               self.sslirc.write(‘JOIN ‘+self.ircchan+’\r\n’)&lt;br/&gt;               self.getweet()&lt;br/&gt;&lt;br/&gt;            if self.ircdata.find(‘PING’) != -1: #handle pings&lt;br/&gt;               self.sslirc.write(‘PONG :’+self.ircdata[6:]+’\r\n’)&lt;br/&gt;&lt;br/&gt;    def getweet(self):&lt;br/&gt;        try:&lt;br/&gt;            search = “leeds”&lt;br/&gt;            id = 0&lt;br/&gt;&lt;br/&gt;            while True:&lt;br/&gt;                socket.setdefaulttimeout(90)&lt;br/&gt;                url = “http://search.twitter.com/search.atom?rpp=5&amp;q=%s&amp;since_id=%s” % (search, id)&lt;br/&gt;                try:&lt;br/&gt;                    xml = urllib2.urlopen(url)&lt;br/&gt;                except(urllib2.HTTPError, urllib2.URLError) as err:&lt;br/&gt;                    self.sslirc.write(‘PRIVMSG ‘+self.ircchan+’ :[!] http timeout\r\n’)&lt;br/&gt;                    print (‘[!] http timeout’)&lt;br/&gt;                    time.sleep(5)&lt;br/&gt;                else:&lt;br/&gt;                    doc = minidom.parse(xml)&lt;br/&gt;                    entries = doc.getElementsByTagName(“entry”)&lt;br/&gt;                    if len(entries) &gt; 0:&lt;br/&gt;                        entries.reverse()&lt;br/&gt;                        for e in entries:&lt;br/&gt;                            title = e.getElementsByTagName(“title”)[0].firstChild.data&lt;br/&gt;                            id = e.getElementsByTagName(“id”)[0].firstChild.data.split(“:”)[2]&lt;br/&gt;                            name = e.getElementsByTagName(“name”)[0].firstChild.data.split(” “)[0]&lt;br/&gt;                            str=(name,title,)&lt;br/&gt;                            #filtered_string = ”.join(filter(lambda x:x in string.printable, str))&lt;br/&gt;                            fs=”.join([x for x in title if ord(x) &lt; 128])&lt;br/&gt;                            self.sslirc.write(‘PRIVMSG ‘+self.ircchan+’ :’+name+’ - ‘+fs+’\r\n’)&lt;br/&gt;                            #print fs&lt;br/&gt;                            time.sleep(20)&lt;br/&gt;        except(AttributeError):&lt;br/&gt;            pass&lt;br/&gt;b = bot(‘irc.server’,6697,’#channel’)&lt;br/&gt;&lt;/blockquote&gt;</description><link>http://0xdeadface.co.uk/post/8686526882</link><guid>http://0xdeadface.co.uk/post/8686526882</guid><pubDate>Tue, 09 Aug 2011 12:34:00 +0100</pubDate><category>twitter bot</category><category>twitter irc bot</category><category>twitter to irc python</category></item><item><title>I always always forget this so:
Per User CAL is for a set amount of users to connect to a TS server...</title><description>&lt;p&gt;I always always forget this so:&lt;/p&gt;
&lt;p&gt;Per User CAL is for a set amount of users to connect to a TS server (a TS server with support for 20 users for example)&lt;/p&gt;
&lt;p&gt;Per Device CAL is for a set amount of PCs to connect to a TS server (in a hot desking enviroment for example)&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/8466317609</link><guid>http://0xdeadface.co.uk/post/8466317609</guid><pubDate>Thu, 04 Aug 2011 10:03:00 +0100</pubDate></item><item><title>Is this loz?</title><description>&lt;img src="http://30.media.tumblr.com/tumblr_lo25vpUTWW1qdh6sco1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Is this loz?&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/7489446909</link><guid>http://0xdeadface.co.uk/post/7489446909</guid><pubDate>Mon, 11 Jul 2011 11:45:32 +0100</pubDate></item><item><title>sql server 2008 &amp; port 1433</title><description>&lt;p&gt;There’s hundreds of guides about how to do this. I’m putting this here as a reminder to myself.&lt;/p&gt;
&lt;p&gt;By default sql server 2008 doesn’t bind to a tcp/ip port.&lt;/p&gt;
&lt;p&gt;Open SQL Server Configuration Manager on the sql server and select SQL Server Network Configuration (32 or 64bit). You’ll see a list of protocols, right click on TCP/IP and Enable it. Now right click again and go to Properties. Go to the IP Addresses tab.&lt;/p&gt;
&lt;p&gt;You may want to set the port for IP1 &amp; IP2. The TCP Port may be blank, enter 1433 in the field. Scroll down to the bottom and you’ll see IPAll. Enter 1433 in the TCP Port box. Press Apply &amp; Save. You’ll now need to restart your instance of SQL Server.&lt;/p&gt;
&lt;p&gt;Do &lt;em&gt;netstat -an | find 1433&lt;/em&gt; and you should see sql server LISTENING on port 1433.&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/7378671784</link><guid>http://0xdeadface.co.uk/post/7378671784</guid><pubDate>Fri, 08 Jul 2011 11:08:46 +0100</pubDate><category>sql server 2008</category><category>tcp port 1433</category><category>1433</category></item><item><title>“He would make outrageous claims like he invented the question mark”</title><description>&lt;p&gt;“He would make outrageous claims like he invented the question mark”&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/7305581948</link><guid>http://0xdeadface.co.uk/post/7305581948</guid><pubDate>Wed, 06 Jul 2011 17:25:48 +0100</pubDate></item><item><title>I’ve never seen you looking so lovely as you did tonight</title><description>&lt;p&gt;I’ve never seen you looking so lovely as you did tonight&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/7042290398</link><guid>http://0xdeadface.co.uk/post/7042290398</guid><pubDate>Wed, 29 Jun 2011 13:06:19 +0100</pubDate></item><item><title>Photo</title><description>&lt;img src="http://29.media.tumblr.com/tumblr_ln5emmcT4a1qac50no1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://0xdeadface.co.uk/post/6758252868</link><guid>http://0xdeadface.co.uk/post/6758252868</guid><pubDate>Tue, 21 Jun 2011 17:18:23 +0100</pubDate><category>wtf</category></item><item><title>“I went to your girlfriends birthday with a 9 mil”</title><description>&lt;p&gt;“I went to your girlfriends birthday with a 9 mil”&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/6206813772</link><guid>http://0xdeadface.co.uk/post/6206813772</guid><pubDate>Sun, 05 Jun 2011 10:00:31 +0100</pubDate></item><item><title>life on the outside ain’t what it used to beeeeee</title><description>&lt;p&gt;life on the outside ain’t what it used to beeeeee&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/6170820718</link><guid>http://0xdeadface.co.uk/post/6170820718</guid><pubDate>Sat, 04 Jun 2011 10:12:00 +0100</pubDate></item><item><title>yessssssss</title><description>&lt;p&gt;&lt;iframe src="http://www.youtube.com/embed/LE7PWSRU5js" width="425" frameborder="0" height="349"&gt;&lt;/iframe&gt;&lt;br/&gt;yessssssss&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/5898142490</link><guid>http://0xdeadface.co.uk/post/5898142490</guid><pubDate>Fri, 27 May 2011 15:50:38 +0100</pubDate></item><item><title>Please Do the needful</title><description>&lt;p&gt;Please &lt;a href="http://en.wikipedia.org/wiki/Do_the_needful" target="_blank"&gt;Do the needful&lt;/a&gt;&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/5867685043</link><guid>http://0xdeadface.co.uk/post/5867685043</guid><pubDate>Thu, 26 May 2011 17:15:21 +0100</pubDate></item><item><title>sc config “service name” start= disabled
you need a space between = and the start status</title><description>&lt;p&gt;sc config “service name” start= disabled&lt;/p&gt;
&lt;p&gt;you need a space between = and the start status&lt;/p&gt;</description><link>http://0xdeadface.co.uk/post/5798410009</link><guid>http://0xdeadface.co.uk/post/5798410009</guid><pubDate>Tue, 24 May 2011 12:45:41 +0100</pubDate><category>disable service from command line</category><category>sc</category></item></channel></rss>

