<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jackie Pollock</title>
	<atom:link href="http://jackiepollock.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://jackiepollock.co.uk</link>
	<description>Musings of an IT geek</description>
	<lastBuildDate>Thu, 31 May 2012 19:49:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jackiepollock.co.uk' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jackie Pollock</title>
		<link>http://jackiepollock.co.uk</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jackiepollock.co.uk/osd.xml" title="Jackie Pollock" />
	<atom:link rel='hub' href='http://jackiepollock.co.uk/?pushpress=hub'/>
		<item>
		<title>Developer Developer Developer South West 2012</title>
		<link>http://jackiepollock.co.uk/2012/05/29/developer-developer-developer-south-west-2012/</link>
		<comments>http://jackiepollock.co.uk/2012/05/29/developer-developer-developer-south-west-2012/#comments</comments>
		<pubDate>Tue, 29 May 2012 17:45:48 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">https://kieviabelfast.wordpress.com/?p=129</guid>
		<description><![CDATA[I was able to attend DDD South West (www.dddsouthwest.com) over the weekend held in Bristol. The conference is a free one day event open to all but mainly focusing on elements available on the .NET platform. It&#8217;s a great way of being able to hear some excellent speakers talk on areas that they are passionate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=129&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was able to attend DDD South West (www.dddsouthwest.com) over the weekend held in Bristol. The conference is a free one day event open to all but mainly focusing on elements available on the .NET platform. It&#8217;s a great way of being able to hear some excellent speakers talk on areas that they are passionate about and who you would not normally be able to see.</p>
<p>Sessions that I attended included:<br />- .NET Collections Deep Dive by Gary Short (<a href="http://garyshortblog.wordpress.com/)">http://garyshortblog.wordpress.com/)</a><br />- No More Passwords by Jimmy Skowronski (<a href="http://jimmylarkin.net)">http://jimmylarkin.net)</a><br />- Performance and Scalability, the Stack Exchange Way by Marc Gravell(<a href="http://marcgravell.blogspot.co.uk/)">http://marcgravell.blogspot.co.uk/)</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />.Net Collections Deep Dive<br />A session convincing us that there is more to .NET collections than just lists.</p>
<p>Lists:<br />- AddRange is better than Add inside a loop as it cuts down on the number of Array.Copys needed to be called when adding new items and expanding the underlying array (this really comes into effect when adding more that 10000 elements to a list).Alternatively you can set the capacity of the list when constructing to reduce this further<br />- Using a list initiator and specifying the elements within the list eg new list {item1, item2} is the same as calling Add multiple times<br />- List.Remove performs an IndexOf before calling List.RemoveAt so if you know where in the list your item is just call RemoveAt initially.<br />- List.Sort uses QuickSort as it&#8217;s underlying sort algorithm. This is the fastest sort algorithm for general purpose sorting as it is (nlogn) for best and average case but (n to the power of n) for worst case. What&#8217;s the worst case? An already sorted list &#8211; better to call List.Randomise before calling sort to remove this problem. <br />- List disadvantages: Add, Insert, Remove all O(n) operations</p>
<p>Linked List<br />- Double linked so that each element is linked to the element before and after it<br />- Add, Insert, Remove all O(1) operations however O(n) on lookups</p>
<p>Dictionary<br />- Performance depends on the result of Key.GetHashCode. If you are using your own objects for the key you need to implement this method yourself. Also need to override Equals method to prevent hashcode collision as every key in a dictionary must be unique.</p>
<p>Lookup<br />- Keys do not have to be unique<br />- Can be created using lists of tuples and converted to lookups</p>
<p>Collection Version Numbers<br />Every regular collection has a version number, this is the element that prevents you from iterating over a collection that you are changing. This traditionally causes problems in multi threaded environments due to thread locking and updating. Concurrent Collections have been created to solve this.</p>
<p>Concurrent Collections<br />- New collections in .NET 4.0<br />- Implements IProducerConsumerCollections which provides the methods TryAdd and TryTake<br />- TryAdd: attempts to add item to collection and returns boolean result<br />- TryTake: attempts to remove item from collection and returns item<br />- Blocking collections: uses Add and Take. TryAdd and TryTake also available with timeouts</p>
<p>Summary<br />- List: good general purpose collection. Construct to size if possible, prefer AddRange to Add. Be aware of issues with QuickSort (Google QuickSort killers for scernios)<br />- LinkedList: fast insert/remove<br />- Dictionary: fast lookup<br />- Lookup: multi key values<br />- Concurrent Collections: thread safety</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>No More Passwords &#8211; or how to use OAuth</p>
<p>Most public access websites that you come across that want you to interact with them all seem to have some sort of account creation area. While it&#8217;s probably fine to have a separate account on Google and Amazon it gets really tiresome when you are trying to download a software demo or take part in a forum. Especially when you consider the amount of passwords that you have to remember and the amount of media stories when hackers manage to get lists of account details from insecure&nbsp; sites. </p>
<p>Fortunately OAuth presents an opportunity to hold an account with a provider eg OpenId, Facebook, Twitter, Google, LiveId, and then use those credentials across multiple websites to bring your existing account details with you.</p>
<p>To incorporate this into your own sites .NET provides a series of libraries under WebMatrix.Security that allows you to add providers with only a few lines of code. LiveId, Facebook, Twitter and YahooOpenId all come out of the box but Google can be easily added.</p>
<p>The steps involved are to register your site with the individual provider who will give you a token that you can add to your global.asax page and then the call on your site to perform the login is as simple as OAuthWebSecurity.RequestAuthentication(provider, postbackUrl).</p>
<p>One of the items of data that comes down with the request is a unique id representing the user that can then be stored in the application database allowing for persistence of settings/data etc. For our public facing customers there should no longer be a need to roll our own account management system.</p>
<p>Jimmy has provided a demo of how this can be achieved and as his presentation was a website you will be able to get the full notes at <a href="http://jimmylarkin.net/post/2012/05/27/DDD-South-West-OAuth-Session.aspx">http://jimmylarkin.net/post/2012/05/27/DDD-South-West-OAuth-Session.aspx</a></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />Performance and Scalability, the Stack Exchange Way</p>
<p>Marc started out by explaining that the traditional answer to performance issues of throw another server at it doesn&#8217;t work for websites for the vast majority of the time- highlighted by StackOverflow&#8217;s own experiences where they serve up seven million page views a month and their servers are only running at 10% CPU capacity.</p>
<p>He also noted that IIS profiling doesn&#8217;t always show where the issues lie and for that you need something reporting within the code. This is how MiniProfiler was born- an open source profiler for MVC and ASP.NET websites that allows you to tag regions of code and report on the timings within them. It can even go to the database level and report on the SQL that was actually called- handy for Entity Framework and Linq statements.</p>
<p>It&#8217;s also lightweight so unlike other profilers it can be left to run in a production environment and only enabled when needed. The website effectively shows its usage so check out <a href="http://miniprofiler.com/">http://miniprofiler.com/</a> for more details.</p>
<p>The second tool that Marc showed was Dapper (<a href="http://code.google.com/p/dapper-dot-net/)">http://code.google.com/p/dapper-dot-net/)</a> which is a&nbsp; lightweight mapping tool that is very effective for sites with large reads. This was created when the StackOverflow team noticed that some Entity Framework calls took 400ms to run instead of the standard 4ms and the issue turned out to be the mapping process between SQL results and custom objects within code.</p>
<p>I believe that both of these tools would provide benefits both to new and existing projects within and should be investigated further.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Presenters at DDD events are normally very good at making their presentation content available on their blogs so it would be worth checking out the agenda at <a href="http://www.dddsouthwest.com/Agenda/tabid/55/Default.aspx">http://www.dddsouthwest.com/Agenda/tabid/55/Default.aspx</a> and looking up any of the speakers whose sessions catch your interest.</p>
<p>If any of these has captured your interest in attending DDD events, the next one that I know of is DDD Reading on Sat 1st Sept though DDD North is about to announce it&#8217;s call for speakers. Keep an eye on the official DDD site at <a href="http://developerdeveloperdeveloper.com">http://developerdeveloperdeveloper.com</a> for more details.</p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/conference/'>Conference</a>, <a href='http://jackiepollock.co.uk/category/events/'>Events</a>, <a href='http://jackiepollock.co.uk/category/it/'>IT</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=129&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2012/05/29/developer-developer-developer-south-west-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>Guacamole</title>
		<link>http://jackiepollock.co.uk/2012/04/02/guacamole/</link>
		<comments>http://jackiepollock.co.uk/2012/04/02/guacamole/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 16:34:43 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Recipes]]></category>

		<guid isPermaLink="false">https://kieviabelfast.wordpress.com/?p=124</guid>
		<description><![CDATA[Ingredients - 1 avocado - 1/2 lime (juice only) - few sprigs coriander - fresh chilli (pretty mild) - pinch salt and pepper - 1 deseeded tomato (finely chopped) - 1/2 small red onion Method Add onion, coriander, chilli to either a food processor or pestle and mortar. Grind to rough consistency. Add flesh of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=124&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h5>Ingredients </h5>
<h5>- 1 avocado </h5>
<h5>- 1/2 lime (juice only) </h5>
<h5>- few sprigs coriander </h5>
<h5>- fresh chilli (pretty mild) </h5>
<h5>- pinch salt and pepper </h5>
<h5>- 1 deseeded tomato (finely chopped) </h5>
<h5>- 1/2 small red onion</h5>
<p>Method
<p>Add onion, coriander, chilli to either a food processor or pestle and mortar. Grind to rough consistency.
<p>Add flesh of avocado and mix well. Add lime juice, salt and pepper to taste.
<p>Mix to smooth consistency and serve immediately. Works well with chilli and tortilla chips</p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/recipes/'>Recipes</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=124&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2012/04/02/guacamole/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>Tomato and Pepper Soup</title>
		<link>http://jackiepollock.co.uk/2012/04/02/tomato-and-pepper-soup/</link>
		<comments>http://jackiepollock.co.uk/2012/04/02/tomato-and-pepper-soup/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 16:33:55 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Recipes]]></category>

		<guid isPermaLink="false">https://kieviabelfast.wordpress.com/?p=122</guid>
		<description><![CDATA[Ingredients (makes 3 litres)- 4 peppers (oven roast first for added flavour)- 3 cartons chopped tomatoes- 2 onions- 1 litre of vegetable stock- 3- 4 garlic cloves- chilli to taste (2 birds eye + good pinch of chilli flakes works well)- basil, oregano, to taste (I love loads)- paprika Method- Add onions, peppers to large [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=122&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h5>Ingredients (makes 3 litres)<br />- 4 peppers (oven roast first for added flavour)<br />- 3 cartons chopped tomatoes<br />- 2 onions<br />- 1 litre of vegetable stock<br />- 3- 4 garlic cloves<br />- chilli to taste (2 birds eye + good pinch of chilli flakes works well)<br />- basil, oregano, to taste (I love loads)<br />- paprika</h5>
<p>Method<br />- Add onions, peppers to large pot and simmer (use stock as extra liquid when needed)<br />- add garlic, chilli to pot<br />- when peppers getting soft add tomatoes<br />- bring to boil, reduce to simmer and add herbs and spices<br />- simmer for about 40 mins<br />- blend to smooth consistency<br />Warning: The blending will increase the spice level of the soup- don’t rely on the stock for heat indication</p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/recipes/'>Recipes</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=122&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2012/04/02/tomato-and-pepper-soup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>Thai-inspired noodle soup</title>
		<link>http://jackiepollock.co.uk/2012/04/02/thai-inspired-noodle-soup/</link>
		<comments>http://jackiepollock.co.uk/2012/04/02/thai-inspired-noodle-soup/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 16:33:22 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Recipes]]></category>

		<guid isPermaLink="false">https://kieviabelfast.wordpress.com/?p=120</guid>
		<description><![CDATA[Ingredients1 good knob fresh root ginger, peeled and roughly chopped1-2 red chillies, seeds removed (optional), roughly chopped1-2 stalks lemongrass, tough outer layers removed, roughly chopped2-3 garlic cloves, peeled1 handful fresh coriander, a few sprigs reserved and choppeda glug or two vegetable oil1 tbsp coriander seeds1-2 pinches ground turmericsmall jug vegetable stocka couple of handfuls rice [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=120&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h5>Ingredients<br />1 good knob fresh root ginger, peeled and roughly chopped<br />1-2 red chillies, seeds removed (optional), roughly chopped<br />1-2 stalks lemongrass, tough outer layers removed, roughly chopped<br />2-3 garlic cloves, peeled<br />1 handful fresh coriander, a few sprigs reserved and chopped<br />a glug or two vegetable oil<br />1 tbsp coriander seeds<br />1-2 pinches ground turmeric<br />small jug vegetable stock<br />a couple of handfuls rice noodles<br />1 x 400ml/14fl oz can coconut milk<br />1 large handful raw peeled tiger prawns (the shells and heads can be reserved for making stock in another recipe)<br />a few splashes Thai fish sauce, to taste</h5>
<p>Method<br />Blend the ginger, chilli, lemongrass, garlic and coriander in a food processor until quite finely chopped, adding a little vegetable oil if the paste is too dry.
<p>Add the paste to a large shallow pan and cook for a few minutes to release the aromas, stirring frequently. Roughly crush some coriander seeds with a pestle and mortar and add to the paste with a pinch or two of turmeric and the vegetable stock and simmer for a few minutes.<br />Meanwhile, pour some boiling water over the rice noodles in a bowl and let them sit until they have softened, about 4-5 minutes, then drain and set aside.<br />To soften the heat of the sauce, add the coconut milk to the pan and bring back to the boil. Reduce the heat and simmer for a few minutes while you devein the prawns by cutting along the back of the prawn with a small sharp knife and removing the black ‘thread’ using the point of the knife. Add the prawns to the pan and cook for 2-3 minutes, or until pink and tender, finishing off with splashes of Thai fish sauce, to taste, and more chopped fresh coriander, to your taste.<br />To serve, divide the drained noodles between two bowls and ladle over the aromatic soup with the prawns and serve straightaway.
<p>Chicken, or mushrooms are a great alternative to the prawns.</p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/recipes/'>Recipes</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=120&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2012/04/02/thai-inspired-noodle-soup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>Tomato, Bacon and Bean Soup</title>
		<link>http://jackiepollock.co.uk/2012/04/02/tomato-bacon-and-bean-soup/</link>
		<comments>http://jackiepollock.co.uk/2012/04/02/tomato-bacon-and-bean-soup/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 16:17:20 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Recipes]]></category>

		<guid isPermaLink="false">http://jackiepollock.co.uk/?p=112</guid>
		<description><![CDATA[This recipe takes my Tomato and Pepper soup and kicks it up a gear. Not sure if it would have worked at the beginning but it was so yummy. Ingredients 1 pack of cooking bacon (roughly 200-300g) 2 cartons of sieved tomatoes 2 tins mixed beans 3 peppers 2 red onions 1 stock cube (made [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=112&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This recipe takes my Tomato and Pepper soup and kicks it up a gear. Not sure if it would have worked at the beginning but it was so yummy.</p>
<p><strong>Ingredients</strong></p>
<ul>
<li>1 pack of cooking bacon (roughly 200-300g)</li>
<li>2 cartons of sieved tomatoes</li>
<li>2 tins mixed beans</li>
<li>3 peppers</li>
<li>2 red onions</li>
<li>1 stock cube (made up with 500ml water)</li>
<li>To Taste (I use lots): Basil, Oregano, Marjoram, Garlic, Chilli, Pepper, Paprika</li>
</ul>
<p><strong>Method</strong></p>
<ol>
<li>Cook off the bacon and set aside</li>
<li>To a couple of tablespoons of olive oil add the peppers and onions.</li>
<li>Allow to soften and add the veg stock</li>
<li>Add the garlic, chilli and pepper</li>
<li>Cook down and add the tomatoes</li>
<li>Cook for about 20 mins and add the beans</li>
<li>Add the bacon to the pot</li>
<li>Add the basil, oregano and marjoram</li>
<li>Cook until you can’t wait any longer and tuck in.</li>
</ol>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/recipes/'>Recipes</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=112&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2012/04/02/tomato-bacon-and-bean-soup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server: Linked Servers in a Development Environment</title>
		<link>http://jackiepollock.co.uk/2012/04/02/sql-server-linked-servers-in-a-development-environment/</link>
		<comments>http://jackiepollock.co.uk/2012/04/02/sql-server-linked-servers-in-a-development-environment/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 16:04:25 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">https://kieviabelfast.wordpress.com/?p=101</guid>
		<description><![CDATA[We were trying to figure out a way of having a dynamically encoded database name in our sql queries for a series of reports working off two databases. We needed to have the second database on a different server and we wanted to replicate this on our development environment as well as making deployment easier. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=101&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We were trying to figure out a way of having a dynamically encoded database name in our sql queries for a series of reports working off two databases. We needed to have the second database on a different server and we wanted to replicate this on our development environment as well as making deployment easier.
<p>After spending a while looking into dynamic sql queries (not a great idea) and report parameters I decided to have another look at linked servers.
<p>Linked servers are a means in SQL Server (probably exist in other db worlds- haven&#8217;t researched) of connecting two servers so that you can access database objects from one server within queries hosted in another.
<p>To set them up:
<ol>
<li>Go to “Server Objects” of the database server where the linked server will be added and right click on “Linked Servers”. Select “Add New Linked Server”.
<li>In the “General” tab, add a name for the new linked server in the “Linked Server” field.
<li>Select “Other data source”and for “Provider” select “Microsoft OLE DB for SQL Server”
<li>For “Product Name” type in “SQLOLEDB”
<li>In the “Data Source” field, enter the IP address of the server to be linked (this can be local)
<li>“Catalog” is the name of the database on the linked server and is optional (db2 in my case)
<li>Go to the “Security” tab and select “Be made using this security context”. Type in the remote login and credentials. Naturally set this to be a user with only the necessary permissions and not all.</li>
</ol>
<p>Credit to <a href="http://www.jensbits.com/2010/11/10/create-linked-server-sql-server-2008/">http://www.jensbits.com/2010/11/10/create-linked-server-sql-server-2008/</a> on the creation of linked servers</p>
<p>Where this becomes powerful is that you can set the datasource to be the local machine name or ip so in effect you can link a server to itself. This works brilliantly for development as we can set our sql query using the linked server name and have it configured to multiple environments without touching the code.
<p>To use a linked server in code you prefix the tablename with the name of the linked server so
<p>select * from database.dbo.table becomes
<p>select * from linkedservername.database.dbo.table
<p>This works out to be quite a tidy implementation. Hope it helps someone else out there.</p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/it/'>IT</a> Tagged: <a href='http://jackiepollock.co.uk/tag/database/'>database</a>, <a href='http://jackiepollock.co.uk/tag/sql-server/'>sql server</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=101&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2012/04/02/sql-server-linked-servers-in-a-development-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>Mencap: Working Together For Change, Day 1</title>
		<link>http://jackiepollock.co.uk/2012/03/24/mencap-working-together-for-change-day-1/</link>
		<comments>http://jackiepollock.co.uk/2012/03/24/mencap-working-together-for-change-day-1/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 01:04:26 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Mencap]]></category>
		<category><![CDATA[gateway]]></category>
		<category><![CDATA[mencap]]></category>

		<guid isPermaLink="false">http://jackiepollock.co.uk/?p=99</guid>
		<description><![CDATA[Mencap: Working Together for Change Conference &#8211; Friday 23rd March I&#8217;ve been to many conferences, both youth work based and IT, and I&#8217;ve yet to sense the buzz on entering a room as I did today coming into the registration hall of the Mencap conference. Mencap put a lot of work into welcoming people into [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=99&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mencap: Working Together for Change Conference &#8211; Friday 23rd March</p>
<p>I&#8217;ve been to many conferences, both youth work based and IT, and I&#8217;ve yet to sense the buzz on entering a room as I did today coming into the registration hall of the Mencap conference.</p>
<p>Mencap put a lot of work into welcoming people into the conference, from the front door right up to the conference hall itself. The room was well laid out with exhibitors around the outside edges of the main room and round tables for delegates to sit and discuss the points raised over the course of the day.</p>
<p>Technology was in evidence yet not overpowering so- I was delighted to see that Twitter  was actively encouraged with the tag #wt4c set aside (lots of relevant comments added throughout the day) and people on hand to explain technology to new converts or people just wanting to have a go.</p>
<p>The conference opened with several big names introducing people to the conference including Paul Clark (UTV presenter) who was to be our conference chair for the day as well as Edwin Poots (Minister for Health and Social Services), with Mencap NI well represented by Maureen Piggot (Mencap NI Director), Brian Ambrose and Annette Crawford (Mencap NI Committee Co-chairs).</p>
<p>The conference then turned to three keynote speakers who discussed their chosen subject before the floor turned to a roundtable discussion to allow the delegates to speak their mind before the next speaker took their turn. I thought that this was a brilliant way to allow everyone to feed their thoughts on the subject matter to the organisers without going into a drawn out Q&amp;A session that would only allow a few to speak.</p>
<p>The first speaker was Dr Cliona Cummings who spoke about educating people on environmental factors as early in a child&#8217;s life as possible- we need to educate people before the child has even started to grow in the womb and to carry the messages on throughout the child&#8217;s life. Early intervention really is key. The picture she showed of a brain scan of a child aged three who had suffered extreme neglect compared to a &#8216;normal&#8217; child will stay with me for a long time</p>
<p>The second speaker was Gerry Conway speaking on supporting and strengthen families. He introduced the new family support framework that is being put in place to talk and support families at a local level to build up to trust level thinking. One of the members in my discussion group rightly raised the point of rural planning and provision and the danger that if everyone is talking the signal to noise ratio might be too low to actually benefit anyone. Another point was that of money following targets rather than the child being at the centre of any provision.</p>
<p>The final speaker was Dr Noel Purdy who spoke on teaching the teachers of tomorrow at Stranmillis and that every trainee teacher passing through the college is now taught about Special Education Needs and how to support children. He also highlighted an exercise carried out in Australia were parents of children with SENs came into the teaching colleges and spoke to students to explain exactly what the needs and difficulties actually are. He is wanting to speak to any parents here who would like to do the same. It&#8217;s all about teachers and parents working together and keeping communication lines open &#8211; something that can only get harder as teacher workloads continue to increase.</p>
<p>After lunch (food was excellent) the interactive theme of the conference continued with a panel session that was opened to the floor for questions. The theme of the discussion quickly became the provision for speech and language theory which I discovered wasn&#8217;t seen as a basic educational right of the child. There is also some dispute over where provision lies (either with health or education boards) and that there is no legal requirement for a replacement therapist to be assigned if a therapist leaves their post. The quote of the day for the floor came from John, a Mencap trustee, when he said that one year loss of speech therapy was actually like losing four years given the amount of progress and learning lost.</p>
<p>The conference then broke into workshops and I ended up in the session entitled Planning for my Future. This covered two topics: personal relationships and education transition.</p>
<p>The section on personal relationships was covered by two parents from Mencap Wales whose children had fallen in love and discussed the problems that they faced- mainly from other people, and the discussions that needed to happen with both young people to ensure that they were aware of everything that a serious relationship entails. I wish the couple the best of luck for the future and can see wedding bells on the horizon.</p>
<p>The second part of the workshop was taken by the North West Regional College and explained the partnership that they had put in place with Mencap to support young people with learning disabilities into further education and into work placements. Since I have quite a few parents going through this at the moment I was delighted to hear that there are transition officers available to guide families through this and that both the schools and Mencap can signpost parents to get the help they need.</p>
<p>After the workshop it was back to the main room for a performance by the very talented Something Special, a musical group from the North West who performed Over the Rainbow to a standing ovation.</p>
<p>The day&#8217;s conference was then reviewed by Maureen who covered a few highlights of the day. One of the most impressive figures was that the twitter feed had reached approximately 43,000 people worldwide- pretty good going for a conference in Northern Ireland.</p>
<p>Jim Glover (National Mencap Chairman) then drew the conference to close thanking presenters, attendees and organisers for such a great day. He is visiting both days of the conference to find out what Mencap NI is like on the ground from the people that make up the various organisations.</p>
<p>There were over 200 people attending today&#8217;s conference and the day absolutely flew by in a mixture of brilliant speakers and discussions. I&#8217;m really looking forward to tomorrow&#8217;s session (190 registered) as it has a community focus and I feel that it will be another excellent day.</p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/community/'>Community</a>, <a href='http://jackiepollock.co.uk/category/conference/'>Conference</a>, <a href='http://jackiepollock.co.uk/category/mencap/'>Mencap</a> Tagged: <a href='http://jackiepollock.co.uk/tag/gateway-2/'>gateway</a>, <a href='http://jackiepollock.co.uk/tag/mencap-2/'>mencap</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=99&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2012/03/24/mencap-working-together-for-change-day-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>DDD Belfast Registration Now Open</title>
		<link>http://jackiepollock.co.uk/2011/09/18/ddd-belfast-registration-now-open/</link>
		<comments>http://jackiepollock.co.uk/2011/09/18/ddd-belfast-registration-now-open/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 15:11:29 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dddBelfast]]></category>

		<guid isPermaLink="false">http://jackiepollock.co.uk/?p=90</guid>
		<description><![CDATA[Site is fixed and registration is now open http://developerdeveloperdeveloper.com/dddie11/Register.aspx Filed under: Uncategorized Tagged: dddBelfast<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=90&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Site is fixed and registration is now open <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a title="http://developerdeveloperdeveloper.com/dddie11/Register.aspx" href="http://developerdeveloperdeveloper.com/dddie11/Register.aspx"> http://developerdeveloperdeveloper.com/dddie11/Register.aspx</a></p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://jackiepollock.co.uk/tag/dddbelfast/'>dddBelfast</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=90&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2011/09/18/ddd-belfast-registration-now-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>DeveloperDeveloperDeveloper Belfast 2011 Schedule</title>
		<link>http://jackiepollock.co.uk/2011/09/07/developerdeveloperdeveloper-belfast-2011-schedule/</link>
		<comments>http://jackiepollock.co.uk/2011/09/07/developerdeveloperdeveloper-belfast-2011-schedule/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 18:20:56 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jackiepollock.co.uk/index.php/2011/09/developerdeveloperdeveloper-belfast-2011-schedule/</guid>
		<description><![CDATA[Well the waiting is over and I can announce the schedule for DDD Belfast happening on 1st October in the University of Ulster’s Belfast campus. Schedule as follows: Time Track 1 Track 2 Track 3 8:30-9:00 Registration Registration Registration 9:00-9:30 Housekeeping Housekeeping Housekeeping 9:30-10:30 Taking REST beyond the pretty URL Jacob Reimers Code Contracts &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=89&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well the waiting is over and I can announce the schedule for DDD Belfast happening on 1st October in the University of Ulster’s Belfast campus.</p>
<p>Schedule as follows:</p>
<table border="1" cellspacing="0" cellpadding="2" width="600">
<tbody>
<tr>
<td width="150" valign="top">Time</td>
<td width="150" valign="top">Track 1</td>
<td width="148" valign="top">Track 2</td>
<td width="152" valign="top">Track 3</td>
</tr>
<tr>
<td width="150" valign="top">8:30-9:00</td>
<td width="150" valign="top">Registration</td>
<td width="148" valign="top">Registration</td>
<td width="152" valign="top">Registration</td>
</tr>
<tr>
<td width="150" valign="top">9:00-9:30</td>
<td width="150" valign="top">Housekeeping</td>
<td width="148" valign="top">Housekeeping</td>
<td width="152" valign="top">Housekeeping</td>
</tr>
<tr>
<td width="150" valign="top">9:30-10:30</td>
<td width="150" valign="top">Taking REST beyond the pretty URL</p>
<p>Jacob Reimers</td>
<td width="148" valign="top">Code Contracts &#8211; Design by Contract for Mainstream .NET</p>
<p>Ashic Mahtab</td>
<td width="152" valign="top">refORM &#8211; Death to ORMs in .NET</p>
<p>James Hughes</td>
</tr>
<tr>
<td width="150" valign="top">10:30-10:45</td>
<td width="150" valign="top">Break</td>
<td width="148" valign="top">Break</td>
<td width="152" valign="top">Break</td>
</tr>
<tr>
<td width="150" valign="top">10:45-11:45</td>
<td width="150" valign="top">Internationalizing ASP.NET MVC 3</p>
<p>Guy Smith-Ferrier</td>
<td width="148" valign="top">HTML5 for developers</p>
<p>Mark Allan</td>
<td width="152" valign="top">Behavioural Driven Development (BDD) with F#</p>
<p>Phillip Trelford</td>
</tr>
<tr>
<td width="150" valign="top">11:45-12:00</td>
<td width="150" valign="top">Break</td>
<td width="148" valign="top">Break</td>
<td width="152" valign="top">Break</td>
</tr>
<tr>
<td width="150" valign="top">12:00-1:00</td>
<td width="150" valign="top">CoffeeScript The Awesome</p>
<p>James Hughes</td>
<td width="148" valign="top">Parallelisation: Doing stuff at the same time in .NET 4.0</p>
<p>Colin Mackay</td>
<td width="152" valign="top">Asynchronous programming with F# and C#</p>
<p>Tomas Petricek</td>
</tr>
<tr>
<td width="150" valign="top">1:00-2:30</td>
<td width="150" valign="top">Lunch</td>
<td width="148" valign="top">Lunch</td>
<td width="152" valign="top">Lunch</td>
</tr>
<tr>
<td width="150" valign="top">2:30-3:30</td>
<td width="150" valign="top">CQRS &#8211; Bringing Elegance to &#8220;Normal&#8221; Applications</p>
<p>Ashic Mahtab</td>
<td width="148" valign="top">Aha! Unit Testing  Richard Dalton</td>
<td width="152" valign="top">Defensive Programming 101</p>
<p>Niall Merrigan</td>
</tr>
<tr>
<td width="150" valign="top">3:30-3:45</td>
<td width="150" valign="top">Break</td>
<td width="148" valign="top">Break</td>
<td width="152" valign="top">Break</td>
</tr>
<tr>
<td width="150" valign="top">3:45-4:45</td>
<td width="150" valign="top">(clojure (you get used to the parenthesis (eventually)))</p>
<p>Rob Lally</td>
<td width="148" valign="top">TBC</td>
<td width="152" valign="top">Developing F# Mobile Applications with WebSharper</p>
<p>Adam Granicz</td>
</tr>
<tr>
<td width="150" valign="top">4:45-5:00</td>
<td width="150" valign="top">Finish and Prizes</td>
<td width="148" valign="top">Finish and Prizes</td>
<td width="152" valign="top">Finish and Prizes</td>
</tr>
</tbody>
</table>
<p>Registration opening really soon</p>
<p>Twitter hash: #dddBelfast</p>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=89&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2011/09/07/developerdeveloperdeveloper-belfast-2011-schedule/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server: Find tables containing column name</title>
		<link>http://jackiepollock.co.uk/2010/07/20/sql-server-find-tables-containing-column-name/</link>
		<comments>http://jackiepollock.co.uk/2010/07/20/sql-server-find-tables-containing-column-name/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:44:12 +0000</pubDate>
		<dc:creator>kievia</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://jackiepollock.co.uk/index.php/2010/07/sql-server-find-tables-containing-column-name/</guid>
		<description><![CDATA[To find all the user tables that contain a particular column name run the following command on the relevant database: SELECT name FROM sysobjects WHERE xtype='U' and id IN( SELECT id FROM syscolumns WHERE name like '%COLUMN NAME%' ) Filed under: IT Tagged: sql server<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=65&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To find all the user tables that contain a particular column name run the following command on the relevant database:</p>
<div id="codeSnippetWrapper">
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:'Courier New', courier, monospace;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#0000ff;">SELECT</span> name <span style="color:#0000ff;">FROM</span> sysobjects <span style="color:#0000ff;">WHERE</span> xtype=<span style="color:#006080;">'U'</span> <span style="color:#0000ff;">and</span> id <span style="color:#0000ff;">IN</span>( <span style="color:#0000ff;">SELECT</span> id <span style="color:#0000ff;">FROM</span> syscolumns</pre>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:'Courier New', courier, monospace;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#0000ff;">WHERE</span> name <span style="color:#0000ff;">like</span> <span style="color:#006080;">'%COLUMN NAME%'</span> )</pre>
</div>
<br />Filed under: <a href='http://jackiepollock.co.uk/category/it/'>IT</a> Tagged: <a href='http://jackiepollock.co.uk/tag/sql-server/'>sql server</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kieviabelfast.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kieviabelfast.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kieviabelfast.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kieviabelfast.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kieviabelfast.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kieviabelfast.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kieviabelfast.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kieviabelfast.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kieviabelfast.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kieviabelfast.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kieviabelfast.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kieviabelfast.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kieviabelfast.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kieviabelfast.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jackiepollock.co.uk&#038;blog=28250712&#038;post=65&#038;subd=kieviabelfast&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jackiepollock.co.uk/2010/07/20/sql-server-find-tables-containing-column-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63a2cd6128571423bfdd3bdf2e1fb7a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kievia</media:title>
		</media:content>
	</item>
	</channel>
</rss>
