<?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>Russ Development Weblog</title>
	<atom:link href="http://russprof.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://russprof.wordpress.com</link>
	<description>Block for all development related stuff</description>
	<lastBuildDate>Wed, 03 Dec 2008 20:50:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='russprof.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Russ Development Weblog</title>
		<link>http://russprof.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://russprof.wordpress.com/osd.xml" title="Russ Development Weblog" />
	<atom:link rel='hub' href='http://russprof.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Poor Mans AOP interceptor</title>
		<link>http://russprof.wordpress.com/2008/12/03/poor-mans-aop-interceptor/</link>
		<comments>http://russprof.wordpress.com/2008/12/03/poor-mans-aop-interceptor/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 20:50:45 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=36</guid>
		<description><![CDATA[namespace WindowsFormsApplication2 {     public partial class Form1 : Form, IForm1     {         public Form1()         {             InitializeComponent();               MethodInfo i ;           }           public string SomeCall(Hashtable t)         {    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=36&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>namespace WindowsFormsApplication2</p>
<p>{</p>
<p>    public partial class Form1 : Form, IForm1</p>
<p>    {</p>
<p>        public Form1()</p>
<p>        {</p>
<p>            InitializeComponent();</p>
<p> </p>
<p>            MethodInfo i ;</p>
<p> </p>
<p>        }</p>
<p> </p>
<p>        public string SomeCall(Hashtable t)</p>
<p>        {</p>
<p>            return &#8220;hello&#8221;;</p>
<p>        }</p>
<p> </p>
<p>        private void button1_Click(object sender, EventArgs e)</p>
<p>        {</p>
<p>            DynamicServiceProxy proxy = new DynamicServiceProxy(typeof(IForm1), this);</p>
<p>            IForm1 f1 = (IForm1) proxy.GetTransparentProxy();</p>
<p>            button1.Text =   f1.SomeCall(new Hashtable());</p>
<p>        }</p>
<p>    }</p>
<p> </p>
<p>    public class ShowIsBusyWhenCalledAttribute:Attribute</p>
<p>    {</p>
<p>        public ShowIsBusyWhenCalledAttribute()</p>
<p>        {</p>
<p>            Console.WriteLine(&#8220;Hello&#8221;);</p>
<p>        }</p>
<p>    }</p>
<p> </p>
<p>    public class DynamicServiceProxy : RealProxy</p>
<p>    {</p>
<p>        private readonly object realImpl;</p>
<p> </p>
<p>        public DynamicServiceProxy(Type classToProxy, object proxyBase)</p>
<p>            : base(classToProxy)</p>
<p>        {</p>
<p>            this.realImpl = proxyBase;</p>
<p>        }</p>
<p> </p>
<p>        public override IMessage Invoke(IMessage msg)</p>
<p>        {</p>
<p>            IMethodMessage methodMessage = (IMethodMessage)msg;</p>
<p>            object ret =</p>
<p>                realImpl.GetType().InvokeMember(methodMessage.MethodName, BindingFlags.InvokeMethod, null, realImpl,</p>
<p>                                             methodMessage.Args);</p>
<p>            ReturnMessage returnMessage = new ReturnMessage(ret, methodMessage.Args, methodMessage.ArgCount, methodMessage.LogicalCallContext, methodMessage as IMethodCallMessage);</p>
<p>            return returnMessage;</p>
<p>        }</p>
<p>    }</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=36&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/12/03/poor-mans-aop-interceptor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
		<item>
		<title>StackOverflow</title>
		<link>http://russprof.wordpress.com/2008/08/21/stackoverflow/</link>
		<comments>http://russprof.wordpress.com/2008/08/21/stackoverflow/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 12:51:20 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=32</guid>
		<description><![CDATA[Had a stack overflow on a recursive call that DID have and exit point. Although, if im hitting this i should look at a redesign &#8211; but this was a big stress test case. This exception is thrown when the stack space expires&#8230; which, by default is 1Meg.. if it cant be designed out &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=32&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Had a stack overflow on a recursive call that DID have and exit point.</p>
<p>Although, if im hitting this i should look at a redesign &#8211; but this was a big stress test case.</p>
<p>This exception is thrown when the stack space expires&#8230; which, by default is 1Meg..</p>
<p>if it cant be designed out &#8211; and really is a refelection of the domain try editbin</p>
<p>editbin /stack:20000000 myApp.exe</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/russprof.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/russprof.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=32&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/08/21/stackoverflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
		<item>
		<title>Production Ready Apps</title>
		<link>http://russprof.wordpress.com/2008/08/15/production-ready-apps/</link>
		<comments>http://russprof.wordpress.com/2008/08/15/production-ready-apps/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 08:15:11 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=24</guid>
		<description><![CDATA[Michael Nygard has some interesting views on this in his book *Release It* The main points he covers are Stability Circuit Breaker &#8211; stopping overloading.. e.g. how many results would this query result in?  or system is already busy &#8211; dont send anymore&#8230; Bulk Heads &#8211; lowest level likeness is 2 core cpu&#8217;s  one fails [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=24&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Michael Nygard has some interesting views on this in his book *Release It*</p>
<p>The main points he covers are</p>
<p><strong>Stability</strong></p>
<p>Circuit Breaker &#8211; stopping overloading.. e.g. how many results would this query result in?  or system is already busy &#8211; dont send anymore&#8230;</p>
<p>Bulk Heads &#8211; lowest level likeness is 2 core cpu&#8217;s  one fails or is at 100% doesnt impact whole system as there is another available.</p>
<p>Fast fail (using circuit breaker) &#8211; e.g. have i got any filespace to write the result of a long computation before i perform the computation.</p>
<p>Steady State &#8211; purging of data &#8211; if its up for 1 week or 1 year &#8211; we dont run out of resources over time</p>
<p>Timeouts &#8211; esp on blocking calls &#8211; like socket.read()&#8230; </p>
<p>Handshaking &#8211; efficient handshaking can help for failfast.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/russprof.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/russprof.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=24&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/08/15/production-ready-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding Custom Explorer Context Menu Items</title>
		<link>http://russprof.wordpress.com/2008/08/11/adding-custom-explorer-context-menu-items/</link>
		<comments>http://russprof.wordpress.com/2008/08/11/adding-custom-explorer-context-menu-items/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 14:25:21 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=20</guid>
		<description><![CDATA[Add Context menu to directories HKEY_CLASSES_ROOT\Directory\Shell\My Menu Name\command set default value to be the program to run e.g. HKEY_CLASSES_ROOT\Directory\Shell\Open Console 2\command (Default) = c:\devtools\Console2\Console.exe %1 Add Context menu to all files HKEY_CLASSES_ROOT\*\Shell\\Command set default value to be the program to run e.g. HKEY_CLASSES_ROOT\*\Shell\Reflect, with reflector\Command (Default) = c:\devtools\Reflector.exe %1<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=20&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul><strong>Add Context menu to directories</strong></ul>
<p>HKEY_CLASSES_ROOT\Directory\Shell\My Menu Name\command</p>
<p>set default value to be the program to run</p>
<p>e.g.</p>
<p><em>HKEY_CLASSES_ROOT\Directory\Shell\Open Console 2\command</em></p>
<p>(Default) = c:\devtools\Console2\Console.exe %1</p>
<hr />
<ul><strong>Add Context menu to all files</strong></ul>
<p>HKEY_CLASSES_ROOT\*\Shell\\Command</p>
<p>set default value to be the program to run</p>
<p>e.g.</p>
<p><em>HKEY_CLASSES_ROOT\*\Shell\Reflect, with reflector\Command</em></p>
<p>(Default) = c:\devtools\Reflector.exe %1</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/russprof.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/russprof.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=20&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/08/11/adding-custom-explorer-context-menu-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
		<item>
		<title>Resharper CheatSheet</title>
		<link>http://russprof.wordpress.com/2008/08/11/resharper-cheatsheet/</link>
		<comments>http://russprof.wordpress.com/2008/08/11/resharper-cheatsheet/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 11:47:29 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[CribNotes]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=14</guid>
		<description><![CDATA[www.jetbrains.com/resharper/documentation/ReSharper30DefaultKeymap.pdf<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=14&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="a"><span style="color:#008000;">www.jetbrains.com/<strong>resharper</strong>/documentation/<strong>ReSharper</strong>30DefaultKeymap.pdf </span></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/russprof.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/russprof.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=14&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/08/11/resharper-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
		<item>
		<title>Useful Unix Commands</title>
		<link>http://russprof.wordpress.com/2008/08/11/useful-unix-commands/</link>
		<comments>http://russprof.wordpress.com/2008/08/11/useful-unix-commands/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 11:45:31 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[CribNotes]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=11</guid>
		<description><![CDATA[Unix Notes Putty FTP : open cooprcb@&#60;server&#62; cd -to change target lcd &#8211; to change PC directory put myfile.txt to upload vi craft.email.list [esc] :wq [rtn] &#8211; saves file x &#8211; delete char dd delete line r replace i insert   rlogin -l &#60;accountName&#62; &#60;serverName&#62;  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=11&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div><span style="font-size:x-small;">Unix Notes</span></div>
<p><span style="font-size:x-small;">Putty FTP :</p>
<p>open <a href="mailto:cooprcb@&lt;server">cooprcb@&lt;server</a>&gt;</p>
<p>cd -to change target</p>
<p>lcd &#8211; to change PC directory</p>
<p>put myfile.txt to upload</p>
<p>vi craft.email.list</p>
<p>[esc]</p>
<p>:wq [rtn] &#8211; saves file</p>
<p>x &#8211; delete char</p>
<p>dd delete line</p>
<p>r replace</p>
<p>i insert</p>
<p> </p>
<p>rlogin -l &lt;accountName&gt; &lt;serverName&gt;</p>
<p> </p>
<p></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/russprof.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/russprof.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=11&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/08/11/useful-unix-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
		<item>
		<title>CAB / SCSF</title>
		<link>http://russprof.wordpress.com/2008/08/11/cab-scsf/</link>
		<comments>http://russprof.wordpress.com/2008/08/11/cab-scsf/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 09:06:11 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=6</guid>
		<description><![CDATA[Good starting points http://richnewman.wordpress.com/2007/07/14/an-introduction-to-the-smart-client-software-factory-and-composite-application-block-part-1-modules-and-shells/ http://computercraft.co.nz/Blog/SCSFViewRemovalAndDisposal.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=6&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Good starting points</p>
<p><a href="http://richnewman.wordpress.com/2007/07/14/an-introduction-to-the-smart-client-software-factory-and-composite-application-block-part-1-modules-and-shells/"><span style="color:#244e93;">http://richnewman.wordpress.com/2007/07/14/an-introduction-to-the-smart-client-software-factory-and-composite-application-block-part-1-modules-and-shells/</span></a></p>
<p><a href="http://computercraft.co.nz/Blog/SCSFViewRemovalAndDisposal.aspx"><span style="color:#244e93;">http://computercraft.co.nz/Blog/SCSFViewRemovalAndDisposal.aspx</span></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/russprof.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/russprof.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=6&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/08/11/cab-scsf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
		<item>
		<title>.Net AOP / Code Injection</title>
		<link>http://russprof.wordpress.com/2008/08/11/net-aop-code-injection/</link>
		<comments>http://russprof.wordpress.com/2008/08/11/net-aop-code-injection/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 09:03:18 +0000</pubDate>
		<dc:creator>russprof</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://russprof.wordpress.com/?p=3</guid>
		<description><![CDATA[Cecil.net http://www.mono-project.com/Cecil http://sebastien.lebreton.free.fr/reflexil/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=3&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Cecil.net</p>
<p><a href="http://www.mono-project.com/Cecil">http://www.mono-project.com/Cecil</a></p>
<p><a href="http://sebastien.lebreton.free.fr/reflexil/">http://sebastien.lebreton.free.fr/reflexil/</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/russprof.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/russprof.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/russprof.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/russprof.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/russprof.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/russprof.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/russprof.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/russprof.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/russprof.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/russprof.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/russprof.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/russprof.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/russprof.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/russprof.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/russprof.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/russprof.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=russprof.wordpress.com&amp;blog=4476368&amp;post=3&amp;subd=russprof&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://russprof.wordpress.com/2008/08/11/net-aop-code-injection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7d119af21ac899bed5cabb5244fc5474?s=96&#38;d=identicon" medium="image">
			<media:title type="html">russprof</media:title>
		</media:content>
	</item>
	</channel>
</rss>
