<?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>Mikek3332002 Blog</title>
	<atom:link href="http://mikek3332002.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikek3332002.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 17 Jan 2012 03:49:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mikek3332002.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mikek3332002 Blog</title>
		<link>http://mikek3332002.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mikek3332002.wordpress.com/osd.xml" title="Mikek3332002 Blog" />
	<atom:link rel='hub' href='http://mikek3332002.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Grant read-only access to a file in C#</title>
		<link>http://mikek3332002.wordpress.com/2011/06/17/grant-read-only-access-to-a-file-in-c/</link>
		<comments>http://mikek3332002.wordpress.com/2011/06/17/grant-read-only-access-to-a-file-in-c/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 06:17:29 +0000</pubDate>
		<dc:creator>mikek3332002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://mikek3332002.wordpress.com/?p=44</guid>
		<description><![CDATA[During the code cleaning I was doing last week, there was a section that granted a user read only access to a file.  It was nasty code because it involved Active Directory, SIDs, Local Path of UNCs, WMI which was over 100 lines.  My cleaned up version only takes 5 lines excluding error handling. The error handling [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=44&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During the code cleaning I was doing last week, there was a section that <em>granted a user read only access to a file</em>. </p>
<p>It was nasty code because it involved Active Directory, SIDs, Local Path of UNCs, WMI which was over 100 lines.  My cleaned up version only takes 5 lines excluding error handling.</p>
<p><pre class="brush: csharp;">
                FileInfo fileToAlter = new FileInfo(fullPath);
                FileSecurity security = fileToAlter.GetAccessControl();
                FileSystemAccessRule rule = new FileSystemAccessRule(userID, FileSystemRights.Read, AccessControlType.Allow);
                security.AddAccessRule(rule);
                fileToAlter.SetAccessControl(security);
</pre></p>
<p>The error handling the code does is to throw an exception with a custom message.</p>
<p>I gained the knowledge from this useful MSDN Article on <a title=".net FileSystem Security" href="http://msdn.microsoft.com/en-us/magazine/cc163885.aspx">Managing Access to Windows Objects with ACLs in .Net</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikek3332002.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikek3332002.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikek3332002.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikek3332002.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikek3332002.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikek3332002.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikek3332002.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikek3332002.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikek3332002.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikek3332002.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikek3332002.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikek3332002.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikek3332002.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikek3332002.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=44&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikek3332002.wordpress.com/2011/06/17/grant-read-only-access-to-a-file-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/237a47074475f635e5d08c125c18f790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikek3332002</media:title>
		</media:content>
	</item>
		<item>
		<title>People Upload News theme songs?</title>
		<link>http://mikek3332002.wordpress.com/2010/10/20/people-upload-news-theme-songs/</link>
		<comments>http://mikek3332002.wordpress.com/2010/10/20/people-upload-news-theme-songs/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 10:45:58 +0000</pubDate>
		<dc:creator>mikek3332002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://mikek3332002.wordpress.com/?p=30</guid>
		<description><![CDATA[Was looking around on youtube.com and I found that people have actually uploaded the opening to various news programs. I am surprised that people actually went to the trouble of making them into a video. As example here is a video that the user linxthesontaran has compiled of passed and present Free to Air Australian [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=30&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Was looking around on <a href="http://www.youtube.com/">youtube.com</a> and I found that people have actually uploaded the opening to various news programs.  I am surprised that people actually went to the trouble of making them into a video.</p>
<p>As example here is a video that the user <a href="http://www.youtube.com/user/linxthesontaran"><em>linxthesontaran</em></a> has compiled of passed and present <a href="http://www.youtube.com/watch?v=KIqV0o61rLo">Free to Air Australian News Themes</a>.  It is interesting to see how they have changed.<br />
<span style="text-align:center; display: block;"><a href="http://mikek3332002.wordpress.com/2010/10/20/people-upload-news-theme-songs/"><img src="http://img.youtube.com/vi/KIqV0o61rLo/2.jpg" alt="" /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikek3332002.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikek3332002.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikek3332002.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikek3332002.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikek3332002.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikek3332002.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikek3332002.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikek3332002.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikek3332002.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikek3332002.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikek3332002.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikek3332002.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikek3332002.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikek3332002.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=30&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikek3332002.wordpress.com/2010/10/20/people-upload-news-theme-songs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/237a47074475f635e5d08c125c18f790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikek3332002</media:title>
		</media:content>
	</item>
		<item>
		<title>Bonus +100 Rep on StackExchange Sites</title>
		<link>http://mikek3332002.wordpress.com/2010/08/24/bonus-100-rep-on-stackexchange-sites/</link>
		<comments>http://mikek3332002.wordpress.com/2010/08/24/bonus-100-rep-on-stackexchange-sites/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 11:39:10 +0000</pubDate>
		<dc:creator>mikek3332002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://mikek3332002.wordpress.com/?p=19</guid>
		<description><![CDATA[Found out the other day you can get +100 bonus reputation on StackExchange Sites eg StackOverflow. To get the 100 reputation bonus you need to have an account with one site where you have 200 or greater reputation. This post on the stack overflow blog explains it better: http://blog.stackoverflow.com/2010/05/new-automatic-account-association/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=19&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Found out the other day you can get +100 bonus reputation on <a title="StackExchange" href="http://stackexchange.com/" target="_self">StackExchange</a> Sites eg <a href="http://stackoverflow.com/">StackOverflow</a>.</p>
<p>To get the 100 reputation bonus you need to have an account with one site where you have 200 or greater reputation.</p>
<p>This post on the stack overflow blog explains it better:</p>
<p><a href="http://blog.stackoverflow.com/2010/05/new-automatic-account-association/">http://blog.stackoverflow.com/2010/05/new-automatic-account-association/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikek3332002.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikek3332002.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikek3332002.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikek3332002.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikek3332002.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikek3332002.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikek3332002.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikek3332002.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikek3332002.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikek3332002.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikek3332002.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikek3332002.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikek3332002.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikek3332002.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=19&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikek3332002.wordpress.com/2010/08/24/bonus-100-rep-on-stackexchange-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/237a47074475f635e5d08c125c18f790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikek3332002</media:title>
		</media:content>
	</item>
		<item>
		<title>Exit Path is a Fun Flash Game</title>
		<link>http://mikek3332002.wordpress.com/2010/08/18/exit-path-is-a-fun-flash-game/</link>
		<comments>http://mikek3332002.wordpress.com/2010/08/18/exit-path-is-a-fun-flash-game/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 08:03:57 +0000</pubDate>
		<dc:creator>mikek3332002</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[online-games]]></category>

		<guid isPermaLink="false">http://mikek3332002.wordpress.com/?p=16</guid>
		<description><![CDATA[Been playing the flash game Exit Path produced by armor games. It has a single player mode which is a performer. The faster you complete all 30 levels the better your score is.(It&#8217;s Time based). The game also allows you to submit your score to see how you rank amongst other game players.  My best [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=16&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Been playing the flash game <a href="http://armorgames.com/play/5917/exit-path"><strong>Exit Path</strong></a> produced by <a href="http://armorgames.com">armor games</a>.</p>
<p>It has a single player mode which is a performer. The faster you complete all 30 levels the better your score is.(It&#8217;s Time based). The game also allows you to submit your score to see how you rank amongst other game players.  My best time is currently <span style="text-decoration:underline;">6min, 8.8 seconds</span>.</p>
<p>There is an multi-player mode which allows you to race through various levels.  The multi-player is especially nice because it automatically arranges opponents, you don&#8217;t have to wait in a &#8216;<em>lobby</em>&#8216;.</p>
<p>Another feature of the game is that it have various achievements.  eg Complete Single playing in under 7 minutes or win 100 multi-player matches.  Achievements unlock various items you can customise your character with eg It can wear a hat and run with scissors.</p>
<p>I would rate it 8/10.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mikek3332002.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mikek3332002.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mikek3332002.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mikek3332002.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mikek3332002.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mikek3332002.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mikek3332002.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mikek3332002.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mikek3332002.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mikek3332002.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mikek3332002.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mikek3332002.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mikek3332002.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mikek3332002.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mikek3332002.wordpress.com&amp;blog=5889770&amp;post=16&amp;subd=mikek3332002&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mikek3332002.wordpress.com/2010/08/18/exit-path-is-a-fun-flash-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/237a47074475f635e5d08c125c18f790?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikek3332002</media:title>
		</media:content>
	</item>
	</channel>
</rss>
