<?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>TechNullogy</title>
	<atom:link href="http://www.technullogy.net/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technullogy.net</link>
	<description>Musings of a convert to nerdism</description>
	<lastBuildDate>Fri, 05 Mar 2010 21:15:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Internet Explorer limits CSS and Script Resources to 30</title>
		<link>http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/</link>
		<comments>http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 21:02:16 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=136</guid>
		<description><![CDATA[I ran into a weird bug recently that I hope no one else ever experiences.  I use Telerik&#8217;s Rad Controls for ASP.NET AJAX because they&#8217;re powerful, pretty and developer friendly.  I recommend them to ALL .NET developers.  I had just put together a server control that used several of Telerik&#8217;s controls and my own Rounded [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into a weird bug recently that I hope no one else ever experiences.  I use <a href="http://www.Telerik.com">Telerik&#8217;s Rad Controls for ASP.NET AJAX</a> because they&#8217;re powerful, pretty and developer friendly.  I recommend them to ALL .NET developers.  I had just put together a server control that used several of Telerik&#8217;s controls and my own <a href="http://www.technullogy.net/index.php/net-controls/">Rounded DIV Container control</a> as well.  It looked great in all browsers.  I was happy.   I added another Rounded DIV to the page.  When I refreshed the page, all of my styles were gone.  I know the CSS is good, because I was using the control elsewhere.  Was it possible I had an unclosed tag somewhere?  I tried the page in Firefox&#8230;perfect, then Safari&#8230;perfect, then Google Chrome&#8230;perfect.</p>
<blockquote><p>Scratching head&#8230;</p></blockquote>
<p>At this point, I know it&#8217;s a browser issue, but I&#8217;m still not sure what&#8217;s causing it.  After digging around and playing with the Internet Explorer Developer Toolbar, I noticed that the page seemed to lose it&#8217;s style whenever there were more than 30 registers resources on a page (i.e. CSS &amp; JavaScript file references).  I probably had too many CSS files as it was.  On top of that, I was dynamically referencing js files.  Telerik also register javascript and css files via the WebResource.axd (embedded .NET resources).</p>
<p>Here&#8217;s how you can check how many resources are registered for a given page:</p>
<ol>
<li>Check your markup
<ol>
<li>Look for all instances of registered resources (CSS, JS, etc)<br />
&lt;link id=&#8221;cssStyleSheet&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;  runat=&#8221;server&#8221; /&gt; &#8212; each one of these counts as 1</li>
<li>If you&#8217;ve got a lot of these, consider consolidating into fewer resources</li>
</ol>
</li>
<li>Use the IE Developer Toolbar, <a href="http://getfirebug.com/">ChromeBug</a> (Google Chrome) or <a href="http://getfirebug.com/">FireBug</a> (the best) to check for registered resources in WebResource.axd
<ol>
<li>Firebug (ChromeBug is similar)
<ol>
<li>Once the page is loaded, highlight the CSS tab and click the resource drop down list just below it<br />
<a rel="attachment wp-att-262" href="http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/firebugcssresources/"><img class="aligncenter size-medium wp-image-262" title="FirebugCssResources" src="http://www.technullogy.net/wp-content/uploads/2010/03/FirebugCssResources-300x187.png" alt="" width="300" height="187" /></a></li>
<li>Do the same thing on the &#8220;Script&#8221; tab (ASP.NET is close to 30! Watch out! <img src='http://www.technullogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  )<br />
<a rel="attachment wp-att-263" href="http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/firebugjsresources/"><img class="aligncenter size-medium wp-image-263" title="FirebugJsResources" src="http://www.technullogy.net/wp-content/uploads/2010/03/FirebugJsResources-300x187.png" alt="" width="300" height="187" /></a></li>
</ol>
</li>
<li>IE Developer Toolbar
<ol>
<li>In IE, press F12 to bring up the Developer Tools</li>
<li>Click on CSS and count the items in the drop down list</li>
<li>Do the same for Script<br />
<a rel="attachment wp-att-264" href="http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/devtoolbarscriptresources/"><img class="aligncenter size-medium wp-image-264" title="DevToolbarScriptResources" src="http://www.technullogy.net/wp-content/uploads/2010/03/DevToolbarScriptResources-300x298.png" alt="" width="300" height="298" /></a></li>
</ol>
</li>
</ol>
</li>
</ol>
<p>I hope you don&#8217;t have this many registered resources. <img src='http://www.technullogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   But if you do, and things look weird in IE 7 and IE 8, now you know why.  Time to consolidate!</p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F05%2Finternet-explorer-limits-css-and-script-resources-to-30%2F&amp;linkname=Internet%20Explorer%20limits%20CSS%20and%20Script%20Resources%20to%2030" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F05%2Finternet-explorer-limits-css-and-script-resources-to-30%2F&amp;linkname=Internet%20Explorer%20limits%20CSS%20and%20Script%20Resources%20to%2030" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F05%2Finternet-explorer-limits-css-and-script-resources-to-30%2F&amp;linkname=Internet%20Explorer%20limits%20CSS%20and%20Script%20Resources%20to%2030" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F05%2Finternet-explorer-limits-css-and-script-resources-to-30%2F&amp;linkname=Internet%20Explorer%20limits%20CSS%20and%20Script%20Resources%20to%2030" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F05%2Finternet-explorer-limits-css-and-script-resources-to-30%2F&amp;linkname=Internet%20Explorer%20limits%20CSS%20and%20Script%20Resources%20to%2030" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F05%2Finternet-explorer-limits-css-and-script-resources-to-30%2F&amp;linkname=Internet%20Explorer%20limits%20CSS%20and%20Script%20Resources%20to%2030"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Recover Deleted TFS Files and Folders</title>
		<link>http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/</link>
		<comments>http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 21:04:47 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[File Recovery]]></category>
		<category><![CDATA[Source Control]]></category>
		<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=250</guid>
		<description><![CDATA[I recently went in search for a &#8220;how to&#8221; regarding file and folder recovery in Microsoft Team Foundation Server.  One of our project files was corrupted and removed its reference to an ascx file, but left the .cs and .designer.cs files behind; ultimately breaking the build on our continuous integration server.  Google doth continue to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently went in search for a &#8220;how to&#8221; regarding file and folder recovery in Microsoft Team Foundation Server.  One of our project files was corrupted and removed its reference to an ascx file, but left the .cs and .designer.cs files behind; ultimately breaking the build on our continuous integration server.  Google doth continue to rock.  I quickly found a solution.   It&#8217;s relatively easy:</p>
<ol>
<li>In Visual Studio, click on Tools -&gt; Options -&gt; (make sure the &#8220;show all items&#8221; check box is checked) -&gt; Source Control -&gt; Visual Studio Team Foundation Server</li>
<li>Check the “Show deleted items in the Source Control Explorer” check box<br />
<a rel="attachment wp-att-251" href="http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/showtfsdeleteditems/"><img class="aligncenter size-medium wp-image-251" title="ShowTfsDeletedItems" src="http://www.technullogy.net/wp-content/uploads/2010/03/ShowTfsDeletedItems-300x176.jpg" alt="" width="300" height="176" /></a></li>
<li>Click &#8220;OK&#8221;</li>
<li>In Team Explorer, open Source Control<br />
<a rel="attachment wp-att-252" href="http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/deletedtfsitems/"><img class="aligncenter size-medium wp-image-252" title="DeletedTfsItems" src="http://www.technullogy.net/wp-content/uploads/2010/03/DeletedTfsItems-300x147.jpg" alt="" width="300" height="147" /></a></li>
<li>Then just right-click and click &#8220;Undelete&#8221; -&gt; sooooo not a real word</li>
</ol>
<p>Enjoy!</p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F03%2Fhow-to-recover-deleted-tfs-files-and-folders%2F&amp;linkname=How%20to%20Recover%20Deleted%20TFS%20Files%20and%20Folders" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F03%2Fhow-to-recover-deleted-tfs-files-and-folders%2F&amp;linkname=How%20to%20Recover%20Deleted%20TFS%20Files%20and%20Folders" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F03%2Fhow-to-recover-deleted-tfs-files-and-folders%2F&amp;linkname=How%20to%20Recover%20Deleted%20TFS%20Files%20and%20Folders" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F03%2Fhow-to-recover-deleted-tfs-files-and-folders%2F&amp;linkname=How%20to%20Recover%20Deleted%20TFS%20Files%20and%20Folders" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F03%2Fhow-to-recover-deleted-tfs-files-and-folders%2F&amp;linkname=How%20to%20Recover%20Deleted%20TFS%20Files%20and%20Folders" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F03%2F03%2Fhow-to-recover-deleted-tfs-files-and-folders%2F&amp;linkname=How%20to%20Recover%20Deleted%20TFS%20Files%20and%20Folders"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sync Files and Folders Between Computers</title>
		<link>http://www.technullogy.net/index.php/2010/02/06/sync-files-and-folders-between-computers/</link>
		<comments>http://www.technullogy.net/index.php/2010/02/06/sync-files-and-folders-between-computers/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 16:42:01 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[General Musings]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Live Mesh]]></category>
		<category><![CDATA[Live Sync]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=146</guid>
		<description><![CDATA[I have one music library on my iMac (running Snow Leopard) and another on my MacBook Pro (BootCamp &#8211; running Windows 7 Ultimate).  My wife purchases music on the iMac and I purchase from my laptop.  Sometimes we use iTunes, other times we use Wal-Mart.com.  Hence the need for a sync utility.  I came across [...]]]></description>
			<content:encoded><![CDATA[<p>I have one music library on my iMac (running Snow Leopard) and another on my MacBook Pro (BootCamp &#8211; running Windows 7 Ultimate).  My wife purchases music on the iMac and I purchase from my laptop.  Sometimes we use iTunes, other times we use Wal-Mart.com.  Hence the need for a sync utility.  I came across Microsoft&#8217;s Live Sync while looking for a platform  agnostic utility to sync my music library.</p>
<h2><a href="https://sync.live.com/">Live Sync</a></h2>
<p>Windows Live Sync is an application and web service used to synchronize files and folders across multiple computers and with multiple users.  You can sync up to 20 different folders with up to 20,000 files each.  It also provides a nice web interface for browsing your remote computers&#8217; hard drives (don&#8217;t worry, it&#8217;s all encrypted).</p>
<p><a href="http://www.technullogy.net/wp-content/uploads/2010/02/FolderShare.png"><img class="aligncenter size-medium wp-image-194" title="FolderShare (Live Sync)" src="http://www.technullogy.net/wp-content/uploads/2010/02/FolderShare-274x300.png" alt="" width="274" height="300" /></a></p>
<p>You can invite friends to share/sync folders and grant permissions as readers, contributors or owners.</p>
<p>In theory, this should have worked great.  My problem was that I already had folders that were out of sync with each other.  Live Sync seemed to have a hard time with this.  It was also quite slow in syncing 10+ GB over the internet.</p>
<p>I use this to quickly and conveniently access files on my home network from anywhere in the world.  This could also be a great solution for musicians who are working on a project  remotely.  It&#8217;s a user-friendly, FREE way to sync your music projects.</p>
<p><a href="http://www.technullogy.net/wp-content/uploads/2010/02/ScreenShot.png"><img class="aligncenter size-medium wp-image-195" title="LiveSyncBrowse" src="http://www.technullogy.net/wp-content/uploads/2010/02/ScreenShot-300x236.png" alt="" width="300" height="236" /></a></p>
<h2><a href="https://www.mesh.com/">Live Mesh</a></h2>
<div>
<p>Live Mesh is another cool Microsoft product that gives you all the features of LiveSync, but adds support for remote desktop (requires ActiveX) and 5GB of online storage (not much, eh?).  Microsoft describes Live Mesh like this:</p>
<blockquote><p>With Live Mesh, you can synchronize files with all of  your devices, so you always have the latest versions handy. Access your  files from any device or from the web, easily share them with others,  and get notified whenever someone changes a file.  Use Live Mesh to connect to your other computer and  access its desktop as if you were sitting right in front of it.</p></blockquote>
<p><a href="http://www.technullogy.net/wp-content/uploads/2010/02/LiveMesh.png"><img class="aligncenter size-medium wp-image-196" title="LiveMesh" src="http://www.technullogy.net/wp-content/uploads/2010/02/LiveMesh-300x200.png" alt="" width="300" height="200" /></a></p>
<p>I downloaded the Vista x64 version for Windows 7 and it worked fine.  Very cool&#8230;and has it&#8217;s place&#8230;but it still didn&#8217;t meet my needs for reasons mentioned earlier. Live Mesh boasts future support for mobile devices, but has been advertised as &#8220;Coming Soon&#8221; for about a year.</p>
</div>
<h2>Home Brew</h2>
<p>So, I learned about a couple nice utilities from Microsoft that run smoothly on Mac, but at this point I&#8217;ve decided to write my own folder sync utility in C#.  It&#8217;s a console app right now.  I have the following config settings available:</p>
<ul>
<li>Local folder location</li>
<li>Remote folder location (supports UNC paths for network shares)</li>
<li>Copy from local to remote</li>
<li>Copy from remote to local</li>
<li>Enable verbose logging</li>
<li>Log file location</li>
<li>Append or overwrite log file</li>
<li>Overwrite files if source is larger &#8211; if there are files of different sizes with the same name in the same folder. This option will overwrite the destination file if the source file is larger</li>
<li>File types to exclude (I use this because I don&#8217;t want DS_Store files copied to Windows and I don&#8217;t want desktop.ini or .lnk files copied to the Mac)</li>
</ul>
<p>So far so good.  I copied 10 gigs of files in 5000 directories (on a local 100Mbps network) in about 20 minutes.  This could come in handy if you need to sync a local folder with a network share at work.  Thoughts from the peanut gallery?  Should I turn it into a windows app and post it here for download?</p>
<p><a href="http://www.labnol.org/internet/compare-windows-live-sync-mesh-and-skydrive/6166/">Click here to check out a great blog post about Live Sync, Live Mesh and SkyDrive.</a></p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F02%2F06%2Fsync-files-and-folders-between-computers%2F&amp;linkname=Sync%20Files%20and%20Folders%20Between%20Computers" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F02%2F06%2Fsync-files-and-folders-between-computers%2F&amp;linkname=Sync%20Files%20and%20Folders%20Between%20Computers" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F02%2F06%2Fsync-files-and-folders-between-computers%2F&amp;linkname=Sync%20Files%20and%20Folders%20Between%20Computers" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F02%2F06%2Fsync-files-and-folders-between-computers%2F&amp;linkname=Sync%20Files%20and%20Folders%20Between%20Computers" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F02%2F06%2Fsync-files-and-folders-between-computers%2F&amp;linkname=Sync%20Files%20and%20Folders%20Between%20Computers" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2010%2F02%2F06%2Fsync-files-and-folders-between-computers%2F&amp;linkname=Sync%20Files%20and%20Folders%20Between%20Computers"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2010/02/06/sync-files-and-folders-between-computers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t Synchronize TFS Warehouse after upgrading SQL Server to 2008</title>
		<link>http://www.technullogy.net/index.php/2009/09/29/cant-synchronize-tfs-warehouse/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/29/cant-synchronize-tfs-warehouse/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 14:26:37 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=191</guid>
		<description><![CDATA[I recently upgraded our TFS server from SQL 2005 to SQL 2008.  Since then, my remaining work report hasn&#8217;t run.  This makes me sad.  Bill Wang explained the reason for this and I&#8217;m grateful for it.
In a nutshell, there needs to be an assembly redirection.  This takes place per a couple settings in two (2) [...]]]></description>
			<content:encoded><![CDATA[<p>I recently upgraded our TFS server from SQL 2005 to SQL 2008.  Since then, my remaining work report hasn&#8217;t run.  This makes me sad.  <a href="http://billwg.blogspot.com/2009/04/cant-synchronize-tfs-warehouse-after.html">Bill Wang explained the reason for this and I&#8217;m grateful for it.</a></p>
<p>In a nutshell, there needs to be an assembly redirection.  This takes place per a couple settings in two (2) different web.config files.  Modify the config files in C:\Program Files\Microsoft Visual Studio 2008 Team Foundation Server\Web Services\Warehouse\web.config AND  C:\Program Files\Microsoft Visual Studio 2008 Team Foundation Server\Tools\SetupWarehouse.exe.config as follows:</p>
<pre>      <span>&lt;</span><span>dependentAssembly</span><span>&gt;</span>
        <span>&lt;</span><span>assemblyIdentity</span> <span>name</span><span>="Microsoft.AnalysisServices"</span>
                          <span>publicKeyToken</span><span>="89845dcd8080cc91"</span>
                          <span>culture</span><span>="neutral"</span> <span>/&gt;</span>
        <span>&lt;</span><span>bindingRedirect</span> <span>oldVersion</span><span>="9.0.242.0"</span> <span>newVersion</span><span>="10.0.0.0"</span><span>/&gt;</span>
      <span>&lt;/</span><span>dependentAssembly</span><span>&gt;

</span></pre>
<p>Restart IIS, then send Bill Wang a thank you note!</p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F29%2Fcant-synchronize-tfs-warehouse%2F&amp;linkname=Can%26%238217%3Bt%20Synchronize%20TFS%20Warehouse%20after%20upgrading%20SQL%20Server%20to%202008" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F29%2Fcant-synchronize-tfs-warehouse%2F&amp;linkname=Can%26%238217%3Bt%20Synchronize%20TFS%20Warehouse%20after%20upgrading%20SQL%20Server%20to%202008" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F29%2Fcant-synchronize-tfs-warehouse%2F&amp;linkname=Can%26%238217%3Bt%20Synchronize%20TFS%20Warehouse%20after%20upgrading%20SQL%20Server%20to%202008" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F29%2Fcant-synchronize-tfs-warehouse%2F&amp;linkname=Can%26%238217%3Bt%20Synchronize%20TFS%20Warehouse%20after%20upgrading%20SQL%20Server%20to%202008" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F29%2Fcant-synchronize-tfs-warehouse%2F&amp;linkname=Can%26%238217%3Bt%20Synchronize%20TFS%20Warehouse%20after%20upgrading%20SQL%20Server%20to%202008" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F29%2Fcant-synchronize-tfs-warehouse%2F&amp;linkname=Can%26%238217%3Bt%20Synchronize%20TFS%20Warehouse%20after%20upgrading%20SQL%20Server%20to%202008"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/29/cant-synchronize-tfs-warehouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Sticky Notes Grievence</title>
		<link>http://www.technullogy.net/index.php/2009/09/28/windows-7-sticky-notes-grievence/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/28/windows-7-sticky-notes-grievence/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 21:53:09 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[7]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=187</guid>
		<description><![CDATA[Sticky notes are cool.  I love taking a quick, digital note with the assurance that it will both be saved and save the environment; albeit one leaf at a time.  No need to litter the cubicle with 3&#215;3 pieces of paper, right?
So Microsoft lifted a decent idea from MAC with the sticky notes as a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-188" title="Windows 7 Sticky Notes" src="http://www.technullogy.net/wp-content/uploads/2009/09/StickyNote.JPG" alt="Windows 7 Sticky Notes" width="254" height="162" />Sticky notes are cool.  I love taking a quick, digital note with the assurance that it will both be saved and save the environment; albeit one leaf at a time.  No need to litter the cubicle with 3&#215;3 pieces of paper, right?</p>
<p>So Microsoft lifted a decent idea from MAC with the sticky notes as a widget in Windows Vista.  It&#8217;s even better in Windows 7. BUT!&#8230;There&#8217;s always a big &#8220;BUT&#8221;.  Let&#8217;s talk about Windows 7&#8217;s big &#8220;BUT&#8221;.</p>
<p>You know that little &#8220;x&#8221; at the top right of all of your windows applications since, oh I don&#8217;t know, Windows 3.1?  Closes the application, right?  WRONG!  Apparently, Microsoft decided to make it DELETE YOUR NOTE in Windows 7.  If I was a swearing man, now would be the time.</p>
<p>In Microsoft&#8217;s defense, you&#8217;ll be warned with a dialog like so:</p>
<p><img class="aligncenter size-medium wp-image-189" title="StickyWarn" src="http://www.technullogy.net/wp-content/uploads/2009/09/StickyWarn-300x117.jpg" alt="StickyWarn" width="300" height="117" /></p>
<p>If you&#8217;re like me, you checked the checkbox long ago and forgot all about it.  If you want to bring the warning back, you can do so by modifying your registry.  Set the \HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\StickyNotes\PROMPT_ON_DELETE DWORD to &#8220;1&#8243;.</p>
<p>Microsoft trained me for years to press Ctrl+S to save and then click the &#8220;x&#8221; to close the application.  My sticky note was a victim of Pavlov&#8217;s theory.</p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F28%2Fwindows-7-sticky-notes-grievence%2F&amp;linkname=Windows%207%20Sticky%20Notes%20Grievence" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F28%2Fwindows-7-sticky-notes-grievence%2F&amp;linkname=Windows%207%20Sticky%20Notes%20Grievence" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F28%2Fwindows-7-sticky-notes-grievence%2F&amp;linkname=Windows%207%20Sticky%20Notes%20Grievence" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F28%2Fwindows-7-sticky-notes-grievence%2F&amp;linkname=Windows%207%20Sticky%20Notes%20Grievence" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F28%2Fwindows-7-sticky-notes-grievence%2F&amp;linkname=Windows%207%20Sticky%20Notes%20Grievence" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F28%2Fwindows-7-sticky-notes-grievence%2F&amp;linkname=Windows%207%20Sticky%20Notes%20Grievence"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/28/windows-7-sticky-notes-grievence/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safe Internet Browsing: OpenDNS, AdBlock Plus, Profanity Filter for Greasemonkey addon and Firefox</title>
		<link>http://www.technullogy.net/index.php/2009/09/27/profanity-filter-for-greasemonkey-addon-in-firefox/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/27/profanity-filter-for-greasemonkey-addon-in-firefox/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 20:39:50 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[General Musings]]></category>
		<category><![CDATA[Adblock Plus]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenDNS]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=180</guid>
		<description><![CDATA[I logged onto Facebook this morning and one of my &#8220;friends&#8221; had posted a link to something he thought was funny.  It had profanity in the title.  I&#8217;m not a fan of profanity, but didn&#8217;t want to flat out block my friend, so I went in search of a profanity filter at UserScripts.org. To my [...]]]></description>
			<content:encoded><![CDATA[<p>I logged onto Facebook this morning and one of my &#8220;friends&#8221; had posted a link to something he thought was funny.  It had profanity in the title.  I&#8217;m not a fan of profanity, but didn&#8217;t want to flat out block my friend, so I went in search of a profanity filter at <a href="http://UserScripts.org">UserScripts.org.</a> To my delight, I found one and it works great!  For the script to work, you&#8217;ll need <a href="http://www.mozilla.com/en-US/firefox/personal.html">Firefox</a>, <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a> and the <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Profanity Filter</a> (install in that order).</p>
<p>I&#8217;ve been a devout Firefox convert for a couple years now.  While impressed with Chrome and Safari, I just can&#8217;t leave Firefox.  I&#8217;ll even concede that, &#8220;in my humble opinion&#8221;, IE 8 SEEMS FASTER THAN FIREFOX?!  GASP!!! Dare I say?  Nevertheless, the &#8220;Add On&#8221; features of Firefox will keep me a Firefox user unless the competition does something about it.  Here are my top 5 &#8220;Can&#8217;t Live Without&#8221; add-ons:</p>
<ol>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1865">AdBlock Plus</a> &#8211; I haven&#8217;t seen an ad on a website in a couple years.  I bet I wouldn&#8217;t recognize half the sites I visit if this add-on was disabled!</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a> &#8211; a web developer MUST have (features in Safari and IE are comparable, but not up to par)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/748">GreaseMonkey</a> &#8211; Runner user scripts to make the net more enjoyable.  Here are a few of my favorite scripts:
<ol>
<li><a href="http://userscripts.org/scripts/show/8614">ExpertsExhangeFilter</a></li>
<li><a href="http://userscripts.org/scripts/show/16341">Google Account Multi-Logon</a></li>
<li><a href="http://userscripts.org/scripts/show/4175">PROFANITY FILTER</a> (keep reading)</li>
<li><a href="http://userscripts.org/scripts/show/44459">Facebook Purity</a>: For those annoying survey results on Facebook&#8230;blah!</li>
</ol>
</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5579">CoolIris</a> &#8211; <a href="http://www.technullogy.net/index.php/2009/07/07/cooliris-the-coolest-way-to-search-craigslist/">The coolest way to search Craigslist!</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5081">TwitterFox</a> (recently renamed to Echofon, horrible name!) / <a href="https://addons.mozilla.org/en-US/firefox/addon/10586">TinyURL Generator</a> &#8211; used in conjunction! <img src='http://www.technullogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ol>
<p>While I&#8217;m on the &#8220;safe browsing&#8221; kick, please check out <a href="http://www.opendns.com/">OpenDNS.org</a>.  Thank you OpenDNS.org, Mozilla, Greasemonkey and the countless open source developers for helping me keep the garbage out of my house!  Surfing without OpenDNS, AdBlock plus and Profanity Filter is like driving without your seat belt fastened.</p>
<p>UPDATE:  <a href="http://userscripts.org/topics/11758">This Profanity Filter </a>script for Greasemonkey seems to work with far less latency than the aforementioned.  It also allows for customized replacement strings.</p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F27%2Fprofanity-filter-for-greasemonkey-addon-in-firefox%2F&amp;linkname=Safe%20Internet%20Browsing%3A%20OpenDNS%2C%20AdBlock%20Plus%2C%20Profanity%20Filter%20for%20Greasemonkey%20addon%20and%20Firefox" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F27%2Fprofanity-filter-for-greasemonkey-addon-in-firefox%2F&amp;linkname=Safe%20Internet%20Browsing%3A%20OpenDNS%2C%20AdBlock%20Plus%2C%20Profanity%20Filter%20for%20Greasemonkey%20addon%20and%20Firefox" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F27%2Fprofanity-filter-for-greasemonkey-addon-in-firefox%2F&amp;linkname=Safe%20Internet%20Browsing%3A%20OpenDNS%2C%20AdBlock%20Plus%2C%20Profanity%20Filter%20for%20Greasemonkey%20addon%20and%20Firefox" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F27%2Fprofanity-filter-for-greasemonkey-addon-in-firefox%2F&amp;linkname=Safe%20Internet%20Browsing%3A%20OpenDNS%2C%20AdBlock%20Plus%2C%20Profanity%20Filter%20for%20Greasemonkey%20addon%20and%20Firefox" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F27%2Fprofanity-filter-for-greasemonkey-addon-in-firefox%2F&amp;linkname=Safe%20Internet%20Browsing%3A%20OpenDNS%2C%20AdBlock%20Plus%2C%20Profanity%20Filter%20for%20Greasemonkey%20addon%20and%20Firefox" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F27%2Fprofanity-filter-for-greasemonkey-addon-in-firefox%2F&amp;linkname=Safe%20Internet%20Browsing%3A%20OpenDNS%2C%20AdBlock%20Plus%2C%20Profanity%20Filter%20for%20Greasemonkey%20addon%20and%20Firefox"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/27/profanity-filter-for-greasemonkey-addon-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listing checked-out files in Team Foundation Server 2008 (TFS)</title>
		<link>http://www.technullogy.net/index.php/2009/09/18/listing-checked-out-files-in-team-foundation-server-2008-tfs/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/18/listing-checked-out-files-in-team-foundation-server-2008-tfs/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 18:20:59 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Source Control]]></category>
		<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=172</guid>
		<description><![CDATA[I needed a list of all checked-out files in TFS today.  This page came in handy! Thanks Clay!  Here&#8217;s what he had to say (slightly modified for VS 2008)

You can get a complete list of checked out files by using the tf.exe command line tool found in: C:\Program Files\Microsoft Visual Studio 9\Common7\IDE or C:\Program Files [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a list of all checked-out files in TFS today.  <a href="http://clay.lenharts.net/blog/2008/01/28/listing-checked-out-files-in-team-system-tfs/">This page came in handy!</a> Thanks Clay!  Here&#8217;s what he had to say (slightly modified for VS 2008)</p>
<div>
<p>You can get a complete list of checked out files by using the tf.exe command line tool found in: C:\Program Files\Microsoft Visual Studio 9\Common7\IDE or C:\Program Files (x86)\Microsoft Visual Studio 9\Common7\IDE for you 64 bitters.</p>
<p>All checked out files in $/MyProject:</p>
<pre>tf.exe status $/MyProject /user:* /s:http://MyTfs:8080 /recursive</pre>
<p>All files checked out to Mark:</p>
<pre>tf.exe status /user:mark /s:http://MyTfs:8080</pre>
<p>You can write the output to a file:</p>
<pre>tf.exe status /user:* /s:http://MyTfs:8080 &gt; c:\tfsCheckedOut.txt</pre>
<p><a href="http://www.box.net/shared/6a0n3k7vn9">I also created this little batch file</a> that will automatically output results to your desktop.  It&#8217;s very simplistic, but saves time having to mess with the command prompt.  Edit with your favorite text editor, save, and away you go.</div>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F18%2Flisting-checked-out-files-in-team-foundation-server-2008-tfs%2F&amp;linkname=Listing%20checked-out%20files%20in%20Team%20Foundation%20Server%202008%20%28TFS%29" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F18%2Flisting-checked-out-files-in-team-foundation-server-2008-tfs%2F&amp;linkname=Listing%20checked-out%20files%20in%20Team%20Foundation%20Server%202008%20%28TFS%29" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F18%2Flisting-checked-out-files-in-team-foundation-server-2008-tfs%2F&amp;linkname=Listing%20checked-out%20files%20in%20Team%20Foundation%20Server%202008%20%28TFS%29" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F18%2Flisting-checked-out-files-in-team-foundation-server-2008-tfs%2F&amp;linkname=Listing%20checked-out%20files%20in%20Team%20Foundation%20Server%202008%20%28TFS%29" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F18%2Flisting-checked-out-files-in-team-foundation-server-2008-tfs%2F&amp;linkname=Listing%20checked-out%20files%20in%20Team%20Foundation%20Server%202008%20%28TFS%29" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F18%2Flisting-checked-out-files-in-team-foundation-server-2008-tfs%2F&amp;linkname=Listing%20checked-out%20files%20in%20Team%20Foundation%20Server%202008%20%28TFS%29"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/18/listing-checked-out-files-in-team-foundation-server-2008-tfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synergy: Share Mouse and Keyboard between multiple computers with different operating systems</title>
		<link>http://www.technullogy.net/index.php/2009/09/10/synergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/10/synergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 01:36:20 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[General Musings]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[AS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[Screen Share]]></category>
		<category><![CDATA[Synergy]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=142</guid>
		<description><![CDATA[Synergy rocks. In their own words:
Synergy lets you easily share a single mouse and keyboard between multiple computers with different operating systems, each with its own display, without special hardware.  It&#8217;s intended for users with multiple computers on their desk since each system uses its own monitor(s).  Redirecting the mouse and keyboard is as [...]]]></description>
			<content:encoded><![CDATA[<p><a title="CLICK IT!" href="http://synergy2.sourceforge.net/">Synergy rocks.</a> In their own words:</p>
<blockquote><p>Synergy lets you easily share a single mouse and keyboard between multiple computers with different operating systems, each with its own display, without special hardware.  It&#8217;s intended for users with multiple computers on their desk since each system uses its own monitor(s).  Redirecting the mouse and keyboard is as simple as moving the mouse off the edge of your screen.  Synergy also merges the clipboards of all the systems into one, allowing cut-and-paste between systems. Furthermore, it synchronizes screen savers so they all start and stop together and, if screen locking is enabled, only one screen requires a password to unlock them all.  <a href="http://synergy2.sourceforge.net/about.html">Learn more</a> about how it works.</p></blockquote>
<p>Synergy has been around for awhile.  I don&#8217;t pretend to be revealing a hidden gem.  So why do I share?  Because I&#8217;ve got an interesting setup that I hope someone else may find useful!  Also, my mother told me to share.</p>
<p>The majority of my time at work is spent in .NET development.  I have a MacBook Pro configured to dual boot to Windows 7 (Boot Camp) and it runs like a champ.  My company&#8217;s VPN is such that it disables connections to the general internet.  When I connect to my VPN, I lose my internet connection.  Nooo, it doesn&#8217;t support split tunneling or allow me to clear the &#8220;Use gateway on remote network&#8221; checkbox.  So if I want to work from home AND have an internet connection&#8230;.enter Synergy!  Synergy allows me to control my Windows 7 laptop AND my iMac with a single keyboard and mouse. Also, Synergy connected systems share clipboard settings.  Awww yeeaaah!</p>
<p>I setup my windows laptop as the Synergy server like so:</p>
<table border="0">
<tbody>
<tr>
<td><img class="size-medium wp-image-152 alignnone" title="synergyScreenConfig" src="http://www.technullogy.net/wp-content/uploads/2009/09/synergyScreenConfig-202x300.jpg" alt="synergyScreenConfig" width="202" height="300" /></td>
<td><img class="size-medium wp-image-153 alignnone" title="synergyServerConfig" src="http://www.technullogy.net/wp-content/uploads/2009/09/synergyServerConfig-300x210.jpg" alt="synergyServerConfig" width="300" height="210" /></td>
</tr>
</tbody>
</table>
<p>Next, I created a couple basic AppleScript scripts to connect to and disconnect from the server. The startup script assumes that you have the synergy client in a folder called &#8220;synergy&#8221; in the root directory.</p>
<p>Client Connect (technically, you can do this without &#8220;tell application&#8221;, but I like the visual):</p>
<pre><span style="color: #0000ff;"><strong>tell</strong></span> <span style="color: #0000ff;">application</span> "Terminal"
 <span style="color: #0000ff;">activate</span>
 <span style="color: #0000ff;">do script</span> "/synergy/synergyc -f &lt;ServerHostNameOrIpAddress&gt;"
<span style="color: #0000ff;"><strong>end tell</strong></span></pre>
<p>Client Disconnect:</p>
<pre><span style="color: #0000ff;"><strong>set</strong></span> <span style="color: #68c364;">synergyName</span> <span style="color: #0000ff;"><strong>to</strong></span> "synergy"

<span style="color: #0000ff;"><strong>set</strong></span> <span style="color: #68c364;">synergyPid</span> <span style="color: #0000ff;"><strong>to</strong></span> (<span style="color: #0000ff;">do shell script</span> "ps ax | grep " &amp;
  (<span style="color: #0000ff;">quoted form</span> <span style="color: #0000ff;"><strong>of</strong></span> <span style="color: #68c364;">synergyName</span>) &amp; " | grep -v grep | awk '{print $1}'")

<span style="color: #0000ff;"><strong>if</strong></span> <span style="color: #68c364;">synergyPid</span> <strong><span style="color: #0000ff;">is</span> <span style="color: #0000ff;">not</span></strong> "" <span style="color: #0000ff;"><strong>then</strong></span> <span style="color: #0000ff;">do shell script</span> ("kill -9 " &amp; <span style="color: #68c364;">synergyPid</span>)</pre>
<p><a href="http://synergy2.sourceforge.net/">Download Synergy</a><br />
<a href="http://www.box.net/shared/bf2ysiu8yo">Download Synergy Client Launch AppleScript</a><br />
<a href="http://www.box.net/shared/nilnx7cso0">Download Synergy Client Kill AppleScript</a></p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Fsynergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems%2F&amp;linkname=Synergy%3A%20Share%20Mouse%20and%20Keyboard%20between%20multiple%20computers%20with%20different%20operating%20systems" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Fsynergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems%2F&amp;linkname=Synergy%3A%20Share%20Mouse%20and%20Keyboard%20between%20multiple%20computers%20with%20different%20operating%20systems" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Fsynergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems%2F&amp;linkname=Synergy%3A%20Share%20Mouse%20and%20Keyboard%20between%20multiple%20computers%20with%20different%20operating%20systems" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Fsynergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems%2F&amp;linkname=Synergy%3A%20Share%20Mouse%20and%20Keyboard%20between%20multiple%20computers%20with%20different%20operating%20systems" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Fsynergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems%2F&amp;linkname=Synergy%3A%20Share%20Mouse%20and%20Keyboard%20between%20multiple%20computers%20with%20different%20operating%20systems" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Fsynergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems%2F&amp;linkname=Synergy%3A%20Share%20Mouse%20and%20Keyboard%20between%20multiple%20computers%20with%20different%20operating%20systems"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/10/synergy-share-mouse-and-keyboard-between-multiple-computers-with-different-operating-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for PuzzleMom.com?</title>
		<link>http://www.technullogy.net/index.php/2009/09/10/looking-for-puzzlemom-com/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/10/looking-for-puzzlemom-com/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 00:51:20 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[General Musings]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=148</guid>
		<description><![CDATA[My wife makes BEAUTIFUL, custom wooden puzzles.  I used to run a site for her under the domain &#8220;PuzzleMom.com&#8221;.  However, I recently shut down the site.  She still makes great puzzles.  If you&#8217;re interested, you can email her at mowglihuff at gmail dot com.


     ]]></description>
			<content:encoded><![CDATA[<p>My wife makes BEAUTIFUL, custom wooden puzzles.  I used to run a site for her under the domain &#8220;PuzzleMom.com&#8221;.  However, I recently shut down the site.  She still makes great puzzles.  If you&#8217;re interested, you can email her at mowglihuff at gmail dot com.</p>
<p><img class="aligncenter size-medium wp-image-150" title="puzzleMom" src="http://www.technullogy.net/wp-content/uploads/2009/09/puzzleMom-300x64.png" alt="puzzleMom" width="300" height="64" /><br />
<img class="aligncenter size-medium wp-image-149" title="princessPuzzle" src="http://www.technullogy.net/wp-content/uploads/2009/09/princessPuzzle-229x300.png" alt="princessPuzzle" width="229" height="300" /></p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Flooking-for-puzzlemom-com%2F&amp;linkname=Looking%20for%20PuzzleMom.com%3F" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Flooking-for-puzzlemom-com%2F&amp;linkname=Looking%20for%20PuzzleMom.com%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Flooking-for-puzzlemom-com%2F&amp;linkname=Looking%20for%20PuzzleMom.com%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Flooking-for-puzzlemom-com%2F&amp;linkname=Looking%20for%20PuzzleMom.com%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Flooking-for-puzzlemom-com%2F&amp;linkname=Looking%20for%20PuzzleMom.com%3F" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F09%2F10%2Flooking-for-puzzlemom-com%2F&amp;linkname=Looking%20for%20PuzzleMom.com%3F"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/10/looking-for-puzzlemom-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free .NET Weather &amp; Rounded Div Container Controls</title>
		<link>http://www.technullogy.net/index.php/2009/08/20/free-net-weather-rounded-div-container-controls/</link>
		<comments>http://www.technullogy.net/index.php/2009/08/20/free-net-weather-rounded-div-container-controls/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 02:14:43 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Server Controls]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[User Controls]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=126</guid>
		<description><![CDATA[I used to run very small business on the side called &#8220;MJ Consulting&#8221;.  I provided basic IT services to mom &#38; pop shop businesses in my area; making sure that it did not conflict with any interests at my real job with Wachter.  It was so small that I barely made enough to [...]]]></description>
			<content:encoded><![CDATA[<p>I used to run very small business on the side called &#8220;MJ Consulting&#8221;.  I provided basic IT services to mom &amp; pop shop businesses in my area; making sure that it did not conflict with any interests at my real job with Wachter.  It was so small that I barely made enough to pay for the business license, domain name and a couple trips through the Wendy&#8217;s drive-thru. <img src='http://www.technullogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Well I haven&#8217;t done anything in that name for about a year, so I shut down the site.  However, I had some .NET controls there.  One was a Weather Channel control and another was a rounded corner &#8220;div&#8221; container.  Typical &#8220;drag n drop&#8221; server controls.  If you came here looking for those, you can find them using the links below.  Shoot me an email if you have any questions or find a bug.  Happy coding!</p>
<p><a href="http://www.box.net/shared/8pmqbey4e4">Download Rounded Div Control 3.2</a> Updated 02/27/2010<br />
<a title="MJC Weather .NET Control" href="http://www.box.net/shared/n8sndictbg">Download Weather Control 2.2</a> Updated 02/27/2010<br />

<a href='http://www.technullogy.net/index.php/2009/08/20/free-net-weather-rounded-div-container-controls/mjcroundeddiv/' title='MjcRoundedDiv'><img width="150" height="150" src="http://www.technullogy.net/wp-content/uploads/2009/08/MjcRoundedDiv-150x150.png" class="attachment-thumbnail" alt="" title="MjcRoundedDiv" /></a>
<a href='http://www.technullogy.net/index.php/2009/08/20/free-net-weather-rounded-div-container-controls/myweather/' title='MyWeather'><img width="150" height="150" src="http://www.technullogy.net/wp-content/uploads/2009/08/MyWeather-150x150.jpg" class="attachment-thumbnail" alt="" title="MyWeather" /></a>
</p>
<p>Full source is now available on CodePlex.com for both controls.Visit <a title="Yeah baby!" href="http://weatherforecast.codeplex.com/">http://WeatherForecast.Codeplex.com</a> or <a title="That's what I'm talkin' about!" href="http://roundcorners.codeplex.com/">http://RoundCorners.Codeplex.com</a> for more details.</p>
<p><form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="mjhufford@gmail.com" /><input type="hidden" name="item_name" value="TechNullogy.net" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form><br />
Like these free controls?  Please make a small donation.</p>
<a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F08%2F20%2Ffree-net-weather-rounded-div-container-controls%2F&amp;linkname=Free%20.NET%20Weather%20%26%23038%3B%20Rounded%20Div%20Container%20Controls" title="Digg" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F08%2F20%2Ffree-net-weather-rounded-div-container-controls%2F&amp;linkname=Free%20.NET%20Weather%20%26%23038%3B%20Rounded%20Div%20Container%20Controls" title="Twitter" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F08%2F20%2Ffree-net-weather-rounded-div-container-controls%2F&amp;linkname=Free%20.NET%20Weather%20%26%23038%3B%20Rounded%20Div%20Container%20Controls" title="Delicious" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F08%2F20%2Ffree-net-weather-rounded-div-container-controls%2F&amp;linkname=Free%20.NET%20Weather%20%26%23038%3B%20Rounded%20Div%20Container%20Controls" title="Facebook" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F08%2F20%2Ffree-net-weather-rounded-div-container-controls%2F&amp;linkname=Free%20.NET%20Weather%20%26%23038%3B%20Rounded%20Div%20Container%20Controls" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.technullogy.net%2Findex.php%2F2009%2F08%2F20%2Ffree-net-weather-rounded-div-container-controls%2F&amp;linkname=Free%20.NET%20Weather%20%26%23038%3B%20Rounded%20Div%20Container%20Controls"><img src="http://www.technullogy.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/08/20/free-net-weather-rounded-div-container-controls/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
	</channel>
</rss>
