<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Head.SmackOnTable(); &#187; Misc</title>
	<atom:link href="http://www.unauthorised-access.com/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.unauthorised-access.com</link>
	<description>Contains Nuts.</description>
	<lastBuildDate>Fri, 02 Jul 2010 17:46:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Helicopter on the M25</title>
		<link>http://www.unauthorised-access.com/2010/03/helicopter-on-the-m25/</link>
		<comments>http://www.unauthorised-access.com/2010/03/helicopter-on-the-m25/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 10:44:57 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[WTF]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/?p=410</guid>
		<description><![CDATA[Well, no one seems to believe me, so here are the pics.]]></description>
			<content:encoded><![CDATA[<p>Well, no one seems to believe me, so here are the pics.</p>
<p><a href="http://www.unauthorised-access.com/wp-content/uploads/2010/03/18032010186.jpg"><img class="alignnone size-thumbnail wp-image-411" title="18032010186" src="http://www.unauthorised-access.com/wp-content/uploads/2010/03/18032010186-e1268909034473-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.unauthorised-access.com/wp-content/uploads/2010/03/18032010185.jpg"> <img class="alignnone size-thumbnail wp-image-412" title="18032010185" src="http://www.unauthorised-access.com/wp-content/uploads/2010/03/18032010185-150x150.jpg" alt="" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2010/03/helicopter-on-the-m25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slowness with Windows 7</title>
		<link>http://www.unauthorised-access.com/2010/02/slowness-with-windows-7/</link>
		<comments>http://www.unauthorised-access.com/2010/02/slowness-with-windows-7/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 18:41:23 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/?p=382</guid>
		<description><![CDATA[Well, recently I have been having trouble with my Win7 installation. I was getting very frequent slowdowns (every 2-3 seconds), but only if I used the hdd, if I was playing around with something in memory, then it was perfectly fine. Playing games could get rather frustrating because of the slowdowns, but once everything was [...]]]></description>
			<content:encoded><![CDATA[<p>Well, recently I have been having trouble with my Win7 installation. I was getting very frequent slowdowns (every 2-3 seconds), but only if I used the hdd, if I was playing around with something in memory, then it was perfectly fine. Playing games could get rather frustrating because of the slowdowns, but once everything was loaded into memory, it was ok</p>
<p>After some research, and getting incredibly pissed off with my machine, to the point where I was convinced it was a hardware fault after disabling a bunch of services, updating all the drivers, antivirus, all the extra faff in windows, in one of my moments of desperation before I waved bye bye to my machine, I had a look in Resource Monitor, you know the little button located in the Task Manager&#8217;s Performance tab?</p>
<p>Well under there, I noticed that a certain process was hammering the hard disk, <em><strong>wmpnetwk</strong></em>, and whenever it seemed to hit the hard disk, I would get a slow down. After some research on the all mighty tinterweb, its the <em><strong>Windows Media Player Network Sharing Service</strong></em>, basically for streaming your stuff to other pc&#8217;s and/or Xbox etc, and from what I read online, that if it comes across a corrupted (or half downloaded .avi&#8217;s which I have loads of, after trying to convert a few vid&#8217;s for my friends), it tends to hammer the hard drive. Once I disabled this service, my PC was lightning fast!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2010/02/slowness-with-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript &#8211; Encoding</title>
		<link>http://www.unauthorised-access.com/2009/12/javascript-encoding/</link>
		<comments>http://www.unauthorised-access.com/2009/12/javascript-encoding/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 10:31:26 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/?p=346</guid>
		<description><![CDATA[The escape() method does not encode the + character which is interpreted as a space on the server side as well as generated by forms with spaces in their fields. Due to this shortcoming and the fact that this function fails to handle non-ASCII characters correctly, you should avoid use of escape() whenever possible. The [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>The <code>escape()</code> method does not encode the     <code>+</code> character which is interpreted as a space on     the server side as well as generated by forms with spaces in their fields.     Due to this shortcoming and the fact that this function fails to handle     non-ASCII characters correctly, <em>you should avoid use of <code>escape()</code> whenever possible</em>. The best alternative is usually     <code>encodeURIComponent()</code>.</p>
<p><strong><code>escape()</code> will not encode:       <code>@*/+</code></strong></p>
<p>Use of the <code>encodeURI()</code> method is a bit more specialized     than <code>escape()</code> in that it encodes for     <span title="Uniform Resource Identifier">URIs</span> <a href="http://xkr.us/articles/javascript/encode-compare/#ref-uri">[REF]</a> as     opposed to the querystring, which is part of a     <span title="Uniform Resource Locator">URL</span>. Use this     method when you need to encode a string to be used for any resource that     uses <span title="Uniform Resource Identifiers">URIs</span> and needs certain characters to remain un-encoded. Note that this method     does not encode the <code>'</code> character, as it is a valid     character within     <span title="Uniform Resource Identifiers">URIs</span>.</p>
<p><strong><code>encodeURI()</code> will not encode:       <code>~!@#$&amp;*()=:/,;?+'</code></strong></p>
<p>Lastly, <em>the <code>encodeURIComponent()</code> method should be used in     most cases when encoding a single component of a     <span title="Uniform Resource Identifier">URI</span></em>.     This method will encode certain chars that would normally be recognized as     special chars for     <span title="Uniform Resource Identifier">URIs</span> so that     many components may be included. Note that this method does not encode the     <code>'</code> character, as it is a valid character within     <span title="Uniform Resource Identifiers">URIs</span>.</p>
<p><strong><code>encodeURIComponent()</code> will not encode:       <code>~!*()'</code></strong></p>
<p>Shamelessly stolen from <a href="http://xkr.us/articles/javascript/encode-compare/" target="_blank">xkr.us</a> &#8211; This can very well bite you on the ass.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/12/javascript-encoding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Warning As Error on WEBSITE project</title>
		<link>http://www.unauthorised-access.com/2009/12/disable-warning-as-error-on-website-project/</link>
		<comments>http://www.unauthorised-access.com/2009/12/disable-warning-as-error-on-website-project/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 16:30:37 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/?p=340</guid>
		<description><![CDATA[Well after spending half an hour looking on the net on how to disable WarningAsError on a WEBSITE project, everyone kept saying the same thing &#8211; edit the project settings &#8211; WELL A WEBSITE PROJECT DOSENT HAVE PROJECT SETTINGS! Anyway, here is the solution, you need to edit your web.config : &#60;system.codedom&#62; &#60;compilers&#62; &#60;compiler language=&#34;c#;cs;csharp&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Well after spending half an hour looking on the net on how to disable WarningAsError on a WEBSITE project, everyone kept saying the same thing &#8211; edit the project settings &#8211; WELL A WEBSITE PROJECT DOSENT HAVE PROJECT SETTINGS!</p>
<p>Anyway, here is the solution, you need to edit your web.config :</p>
<pre class="brush: xml;">
&lt;system.codedom&gt;
 &lt;compilers&gt;
 &lt;compiler language=&quot;c#;cs;csharp&quot; extension=&quot;.cs&quot; type=&quot;Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&quot; warningLevel=&quot;3&quot; compilerOptions=&quot;/d:DEBUG;TRACE&quot;&gt;
 &lt;/compiler&gt;
 &lt;/compilers&gt;
&lt;/system.codedom&gt;
</pre>
<p>Should turn into the following:</p>
<pre class="brush: xml;">
&lt;system.codedom&gt;
 &lt;compilers&gt;
 &lt;compiler language=&quot;c#;cs;csharp&quot; extension=&quot;.cs&quot; type=&quot;Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&quot; warningLevel=&quot;3&quot; compilerOptions=&quot;/d:DEBUG;TRACE&quot;&gt;
 &lt;providerOption name=&quot;WarnAsError&quot; value=&quot;false&quot;/&gt;
 &lt;/compiler&gt;
 &lt;/compilers&gt;
&lt;/system.codedom&gt;
</pre>
<p>The line you want in question is:</p>
<pre class="brush: xml;">
&lt;providerOption name=&quot;WarnAsError&quot; value=&quot;false&quot;/&gt;
</pre>
<p>And this baby will make it work! Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/12/disable-warning-as-error-on-website-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clearing FK&#8217;s and tables from database</title>
		<link>http://www.unauthorised-access.com/2009/07/clearing-fks-and-tables-from-database/</link>
		<comments>http://www.unauthorised-access.com/2009/07/clearing-fks-and-tables-from-database/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 15:45:36 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/2009/07/clearing-fks-and-tables-from-database/</guid>
		<description><![CDATA[SELECT 'ALTER TABLE ' + OBJECT_NAME(f.parent_object_id) + ' DROP CONSTRAINT [' + f.name + ']' FROM sys.foreign_keys AS f INNER JOIN sys.foreign_key_columns AS fc ON f.OBJECT_ID = fc.constraint_object_id union all SELECT 'DROP TABLE '+ name FROM dbo.sysobjects WHERE (type = 'u') and name != 'sysdiagrams']]></description>
			<content:encoded><![CDATA[<pre class="brush: sql;">
SELECT 'ALTER TABLE ' +  OBJECT_NAME(f.parent_object_id) + ' DROP CONSTRAINT [' + f.name + ']' FROM sys.foreign_keys AS f INNER JOIN sys.foreign_key_columns AS fc ON f.OBJECT_ID = fc.constraint_object_id
union all
SELECT 'DROP TABLE '+ name FROM dbo.sysobjects WHERE (type = 'u') and name != 'sysdiagrams'
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/07/clearing-fks-and-tables-from-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curiosity</title>
		<link>http://www.unauthorised-access.com/2009/06/curiosity/</link>
		<comments>http://www.unauthorised-access.com/2009/06/curiosity/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 01:15:49 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Image Post]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[curiosity]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/?p=317</guid>
		<description><![CDATA[Iv recently come across this rather &#8230; strange custom in the US navy, where an aircraft would land at the wrong aircraft carrier during a war &#8211; either because it got disoriented, or because it ran out of fuel (or, the pilot is a moron), with some hilarious affects: (Click for larger images) ^ is [...]]]></description>
			<content:encoded><![CDATA[<p>Iv recently come across this rather &#8230; strange custom in the US navy, where an aircraft would land at the wrong aircraft carrier during a war &#8211; either because it got disoriented, or because it ran out of fuel (or, the pilot is a moron), with some hilarious affects:</p>
<p>(Click for larger images)</p>
<p><a href="http://innerdoggie.com/jpg/5d3dc8d7566f69ba2d686b67af1453ce4a1da8b7becae6.23580027"><img class="alignnone" title="The old ruskies!" src="http://innerdoggie.com/jpg/5d3dc8d7566f69ba2d686b67af1453ce4a1da8b7becae6.23580027" alt="" width="500" height="333" /></a></p>
<p>^ is rather &#8230; worrying, im not sure what other ships will think if they see the Russian hammer and sickle on the tail?</p>
<p><a href="http://innerdoggie.com/jpg/a1dc47ebeb922428fead82a4e4e406184a1dad99ccc4b8.20471684"><img class="alignnone" title="LOL!" src="http://innerdoggie.com/jpg/a1dc47ebeb922428fead82a4e4e406184a1dad99ccc4b8.20471684" alt="" width="500" height="400" /></a></p>
<p>The sheer amount of effort and work that went on this plane is just hilarious &#8211; &#8220;Must be airforce&#8221;, I wonder what would happened when this pilot got back to his own ship ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/06/curiosity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Politics and expenses</title>
		<link>http://www.unauthorised-access.com/2009/06/politics-and-expenses/</link>
		<comments>http://www.unauthorised-access.com/2009/06/politics-and-expenses/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 21:00:38 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/2009/06/politics-and-expenses/</guid>
		<description><![CDATA[I don&#8217;t normally write about politics, because its usually such a controversial topic, and I tend to piss people off easily enough anyway, but the whole current expenses row really gets my goat. They are elected by the public, to serve the public, but unfortunately, they do not see it this way. They see them [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t normally write about politics, because its usually such a controversial topic, and I tend to piss people off easily enough anyway, but the whole current expenses row really gets my goat.</p>
<p>They are elected by the public, to serve the public, but unfortunately, they do not see it this way. They see them selves as the elite, they see them selves above us “dirty commoners”, they are better than us. They believe there is one law for them, and another law for us. The whole expenses row has proved this to be correct.</p>
<p>Take the last Home Secretary, someone who was in charge of Anti terror legislation. She admitted to smoking cannabis in the 80&#8242;s, and warns people that they shouldn&#8217;t smoke cannabis because it will lead to mental health issues, this the day after she was appointed  as the head of the govt review of the UK Drugs strategy.</p>
<p>Smoking cannabis is a <strong>CRIME</strong> in the UK, so our (former) beloved Home Secretary is a <strong>*CRIMINAL*</strong>. She has committed a  CRIMINAL OFFENCE (And no, the Misuse of Drugs Act has no statute of limitations)</p>
<p>One of the anti terror strategies was to link, basically everything to terrorism. They have linked photographers to terrorists, something that would be done under the Home Secretary. Another thing that they have linked to terrorism was the fact that drugs will fund terrorists. So, Jacqui Smith has supported terrorism, and should be arrested under her very own Anti Terrorism Act, and held for 42 days without -food-charge.</p>
<p>She has stated :</p>
<blockquote><p>&#8220;If you can&#8217;t live by the rules that we live by, the standards and the values that we live by, we should exclude you from this country and, what&#8217;s more, now we will make public those people that we have excluded&#8221;</p></blockquote>
<p>Well, CLEARLY, by smoking a Class B drug, you have committed an offence under the Misuse of Drugs Act,  which the penalties lie from 3 months to 5 years in prison &#8211; why has she not been prosecuted, or arrested for this offence? I say prosecute her, throw her in jail, then deport her. Good luck finding a country to take the old hag though.</p>
<p>Then there&#8217;s the whole fiasco with the ID cards, no one wants them, it WILL NOT PREVENT TERRORIST ACTS (Madrid bombings &#8211; they had ID cards then) &#8211; and the govt make ridiculous claims such as &#8220;Its a SECURE form of identity&#8221; &#8211; Oh really? Like the countless MOD laptops &#8220;forgotten&#8221; on trains or left in pub car parks, details for 25 MILLION child benefit claimants&#8217;, 3 million learner driver&#8217;s details also &#8220;misplaced&#8221;, on top of that, 45,000 peoples names, dates of birth, and national insurance numbers of people claiming benefits in York, which also has been &#8220;misappropriated&#8221;.</p>
<p>And lately, the whole expenses row&#8217;s &#8211; our beloved Jacqui Spliff was caught watching pornography, not once, but twice, and tried to claim it on our expenses, which come out of my and your taxes. That&#8217;s great, does that mean I too can watch pornography, and it come out of tax payer expenses? No? That&#8217;s not fair!</p>
<p>And lets not forget the DNA debacle &#8211; 17 senior judges across Europe have ruled that keeping DNA after not being charged is ILLEGAL, and HAS TO STOP, and the -<span style="text-decoration: line-through;">Nazi Government</span>-British Government has agreed to keep DNA and fingerprints for 6 years.</p>
<p>Do you really trust this government, who have, repeatedly, over and over again, shown disregard for the law, and everyone&#8217;s rights, and only look out for themselves, and try to screw everyone over?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/06/politics-and-expenses/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Evolution of communications</title>
		<link>http://www.unauthorised-access.com/2009/06/evolution-of-communications/</link>
		<comments>http://www.unauthorised-access.com/2009/06/evolution-of-communications/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 23:41:51 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/2009/06/evolution-of-communications/</guid>
		<description><![CDATA[Iv been asked this question a few times when being interviewed about what I like about the internet – and one of the main things I respond with is the evolution of communications. Long gone are the days where you have to wait weeks to hear back from a friend on the other side of [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Iv been asked this question a few times when being interviewed about what I like about the internet – and one of the main things I respond with is the evolution of communications. Long gone are the days where you have to wait weeks to hear back from a friend on the other side of the world, where you have to carefully plan the time zone differences and risk calling someone on another continent when they might be asleep / waking up / not at home.</p>
<p align="justify">Nowerdays with RSS Feeds, twitter, Facebook, Myspace etc, you can keep up to date with all the latest goings on, while your at work, while you walk down to the shops, while you travel across the country on a train. Online communications has revolutionised the way news is broadcast across the world – no longer do certain news publishers say they have “exclusive” information – <a href="http://edition.cnn.com/2008/WORLD/asiapcf/11/27/mumbai.twitter/index.html" target="_blank">like the Mumbai terrorist attacks</a> – updates were sent, on average, every 5 seconds regarding the attacks.</p>
<p align="justify">Twitter seems to have attracted a bunch of celebrities, from Alan Carr (@AlanCarr), to BoJo (@MayorOfLondon) – which breaks down another barrier when following your favourite celebrity, which in my case is Lance Armstrong – I no longer have to scour the net, seeing if he has appeared anywhere, I no long have to stay up till 3am watching Eurosport 3 reruns of the <a href="http://en.wikipedia.org/wiki/Giro_d%27Italia" target="_blank">Giro d’Italia</a> to see if he won it and where he placed, I can simply read his Twitter stream, and watch a few of his pre race video’s. I can get (near to) live updates on what he’s upto, and a bunch of other people I follow.</p>
<p align="justify">The social media phenomenon also breaks down a few other barriers – I no longer look at Paramedics with fascination and wonder “What is their job REALLY like?” – I read a bunch of medical blogs, from <a href="http://randomreality.blogware.com/" target="_blank">Random Acts of Reality</a> (Tom, if your reading this, you are my hero &lt;3 ) to <a href="http://www.neenaw.co.uk/" target="_blank">NeeNaw</a> – and its such a great insight into something that everyone takes for granted. I have alot more admiration and respect for the public services, after reading the amount of crap they have to deal with, especially from drunk / drugged up members of the public.</p>
<p align="justify">There are down sides to this evolution of communications though – I am now less “pro active” when it comes to communicating with friends, to see what’s going on with their life. For the friends I have on Facebook, I just load up the Facebook homepage, and see what’s the latest goings on with them. I no longer need to write to my friends (who are on FB at least) and ask them how they are doing, and what iv been upto lately – its all on my stream, in pretty much as real time as I care to update it.</p>
<p align="justify">I still love this evolution of communications though. Everything is interlinked, everything is in the now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/06/evolution-of-communications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My dev setup</title>
		<link>http://www.unauthorised-access.com/2009/05/my-dev-setup/</link>
		<comments>http://www.unauthorised-access.com/2009/05/my-dev-setup/#comments</comments>
		<pubDate>Thu, 21 May 2009 01:10:37 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/?p=273</guid>
		<description><![CDATA[Well iv seen hundreds of posts such as &#8220;This is my Firefox setup&#8221; and &#8220;This is my Visual Studio Setup&#8221;, but not many that is, well basically, everything&#8230; First off, this is my desk. Its a cheapo Ikea corner table, that fits. Iv got a bog standard mesh chair, from Ebuyer, for about 60 quid. [...]]]></description>
			<content:encoded><![CDATA[<p>Well iv seen hundreds of posts such as &#8220;This is my Firefox setup&#8221; and &#8220;This is my Visual Studio Setup&#8221;, but not many that is, well basically, everything&#8230;</p>
<p>First off, this is my <a href="http://www.unauthorised-access.com/wp-content/uploads/2009/05/newdesk.jpg">desk</a>. Its a cheapo Ikea corner table, that fits. Iv got a bog standard mesh chair, from Ebuyer, for about 60 quid.</p>
<p>My hardware / desk setup:</p>
<ul>
<li>Custom built Monster:
<ul>
<li>Quad Core Processors</li>
<li>8gb of the fastest DDR2 ram that was out</li>
<li>Dual 500gb HDDs</li>
<li>Dual DVD writers</li>
<li>2 monitors &#8211; one 20&#8243; widescreen, one 19&#8243; bog stanard, both Iiyama&#8217;s (I know i have 3 on my desk, the 3rd one is hooked up to a temp pc)</li>
</ul>
</li>
<li><a href="http://www.amazon.co.uk/Sennheiser-HD-465-HD465-Headphone/dp/B0007QN18A">Sennheiser HD 465 Headphones</a> &#8211; very comfortable, fairly cheap, I wear them for hours a day with no problems</li>
<li>A small &#8220;localised&#8221; lamp from Homebase, useful for looking at small things</li>
<li><a href="http://www.amazon.co.uk/Microsoft-Natural-Ergonomic-Keyboard-4000/dp/B000B9RYG8/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1242866176&amp;sr=1-1">MS Natural Keyboard</a></li>
<li><a href="http://www.amazon.co.uk/Microsoft-Laser-Gaming-Mouse-6000/dp/B000AND32E/ref=sr_1_2?ie=UTF8&amp;s=electronics&amp;qid=1242866196&amp;sr=1-2">Microsoft Laser Gaming Mouse 6000</a> &#8211; Its a lightweight mouse, the last thing you want is a big heavy mouse to move around all day.</li>
<li>A speaker / subwoofer setup, from Ebuyer, for about 10 quid &#8211; for when headphones arnt good enough (probably not recommended for offices!)</li>
<li>At the bottom of the picture is a fan, for when I get hot, yeah baby! <img src='http://www.unauthorised-access.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>Im not sure why my laptop was sitting on my desk&#8230;ignore that.</li>
</ul>
<p>My &#8220;misc&#8221; software setup:</p>
<ul>
<li>Running Vista  SP1 &#8211; im tempted to run Windows 7, but not anytime soon, im just getting used to Vista!
<ul>
<li>UAC is disabled on Vista &#8211; its the FIRST thing i do when installing vista on a box!</li>
<li>IIS7 and management tools installed.</li>
</ul>
</li>
<li><a href="http://www.abelhadigital.com/2008/07/hostsman-3157-released.html">Hostsman</a> &#8211; easy editing of your hosts file for testing</li>
<li>Winamp &#8211; for music! You cant code without music!</li>
<li><a href="http://www.windowclippings.com/">Windows Clippings</a> &#8211; easier to use than other screen grabbing software, very lightweight, very very good, deffo worth the $18! Has useful features like timers and ability to send to clipboard etc&#8230;</li>
<li>MSN Messenger / Skype &#8211; I know some companies dont like it when their staff play around on IM, so dont abuse it &#8211; its saved my skin a few times when iv had trouble, and its less intrusive in the office than annoying someone</li>
<li><a href="http://winscp.net/eng/index.php">WinSCP</a> &#8211; freeware FTP / SFTP/ FTP over SSH client &#8211; covers pretty much any server you need to connect to, its free, and it just beats all other FTP clients hands down.</li>
<li><a href="http://www.realtimesoft.com/ultramon/">Ultramon</a> &#8211; you get a 2nd taskbar for your 2nd monitor, so basically only the stuff that is running on that monitor is on the taskbar.</li>
<li>Microsoft Outlook &#8211; I have outlook running for my email &#8211; its easy to use, very straight forward, and quite cool with exchange.</li>
<li><a href="http://www.daemon-tools.cc/eng/home">Daemon Tools Lite</a> &#8211; when you have to mount ISOs without burning them, useful for .iso files downloaded from microsoft / off network shares.</li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6D58729D-DFA8-40BF-AFAF-20BCB7F01CD1&amp;displaylang=en">Microsoft Virtual PC 2004 SP1</a> &#8211; free software from MS, basically allows you to run virtual pc&#8217;s &#8211; useful for running XP off a virtual machine (Crappy versions of IE, anyone?) &#8211; although I had problems installing debian on it, so im looking into running <a href="http://www.virtualbox.org/">VirtualBox</a></li>
<li>Firefox &#8211; better than IE by MILES. Have loads of plugins, such as Web Dev toolbar, firebug, greasemonkey, firephp, Fission (cool loading bar thing), IE Tab, Its All Text (You get a cool little &#8220;Edit&#8221; button on text area&#8217;s that load it up in notepad), ShowIP (Shows ip address of server), AdBlock (blocks 99.99% of crappy ads), ColorZilla (picks colours out from page), Download Statusbar, Extended Statusbar (tells you pagesize, how long it took to load, etc).</li>
<li>Opera &#8211; because someone will complain that it dosent work in this browser</li>
<li><a href="http://www.newsgator.com/Individuals/FeedDemon/Default.aspx">FeedDemon</a> / <a href="http://www.newsgator.com/">Newsgator</a> &#8211; Free software that sync&#8217;s with their free website, so you can still check your favourite feeds away from home. By far the cleanest, easiest to use, and best RSS reader there is.</li>
<li><a href="https://secure.logmein.com/products/hamachi/vpn.asp?lang=en">Hamachi</a> &#8211; Free VPN software that works behind firewalls, very very useful, esp when you have less tech savvy friends.</li>
</ul>
<p>My dev setup:</p>
<ul>
<li>Visual Studio 2008 Pro &#8211; Pro because you need at least that for integrated unit tests and <a href="http://www.unauthorised-access.com/2009/04/an-introduction-to-pex/">Pex</a> to run.</li>
<li><a href="http://www.codesmithtools.com/">Codesmith Generator</a>, with my own custom version of <a href="http://www.nettiers.com/">Nettiers</a> code generator &#8211; WHY on earth would you want to write CRUD (Create, Read, Update, Delete) for your DB/objects over and over? Point this baby at it, and go baby go!</li>
<li><a href="http://www.jetbrains.com/resharper/">Resharper</a> &#8211; Solution wide error highlighting BEFORE you hit the big compile button. Instant solution for alot of errors. Advanced intellisense. Advanced unit testing tools. Code clean up, inline code generation. Even does cool stuff like close your speach marks and brackets for you!</li>
<li>A White text on dark background colour theme like the image below &#8211; the last thing you want to do is look at retina scortching white screen for hours on end, it will do your eyes in, it really will.<br />
<img class="alignnone size-full wp-image-278" title="windowclipping-214" src="http://www.unauthorised-access.com/wp-content/uploads/2009/05/windowclipping-214.png" alt="windowclipping-214" width="318" height="179" /></li>
<li>I tend to have Microsoft SQL Server installed on a virtual PC, so I can mimic the server environment &#8211; you can use the Microsoft Loopback Adapter to create your own private network &#8211; a hint, the 1.* ip address network (same for 2. all the way upto 9) is non routable, so feel free to use them for your virtual machines &#8211; i.e. my vps start off at 1.1.1.2 etc)</li>
<li>Not sure if this should go in Misc or not, but <a href="http://notepad-plus.sourceforge.net/uk/site.htm">NotePad++</a> &#8211; iv replaced notepad.exe in window with this, and it works ACE!</li>
</ul>
<p>Im sure I have forgotten something, so when I remember, ill add to this post. If you have any great ideas, lets hear them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/05/my-dev-setup/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Missing page pointer: NOAVATAR</title>
		<link>http://www.unauthorised-access.com/2009/03/missing-page-pointer-noavatar/</link>
		<comments>http://www.unauthorised-access.com/2009/03/missing-page-pointer-noavatar/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 17:07:45 +0000</pubDate>
		<dc:creator>Monty</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[YAF]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Yet Another Forum]]></category>

		<guid isPermaLink="false">http://www.unauthorised-access.com/?p=165</guid>
		<description><![CDATA[If you get the following error with YAF: While using a custom language pack, you probably have tried visiting the forum, and you probably have read this following, brilliant, useful post: And guess what happens when you click on that link? HURRAH! Oh hangon, no thats not good. Anyway, the solution is to put this [...]]]></description>
			<content:encoded><![CDATA[<p>If you get the following error with YAF:</p>
<p><img class="alignnone size-full wp-image-169" title="YAF Error 1" src="http://www.unauthorised-access.com/wp-content/uploads/2009/03/windowclipping-125.png" alt="YAF Error 1" width="498" height="334" /></p>
<p>While using a custom language pack, you probably have tried visiting the forum, and you probably have read this following, brilliant, useful post:</p>
<p><img class="alignnone size-full wp-image-170" title="Very useful dev" src="http://www.unauthorised-access.com/wp-content/uploads/2009/03/windowclipping-123.png" alt="Very useful dev" width="406" height="317" /></p>
<p>And guess what happens when you click on that link?<a href="http://www.unauthorised-access.com/wp-content/uploads/2009/03/forum-error-google-chrome.png"><img class="alignnone size-full wp-image-171" title="forum-error-google-chrome" src="http://www.unauthorised-access.com/wp-content/uploads/2009/03/forum-error-google-chrome.png" alt="forum-error-google-chrome" width="500" height="172" /></a></p>
<p>HURRAH! Oh hangon, no thats not good. Anyway, the solution is to put this :</p>
<p>&lt;page name=&#8221;CP_EDITAVATAR&#8221;&gt;</p>
<p>&lt;Resource tag=&#8221;TITLE&#8221;&gt;Modify Avatar&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;AVATAR&#8221;&gt;Avatar&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;AVATARCURRENT&#8221;&gt;Current Avatar&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;AVATARNEW&#8221;&gt;Choose a New Avatar&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;AVATARUPLOAD&#8221;&gt;Upload Avatar from Your Computer:&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;AVATARDELETE&#8221;&gt;Clear Avatar&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;AVATARREMOTE&#8221;&gt;Enter URL of Avatar on Remote Server to Use:&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;OURAVATAR&#8221;&gt;Select your Avatar from our Collection:&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;OURAVATAR_SELECT&#8221;&gt;Click Here to Select an Avatar&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;AVATARTEXT&#8221;&gt;Avatar Explaination Text&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;NOAVATAR&#8221;&gt;[ No Avatar ]&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;WARN_TOOBIG&#8221;&gt;Image size can&#8217;t be larger than {0}x{1} pixels.&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;WARN_SIZE&#8221;&gt;The size of your image was {0}x{1} pixels.&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;WARN_RESIZED&#8221;&gt;The image was resized to fit.&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;WARN_BIGFILE&#8221;&gt;The size of your image can&#8217;t be more than {0} bytes.&lt;/Resource&gt;<br />
&lt;Resource tag=&#8221;WARN_FILESIZE&#8221;&gt;The size of your image was {0} bytes.&lt;/Resource&gt;<br />
&lt;/page&gt;</p>
<p>Into your chosen language xml file, and it should work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.unauthorised-access.com/2009/03/missing-page-pointer-noavatar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
