<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Plip&amp;#39;s Weblog</title><link>http://weblogs.asp.net/plip/default.aspx</link><description>Phil Winstanley - British .NET chap based in Lancashire. Enjoys tea and tech. Working for Microsoft. </description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Notes from HTM01 @ MIX11</title><link>http://weblogs.asp.net/plip/archive/2011/04/13/notes-from-htm01-mix11.aspx</link><pubDate>Tue, 12 Apr 2011 23:40:44 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7754271</guid><dc:creator>Plip</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7754271</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2011/04/13/notes-from-htm01-mix11.aspx#comments</comments><description>&lt;p&gt;IE9 compiles JavaScript down into machine code.&lt;/p&gt;  &lt;p&gt;There are eleven subsystems which impact performance.&lt;/p&gt;  &lt;p&gt;The majority of time is spent in JavaScript and rendering on most sites, which don't use AJAX.&lt;/p&gt;  &lt;p&gt;A lot more time is spent on Rendering in AJAX based sites.&lt;/p&gt;  &lt;h2&gt;Quickly respond&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;Quickly respond to network requests - avoid redirection. Avoid meta tag refreshes and redirection.&lt;/li&gt;    &lt;li&gt;Minimise server time required for requests&lt;/li&gt;    &lt;li&gt;Use content delivery networks&lt;/li&gt;    &lt;li&gt;Maximise concurrent connections, ensure server side handles and delivers requests quickly by distributing files across multiple domains&lt;/li&gt;    &lt;li&gt;Reuse connections by not sending a connection:close header (disable no keepalive)&lt;/li&gt; &lt;/ul&gt;  &lt;h2&gt;Minimise bytes&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;Use gzip compression&lt;/li&gt;    &lt;li&gt;Provide cacheable content, ensure headers are set on content to specify the expiry&lt;/li&gt;    &lt;li&gt;Use conditional requests, only downloads if file has been modified&lt;/li&gt;    &lt;li&gt;JSON - cache data requests, done by default, don't disable caching&lt;/li&gt;    &lt;li&gt;Standardise on file capitalisation conventions, URI's are case sensitive&lt;/li&gt;    &lt;li&gt;Use the html5 document type, it'll be the fastest&lt;/li&gt;    &lt;li&gt;Don't use the metatag for IE compatible modes, use the header, it doesn't need to parse before it loads it&lt;/li&gt;    &lt;li&gt;Link stylesheets at the top of the page&lt;/li&gt;    &lt;li&gt;Avoid using the @import command for CSS&lt;/li&gt;    &lt;li&gt;Avoid embedded and inline styles&lt;/li&gt;    &lt;li&gt;Only include nessescary styles, check what styles are used for a page, CSS is an inefficient matching algorithm, less styles in the dictionary the better&lt;/li&gt; &lt;/ul&gt;  &lt;h2&gt;Optimise the media&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;Jpeg for photographs&lt;/li&gt;    &lt;li&gt;PNG's for everything else&lt;/li&gt;    &lt;li&gt;Use native image resolution, have images at the size that they should be rendered that size on disk&lt;/li&gt;    &lt;li&gt;Avoid lots and lots of images, use image sprites where possible&lt;/li&gt;    &lt;li&gt;Create image sprites by hand, don't use the tools&lt;/li&gt;    &lt;li&gt;Replace images with CSS gradients where possible, don't use 1 pixel wide gradients&lt;/li&gt;    &lt;li&gt;Where possibly use CSS corner radius instead of images&lt;/li&gt;    &lt;li&gt;Embed small images through the data URI&lt;/li&gt;    &lt;li&gt;Replace large images with inline svg&lt;/li&gt;    &lt;li&gt;Avoid complex SVG paths&lt;/li&gt;    &lt;li&gt;Use css3 transforms instead of small animated gifs&lt;/li&gt;    &lt;li&gt;Proactively download next resources (bing homepage downloads the next days image)&lt;/li&gt; &lt;/ul&gt;  &lt;h2&gt;Write fast JavaScript&lt;/h2&gt;  &lt;ul&gt;   &lt;li&gt;Avoid linking JavaScript at the head of the document, downloads, parses and executes before continuing, if you need to try using the defer attribute&lt;/li&gt;    &lt;li&gt;Avoid inline JavaScript - best practice is to load JS at the very end of the page&lt;/li&gt;    &lt;li&gt;Remove duplicate code, multiple versions of the same JS file.&lt;/li&gt;    &lt;li&gt;Standardise on a single JavaScript framework.&lt;/li&gt;    &lt;li&gt;Don't include script if it's not absolutely needed&lt;/li&gt;    &lt;li&gt;Just use one analytics framework&lt;/li&gt;    &lt;li&gt;Minify JavaScript, remove characters not needed (spaces etc), compaction, change variable names to small aliases. Less bytes over the network, less in the cache, type resolution is faster when variable names are smaller, inlining, refactor code in many methods into one small one.&lt;/li&gt;    &lt;li&gt;Use domcontentloaded event instead of the load event, it fires much sooner than the load event.&lt;/li&gt;    &lt;li&gt;Initialise JavaScript on demand, load script files when needed.&lt;/li&gt;    &lt;li&gt;JSON is always faster than XML for data&lt;/li&gt;    &lt;li&gt;Always use the browser native methods, they're much faster than script based methods (100/200 times faster than scripted methods)&lt;/li&gt;    &lt;li&gt;Use regular expressions as little as possible&lt;/li&gt;    &lt;li&gt;use rounding in JavaScript wherever you can, math in JS represent numbers as floats, integers are much more efficient math.ceil() and math.floor()&lt;/li&gt;    &lt;li&gt;Minimise Dom interactions, cache variables, eg document.body&lt;/li&gt;    &lt;li&gt;Use built in Dom methods instead of abstractions such as jquery&lt;/li&gt;    &lt;li&gt;Use innerHTML it's the fastest way to inject into the Dom&lt;/li&gt;    &lt;li&gt;Batch markup changes instead of firing them off individually, this only makes one Dom change&lt;/li&gt;    &lt;li&gt;Maintain a small DOM, smaller it is the better (well duh), aim for under 1,000 Dom elements&lt;/li&gt;    &lt;li&gt;Know what your application is doing when it's running&lt;/li&gt;    &lt;li&gt;Look out for settimeout and setinterval, make sure they're cleaned up&lt;/li&gt;    &lt;li&gt;Try and batch your timers together and consolidate into one&lt;/li&gt;    &lt;li&gt;Align animations to the display frame, 16.7ms = 60fps (desktop), 33.4ms = 30fps (mobile)&lt;/li&gt; &lt;/ul&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7754271" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Html/default.aspx">Html</category></item><item><title>IIS Express and System.Threading.ThreadAbortException</title><link>http://weblogs.asp.net/plip/archive/2011/02/19/iis-express-and-system-threading-threadabortexception.aspx</link><pubDate>Sat, 19 Feb 2011 12:18:39 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7709224</guid><dc:creator>Plip</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7709224</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2011/02/19/iis-express-and-system-threading-threadabortexception.aspx#comments</comments><description>&lt;p&gt;If you’re moving over to IIS Express and you spot these kind of entries in your trace log: -&lt;/p&gt;  &lt;p&gt;A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll   &lt;br /&gt;An exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll but was not handled in user code&lt;/p&gt;  &lt;p&gt;Just check, if you’re using &lt;strong&gt;Response.Redirect&lt;/strong&gt; then this is absolutely normal and nothing to worry about! &lt;/p&gt;  &lt;p&gt;(Remember that the default login pages use Response.Redirect too).&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7709224" width="1" height="1"&gt;</description></item><item><title>ASP.NET Syntaxes</title><link>http://weblogs.asp.net/plip/archive/2011/01/17/asp-net-syntaxes.aspx</link><pubDate>Mon, 17 Jan 2011 14:33:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7684434</guid><dc:creator>Plip</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7684434</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2011/01/17/asp-net-syntaxes.aspx#comments</comments><description>&lt;P&gt;Phil Haack put together a quick &lt;A href="http://haacked.com/archive/2011/01/06/razor-syntax-quick-reference.aspx" mce_href="http://haacked.com/archive/2011/01/06/razor-syntax-quick-reference.aspx"&gt;Razor syntax guide&lt;/A&gt;, I’ve just extended it out for old dinosaurs like me that nly know ASP.NET Code Behind as their true and trusted way of writing pages so that we can compare our syntax to the new Razor and ASP.NET MVP ways too.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Attachement link JUST BELOW THIS TEXT&lt;/STRONG&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7684434" width="1" height="1"&gt;</description><enclosure url="http://weblogs.asp.net/plip/attachment/7684434.ashx" length="43520" type="application/octet-stream" /></item><item><title>Them and us</title><link>http://weblogs.asp.net/plip/archive/2011/01/08/them-and-us.aspx</link><pubDate>Sat, 08 Jan 2011 11:04:18 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7677480</guid><dc:creator>Plip</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7677480</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2011/01/08/them-and-us.aspx#comments</comments><description>&lt;p&gt;As much as we try and create inclusive societies throughout the globe time and time again we revert to our tribal and clan origins back in the distant past, be those line split across the obvious like&amp;#160; Nationality, Religion or even the Football teams we follow.&lt;/p&gt;  &lt;p&gt;Microsoft to me has always been a “them”. I was always on the outside looking in, free to say as I wished and have an external objective viewpoint. Now, after my first week (well four days but who’s counting) Microsoft is an “us” for me. &lt;/p&gt;  &lt;p&gt;&lt;img src="http://farm6.static.flickr.com/5043/5333957084_58730ea776.jpg" /&gt;&lt;/p&gt;  &lt;p&gt;So when I look up in the Atrium of Building 1 at Microsoft’s UK headquarters I see banners like the one above and I already genuinely feel a part of this much bigger community. I looked up at that and I felt a sense of pride to be part of something bigger, something which is out there touching peoples lives everywhere (for the good and the bad).&lt;/p&gt;  &lt;p&gt;My objectivity has made me who I am today. I’m open to other ideas and concepts, I’ve worked hard to be understanding across the board be it from technology through to cultural differences in my life and it’s vital to me that I preserve that so I now have to learn how I balance the “them” of Microsoft to the “us” of Microsoft and maintain the objectivity.&lt;/p&gt;  &lt;p&gt;It’s my job to advise people on the best way to do things, which won’t always mean “Use Microsoft Technology X”, sometimes it’ll be my responsibility to say “Don’t use Microsoft Technology X”. My first and foremost responsibility is to the customer, to give them the best advice that I can and I want to maintain that.&lt;/p&gt;  &lt;p&gt;Yeah, I’m sure I’ll be tarred by some as a Microsoft guy, for many years I’ve had just that, but those out there in the non Microsoft communities I’ve engaged in I think know that I’m the first to say when I think something is a bit naff. &lt;/p&gt;  &lt;p&gt;So, here’s my ask to you ‘the community’. Keep me honest. If I start to sound like a fanboi I want you to find me and give me a slap. It’s all too easy to forget reality sometimes and I want to make sure I stay well and truly routed in that reality. &lt;/p&gt;  &lt;p&gt;Also, no matter how much I embed myself within Microsoft I fear I will never understand Microsoft’s marketing team. In the Gents just under the WP7 banner shown above I was faced with this. Draw your own conclusions on what it’s message is.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://farm6.static.flickr.com/5002/5333342221_2c00fdac83.jpg" /&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7677480" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Apple/default.aspx">Apple</category><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/Microsoft/default.aspx">Microsoft</category></item><item><title>Plip’s Hardware Lineup for 2011</title><link>http://weblogs.asp.net/plip/archive/2010/12/31/plip-s-hardware-lineup-for-2011.aspx</link><pubDate>Fri, 31 Dec 2010 14:03:58 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7671341</guid><dc:creator>Plip</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7671341</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2010/12/31/plip-s-hardware-lineup-for-2011.aspx#comments</comments><description>&lt;p&gt;Inspired by &lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2010/12/31/hardware-lineup-2011.aspx" target="_blank"&gt;Mike Taulty’s hardware lineup 2011&lt;/a&gt; I thought I’d share mine.&lt;/p&gt;  &lt;p&gt;As we go into 2011, I’m well and truely an apple fanboi in terms of their hardware. I love Apple kit and have always found it to be really stable. The only issue I’ve ever had is with *spit* iTunes and Apple’s fascist control of how their devices sync. You’ll see that reflected in my hardware below.&lt;/p&gt;  &lt;p&gt;As I pointed out in my previous post &lt;a href="http://weblogs.asp.net/plip/archive/2010/12/14/bye-bye-mvp-status-2011-and-beyond.aspx" target="_blank"&gt;I’m joining Microsoft as of 2011&lt;/a&gt;. Let’s see if that changes my love of Apple hardware. I will be issues with a non Apple Laptop for work I suspect and that’ll be a new one for me!&lt;/p&gt;  &lt;h4&gt;Car&lt;/h4&gt;  &lt;p&gt;My favourite gadget of all. My Jaguar XF.&lt;/p&gt;  &lt;p&gt;As we speak it’s sitting in a garage having it’s internals taken apart piece by piece as it’s refusing to start, not the best experience! It’s a sexy beautiful car and it’s is SO much fun to drive, powerful, comfortable and not too flashy. &lt;/p&gt;  &lt;p&gt;&lt;img src="http://www.cartomotive.com/wp-content/uploads/2010/11/Jaguar-XF-Black-Pack-2011-Front-Side-Speed-View-670x479.jpg" width="401" height="287" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 9/10. Hold!&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;h4&gt;Phone&lt;/h4&gt;  &lt;p&gt;I’ve had an iPhone 3Gs since they came out in the UK and I love it as a device for playing music, &lt;a href="http://twitter.com/plip" target="_blank"&gt;tweeting&lt;/a&gt;, and generally faffing about. As a phone it’s bloody awful.&amp;#160; &lt;/p&gt;  &lt;p&gt;I *love* Spotify and use it all the time on the Phone. &lt;/p&gt;  &lt;p&gt;It’s the only phone of the two I have that will connect to my car over Bluetooth, that’s one of the main reasons I don’t use my WP7 device as my main phone.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://img.fox21.at/iphone3gs.png" width="257" height="300" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 8/10. Hold (Until the WP7 is up to spec).&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;I mentioned I also have a WP7 device, it’s the LG E-900 Windows Phone 7. The device hardware is very nice, comfortable to hold and without weighing I think it’s lighter than my iPhone.&lt;/p&gt;  &lt;p&gt;I had a torrid affair with this phone for a few weeks while I gave it a chance. I missed too much from my iPhone, at the time (November 2010) the apps were somewhat lacking, I missed a GOOD twitter client that handled the tombstoning properly and I was starting to go crazy without Spotify (all my music is streamed, I now don’t have any stored locally) and without a Spotify client for the phone I was musicless, so ended up carrying around my iPhone JUST for Spotify.&lt;/p&gt;  &lt;p&gt;There were other issues with the OS that were frustrating me, I didn’t like the way it forced all my MSN contacts into the main phone book nor that it kept dropping the WiFi at my home (every other device is fine with it so it WAS the phone) where I have an atrocious 3G signal.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://st2.gsmarena.com/vv/pics/lg/LG-E900-Optimus-7-2.jpg" width="231" height="232" /&gt;&lt;/p&gt;  &lt;p&gt;When the apps are there, the phone has multi tasking and the niggles are sorted in the OS I’m certain I’ll switch wholesale to the WP7 but until then the device can’t compete with my iPhone.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 5/10. Sell (Until WP7 is updated and the Apps are there which make me love it as much as my iPhone).&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;h4&gt;Music Player&lt;/h4&gt;  &lt;p&gt;Any device I can run &lt;a href="http://www.spotify.com" target="_blank"&gt;Spotify&lt;/a&gt; on, so at the moment all of my computers (running Windows or OSX), my iPhone and my iPad. That goes in the car too, it’s either BBC Radio 4 or a Spotify playlist on the iPhone.&lt;/p&gt;  &lt;p&gt;I’ve not bought a single CD since I’ve had Spotify. I was buying on average three to four a month.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Spotify Verdict 9/10. Hold. (Especially if they keep on expanding their Library).&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;h4&gt;Slate&lt;/h4&gt;  &lt;p&gt;I was furious with Apple back in April 2010 they brought in the infamous changed to their licensing agreement putting the future of Monotouch and other platforms running on their hardware at risk. At the time I vowed never to buy Apple hardware again.&lt;/p&gt;  &lt;p&gt;Back at Barcamp Blackpool in July 2010 I was surrounded by people using iPad’s and I caved in and went out there and then during the conference and bought a 16GB 3G iPad.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://z.about.com/d/webdesign/1/0/O/c/1/ipad_hero.png" width="259" height="259" /&gt;&lt;/p&gt;  &lt;p&gt;I use the iPad for reading the EXCELLENT Economist and for playing Music via Spotify. I also use Echofon as my twitter client of choice on the iPad. In addition to that I check e-mail and occasionally browse the web. It’s also a great device to have in the living room when friends are over as you can quickly pull up things like Facebook and Flickr and pass the device around.&lt;/p&gt;  &lt;p&gt;With travelling lots the iPad has become my travel companion, it’s revolutionised mobile computing for me, I no longer lug a laptop round anywhere – simply pickup my iPad and go.&lt;/p&gt;  &lt;p&gt;I swallowed my pride with Apple and I’m glad I did, the iPad was my second best purchase of 2010 (after the Jag).&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 9/10. Hold.&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;h4&gt;Laptops&lt;/h4&gt;  &lt;p&gt;I have two Laptops, they’re no longer used unless I’m giving a presentation. I use my iPad now for ALL mobile computing. They both have Windows 7 installed on them, the Air also has OSX Leopard. &lt;/p&gt;  &lt;p&gt;Macbook Air&lt;/p&gt;  &lt;p&gt;&lt;img src="http://static.sencoph.com/Macbook%20Air%20-%20Top%20View.jpg" width="224" height="168" /&gt;&lt;/p&gt;  &lt;p&gt;HP nx9420&lt;/p&gt;  &lt;p&gt;&lt;img src="http://cw48116.com/images/hp-compaq-nw9440.jpg" width="236" height="172" /&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 3/10. Sell. They’re good machines, they just don’t fit my work/life style now since the iPad came along.&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;h4&gt;Desktop&lt;/h4&gt;  &lt;p&gt;I’ve had a 24” iMac for a few years now and I love the beast. It’s not super powerful but it does EVEYTHING I need and more. It’s a beautiful device.&lt;/p&gt;  &lt;p&gt;I dumped the Apple keyboard and mouse as they’re about as fun to use as a condom with a tear in it at a syphilis sufferers conference. I use a Logitech Wireless keyboard and mouse and have an old Dell Monitor plugged in as a second display. &lt;/p&gt;  &lt;p&gt;I’m running Windows 7 Ultimate on the machine and it’s where I do all of my development work. &lt;/p&gt;  &lt;p&gt;If I’m doing video editing (2-3 times a year) I switch into OSX and use Final Cut Express 4.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://www.letsgodigital.org/images/artikelen/64/apple-imac-computer.jpg" width="203" height="241" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 8/10. Hold.&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;h4&gt;Home Media Player&lt;/h4&gt;  &lt;p&gt;Admittedly I’ve not used this in a year as I’ve not brought myself to buy a new TV which I can plug into the Mac Mini through HDMI. In my previous place I had a Mac Mini plugged into a TV running XBMC and Spotify – great setup and I’ll be resurrecting this in the next few weeks &lt;a href="http://www.le40c580.co.uk/" target="_blank"&gt;when I buy a new TV&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://www.evasapfel.at/catalog/images/apple_mac_mini_1_66_s20000.jpg" width="171" height="128" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;img src="http://xbmc.org/wp-content/uploads/2010/12/night-videos.png" width="437" height="246" /&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 10/10. Hold. &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;h4&gt;Printer&lt;/h4&gt;  &lt;p&gt;I have a Wireless HP Photosmart Premium 309a which is absolutely brilliant although the ink is bloody expensive &lt;img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://weblogs.asp.net/blogs/plip/wlEmoticon-smile_4F346B66.png" /&gt;&lt;/p&gt;  &lt;p&gt;It rarely screws up and it’s great for wirelessly scanning etc. &lt;/p&gt;  &lt;p&gt;The iPad doesn’t support it which is a shame, but other than that it’s a great printer and was well worth the cash.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://h10032.www1.hp.com/ctg/Images/c01580519.jpg" /&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Verdict 8/10. Hold.&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7671341" width="1" height="1"&gt;</description></item><item><title>Bye bye MVP Status. 2011 and beyond</title><link>http://weblogs.asp.net/plip/archive/2010/12/14/bye-bye-mvp-status-2011-and-beyond.aspx</link><pubDate>Tue, 14 Dec 2010 14:55:03 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7661736</guid><dc:creator>Plip</dc:creator><slash:comments>28</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7661736</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2010/12/14/bye-bye-mvp-status-2011-and-beyond.aspx#comments</comments><description>&lt;p&gt;Back in 2005, spurred on by the examples of independent, strong, smart people within this community I decided to break the shackles of permanent employment and hit out on my own. This saw me building what’s proved to be a very successful career and business which I’ve loved to bits. 2011 will be a big change for me and my life, the largest in about five years (which whilst it might not sound like much is proportionally a lot of my life! ). &lt;/p&gt;  &lt;p&gt;From January I’ll be joining Microsoft.&amp;#160; &lt;/p&gt;  &lt;p&gt;What I’ll be doing is joining the Services division here in the UK as an Application Development Manager.&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;b&gt;&lt;u&gt;Role Purpose&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;    &lt;p&gt;The purpose of the ADM is to provide our customers access to a wide range of product and application development expertise to help software developers accelerate the development cycle and produce successful applications. This can be accomplished by direct collaboration or by facilitating access to other resources within Microsoft. &lt;/p&gt;    &lt;p&gt;By maintaining a long-term relationship with their customers, an ADM becomes intimately familiar with the customers’ development environment. The technical tasks performed in this role include general “how-to” strategic advice, solution architecture assessments, workshops, prototyping, application design reviews, performance benchmarking, code reviews, porting/migration assistance, configuration management and general development consulting.&lt;/p&gt;    &lt;p&gt;The ADM gains an understanding of their customers' development organizations' impact on overall business, their development goals, and their pain points - which is used by the ADM to ensure their customers' success with developing on Microsoft products.&lt;/p&gt;    &lt;p&gt;While the ADM is assigned as the primary contact for the development efforts of a company, the ADM may leverage other ADMs or even other groups within Microsoft to provide the best service possible, especially if escalation services are necessary. The ADM acts as the escalation manager to bring in appropriate technical expertise (primarily Customer Services and Support) to manage incidents to resolution. The ADM follows up to ensure either product improvement within Microsoft or appropriate development skills are built within the customer's development environment.&lt;/p&gt;    &lt;p&gt;&lt;b&gt;&lt;u&gt;Team/Department Mission &lt;/u&gt;&lt;/b&gt;&lt;/p&gt;    &lt;p&gt;Microsoft Application Development Managers (ADMs) strive to be the best in software development. Working with cutting edge technologies we play a pivotal role in the delivery of industry leading solutions within the UK’s most prestigious enterprise organisations and software houses.&lt;/p&gt;    &lt;p&gt;This is high value technology consultancy. We generate great customer satisfaction from our long term engagement model.&amp;#160; This gives our customers the confidence to allow us to become their trusted advisors helping to architect, design and implement their solutions.&lt;/p&gt;    &lt;p&gt;&lt;b&gt;&lt;u&gt;Key Accountabilities&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;    &lt;p&gt;• Work with key UK customers to provide innovative solutions to their development problems, helping to architect, design, implement and test solutions throughout the development cycle.&lt;/p&gt;    &lt;p&gt;• Build an on-going trusted relationship with customers by improving their development processes and deliverables.&lt;/p&gt;    &lt;p&gt;• Delight customers with your technical breadth knowledge, demonstrating a willingness to engage and work with other resources to solve difficult technical challenges.&lt;/p&gt;    &lt;p&gt;• Transfer knowledge to customers through effective communication and engagement style&lt;/p&gt;    &lt;p&gt;• Liaise with internal Microsoft communities (such as our development teams in the USA) to represent the interest of customers and drive product improvements&lt;/p&gt;    &lt;p&gt;• Remain technically competent in a broad range of Microsoft products and technologies&lt;/p&gt;    &lt;p&gt;• Support your peers though deliverables into internal and customer engagements, contributing to an environment for learning and creativity, contributing to others’ success.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;There’s a little marketing blurb here: -&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.microsoft.com/microsoftservices/en/uk/adc.aspx"&gt;http://www.microsoft.com/microsoftservices/en/uk/adc.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Sadly I’ll not be able to make it to the MVP summit as an MVP any more as the status gets taken off me pretty rapidly, evidently awarding one’s own employee’s is seen as cheating, who’d have thought it?&lt;/p&gt;  &lt;p&gt;I will continue to be involved with the ASP Insiders &amp;amp; work closely with the Web Platform and Tools Team, not only because of what they all mean to me both personally and professionally but also because it’ll be a big part of my job to help connect experts, and what group is better than those guys to find experts. &lt;/p&gt;  &lt;p&gt;Some of you know I’m involved heavily in DeveloperDeveloperDeveloper and the UK Community, this will continue and if anything should increase. The guys and gals that I work with over here won’t let me go so I’ll be pushing that both within my role and outside of it as I always have. It’s VITAL to me that DDD stays independent of Microsoft as that’s it’s true strength – that check and balance.&lt;/p&gt;  &lt;p&gt;Products and Projects worked on by my business’ will be handed over to the loving care of others so that they can continue to be worked on and serviced. This is all very woolly at the moment and when there’s more concrete information I’ll announce it.&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;i&gt;Thanks everyone for your support over the years&lt;/i&gt;&lt;/b&gt; and I look forward to working with you in 2011 and beyond.&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7661736" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/DDD/default.aspx">DDD</category><category domain="http://weblogs.asp.net/plip/archive/tags/DeveloperDeveloperDeveloper/default.aspx">DeveloperDeveloperDeveloper</category><category domain="http://weblogs.asp.net/plip/archive/tags/MVP/default.aspx">MVP</category></item><item><title>Cold Boot / Factory Reset Samsung Taylor Windows Phone 7 - WP7</title><link>http://weblogs.asp.net/plip/archive/2010/11/02/cold-boot-factory-reset-samsung-taylor-windows-phone-7-wp7.aspx</link><pubDate>Tue, 02 Nov 2010 19:41:04 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7635906</guid><dc:creator>Plip</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7635906</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2010/11/02/cold-boot-factory-reset-samsung-taylor-windows-phone-7-wp7.aspx#comments</comments><description>&lt;p&gt;Clean boot the device manually using the boot menu.&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Power down the device &lt;/li&gt;    &lt;li&gt;While Holding down&amp;#160; both volume UP and volume DOWN press Power button.&amp;#160; The device will show “TAYLOR Boot menu”.&lt;/li&gt;    &lt;li&gt;Use volume DOWN to skip to “Cold Boot?”&amp;#160; option. Press volume UP to change form [warm] to [cold]&lt;/li&gt;    &lt;li&gt;Use volume DOWN to skip to “Save Settings”.&amp;#160; Press volume Up to change to [yes]&lt;/li&gt;    &lt;li&gt;Use volume DOWN to exit menu&lt;/li&gt; &lt;/ol&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7635906" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/WP7/default.aspx">WP7</category></item><item><title>DeveloperDeveloperDeveloper Dublin - October 9th 2010</title><link>http://weblogs.asp.net/plip/archive/2010/10/12/developerdeveloperdeveloper-dublin-october-9th-2010.aspx</link><pubDate>Tue, 12 Oct 2010 11:19:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7625991</guid><dc:creator>Plip</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7625991</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2010/10/12/developerdeveloperdeveloper-dublin-october-9th-2010.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;The magic of the Emerald Isle was made a little more magical on Saturday 9th October 2010 with the wonder of a very special event, the third DeveloperDeveloperDeveloper that we've held on the island. Previously they've been held in Galway on the west coast and Belfast in Northern Ireland. This one was a little different in that the whole team at Microsoft in Ireland has changed so we were working with entirely new people, this led to some great new dynamics and different ideas which resulted in a totally unique DeveloperDeveloperDeveloper event.&lt;/FONT&gt;&lt;/SPAN&gt; &lt;/P&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;Getting a venue is always the first task whenever we run an event, this time was no different. Enda Flynn and Craig O'Connor managed to source the slickest venue DeveloperDeveloperDeveloper has been held in, the National Digital Research Centre, this converted warehouse is opposite the Guinness factory slap bang in the National Digital Enterprise Area in Dublin. Brilliant location, amazing building and gorgeous rooms for us to use. I know now why the Irish Economy is up the swanny, they've spent all the money on making this venue fantastic! Irish tax payers, we salute you!&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;IMG style="WIDTH: 500px; HEIGHT: 375px" src="http://farm5.static.flickr.com/4103/5068948263_257224b33b.jpg" width=500 height=375 mce_src="http://farm5.static.flickr.com/4103/5068948263_257224b33b.jpg"&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;We opened the site to speaker submissions back in late August and pretty rapidly got a good selection of sessions submitted both from known speakers in the UK (The usual culprits - you know who you are!) through to a really exciting bunch of local speakers many of whom had not spoken at a DeveloperDeveloperDeveloper event before. One of the main goals of DDD is that we encourage new speakers and foster communities wherever they're found and the fact that we had a bunch of new Irish speakers submit sessions really pleased us.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;As is the tradition of DDD we opened up the sessions to a community vote to help us determine which sessions the community wanted to see, I'll be the first to admit we had a very low take-up on the opportunity to vote but the trend of sessions that the community wanted to see came out of that voting very clearly and we took the votes and constructed the schedule accordingly. It was great that we were able to give almost all of the Irish speakers that submitted a session the opportunity to speak at the event.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;With the venue sorted and the sessions selected, a couple of cups of tea later and we had the schedule drawn up it was time to open the registration. Wow, that was slow, we're used to selling out DDD events in minutes but the Irish seems to be so laid back they're horizontal. Perhaps they were finishing their pints of Guinness, maybe they were just waiting until the last moment to give me a heart attack - either way we eventually got well over a hundred people registered and that staved off our heart stopping moments...&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;Okay, we have a venue, delegates and sessions, all we needed now was speakers, turns out that hardly any of them were actually in Dublin so thus started the logistical nightmare of getting them all into one place ready for the conference, thankfully Craig Murphy stepped in here and coordinated the flights, hotels and ferry crossings with our wonderful sponsors enabling us to get the speakers there for the event.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;There was one last thing to get there. Us. Craig and I decided to take ferries across from our island to the other one, Craig from Scotland into Northern Ireland and myself with Dave Sussman from Wales straight into Dublin. We had a lovely drive down through North Wales on the Friday afternoon to board the ferry, the Welsh cost is very pretty. As we travelled we were treated to a display by Red Arrows jets which was absolutely brilliant, I assume they were out in honour of DeveloperDeveloperDeveloper. That arial display was not the only thing we had though, we were escorted across the Irish Sea by a Royal Air Force Seaking helicopter which shadowed the ferry for a good half hour performing flyby's and rescue manoeuvres with the ferry, again, I can only imagine they were there in respect of DeveloperDeveloperDeveloper.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;IMG style="WIDTH: 500px; HEIGHT: 375px" src="http://farm5.static.flickr.com/4150/5068924975_cb26aeeeed.jpg" width=500 height=375 mce_src="http://farm5.static.flickr.com/4150/5068924975_cb26aeeeed.jpg"&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;/P&gt;
&lt;DIV&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;/FONT&gt;&lt;/SPAN&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;Eventually we arrived at the hotel after a lovely tour around Dublin's labyrinth of a one way system (cheers Dublin traffic department, I hope you all die a slow painful death), checked in, switched rooms as they'd ballsed up and then met a bunch of the speakers in the bar of the hotel before heading down to get a tour of the venue. I cannot lie, I was absolutely blown away, the venue is stunning. Have a look at some of the photos that have been uploaded:&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;A href="http://www.flickr.com/photos/plip/sets/72157625135944554/"&gt;http://www.flickr.com/photos/plip/sets/72157625135944554/&lt;/A&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;So venue toured, speakers accounted for, time for some grub. You're in Dublin, you want to sample the local delicacies, you let Craig Murphy choose where we're eating, you end up in a Moroccan restaurant. Well done there Craig. As it happens the food was stunning and I had a lovely meal with Colin Gemmell, Dave Sussman, Jackie Pollock, Daniel May, Ben Hall, Liam Westley, Colin Mackay, Craig Murphy, Andy Gibson, and Mark Rendle. The wine, oh the wine. I was a happy Phil.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;The morning after the night before ... We crawled out of bed and headed down to the breakfast room in the hotel ... The place was pretty much deserted, more importantly my partner in crime (and this fallguy) Craig Murphy was no where to be seen. Just as I was starting to panic my fears were allayed, I've never been so happy to see a bald Scotsman with a clipboard as I was that Saturday morning. Off to the venue!&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;We rocked up and started to get the swag and other bits and pieces sorted out, we had speakers to brief (basically "do it right or we'll kill you") then we needed to get the Microsoft Student Partners sorted who very graciously helped us with the event by manning the registration desk - massive thanks to those guys - you rock. People started to turn up slowly in drips and drabs but as expected the turn out was much lower than we'd hoped for. At previous events in Ireland we've always faced a much higher drop out than we experience in the UK but this event is probably the worst we've ever had with just under a 50% no show of delegates, as it was, we had enough numbers that the event felt good and had the right atmosphere.&amp;nbsp;&amp;nbsp;When we hit the start time Craig and I headed to our respective rooms and gave the opening slides before handing over to the first speakers of the day.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;I didn't go to any of the sessions and I've not had a chance to read the feedback forms yet, however, from everything I was told on the day the sessions (bar one exception) were all brilliant and spot on the mark. Here's a list of those brilliant sessions and speakers: -&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;IMG style="WIDTH: 451px; HEIGHT: 488px" src="http://farm5.static.flickr.com/4062/5074448381_1d77875f73_o.png" width=451 height=488 mce_src="http://farm5.static.flickr.com/4062/5074448381_1d77875f73_o.png"&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;Thanks to some money Microsoft managed to find down the back of an Irish sofa we were able to get the whole event recorded professionally, as soon as these are processed and ready we'll share out the links. Can't wait to see some of the sessions, as is always the case when running these events I miss out on the sessions because I'm busy wheeling boxes of t-shirts sound or helping net a speaker that's managed to get up into the rafters (you have to keep a close eye on them).&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;Catering is the thing that gives us the most problems at any event we run, all I can say is we had no problems this time, the catering was magnificent, throughout the day tea and coffee was available and the lunch was absolutely brilliant! Soups, fresh sandwiches (proper ones, with actual filling), fruit, cookies, mmmm all we missed was chocolate but hey, I can't have everything.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;Note to self: Get everything.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;As well as Microsoft sponsoring the venue we also had some brilliant sponsorship in terms of swag from people like Telerik and DevExpress who provided t-shirts, pens, little ninjas, the lot! Thanks so much guys!&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;After the event it was time to wind down, Burgers &amp;amp; Beers was the order of the day and we all had a cracking meal in GBK in Temple Bar followed by more beer and for me at least clubbing until the wee hours of the morning. I think I stumbled home about 5am.&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;The next day (or same day) Dave Sussman and I went in search of breakfast and managed to find a FEAST of a Full Irish Breakfast for only €10 ! I was a happy Phil at this point of the day and with that we headed to the ferry port and onwards to Sunny Wales, where the men are men and the sheep are fearful.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;IMG style="WIDTH: 500px; HEIGHT: 375px" src="http://farm5.static.flickr.com/4128/5069516596_84d20cf2e4.jpg" width=500 height=375 mce_src="http://farm5.static.flickr.com/4128/5069516596_84d20cf2e4.jpg"&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: 14pt Arial; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: rgb(0,0,0); WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"&gt;&lt;SPAN style="FONT-FAMILY: Calibri; FONT-SIZE: 14pt"&gt;That's not all though, at the event we got chatting and saw significant interest in running an event in Belfast, provisionally penned for March, we'll keep you updated.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Calibri&gt;&lt;BR&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT face=Calibri&gt;Thanks to all those who helped make DDD Dublin happen and a massive thanks to the delegates whom attended.&lt;/FONT&gt;&lt;/DIV&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7625991" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/DDD/default.aspx">DDD</category><category domain="http://weblogs.asp.net/plip/archive/tags/dddie/default.aspx">dddie</category><category domain="http://weblogs.asp.net/plip/archive/tags/dddie10/default.aspx">dddie10</category><category domain="http://weblogs.asp.net/plip/archive/tags/DeveloperDeveloperDeveloper/default.aspx">DeveloperDeveloperDeveloper</category></item><item><title>Windows Phone 7 Day – DeveloperDeveloperDeveloper – Manchester – October 7th 2010</title><link>http://weblogs.asp.net/plip/archive/2010/10/10/windows-phone-7-day-developerdeveloperdeveloper-manchester-october-7th-2010.aspx</link><pubDate>Sun, 10 Oct 2010 21:41:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7625588</guid><dc:creator>Plip</dc:creator><slash:comments>4</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7625588</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2010/10/10/windows-phone-7-day-developerdeveloperdeveloper-manchester-october-7th-2010.aspx#comments</comments><description>&lt;P&gt;A glorious sunny day in Manchester on the seventh of October 2010 we had eight sessions all to celebrate and help support the developer community all around Windows Phone 7. The event was held in the ODEON cinema in the Printworks in Manchester which is a venue we used for a DeveloperDeveloperDeveloper Guathon back in September 2009.&lt;/P&gt;
&lt;P&gt;John Price (of NxtGenUg fame) and I managed the registration in the morning, well, I say registration, it was basically me ticking names off a list, John handing out raffle tickets while the delegates (or attendees if you're American) scribbled their own names onto sticky labels as badges for the conference. We had a really wide ranging audience from hardcore Microsoft fanbois through to Fundamentalist iPhone developers and even members of the press. People had travelled from all over the country to come to the event with developers from far flung cities such as Edinburgh and London.&lt;/P&gt;
&lt;P&gt;We only had one small disaster during registration when an attended managed to knock his Starbucks coffee all over the tables we were using, although in his defence he dived for and saved my iPhone before worrying about anything else, so we'll let him off for that. I didn't ask him if he was one of the Microsoft or Apple fanbois :-)&lt;/P&gt;
&lt;P&gt;Even though we had a good turnout it was lower that we'd hoped (we had room for 360 but registration only hit around 150), after polling Twitter over the previous weeks there are a few reasons for this:&lt;/P&gt;
&lt;P&gt;- Location wise Manchester is a 'long way' for a lot of developers to travel.&lt;/P&gt;
&lt;P&gt;- Running the event on a week day meant people had ti take a day off from work.&lt;/P&gt;
&lt;P&gt;- The technology isn't proven in the Market yet so for some people the return on the investment of their time was a difficult trade off.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;With an amazing line up of speakers and sessions those that could make it were in for a real treat. Internally we'd agonised over how to pitch the sessions, should they be introductory or deep dive, should they flow from one to the other or could the be islands of specialism, eventually the appamundi guys came up with a brilliant schedule that would take beginners to the platform from knowing nothing to be able to build and create a functioning application whilst still giving those that had dabbled with the system some really useful real world advice from their experience of building applications both for the emulator and devices.&lt;/P&gt;
&lt;P&gt;Some of the guys speaking are even training Microsoft staff and their partners on Windows Phone 7 development, we were very lucky that they could take time out of their schedules which are packed at the moment as launch is imminent to come and speak at the event.&lt;/P&gt;
&lt;P&gt;First off was Maarten Struys to open the day after a quick introduction from Andy Wigley, Maarten has the most amazing accent which totally captivated me, he looks and sounds just as you'd expect a crazy scientist to. His presentation style is slick and relaxed, making it so easy to listen to him and focus on the content that he's sharing, as he showed off the Visual Studio and Blend features which were a part of his opening session he revealed nuggets of information which even the most seasoned Silverlight developers would have found useful and still managed to show the beginners how to get started with WP7 development.&lt;/P&gt;
&lt;P&gt;Then came the turn of the legend that is Andy Wigley. I've been lucky to know Andy for a number of years, to look at he's a throwback from the 60's, some crazy veggie hippy who plays in a death metal band, in reality however he's one of the kindest gentlest guys with an amazing capacity for turning complex technical processes and systems into simple language and conveying it to idiots like me :-)&lt;/P&gt;
&lt;P&gt;Andy spoke back to back for three sessions covering in depth Silverlight development for Windows Phone 7, drilling into the device capabilities such as using the camera and GPS (because every application needs photos and geotagging now we're in the Mobile device era) then came Andy's magnificent session on probably one of the most controversial features of Windows Phone 7 which is it's Application lifecycle system, Tombstoning.&lt;/P&gt;
&lt;P&gt;Then came the fun stuff, Rob Miles who really is that crazy lecturer I'm sure many of you had at University, 7' something of pure technical passion. Robs height is the only way that all that technical prowess can be contained I'm pretty sure occasionally a bit spills out of his ears, and at the event, it was flowing in drippy streams of technical content from Rob. First he covered XNA development with the Phone to build games and other graphics intense applications and then he drilled into how to sell your applications through the Marketplace that Microsoft are putting together.&lt;/P&gt;
&lt;P&gt;Developers aren't known for producing the most beautiful applications so it was a real boost for the event to be able to get Tricky Bassett to come to the event and talk about design for Windows Phone 7 applications as well as showing off a production application his company has been working on. The session added real spice to the event and left everyone thinking of designing a Windows Phone 7 application with a variety of options open to them and the guidance they'll need to pull together their applications.&lt;/P&gt;
&lt;P&gt;As with all mobile platforms, Windows Phone 7 has support for running applications offline and&amp;nbsp; Andrej gave a brilliant rundown of the features available to developers in the initial release of Windows Phone 7.&lt;/P&gt;
&lt;P&gt;Throughout the day the speakers gave an objective view of the technology and talked about their personal experiences without prejudice. That's one of the great benefits of DeveloperDeveloperDeveloper events, it's real world advice from people working in the field who want to make sure that those that come after them can benefit from their learning process. A real testament to the dedication and openness of the UK developer community. I personally got very upset with a press review of the event which had a serious undertone of accusing the speakers of working to a Microsoft PR agenda which really couldn't be further from the truth, if anything the only Marketing of the day came from Tricky who cheekily plugged his firms design services, but we'll let him off because he's giving so much back to the community.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Something that was happening whilst the sessions were running was a Xapathon. This was essentially Mike Ormond of Microsoft who'd travelled up for the day with a bunch of Windows Phone 7 devices to allow developers who has build an application to bring it to the event and try it on a real device. Mike and Pete Vickers managed is process and helped people get their Xaps onto the devices - watching people debug their applications on the devices was really cool - developers getting to play with the devices for the first time as opposed to the emulator and seeing their apps really running was brilliant, their little faces lit up and more importantly every application worked flawlessly - pretty cool that the emulator is so close to the real thing! I think there were about seven applications tested throughout the day.&lt;/P&gt;
&lt;P&gt;As we'd done previously we called on the services of Joel Hammond-Turner to video the event and he's done a stifling job, with the presenters and the screens being recorded as well as the audio being recorded in high quality (HD I believe !) we're going to get some cool content to share out to everyone who couldn't make the event. Massive thanks to Joel, who like all the speakers and those involved gave up his time and did this for free. As soon as the video is ready we'll publish it and get the links out to you.&lt;/P&gt;
&lt;P&gt;Of corse these events wouldn't be possible if it wasn't for the support of sponsors who help us pay for the venues, supply prizes and swag and support promoting the events that we run. So I want to call them out here. Big thanks to Microsoft, appamundi and nxtgenug who all did a brilliant job in getting this event going - without you guys it couldn't have happened, thank you on behalf of the whole community both those who could make the event and the countless thousands that will watch the video content produced at it for the weeks and months to come.&lt;/P&gt;
&lt;P&gt;PrizesPrizesPrizes - what would a DDD event be without swag? We were really lucky to be able to award a prize at the event of a brand new shiny Windows Phone 7 device to a chap in the audience who was absolutely over the moon. Load of other people got bits and bobs ranging from t-shirts through to mice.&lt;/P&gt;
&lt;P&gt;All in all a brilliant event.&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7625588" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/DDD/default.aspx">DDD</category><category domain="http://weblogs.asp.net/plip/archive/tags/WP7/default.aspx">WP7</category></item><item><title>DeveloperDeveloperDeveloper! Scotland 2010 - DDDSCOT</title><link>http://weblogs.asp.net/plip/archive/2010/05/10/developerdeveloperdeveloper-scotland-2010-dddscot.aspx</link><pubDate>Mon, 10 May 2010 07:21:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7477416</guid><dc:creator>Plip</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7477416</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2010/05/10/developerdeveloperdeveloper-scotland-2010-dddscot.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;DDD&amp;nbsp;in Scotland was held on the 8th May 2010 in Glasgow and I was there, not as is uaual at these kind of things as an organiser but actually as a speaker and delegate.&lt;/P&gt;
&lt;P mce_keep="true"&gt;The weekend started for me back on Thursday with the arrival of &lt;A href="http://twitter.com/DaveSussman/" target=_blank mce_href="http://twitter.com/DaveSussman/"&gt;Dave Sussman&lt;/A&gt; to my place in Lancashire, after a curry and watching the Electon night TV coverage we retired to our respective beds (yes, I know, I hate to shatter the illusion we both sleep in the same bed wearing matching pijamas is something I've shattered now) ready for the drive up to Glasgow the following afternoon.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Before heading up to Glasgow we had to pick up &lt;A href="http://twitter.com/chrisntr/" mce_href="http://twitter.com/chrisntr/"&gt;Young Mr Hardy&lt;/A&gt; from Wigan&amp;nbsp;then we began the four hour drive back in time...&lt;/P&gt;
&lt;P mce_keep="true"&gt;Something that struck me on the journey up is just how beautiful Scotland is. The menacing landscapes bordered with fluffy sheep and whirly-ma-gigs are awe inspiring - well worth driving up if you ever get the chance.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Anywho we arrived in Glasgow, got settled intot he hotel and went in search of Speakers for pre conference drinks and food. We discovered a gaggle (I believe that's the collective term) of speakers in the Bar and when we reached critical mass headed off to the Speakers Dinner location. During dinner, SOMEONE set my hair on FIRE. That's all I'm going to say on the matter.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Whilst I was enjoying my evening there was something nagging at me, I realised that I should really write my session as I was due to give it the following morning. So after a few more drinks I headed back to the hotel and got some well earned sleep (and washed the fire damage&amp;nbsp;out of my hair).&lt;/P&gt;
&lt;P mce_keep="true"&gt;Next day, headed off to the conference which was a lovely stroll through Glasgow City Centre. Non of us got mugged, murdered (or set on fire) arriving safely at the venue,&amp;nbsp;which was a bonus.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&lt;IMG style="WIDTH: 500px; HEIGHT: 277px" src="http://farm5.static.flickr.com/4070/4593032947_62d93e0b28.jpg" width=500 height=277 mce_src="http://farm5.static.flickr.com/4070/4593032947_62d93e0b28.jpg"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;I was asked to read out the opening Slides for Barry Carr's session which I did dilligently and with such professionalism that I shocked even myself. At which point I reliased in just over an hour I had to give my presentation, so headed back to the speaker room to finish writing it.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Wham, bam and it was all over. Session seemed to go well. I was speaking on Exception Driven Development, which isn't so much a technical solution but rather a mindset around how one should treat exceptions and their code. To be honest, I've not been so nervous giving a session for years - something about this topic worried me, I was concerned I was being too abstract in my thinking or that what I was saying was so obvious that everyone would know it, but it seems to have been well recieved which makes me a happy Speaker.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&lt;A href="http://twitter.com/camurphy" mce_href="http://twitter.com/camurphy"&gt;Craig Murphy&lt;/A&gt; has some brilliant &lt;A href="http://www.flickr.com/photos/craigmurphy/sets/72157624025673156/" mce_href="http://www.flickr.com/photos/craigmurphy/sets/72157624025673156/"&gt;pictures of&amp;nbsp;DDD Scotland 2010&lt;/A&gt;.&lt;/P&gt;
&lt;P mce_keep="true"&gt;After my session was done I grabbed some lunch and headed back&amp;nbsp;to the hotel and into town to do some shopping (thus my conspicuous omission from the above photo). Later on we headed out to the geek dinner which again was&amp;nbsp;a rum affair followed by a few drinks and a little boogie woogie.&lt;/P&gt;
&lt;P mce_keep="true"&gt;All in all a well run, well attended conference, by the community for the community.&lt;/P&gt;
&lt;P mce_keep="true"&gt;I tip my hat to&amp;nbsp;the whole team who put on&amp;nbsp;DDD Scotland!&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7477416" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/DDD/default.aspx">DDD</category><category domain="http://weblogs.asp.net/plip/archive/tags/dddscot/default.aspx">dddscot</category><category domain="http://weblogs.asp.net/plip/archive/tags/uk/default.aspx">uk</category></item><item><title>ASP.NET, Windows Forms and JavaScript Exception and Error Handling - Exceptioneer</title><link>http://weblogs.asp.net/plip/archive/2009/05/14/asp-net-windows-forms-and-javascript-exception-and-error-handling-exceptioneer.aspx</link><pubDate>Thu, 14 May 2009 16:05:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7087054</guid><dc:creator>Plip</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=7087054</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2009/05/14/asp-net-windows-forms-and-javascript-exception-and-error-handling-exceptioneer.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Exceptioneer is a hosted system designed for .NET folks to help identify, manage and resolve unhandled exceptions. When an Exception occurs within an Application, that exception and a range of platform specific details are transmitted securely to the Exceptioneer web portal where the data is analysed and for you to handle in your own way. 
&lt;P&gt;We’ve implemented support for: -&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://exceptioneer.com/Public/Demonstration.aspx" target=_blank&gt;&lt;FONT color=#0066cc&gt;ASP.NET Exception Handling&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://blog.exceptioneer.com/blog/exceptioneer-javascript-exception-handling/" target=_blank&gt;&lt;FONT color=#0066cc&gt;JavaScript Exception Handling&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://blog.exceptioneer.com/blog/exceptioneer-ndash-error-handling-for-windows-forms-services-and-console-applications/" target=_blank&gt;&lt;FONT color=#0066cc&gt;Windows Forms, Services and Console Application Exception Handling&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://blog.exceptioneer.com/blog/using-twitter-to-notify-on-new-exceptions/" target=_blank&gt;&lt;FONT color=#0066cc&gt;Desktop notifications of Exceptions&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&lt;A href="http://exceptioneer.com/Public/RegisterInterest.aspx" target=_blank&gt;&lt;FONT color=#0066cc&gt;If you’d like a free account, fill in this form&lt;/FONT&gt;&lt;/A&gt; and we’ll send you an invitation&lt;/P&gt;
&lt;P&gt;Some of you will have heard of ELMAH, which is a cool open source project for collecting Exceptions, you can read how the two compare&amp;nbsp;on the&amp;nbsp;&lt;A href="http://exceptioneer.com/Public/ExceptioneerAndELMAH.aspx" target=_blank&gt;&lt;FONT color=#0066cc&gt;Exceptioneer and ELMAH&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;page.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check out our blog: &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blog.exceptioneer.com/"&gt;&lt;FONT color=#0066cc&gt;http://blog.exceptioneer.com&lt;/FONT&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check our our twitter account:&lt;/P&gt;
&lt;P&gt;&lt;A title=http://twitter.com/exceptioneer href="http://twitter.com/exceptioneer"&gt;&lt;FONT color=#0066cc&gt;http://twitter.com/exceptioneer&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#0066cc&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check out what other people are saying: &lt;/P&gt;
&lt;P&gt;&lt;A title=http://blog.sceniceye.co.uk/2009/05/exceptioneer-wow-much-nicer-than.html href="http://blog.sceniceye.co.uk/2009/05/exceptioneer-wow-much-nicer-than.html"&gt;&lt;FONT color=#0066cc&gt;http://blog.sceniceye.co.uk/2009/05/exceptioneer-wow-much-nicer-than.html&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://search.twitter.com/search?q=exceptioneer href="http://search.twitter.com/search?q=exceptioneer"&gt;&lt;FONT color=#0066cc&gt;http://search.twitter.com/search?q=exceptioneer&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#0066cc&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want Exception Handling for another platform such as Rails checkout this page: -&lt;/P&gt;
&lt;P&gt;&lt;A title=http://exceptioneer.com/Public/OtherPlatforms.aspx href="http://exceptioneer.com/Public/OtherPlatforms.aspx"&gt;&lt;FONT color=#0066cc&gt;http://exceptioneer.com/Public/OtherPlatforms.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7087054" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/plip/archive/tags/ASP.NET/default.aspx">ASP.NET</category><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/Console+Applications/default.aspx">Console Applications</category><category domain="http://weblogs.asp.net/plip/archive/tags/Error/default.aspx">Error</category><category domain="http://weblogs.asp.net/plip/archive/tags/Exception/default.aspx">Exception</category><category domain="http://weblogs.asp.net/plip/archive/tags/JavaScript/default.aspx">JavaScript</category><category domain="http://weblogs.asp.net/plip/archive/tags/Services/default.aspx">Services</category><category domain="http://weblogs.asp.net/plip/archive/tags/Unhandled/default.aspx">Unhandled</category><category domain="http://weblogs.asp.net/plip/archive/tags/Windows+Forms/default.aspx">Windows Forms</category></item><item><title>Find me at MIX09 and win a prize!</title><link>http://weblogs.asp.net/plip/archive/2009/03/16/find-me-at-mix09-and-win-a-prize.aspx</link><pubDate>Mon, 16 Mar 2009 00:07:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6966606</guid><dc:creator>Plip</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=6966606</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2009/03/16/find-me-at-mix09-and-win-a-prize.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;&amp;nbsp;You may or may not be aware but my company is working on a TOP SECRET PROJECT at the moment.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;The project is specifically for .NET developers and will be infinately useful! There's nothing like it out there today and you could be one of the first few people in the world to play with it!&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Sometime during the next couple of weeks we'll be launching it publically and we want to choose the most daring and exciting .NET developers in the World to get free and early&amp;nbsp;access to our TOP SECRET PROJECT.&lt;/P&gt;
&lt;P mce_keep="true"&gt;So what do you have to do to get access? Well it's pretty damn simple!&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;1. Find me (Picture below). It's not hard - I'm Ginger and Pasty White - I look like an inverted traffic cone.&lt;/P&gt;
&lt;P mce_keep="true"&gt;2. Give me one of your business cards. (Don't have one? Not a problem - give me someone else's, I won't know!)&lt;/P&gt;
&lt;P mce_keep="true"&gt;3. Wait for the e-mail (Or tell the person whose card you've given me they're going to get one).&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;IMG style="WIDTH: 375px; HEIGHT: 500px" src="http://farm4.static.flickr.com/3433/3358299026_b379874608.jpg?v=0" width=375 height=500 mce_src="http://farm4.static.flickr.com/3433/3358299026_b379874608.jpg?v=0"&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;Easy Peasy!&lt;/P&gt;
&lt;P mce_keep="true"&gt;&lt;STRONG&gt;&lt;EM&gt;So DO IT !&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6966606" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/MIX09/default.aspx">MIX09</category><category domain="http://weblogs.asp.net/plip/archive/tags/MIX/default.aspx">MIX</category></item><item><title>Preparing for MIX09</title><link>http://weblogs.asp.net/plip/archive/2009/03/16/preparing-for-mix09.aspx</link><pubDate>Mon, 16 Mar 2009 00:06:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6966568</guid><dc:creator>Plip</dc:creator><slash:comments>6</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=6966568</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2009/03/16/preparing-for-mix09.aspx#comments</comments><description>&lt;P&gt;In a little over 48 hours I'll be arriving in Las Vegas and hooking up with all the other web types for MIX09. While this is the third MIX event I've attended (I missed out on the first one) it's certainly the one I'm most excited to attend.&lt;/P&gt;
&lt;P&gt;So to help my MIX09 event attendance run smoothly I've decided to plan ahead a little.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Meeting cool people&lt;/STRONG&gt; is the main reason I'm coming to MIX09.&lt;/P&gt;
&lt;P&gt;So who are a few of the people&amp;nbsp;I am&amp;nbsp;looking forward to hanging out with and why ? &lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://scottcate.com/"&gt;&lt;FONT color=#0066cc&gt;Scott Cate&lt;/FONT&gt;&lt;/A&gt; - Old time ASP.NET buddy and all round top bloke (He'll be Live Casting the Keynotes! &lt;A title=http://scottcate.com/blog/LiveMix09/ href="http://scottcate.com/blog/LiveMix09/"&gt;&lt;FONT color=#0066cc&gt;http://scottcate.com/blog/LiveMix09/&lt;/FONT&gt;&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.trickybusiness.co.uk/"&gt;&lt;FONT color=#0066cc&gt;Tricky&lt;/FONT&gt;&lt;/A&gt; - One of the best designers I have the pleasure of knowing - this guy is a usability god!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.hanselman.com/blog/"&gt;&lt;FONT color=#3399ff&gt;Scott Hansleman&lt;/FONT&gt;&lt;/A&gt; - Speaker, author, ALT.NET fanatic and beard wearer. Scott usually hurls abuse at me which is fun :)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://twitter.com/mamanze"&gt;&lt;FONT color=#0066cc&gt;Ryan Christensen-Schwarz&lt;/FONT&gt;&lt;/A&gt; - Top .NET developer and good friend - not seen Ryan since his Wedding last year in San Fran.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://twitter.com/tommylee"&gt;&lt;FONT color=#0066cc&gt;Thomas Lee&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp;- Thomas was a contact in Microsoft for a while a couple of years back, now he's on the team that brings us MIX - PARTY ANIMAL!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://twitter.com/sam_morrison"&gt;&lt;FONT color=#0066cc&gt;Sam Morrison&lt;/FONT&gt;&lt;/A&gt; - .NET Bloke from London who is running a VBUG group down there, it's his first MIX, will be great to catch up! Showing him Steak one night at the best Steak house in the WORLD*.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;*May not be entirely true.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.chrisntr.co.uk/"&gt;&lt;FONT color=#0066cc&gt;Chris Hardy&lt;/FONT&gt;&lt;/A&gt; - Awww Chrissss!!!! Chris is a .NET Developer in Manchester, he's worked with me for a few years and is another victim of having me attend his wedding.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://weblogs.asp.net/scottgu/"&gt;&lt;FONT color=#0066cc&gt;Scott Guthrie&lt;/FONT&gt;&lt;/A&gt; - If he can spare a few moments it would be great to catch up with Scott and find out what he's been up to recently, not spoken to Scott properly since he came to the UK for REMIX:08 last year.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://haacked.com/"&gt;&lt;FONT color=#0066cc&gt;Phil Haack&lt;/FONT&gt;&lt;/A&gt; - MVC god. I need not say any more!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.michaelmcclary.net/"&gt;&lt;FONT color=#0066cc&gt;Michael McClary&lt;/FONT&gt;&lt;/A&gt; - Microsoft UK Agency chap - lots of stuff going on with this man - keep a close watch on him!&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mainly though, it's the people I don't know that I'm going to MIX09 for - I want to meet MORE cool people!&lt;/P&gt;
&lt;P&gt;Wanna hook up? Drop me an e-mail and we'll sort it out! &lt;A href="mailto:phil@secretvolcanolair.co.uk"&gt;&lt;FONT color=#3399ff&gt;phil@secretvolcanolair.co.uk&lt;/FONT&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What am I going to do whilst I'm in Vegas?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;On Thursday night I'm heading to the "Together @ MIX09" gathering which has been arranged by Michael McClary of Microsoft UK.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll be uploading my Pictures here: -&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.flickr.com/photos/plip/sets/72157615264979609/ href="http://www.flickr.com/photos/plip/sets/72157615264979609/"&gt;&lt;FONT color=#0066cc&gt;http://www.flickr.com/photos/plip/sets/72157615264979609/&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color=#0066cc&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll be Tweeting here: -&lt;/P&gt;
&lt;P&gt;&lt;A href="http://twitter.com/plip"&gt;&lt;FONT color=#3399ff&gt;http://twitter.com/plip&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6966568" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/Community+News/default.aspx">Community News</category><category domain="http://weblogs.asp.net/plip/archive/tags/MIX09/default.aspx">MIX09</category><category domain="http://weblogs.asp.net/plip/archive/tags/MIX/default.aspx">MIX</category></item><item><title>Come party with us - Manchester - 3rd December (Free beer and food!)</title><link>http://weblogs.asp.net/plip/archive/2008/11/28/come-party-with-us-manchester-3rd-december-free-beer-and-food.aspx</link><pubDate>Fri, 28 Nov 2008 14:41:34 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6758475</guid><dc:creator>Plip</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=6758475</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2008/11/28/come-party-with-us-manchester-3rd-december-free-beer-and-food.aspx#comments</comments><description>&lt;p&gt;Guys,&lt;/p&gt;  &lt;p&gt;Come and party with us on the 3&lt;sup&gt;rd&lt;/sup&gt; December at the Circle Club in Manchester 18:00 onwards.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://sessions.screenedit.com/"&gt;http://sessions.screenedit.com/&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;We&amp;#8217;ve even got a few design specialists who&amp;#8217;ll be talking briefly!&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;Please re-blog this where relevant.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Cheers,&lt;/p&gt;  &lt;p&gt;Phil.&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6758475" width="1" height="1"&gt;</description></item><item><title>VAT Rate Change to 15%</title><link>http://weblogs.asp.net/plip/archive/2008/11/24/vat-rate-change-to-15.aspx</link><pubDate>Mon, 24 Nov 2008 15:30:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6751696</guid><dc:creator>Plip</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/plip/rsscomments.aspx?PostID=6751696</wfw:commentRss><comments>http://weblogs.asp.net/plip/archive/2008/11/24/vat-rate-change-to-15.aspx#comments</comments><description>&lt;p&gt;Since the Millennium Bug nothing more serious has effected the United Kingdoms IT Systems.&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://vatchange.com" mce_href="http://vatchange.com"&gt;What does the VAT rate change mean for your business' systems?&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The VAT rate change is a very serious issue for your IT systems - make sure you are ready.&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.VATChange.com" mce_href="http://www.VATChange.com"&gt;http://www.VATChange.com&lt;/a&gt;&lt;br&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6751696" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/plip/archive/tags/vat+uk+british+asp.net+.net+microsoft+tax+maths/default.aspx">vat uk british asp.net .net microsoft tax maths</category></item></channel></rss>