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

<channel>
	<title>Richard Brisley</title>
	<atom:link href="http://www.shimirel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shimirel.com</link>
	<description>(A)Abort (R)Retry (F)Fix dinner and leave the @#$! computer alone?</description>
	<lastBuildDate>Sun, 15 Jan 2012 22:29:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>IIS 7 Change Concurrent Connection Limit</title>
		<link>http://www.shimirel.com/world-wide-web/iis-6/iis-7-change-concurrent-connection-limit/1062/</link>
		<comments>http://www.shimirel.com/world-wide-web/iis-6/iis-7-change-concurrent-connection-limit/1062/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 22:29:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IIS 6]]></category>
		<category><![CDATA[IIS 7]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1062</guid>
		<description><![CDATA[http://toostep.com/trends/iis-7-change-concurrunt-connection-limit-in-iis7-for-maximum By default IIS7 has a limit of handling 12 concurrent requests per CPU and will queue requests above this limit. If you have some significant web load and many AJAX style requests to your server &#8211; this setting maybe very restrictive and it is hard to find out the root of the problem when&#160;<a href="http://www.shimirel.com/world-wide-web/iis-6/iis-7-change-concurrent-connection-limit/1062/" class="read-more">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>http://toostep.com/trends/iis-7-change-concurrunt-connection-limit-in-iis7-for-maximum</p>
<p>By default IIS7 has a limit of handling 12 concurrent requests per CPU and will queue requests above this limit. If you have some significant web load and many AJAX style requests to your server &#8211; this setting maybe very restrictive and it is hard to find out the root of the problem when you server performance is suddenly degraded.</p>
<p>See this post to get the picture how it can cause performance issues on your server.</p>
<p>Some relevant info about asp.net thread usage on IIS7 here:</p>
<p>asp.net thread usage on IIS7 and IIS6</p>
<p>Thomas Marquardt advice is to change this default limit. Recommended settings:<br />
&#8220;All of this may be a little confusing, but for nearly everyone, my recommendation is that for ASP.NET 2.0 you should use the same settings as the defaults in ASP.NET v4.0; that is, set maxConcurrentRequestsPerCPU = &#8220;5000&#8243; and maxConcurrentThreadsPerCPU=&#8221;0&#8243;.</p>
<p>This is done by adding DWORD MaxConcurrentRequestsPerCPU to the registry under</p>
<p>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ASP.NET\2.0.50727.0</p>
<p>called MaxConcurrentRequestsPerCPU (DWORD). This key doesn&#8217;t exist by default. Or/and in aspnet.config section which overrides registry setting (also doesn&#8217;t exist by default) aspnet.config is here on windows 64bit:</p>
<p>%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet.config</p>
<p>You need to add the following section under &#8220;configuration&#8221; section (here I used default values) &#8211; don&#8217;t forget change maxConcurrentRequestsPerCPU to 5000.</p>
<p>< system.web><br />
    < applicationPool<br />
        maxConcurrentRequestsPerCPU="12"<br />
        maxConcurrentThreadsPerCPU="0"<br />
        requestQueueLimit="5000" /><br />
< /system.web></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/world-wide-web/iis-6/iis-7-change-concurrent-connection-limit/1062/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Technologies and SEO Web Development</title>
		<link>http://www.shimirel.com/world-wide-web/seo/microsoft-technologies-and-seo-web-development/1060/</link>
		<comments>http://www.shimirel.com/world-wide-web/seo/microsoft-technologies-and-seo-web-development/1060/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 22:14:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1060</guid>
		<description><![CDATA[http://www.seomoz.org/ugc/microsoft-technologies-and-seo-web-development A website&#8217;s code is like a play that tells a story to the search engine. If you have ink blotches and pages ripped or missing from the script it is hard for the search engine to understand the plot, if the search engine misses the plot it cannot tell others about it. Using rich&#160;<a href="http://www.shimirel.com/world-wide-web/seo/microsoft-technologies-and-seo-web-development/1060/" class="read-more">[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.seomoz.org/ugc/microsoft-technologies-and-seo-web-development">http://www.seomoz.org/ugc/microsoft-technologies-and-seo-web-development</a></p>
<p>A website&#8217;s code is like a play that tells a story to the search engine. If you have ink blotches and pages ripped or missing from the script it is hard for the search engine to understand the plot, if the search engine misses the plot it cannot tell others about it. Using rich snippets helps explain the characters and the context in which they exist making it easier for the search engine to understand. Don’t make the script too confusing or ambiguous search engine bots are not that smart, keep it simple and to the point. Make your site easy for the search engine to read and understand, and it will tell others about it. I hope to explain a little of how Microsoft tools and technologies can help you to do just that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/world-wide-web/seo/microsoft-technologies-and-seo-web-development/1060/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12 fun css text shadows you can copy and paste</title>
		<link>http://www.shimirel.com/uncategorized/12-fun-css-text-shadows-you-can-copy-and-paste/1052/</link>
		<comments>http://www.shimirel.com/uncategorized/12-fun-css-text-shadows-you-can-copy-and-paste/1052/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 22:05:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1052</guid>
		<description><![CDATA[My friend Joe found this great article about leveraging css text shadows to add some great effects in browsers that support it! http://designshack.net/articles/css/12-fun-css-text-shadows-you-can-copy-and-paste/ IPSUM]]></description>
			<content:encoded><![CDATA[<p>My friend Joe found this great article about leveraging css text shadows to add some great effects in browsers that support it!</p>
<p><a href="http://designshack.net/articles/css/12-fun-css-text-shadows-you-can-copy-and-paste/">http://designshack.net/articles/css/12-fun-css-text-shadows-you-can-copy-and-paste/</a></p>
<div style="background: #222; height:100px;">
<p style="padding-top:40px; color: rgba(0,0,0,0.6); text-shadow: 2px 2px 3px rgba(255,255,255,0.1); font-size: 60px; text-align: center;">IPSUM</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/uncategorized/12-fun-css-text-shadows-you-can-copy-and-paste/1052/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tron Surfing</title>
		<link>http://www.shimirel.com/life/tron-surfing/1050/</link>
		<comments>http://www.shimirel.com/life/tron-surfing/1050/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:49:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1050</guid>
		<description><![CDATA[http://www.gizmodo.com.au/2011/12/tron-surfing-is-the-best-night-sport-ever/]]></description>
			<content:encoded><![CDATA[<p>http://www.gizmodo.com.au/2011/12/tron-surfing-is-the-best-night-sport-ever/</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/cNXc8NQ8nbM" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/life/tron-surfing/1050/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Naked Wines</title>
		<link>http://www.shimirel.com/world-wide-web/naked-wines/1048/</link>
		<comments>http://www.shimirel.com/world-wide-web/naked-wines/1048/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:30:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1048</guid>
		<description><![CDATA[Before we came along, most of our winemakers had to spend more time and money selling wine rather than making it. Good winemakers want to invest in quality and not waste funds on slick marketing campaigns. Your £20 a month makes it possible for them to do just that. They know their wine is sold&#160;<a href="http://www.shimirel.com/world-wide-web/naked-wines/1048/" class="read-more">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Before we came along, most of our winemakers had to spend more time and money selling wine rather than making it.</p>
<p>Good winemakers want to invest in quality and not waste funds on slick marketing campaigns.</p>
<p>Your £20 a month makes it possible for them to do just that.</p>
<p>They know their wine is sold before they&#8217;ve even grown the grapes&#8230; so they can spend all their time in the vineyard crafting delicious wines for you.</p>
<p><a href="http://nakedwines.com/">http://nakedwines.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/world-wide-web/naked-wines/1048/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chromium OS builds by Hexxeh</title>
		<link>http://www.shimirel.com/os/virtualization/chromium-os-builds-by-hexxeh/1046/</link>
		<comments>http://www.shimirel.com/os/virtualization/chromium-os-builds-by-hexxeh/1046/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:25:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1046</guid>
		<description><![CDATA[http://chromeos.hexxeh.net/]]></description>
			<content:encoded><![CDATA[<p>http://chromeos.hexxeh.net/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/os/virtualization/chromium-os-builds-by-hexxeh/1046/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3C Internationalization (I18n) Activity</title>
		<link>http://www.shimirel.com/world-wide-web/html/w3c-internationalization-i18n-activity/1044/</link>
		<comments>http://www.shimirel.com/world-wide-web/html/w3c-internationalization-i18n-activity/1044/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:11:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[World Wide Web]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1044</guid>
		<description><![CDATA[W3C Internationalization (I18n) Activity http://www.w3.org/International/ Personal names around the world http://www.w3.org/International/questions/qa-personal-names]]></description>
			<content:encoded><![CDATA[<p>W3C Internationalization (I18n) Activity</p>
<p>http://www.w3.org/International/</p>
<p>Personal names around the world </p>
<p>http://www.w3.org/International/questions/qa-personal-names</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/world-wide-web/html/w3c-internationalization-i18n-activity/1044/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Possible to slipstream Visual Studio 2010 into a Windows 7 install?</title>
		<link>http://www.shimirel.com/os/windows/possible-to-slipstream-visual-studio-2010-into-a-windows-7-install/1042/</link>
		<comments>http://www.shimirel.com/os/windows/possible-to-slipstream-visual-studio-2010-into-a-windows-7-install/1042/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:06:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1042</guid>
		<description><![CDATA[Found this interesting post about combining applications into a windows 7 installation. http://superuser.com/questions/374888/possible-to-slipstream-visual-studio-2010-into-a-windows-7-install http://www.rt7lite.com/ &#8220;RT Se7en Lite is developed by Rockers Team to customize windows 7 operating system and to make it lite. You can add wallpapers, Icons, themes, integrate updates, drivers, language packs, applications, remove components, enable or disable features, unattended installation settings, bootable&#160;<a href="http://www.shimirel.com/os/windows/possible-to-slipstream-visual-studio-2010-into-a-windows-7-install/1042/" class="read-more">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Found this interesting post about combining applications into a windows 7 installation.</p>
<p>http://superuser.com/questions/374888/possible-to-slipstream-visual-studio-2010-into-a-windows-7-install</p>
<p>http://www.rt7lite.com/</p>
<p>&#8220;RT Se7en Lite is developed by Rockers Team to customize windows 7 operating system and to make it lite. You can add wallpapers, Icons, themes, integrate updates, drivers, language packs, applications, remove components, enable or disable features, unattended installation settings, bootable ISO and USB creator , etc. It will be very easy to operate and changing the style of your windows 7 operating system.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/os/windows/possible-to-slipstream-visual-studio-2010-into-a-windows-7-install/1042/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset menu and launch bar</title>
		<link>http://www.shimirel.com/os/ubuntu/reset-menu-and-launch-bar/1040/</link>
		<comments>http://www.shimirel.com/os/ubuntu/reset-menu-and-launch-bar/1040/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 17:01:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1040</guid>
		<description><![CDATA[CTRL-ALT-T to open up the terminal, then use the command unity &#8211;reset which resets all the settings for unity. Useful when your &#8216;theme&#8217; hacking goes wrong!]]></description>
			<content:encoded><![CDATA[<p>CTRL-ALT-T to open up the terminal, then use the command<br />
unity &#8211;reset<br />
which resets all the settings for unity. Useful when your &#8216;theme&#8217; hacking goes wrong!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/os/ubuntu/reset-menu-and-launch-bar/1040/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display hidden files</title>
		<link>http://www.shimirel.com/os/ubuntu/display-hidden-files/1038/</link>
		<comments>http://www.shimirel.com/os/ubuntu/display-hidden-files/1038/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 15:52:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.shimirel.com/?p=1038</guid>
		<description><![CDATA[open your home folder and hit the CTRL+H key combination on you keyboard to see the hidden files and folders.]]></description>
			<content:encoded><![CDATA[<p>open your home folder and hit the CTRL+H key combination on you keyboard to see the hidden files and folders.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shimirel.com/os/ubuntu/display-hidden-files/1038/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

