<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.geekdojo.net/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Geekdojo</title><link>http://blogs.geekdojo.net/default.aspx</link><description>Tech people talking tech things</description><dc:language>en-US</dc:language><generator>CommunityServer 2.0 (Build: 60217.2664)</generator><item><title>This Blog Has Moved!</title><link>http://blogs.geekdojo.net/jez/archive/2008/09/09/2022291141.aspx</link><pubDate>Tue, 09 Sep 2008 03:09:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022291141</guid><dc:creator>jez</dc:creator><slash:comments>0</slash:comments><description>I have started blogging once again.... However, I have moved my blog to my own server and changed over to the &lt;A href="http://wordpress.org/"&gt;WordPress &lt;/A&gt;bloging engine.&amp;nbsp; You can find my new blog @ &lt;A href="http://ray.jez.net/"&gt;http://ray.jez.net/&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022291141" width="1" height="1"&gt;</description></item><item><title>SQL Server 2008 is finally here !!!</title><link>http://blogs.geekdojo.net/jmanners/archive/2008/08/07/2022290946.aspx</link><pubDate>Fri, 08 Aug 2008 03:10:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290946</guid><dc:creator>jmanners</dc:creator><slash:comments>0</slash:comments><description>go and get it off your MSDN.&lt;br&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290946" width="1" height="1"&gt;</description></item><item><title>Disorderly Views</title><link>http://blogs.geekdojo.net/nathan/archive/2008/08/05/2022290945.aspx</link><pubDate>Tue, 05 Aug 2008 00:51:44 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290945</guid><dc:creator>nathan</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;In SQL Server 2005, if you create a view utilizing the TOP (100) PERCENT and ORDER BY clauses, you will not get back your results in the order specified.&lt;/p&gt; &lt;p&gt;Example:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;&lt;font color="#000080"&gt;USE&lt;/font&gt; AdventureWorks&lt;br&gt;GO&lt;br&gt;&lt;font color="#000080"&gt;CREATE VIEW&lt;/font&gt; CustomersOrderedbyTerritory&lt;br&gt;&lt;font color="#000080"&gt;AS&lt;br&gt;SELECT TOP&lt;/font&gt;(100) PERCENT * &lt;font color="#000080"&gt;FROM&lt;/font&gt; Sales.Customer&lt;br&gt;&lt;font color="#000080"&gt;ORDER BY&lt;/font&gt; TerritoryID &lt;br&gt;GO&lt;br&gt;&lt;font color="#000080"&gt;SELECT&lt;/font&gt; * &lt;font color="#000080"&gt;FROM&lt;/font&gt; customersOrderedbyTerritory&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;You will notice that SELECTing from this view returns&amp;nbsp; a result set 'ignorant' of the ORDER BY directive. In essence, the optimizer ignores the TOP and ORDER BY clauses.&amp;nbsp; To achieve the desired result, there is a &lt;a href="http://support.microsoft.com/default.aspx/kb/926292" target="_blank"&gt;hot fix available from MSFT&lt;/a&gt; which introduces &lt;strong&gt;trace flag 168&lt;/strong&gt; and also requires you set the database compatibility level to 80 (SQL Server 2000).&lt;/p&gt; &lt;p&gt;Apparently, the problem also extends to Common Table Expressions (CTE) which use the same constructs such as :&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;&lt;font color="#000080"&gt;WITH&lt;/font&gt; territorialcustomers &lt;font color="#000080"&gt;AS&lt;/font&gt;&lt;br&gt;(&lt;br&gt;&lt;font color="#000080"&gt;SELECT TOP&lt;/font&gt;(100) PERCENT * &lt;font color="#000080"&gt;FROM&lt;/font&gt; Sales.Customer&lt;br&gt;&lt;font color="#000080"&gt;ORDER BY&lt;/font&gt; TerritoryID &lt;br&gt;)&lt;br&gt;&lt;font color="#000080"&gt;SELECT&lt;/font&gt; * &lt;font color="#000080"&gt;FROM&lt;/font&gt; territorialcustomers&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;If you don't want to set your compatibility level to 80, you can use &lt;strong&gt;TOP (99.999999999999)&lt;/strong&gt; instead. This somehow fools the optimizer to sort the data the way you want it to. Of course, it is only useful if your table contains less than 10 million records since the 0.000000000001% difference may start to show.&lt;/p&gt; &lt;p&gt;Well, if you insist on using the view, you can avoid the hot fix by using the ORDER BY clause in a table-valued function to retrieve your ordered data .&amp;nbsp; You can then wrap your view around this UDF. &lt;/p&gt; &lt;p&gt;I have not checked if this behavior has been carried forward to SQL Server 2008.&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290945" width="1" height="1"&gt;</description></item><item><title>Lessons From The Trenches</title><link>http://blogs.geekdojo.net/nathan/archive/2008/08/04/2022290944.aspx</link><pubDate>Mon, 04 Aug 2008 22:08:01 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290944</guid><dc:creator>nathan</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;A substantial part of my development career was spent on the assembly line churning out code based on someone else specifications. There was always somebody else to handle the financial, administrative, marketing and sales aspects of&amp;nbsp; the whole manufacturing process - what I used to call the 'social' face of software. Now that I am running my own small software outfit and having gone through a few projects, the lessons seem to be coming my way fast and hard on a daily basis. Most of them are the 'social' kind and I will proceed to randomly throw them at you, mainly because I don't want to forget them. &lt;/p&gt; &lt;ol&gt; &lt;li&gt;Document all proposed requirements (features) to the most atomic level of detail possible. Ambiguous or general statements can fool you into optimism as far as the project timeline and budget is concerned. A specification statement like "&lt;em&gt;The new system should allow employees to view their own data currently stored in the HR management system oracle database&lt;/em&gt;" cannot be the basis of a design. Break it down with questions like this:  &lt;ul&gt; &lt;li&gt;&lt;em&gt;&lt;strong&gt;Allow&lt;/strong&gt;&lt;/em&gt; - May suggest security concerns. Will this be integrated security (implicit) or forms-based (explicit)?. Is there some form of identity management in place? Will we have to log (keep track) access to the system somewhere?  &lt;li&gt;&lt;em&gt;&lt;strong&gt;Employees&lt;/strong&gt;&lt;/em&gt; - How many? Where are they located? Will each computer need some form of installation or setup procedure before using the system?  &lt;li&gt;&lt;em&gt;&lt;strong&gt;View&lt;/strong&gt;&lt;/em&gt; - Where is the viewpoint? i.e. can the employee view the data while outside the LAN. What will they use to view the data? i.e a browser, a Windows forms application through a VPN? Do we need to encrypt the data? What obstacles lie between the user and the data? Firewalls,  &lt;li&gt;&lt;em&gt;&lt;strong&gt;Own&lt;/strong&gt;&lt;/em&gt; - Are there people who can view other peoples' data? Who manages all these permissions?  &lt;li&gt;&lt;em&gt;&lt;strong&gt;Data&lt;/strong&gt;&lt;/em&gt; - Which data exactly? i.e. Salaries, leave (vacation), loans, employment history (vertical and horizontal movement within the firm). How should each be displayed?  &lt;li&gt;&lt;strong&gt;Oracle&lt;/strong&gt; - Which version? Oracle client software installation? Who is responsible for this other database? Will they help with scripts to get the data out? Will we be allowed access to some of the data during development? &lt;em&gt;Silently:(Do we have skills to deal with PL/SQL and ADO.NET&lt;/em&gt;?). Any documentation available?  &lt;li&gt;If most of the above questions can be answered satisfactorily by the client, you may be able to do a better estimate than just a '1 man-week' guess. In fact, you might realize that this could very easily end up at slightly more than '1 man-month'. Remember that I am talking about one requirements specification statement.&amp;nbsp;&amp;nbsp; &lt;li&gt;You might, of course, want to wear the 'architects' hat and start thinking of &lt;em&gt;performance, availability, scalability, extensibility and interoperability&lt;/em&gt; at the statement level. These thoughts will not reduce the value of your requirements and may uncover other concerns and wishes not previously stated.&lt;/li&gt;&lt;/ul&gt; &lt;li&gt;Communicate anything involving an agreed or suggested flux in resources and system features in writing (e-mail) as much as possible. Copy (cc) the communication to all the people relevant to that part of the project. After meetings, e-mail the client highlighting the main points agreed or disagreed during that meeting and ask for confirmation. You may look dumb and slow but this will cover your bases and avoid any ambiguity or disputes later.  &lt;li&gt;Perform user acceptance testing as early as sanely possible. Unit and functional tests can be greatly complemented by the almost natural ability of a user to always crash a system. The fact that the software is incomplete only serves to gauge your feature prioritization skills. This could be a better indicator of where the project status instead of just checking off a feature list in a garage or on an Ms Project gantt chart. In any case, a client nod is worth more than any test case scenarios you can cook up.&amp;nbsp; &lt;li&gt;Demarcate or at least try to understand the boundary between the &lt;em&gt;user &lt;/em&gt;and the&lt;em&gt; client&lt;/em&gt;. These two entities are important to the closure of the project. The client will pay for the software. Users will use your software as often as necessary. Users will certify your system. The client may not pay if the user is not happy. Your will be supporting users later - despite what the contract says. When the client is the user, you may have an easier job navigating through the acceptance and invoicing phases. If they are not , get a good project liaison to grease the path between them.  &lt;li&gt;Listen to all levels of the user spectrum. Every data entry and retrieval scenario should have a 'persona' and a real blood-and-bones user early in the project. Different people have different views of design. You may be able to merge these different views with your own or even learn something new. Not listening creates room for assumptions. Assumptions can spawn undefined elasticity in resources and features. Listening later only serves to widen the delicate gap between project initiation and final invoicing.  &lt;li&gt;Know the accounting practices and procedures of the client. What they may consider fast payment processing may be too slow for you. Your bills and obligations may not dance to the same tune as your clients' workflow and traditions. This will also allow you to plan for cash flow.&amp;nbsp;&amp;nbsp; &lt;li&gt;If you can, start creating user documentation (help files) early. Consider this as a validation of the requirements and testing activities. This also brings the end game nearer.  &lt;li&gt;If there is a training clause in the contract, make sure the scope is clear. You may find yourself teaching PC skills, database administration, active directory services or even VB.NET for free or at a lower price than you would have if it was stated clearly from the beginning.  &lt;li&gt;If you can help it, get somebody who knows their way around the establishment and has a goodwill for the project as a liaison. Canceled or missed appointments with various people, internal events or staff deployment changes in the client firm can affect your ship date. You may also need help bullying the accounts people - they usually respond better to internal pressure and nagging. A good rapport with the internal IT team can be good for repeat or referential business. It might just help to reduce your medical bills as you struggle to deploy your new software.  &lt;li&gt;It may be that you got the job through a competitive process (a.k.a tender). Make sure you get to know why you won/lost the bid and what your competition had to offer in their technical and financial proposals. There will always be a next time and it is very likely that you will meet your competitors again. Such knowledge can only serve to improve your chances.&amp;nbsp; &lt;li&gt;In case you were wondering, I have little to say about software maintenance contracts. You will not need to do much if the agreement (SLA) is clear and your software approximates the elusive zero-bug state. On the other hand, it is very easy to spend all your money 'maintaining' the software as you respond to every user SOS and hunt down all kinds of bugs.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;Whether my experiences are out of place is subject to the test of time and the pressure of future projects. In the meantime, they will serve as a reminder that the world is still interesting outside the confines of Visual Studio and the SQL Server query editor.&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290944" width="1" height="1"&gt;</description></item><item><title>Running for President</title><link>http://blogs.geekdojo.net/jmanners/archive/2008/08/03/2022290943.aspx</link><pubDate>Sun, 03 Aug 2008 16:26:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290943</guid><dc:creator>jmanners</dc:creator><slash:comments>0</slash:comments><description>The rumors are true... I'm running for President :&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;embed src="http://www.paltalk.com/marketing/media/vanksen/main.swf" type="application/x-shockwave-flash" flashvars="firstname=Jose&amp;amp;lastname=Manners&amp;amp;urlfin=http%3A%2F%2Fwww.news3online.com%2Fspread.php" bgcolor="#000000" align="" height="304" width="384"&gt;

&lt;p&gt;
;-)
&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290943" width="1" height="1"&gt;</description></item><item><title>How to set the default size and layout of all Windows Explorer windows.</title><link>http://blogs.geekdojo.net/brian/archive/2008/07/31/2022290942.aspx</link><pubDate>Fri, 01 Aug 2008 01:41:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290942</guid><dc:creator>brian</dc:creator><slash:comments>2</slash:comments><description>&lt;p&gt;
    &lt;/p&gt;
    &lt;p&gt;
    &lt;/p&gt;
    &lt;p&gt;
        Do you routinely open new folders directly, either because you created one on your
        desktop, through a shortcut, or by using the new context menu in Visual Studio to
        explore the folders in your solution? Are you constantly adjusting the size of the
        Explorer windows because they are too large or too small for your tastes? Do you
        wonder why Vista does not just remember and open all windows at the same size?&lt;/p&gt;
    &lt;p&gt;
        Vista stores settings such as size, location, sort type, icon type, etc… for individual
        folders you open. Some of these settings can be replicated to other folders using
        Folder Options / View / Apply to Folders, but that method is not very reliable and
        no longer applies to all folders as it did in previous versions of Windows.&amp;nbsp;
        Vista can still later decide that your documents folder is suddenly a music folder,
        or your apps folder full of only executables is now a picture folder.
    &lt;/p&gt;
    &lt;p&gt;
        There are some registry settings you can apply that will take care of most of theses
        issues, except window sizes. I first discovered the settings through a link in the
        comments on &lt;a href="http://www.hanselman.com/blog/WrongFileTypesViewInVistaExplorerFolders.aspx"&gt;
            Scott Hanselman's post about Vista’s erratic file type views&lt;/a&gt;. Later, after
        I purchased a new laptop &lt;a href="http://www.mydigitallife.info/2007/11/08/delete-and-reset-windows-vista-folder-views-or-folder-types-settings-to-default-clean-state/"&gt;
            I came across a better explanation on the My Digital Life blog&lt;/a&gt;. If you are
        looking for a way to fix this behavior, I would suggest going there first as this
        fix is an expanded version of it and requires those steps. Come back here before
        you open any new windows though. Go ahead… I’ll keep myself busy.&lt;/p&gt;
    &lt;p&gt;
        Ok, now that you have completed those steps, we can get that pesky window size issue
        fixed.
    &lt;/p&gt;
    &lt;p&gt;
        First, right click on your desktop and choose New / Folder.
    &lt;/p&gt;
    &lt;p&gt;
        Next, double click the new folder and drag it out or in to your preferred size.
        You can also set other properties of the window you want to be the default at this
        point. For instance, I like by default window view to be details view grouped by
        the type of item. The folder is empty so you will not see any sorting or grouping,
        but it will be saved.&lt;/p&gt;
    &lt;p&gt;
        Close the window and open the registry editor, type regedit.exe in the quick search
        bar of the start menu.
    &lt;/p&gt;
    &lt;p&gt;
        &lt;strong&gt;Important&lt;/strong&gt;, The next steps involve editing your registry. The standard
        disclaimer applies. You can cause serious problems if you are not careful in the
        registry. Follow these steps though and your computer will survive.&lt;/p&gt;
    &lt;p&gt;
        Navigate back to the registry key: &lt;br&gt;&lt;/p&gt;&lt;p&gt;[HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\. &lt;br&gt;&lt;/p&gt;&lt;p&gt;You should see a single numbered key under the Bags key. That key represents the
        settings for the folder you just closed. Open the ‘Shell’ key beneath it and you
        should see another key with a guid name such as ‘{5C4F28B5-F869-4E84-8E60-F11DB97C5CC7}’.
        The numbers may be different on your system.
    &lt;/p&gt;
    &lt;p&gt;
        &lt;img src="http://www.thegridmaster.com/geekdojoblog/images/HowtosetthedefaultsizeandlayoutofallWin_102B7/CropperCapture5.png" border="0"&gt;&lt;/p&gt;
    &lt;p&gt;
        Right click the guid key and choose export. Save the file to your desktop. Use any
        name you like.&lt;/p&gt;
    &lt;p&gt;
        &lt;img src="http://www.thegridmaster.com/geekdojoblog/images/HowtosetthedefaultsizeandlayoutofallWin_102B7/CropperCapture8.png" border="0"&gt;&lt;/p&gt;
    &lt;p&gt;
        Now that you have a new registry settings file on your desktop, right click the
        file and choose Edit. You need to make a single change. The second line in the file
        will be the path in the registry, it will look like:&lt;/p&gt;
    &lt;p&gt;
        [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\&lt;strong&gt;4&lt;/strong&gt;\Shell\{5C4F28B5-F869-4E84-8E60-F11DB97C5CC7}].&amp;nbsp;
    &lt;/p&gt;
    &lt;p&gt;
        The piece that needs to be changed is the number after the ‘Bags’ key. In this case
        it is 4, but your file may be different. Change the number to ‘AllFolders’ so that
        the line looks like:
    &lt;/p&gt;
    &lt;p&gt;
        [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\&lt;strong&gt;AllFolders&lt;/strong&gt;\Shell\{5C4F28B5-F869-4E84-8E60-F11DB97C5CC7}].&lt;/p&gt;
    &lt;p&gt;
        Save and close the registry settings file. Now to get these settings back into the
        registry, double click the file and choose ok at the prompt.&lt;/p&gt;
    &lt;p&gt;
        Open any folder on your computer and it will look exactly like your first folder.
        You will need to reset any special folder views you had, such as picture folders.
        You can do that in two ways. Click the ‘Views’ button at the top of any window or
        right click in a window and choose ‘Customize This Folder’. Once you have made your
        change, close the window and Windows will remember the setting for that folder.
    &lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290942" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/brian/archive/category/194.aspx">Windows</category></item><item><title>My first attempt to use the Cuil search engine</title><link>http://blogs.geekdojo.net/jmanners/archive/2008/07/28/2022290939.aspx</link><pubDate>Mon, 28 Jul 2008 20:14:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290939</guid><dc:creator>jmanners</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;I just gave this new search engine a try.&amp;nbsp; It's called&amp;nbsp; &lt;A href="http://www.cuil.com/" target=_blank&gt;Cuil (pronounce "Cool")&lt;/A&gt;&amp;nbsp;&amp;nbsp;and its the invention of former Google engineer &lt;A href="http://en.wikipedia.org/wiki/Anna_Patterson" target=_blank&gt;Anna Patterson&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Here's a pic:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290939" width="1" height="1"&gt;</description></item><item><title>This Blog has moved</title><link>http://blogs.geekdojo.net/ryan/archive/2008/07/24/2022290766.aspx</link><pubDate>Thu, 24 Jul 2008 18:35:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290766</guid><dc:creator>rrinaldi</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Please update your readers! &lt;A href="http://ryanrinaldi.com/"&gt;Ryan Rinaldi: .NET development served with a slice of sarcasm.&lt;/A&gt;&amp;nbsp;(&lt;A href="http://feeds.feedburner.com/RyanRinaldi"&gt;RSS&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290766" width="1" height="1"&gt;</description></item><item><title>Microsoft .NET Framework 3.5 Service pack 1 Beta</title><link>http://blogs.geekdojo.net/jmanners/archive/2008/05/21/2022290495.aspx</link><pubDate>Wed, 21 May 2008 14:56:03 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290495</guid><dc:creator>jmanners</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Here's the link to the beta, go and get it:&lt;/p&gt; &lt;p&gt;&lt;a title="Microsoft .NET Framework 3.5 Service pack 1 Beta" href="http://www.microsoft.com/downloads/details.aspx?familyid=8c36aca4-e947-4760-9b05-93cac04c6f87&amp;amp;displaylang=en&amp;amp;tm" target="_blank"&gt;Microsoft .NET Framework 3.5 Service pack 1 Beta&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290495" width="1" height="1"&gt;</description></item><item><title>GeekFest 2008</title><link>http://blogs.geekdojo.net/jmanners/archive/2008/04/14/2022290490.aspx</link><pubDate>Mon, 14 Apr 2008 14:53:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290490</guid><dc:creator>jmanners</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;Like &lt;A HREF="/jmanners/archive/2007/03/02/115681.aspx" target=_blank&gt;last year&lt;/A&gt;, I'm heading out to the MVP Summit in Redmond.&amp;nbsp; Here's some information on the event:&lt;/P&gt;
&lt;P&gt;The upcoming summit, April 14-17, will feature a keynote from Microsoft CEO Steve Ballmer and closing by Chief Software Architect Ray Ozzie, in addition to several sessions, including topics ranging from social media for peer-to-peer support to new developments such as Silverlight mobile to Skydrive. Nearly 1,800 MVPs are planning to attend. 
&lt;P&gt;In conjunction with the summit, the Code Trip (&lt;A href="http://www.thecodetrip.com"&gt;www.thecodetrip.com&lt;/A&gt;), which launched from MIX and has been traveling around the western U.S., is an RV housed with Microsoft developer evangelists spreading the word about new technologies and meeting MVPs at each stop. The final destination of the 21 city trip is the MVP summit.&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290490" width="1" height="1"&gt;</description></item><item><title>Looks like i lied....</title><link>http://blogs.geekdojo.net/adam/archive/2008/03/31/2022290461.aspx</link><pubDate>Mon, 31 Mar 2008 12:16:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290461</guid><dc:creator>adam</dc:creator><slash:comments>0</slash:comments><description>When I said I wouldn't post here anymore.&lt;br&gt;&lt;br&gt;The truth is that my men-talhealth website is still a good idea but I don't have enough material to post there consistently. Also, I &lt;span&gt;like&lt;/span&gt; writing tech stuff - I now just have a different agenda to before.&lt;br&gt;&lt;br&gt;That in mind, I'm going to launch a new blog where I can blog about anything and everything I like. I'll post the URL when it's ready&lt;br&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290461" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/adam/archive/category/66.aspx">Microsoft</category><category domain="http://blogs.geekdojo.net/adam/archive/category/67.aspx">General</category><category domain="http://blogs.geekdojo.net/adam/archive/category/68.aspx">Exchange</category><category domain="http://blogs.geekdojo.net/adam/archive/category/69.aspx">Systems Management</category><category domain="http://blogs.geekdojo.net/adam/archive/category/70.aspx">Windows</category><category domain="http://blogs.geekdojo.net/adam/archive/category/71.aspx">Gadgets</category><category domain="http://blogs.geekdojo.net/adam/archive/category/75.aspx">XML</category><category domain="http://blogs.geekdojo.net/adam/archive/category/81.aspx">Outlook</category><category domain="http://blogs.geekdojo.net/adam/archive/category/82.aspx">Mobility</category><category domain="http://blogs.geekdojo.net/adam/archive/category/84.aspx">Office</category><category domain="http://blogs.geekdojo.net/adam/archive/category/86.aspx">Events</category><category domain="http://blogs.geekdojo.net/adam/archive/category/91.aspx">Writing</category><category domain="http://blogs.geekdojo.net/adam/archive/category/99.aspx">Hardware</category><category domain="http://blogs.geekdojo.net/adam/archive/category/100.aspx">Apple</category><category domain="http://blogs.geekdojo.net/adam/archive/category/111.aspx">Personal</category><category domain="http://blogs.geekdojo.net/adam/archive/category/115.aspx">Karate</category><category domain="http://blogs.geekdojo.net/adam/archive/category/128.aspx">Security</category><category domain="http://blogs.geekdojo.net/adam/archive/category/132.aspx">Music</category><category domain="http://blogs.geekdojo.net/adam/archive/category/133.aspx">Gaming</category><category domain="http://blogs.geekdojo.net/adam/archive/category/137.aspx">Disclaimer</category><category domain="http://blogs.geekdojo.net/adam/archive/category/166.aspx">Biography</category><category domain="http://blogs.geekdojo.net/adam/archive/category/174.aspx">UKESP</category><category domain="http://blogs.geekdojo.net/adam/archive/category/185.aspx">Free Stuff</category><category domain="http://blogs.geekdojo.net/adam/archive/category/193.aspx">Comments Policy</category><category domain="http://blogs.geekdojo.net/adam/archive/category/1024.aspx">PSP</category><category domain="http://blogs.geekdojo.net/adam/archive/category/1030.aspx">Community</category><category domain="http://blogs.geekdojo.net/adam/archive/category/1036.aspx">Advanced Driving</category><category domain="http://blogs.geekdojo.net/adam/archive/category/1037.aspx">Content Master</category></item><item><title>C# 3.0: Invoke On WinForm Conrols easily with Lambda expressions (or anonymous methods)</title><link>http://blogs.geekdojo.net/richard/archive/2008/02/22/2022290454.aspx</link><pubDate>Fri, 22 Feb 2008 20:43:00 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290454</guid><dc:creator>richard</dc:creator><slash:comments>0</slash:comments><description>&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I really like Extension methods... especially when you combine them with other good language bits to really make a difficult problem a lot easier.&amp;nbsp; I think invoking on Windows Forms applications is one of those problems that is elegantly solved by some of these new features.&amp;nbsp; For an in-depth background on the 'whys' and details of having to use Invoke to access GUI elements from other threads in your windows forms applications, see &lt;A href="http://weblogs.asp.net/justin_rogers/articles/126345.aspx"&gt;this article&lt;/A&gt;.&amp;nbsp; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;I have always found stopping to Invoke something to be a bit of a pain -&amp;nbsp; just enough effort to derail my train of thought while working on a WinForms applications.&amp;nbsp; So back in the 1.1 days, I created some helper code to try to smooth this process out a bit.&amp;nbsp; On method to help out invoke was called like this:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" color=#000080 size=2&gt;string value = InvokeHelper.GetProperty(myTextBox, "Text");&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;This was an improvement on invoking without help, but essentially all I was doing was wrapping some reflection calls to coax the value from the Text property.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Now, with extention methods, lambda expressions and the ability of the compiler to infer the resolution of generic type parameters&amp;nbsp;to actual types, I was able to refactor many helper methods (variations on the above for getting and setting properties, fields, calling methods, and their overloads into two methods, this is the first:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" color=#000080 size=2&gt;public static TResult Invoke&amp;lt;T, TResult&amp;gt;(this T controlToInvokeOn, Func&amp;lt;TResult&amp;gt; code) where T : Control&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp; if (controlToInvokeOn.InvokeRequired)&lt;BR&gt;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return (TResult)controlToInvokeOn.Invoke(code);&lt;BR&gt;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;&amp;nbsp;&amp;nbsp; else&lt;BR&gt;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return (TResult)code();&lt;BR&gt;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;This handles the majority of cases where I wish to invoke in WinForms, it's available on all Control instanced&amp;nbsp;(though I usually just invoke on the main Form instance where the controls I want to touch are) and it works without having to specifiy the return type (or where there are no return types *except in cases where the Func code isn't an expression... see below for the second method/case).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;The other method is this:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;&lt;FONT face="Courier New" color=#000080&gt;public static void Invoke(this Control controlToInvokeOn, Func code)&lt;BR&gt;{&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (controlToInvokeOn.InvokeRequired)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;controlToInvokeOn.Invoke(code);&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;code();&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR&gt;}&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;This method has some overlap with the previous method, but its exclusive territory is cases where you pass something to the 'code' parameter that *isn't* an expression.&amp;nbsp; In this overload, you are passing in a delegate defined as &lt;FONT face="Courier New" color=#000080&gt;public delegate void Func()&lt;/FONT&gt; (which is not included in the framework, I just made it up though I could have easily used the ThreadStart delegate -- hmm, maybe I should have, oh well :)).&amp;nbsp; This can be a multi-step method that includes locals etc. just like any anonymous method would.&amp;nbsp; The first overload of Invoke would require you to return something at the end of your method, which I thought was ugly, so I added this second method for 'code aesthetic' purposes.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;[Edit] One obvious thing I left out (you can tell I haven't blogged much recently) is is just the syntax of how this is called.&amp;nbsp; &lt;/FONT&gt;&lt;FONT face=Verdana size=2&gt;Inside a Form (this), you call the method like so (in this case, setting a value on a control on the UI thread):&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" color=#000080 size=2&gt;this.Invoke(() =&amp;gt; progressBar1.Value = i);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;This gives you easier syntax than the out of the box invoke, and only invokes if it needs to.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Returning a value from a property is pretty easy, too:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" color=#000080 size=2&gt;string value = this.Invoke(() =&amp;gt; button1.Text);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;The return type is resolved implicitly so you never need to cast and normally shouldn't need to explicitly supply it.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Anyway, I would like to improve this if I can.&amp;nbsp; One question: is it wrong to overload the 'Invoke' method?&amp;nbsp; If yes, what name should these methods have?&amp;nbsp; Any other comments or questions are welcomel&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;Here's the code:&lt;BR&gt;&lt;A href="http://cid-562a3b0e5827e3b4.skydrive.live.com/self.aspx/Demo%20code/DemonstrateInvokeViaLambdas.zip"&gt;DemonstrateInvokeViaLambdas.zip&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290454" width="1" height="1"&gt;</description></item><item><title>Butting Heads with the Head Buts: Innovation and Generic Implementations</title><link>http://blogs.geekdojo.net/mitchell/archive/2008/01/25/2022290451.aspx</link><pubDate>Fri, 25 Jan 2008 19:09:18 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290451</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I'd like to coin a new word, genericization, mostly because it's fun to say, but it's hard not to go back and try and correct that red squiggly line. Anyway, I didn't really want to talk about new words and automatic spell-checking. What I really want to expound upon is all this talk about innovation and how it occurs in the software development space.&lt;/p&gt; &lt;p&gt;Where I'm currently working, they have some weird calculation involving revenue and GP to measure innovation. I'm not, to be sure, exactly up on all the conceptual math behind it.... At any rate, the prevailing concept amongst the operational and business folks is that innovation should be done on the client's dime. Furthermore, such innovation should always be genericizable, i.e., applicable across all clients. What, apparently, gets lost in translation, is that converting a concept into a software-based process, given a reasonable set of requirements and under an always aggressive timeline, is a shaky proposition anyway. To expect development teams, especially immature or relatively new and unschooled teams, to think generically when they're feverishly working to implement specifically is akin to trying to find something that resembles a pin to stick back into the grenade...&lt;/p&gt; &lt;p&gt;And, of course, when that grenade explodes, all the buts start: &lt;/p&gt; &lt;ul&gt; &lt;li&gt;"But why can't that whatchamacallit be used on my program?"&lt;/li&gt; &lt;li&gt;"But you made that generic, why do I have to pay for customization?"&lt;/li&gt; &lt;li&gt;"But I need it to work this way."&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;What I think most of the business folks aren't realizing is that they are the ones who own the domain. They own the concepts. Of course, translating the conceptual into the physical is one of the roles the architect plays. If you are the architect and you're heads down on specific delivery, i.e., client work,&amp;nbsp; you'll never have the chance to look around and truly learn the breadth and depth of a particular domain. Therefore, you'll rarely ever be able conceptualize it into something generic. And, you'll just be stuck re-inventing the wheel over and over.&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290451" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1028.aspx">General Development</category><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1047.aspx">Architecture in General</category></item><item><title>Quotes - Thomas Jefferson</title><link>http://blogs.geekdojo.net/mitchell/archive/2008/01/25/2022290450.aspx</link><pubDate>Fri, 25 Jan 2008 14:38:56 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290450</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;"The God who gave us life, gave us liberty at the same time;&lt;br&gt;the hand of force may destroy, but cannot disjoin them."&lt;/p&gt;- Thomas Jefferson&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290450" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1007.aspx">Quotes</category></item><item><title>What's “Nu” in MS '08 Technology - Chicago, New York and Denver</title><link>http://blogs.geekdojo.net/brian/archive/2008/01/24/2022290417.aspx</link><pubDate>Thu, 24 Jan 2008 16:09:21 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022290417</guid><dc:creator>brian</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;My company &lt;a href="http://www.neudesic.com" target="_blank"&gt;Neudesic&lt;/a&gt; will once again be hosting NuCon, a deep dive conference into .Net 3.5 and Visual Studio 2008 including LINQ, ADO.Net 3.5, Silverlight and TFS. Microsoft's new IO model (&lt;a href="http://www.microsoftio.com/" target="_blank"&gt;Infrastructure Optimization&lt;/a&gt;) will also be covered in one of the tracks.&lt;/p&gt; &lt;p&gt;This year the conferences will take place in Chicago, New York, and Denver starting on February 7th in Chicago.&lt;/p&gt; &lt;p&gt;Space is limited. Get more info and sign up at the &lt;a href="http://www.nucon08.com/" target="_blank"&gt;NuCon 08 conference site&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e625d6e2-cbc6-483b-bf3c-c5008a52c006"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/Neudesic" rel="tag"&gt;Neudesic&lt;/a&gt;,&lt;a href="http://technorati.com/tags/ASP.Net" rel="tag"&gt;ASP.Net&lt;/a&gt;,&lt;a href="http://technorati.com/tags/.Net%203.5" rel="tag"&gt;.Net 3.5&lt;/a&gt;,&lt;a href="http://technorati.com/tags/NuCon08" rel="tag"&gt;NuCon08&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Silverlight" rel="tag"&gt;Silverlight&lt;/a&gt;&lt;/div&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022290417" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/brian/archive/category/140.aspx">ASP.Net</category></item><item><title>Something We Already All Know - &amp;quot;It's All About the Data&amp;quot;</title><link>http://blogs.geekdojo.net/mitchell/archive/2008/01/16/2022289386.aspx</link><pubDate>Wed, 16 Jan 2008 21:27:10 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022289386</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Here's an absolutely fascinating &lt;a href="http://www.tdan.com/view-articles/6690"&gt;article&lt;/a&gt;, by Noreen Kendle, regarding the philosophy of data. This is a must read for anyone who has to deal with data from a data warehousing perspective.&lt;/p&gt; &lt;p&gt;Ms. Kendle tackles the philosophy of data from an oft neglected, yet vital, viewpoint. She acknowledges that the "ultimate goal of data is to provide useful, accurate information in support of knowledge, as knowledge is power." Ms. Kendle then immediately goes on to assert that "the usefulness of data is directly dependent on the accuracy of its alignment to reality." So, in these two sentences, she has captured the essence of Data Warehousing. Data must be of the highest quality possible so as to provide the best answers available.&lt;/p&gt; &lt;p&gt;I would highly recommend that, if you are interested in Data Warehousing, or even just dealing with data in general, that you peruse and savor this little gem. As Ms. Kendle reminds us: "'If that data isn't right, nothing is.' There cannot be a truer statement."&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022289386" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1052.aspx">Data Warehousing</category></item><item><title>&amp;quot;Tagged:&amp;quot; Book List</title><link>http://blogs.geekdojo.net/mitchell/archive/2008/01/07/2022287557.aspx</link><pubDate>Mon, 07 Jan 2008 14:19:28 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022287557</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Technically, I guess, this counts, since I do read &lt;a href="http://margiedavis.blogspot.com/2008/01/i-may-have-too-much-time-on-my-hands.html"&gt;it&lt;/a&gt;.... &lt;p&gt;01. One book that changed your life&lt;br&gt;Changed my life? That's a tall order...&lt;a href="http://www.amazon.com/Mere-Christianity-C-S-Lewis/dp/0060652926/ref=pd_bbs_2?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714113&amp;amp;sr=8-2"&gt;Mere Christianity&lt;/a&gt; &lt;p&gt;&lt;br&gt;02. One book that you’ve read more than once&lt;br&gt;There are too many, but I'll go with this: &lt;a href="http://www.amazon.com/Lord-Rings-Vol-Set/dp/0618346244/ref=sr_1_6?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714151&amp;amp;sr=1-6"&gt;Lord of the Rings&lt;/a&gt; (all 3...several times)&lt;/p&gt; &lt;p&gt;03. One book you’d want on a desert island&lt;br&gt;My bible...(and maybe this &lt;a href="http://www.amazon.com/Building-Small-Boats-Greg-Rossel/dp/0937822507/ref=sr_1_2?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714244&amp;amp;sr=1-2"&gt;one&lt;/a&gt;.)&lt;/p&gt; &lt;p&gt;04. Two books that made you laugh&lt;br&gt;&lt;a href="http://www.amazon.com/Searching-Knows-What-Donald-Miller/dp/0785263713/ref=pd_bbs_sr_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714314&amp;amp;sr=1-1"&gt;Searching for God Knows What&lt;/a&gt; &amp;amp; &lt;a href="http://www.amazon.com/Blue-Like-Jazz-Nonreligious-Spirituality/dp/0785263705/ref=pd_bxgy_b_img_b"&gt;Blue Like Jazz&lt;/a&gt;&lt;/p&gt; &lt;p&gt;05. One book that made you cry&lt;br&gt;&lt;a href="http://www.amazon.com/Lifestories-Finding-Voice-Through-Everyday/dp/1558970029/ref=pd_bbs_sr_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714415&amp;amp;sr=1-1"&gt;Lifestories&lt;/a&gt;&lt;/p&gt; &lt;p&gt;06. One book that you wish had been written&lt;br&gt;&lt;a href="http://www.amazon.com/Pursuit-God-Study-Guide/dp/0875097731/ref=pd_bbs_sr_3?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714465&amp;amp;sr=1-3"&gt;The Pursuit of God&lt;/a&gt;&lt;/p&gt; &lt;p&gt;07. One book that you wish had never been written&lt;br&gt;I honestly can't think of one.&lt;/p&gt; &lt;p&gt;08. Two books you’re currently reading&lt;br&gt;&lt;a href="http://www.amazon.com/Cost-Discipleship-Dietrich-Bonhoeffer/dp/0684815001/ref=pd_bbs_2?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714531&amp;amp;sr=1-2"&gt;The Cost of Discipleship&lt;/a&gt; &amp;amp; &lt;a href="http://www.amazon.com/That-Hideous-Strength-Space-Trilogy/dp/0743234928/ref=pd_bbs_2?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714556&amp;amp;sr=1-2"&gt;That Hideous Strength&lt;/a&gt;&lt;/p&gt; &lt;p&gt;09. One book you’ve been meaning to read&lt;br&gt;Only one? &lt;a href="http://www.amazon.com/How-Now-Shall-We-Live/dp/084235588X/ref=pd_bbs_sr_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1199714768&amp;amp;sr=1-1"&gt;How Now Shall We Live&lt;/a&gt;&lt;/p&gt; &lt;p&gt;10. Now tag 3 people:&lt;br&gt;I'll go with what Margie said...I'm not sure who (if anyone) reads this, so, if you do, consider yourself tagged. Leave a comment with a link to your book list post...&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022287557" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/112.aspx">Inside the DogHouse</category></item><item><title>If you're not laughing when you're done reading,</title><link>http://blogs.geekdojo.net/mitchell/archive/2008/01/04/2022286923.aspx</link><pubDate>Fri, 04 Jan 2008 19:28:55 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022286923</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;then you're not a programmer with relatives... (from the &lt;a href="http://thedailywtf.com/"&gt;Daily WTF&lt;/a&gt;):&lt;/p&gt; &lt;p&gt;&lt;a title="Best of the Sidebar- Could You Explain Programming Please" href="http://thedailywtf.com/Articles/Could-You-Explain-Programming-Please.aspx"&gt;Best of the Sidebar- Could You Explain Programming Please&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022286923" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1028.aspx">General Development</category></item><item><title>Quotes - John Adams</title><link>http://blogs.geekdojo.net/mitchell/archive/2008/01/04/2022286887.aspx</link><pubDate>Fri, 04 Jan 2008 15:22:32 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022286887</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;"It should be your care, therefore, and mine, to elevate the&lt;br&gt;minds of our children and exalt their courage; to accelerate and&lt;br&gt;animate their industry and activity; to excite in them an habitual&lt;br&gt;contempt of meanness, abhorrence of injustice and inhumanity, and&lt;br&gt;an ambition to excel in every capacity, faculty, and virtue. If&lt;br&gt;we suffer their minds to grovel and creep in infancy, they will&lt;br&gt;grovel all their lives."  &lt;p&gt;-- John Adams (Dissertation on the Canon and Feudal Law, 1756) &lt;p&gt;&amp;nbsp; &lt;p&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href="http://www.biblegateway.com/passage/?book_id=24&amp;amp;chapter=22&amp;amp;verse=6&amp;amp;version=31&amp;amp;context=verse"&gt;Proverbs 22:6&lt;/a&gt; Train a child in the way he should go, &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and when he is old he will not turn from it.&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022286887" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1007.aspx">Quotes</category></item><item><title>The Dark Knight trailer</title><link>http://blogs.geekdojo.net/mitchell/archive/2007/12/21/2022283952.aspx</link><pubDate>Fri, 21 Dec 2007 14:24:53 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022283952</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Once again, Batman as he &lt;a href="http://atasteforthetheatrical.com/deathtrap/default.htm"&gt;ought to be&lt;/a&gt;...&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022283952" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/112.aspx">Inside the DogHouse</category></item><item><title>VS2008 Hands-on Lab Nuggets</title><link>http://blogs.geekdojo.net/mitchell/archive/2007/12/07/2022275682.aspx</link><pubDate>Fri, 07 Dec 2007 21:03:37 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022275682</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;A - Got a chance to play with HALO 3 in the lobby. Wow. Makes me want to get a box.&lt;/p&gt; &lt;p&gt;1 - WCF is the communication platform for Microsoft for the next 10 years at least (right out of the Microsoft mouth)&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;That means that Remoting, ASMX, etc. are all legacy technologies...&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;2 - 2.0, 3.0, and 3.5 runtimes are all the same. They just provide new features in the later versions.&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;VS2008 will allow you to target specific runtime "versions."&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;3 - Windows Service hosting for WCF is the most performant - "as close to the metal as we can get"&lt;/p&gt; &lt;p&gt;4 - API First feel for WCF as opposed to Contract First&lt;/p&gt; &lt;p&gt;5 - Labs that don't work right, suck eggs.&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022275682" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1028.aspx">General Development</category></item><item><title>Being FAT can make life difficult</title><link>http://blogs.geekdojo.net/mitchell/archive/2007/12/07/2022275681.aspx</link><pubDate>Fri, 07 Dec 2007 21:03:14 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022275681</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;So, I screwed up. I brought my external HDD to a VS2008 Hands-on Lab thinking it would be helpful...and it was! &lt;/p&gt; &lt;p&gt;The Lab was overbooked, and there weren't enough Microsoft supplied HDDs to go around. So, in my infinite wisdom, I said, that's ok, let's just copy everything over to my external HDD, and the other guy can have the MS supplied one. 30 minutes later, the copy fails. The virtual image won't transfer because, apparently, it can't fit it's measly 14Gb into the 210Gb of free space on my HDD. Well, it turns out that I was a little too excited when I got my external HDD, and I started using it without checking the format. Sure enough, the external HDD is formatted as FAT32 rather than NTFS. Who knew?&lt;/p&gt; &lt;p&gt;Luckily, the guy running the Lab, Jeff Brand, figured it out almost immediately. More importantly, he was kind enough to transfer all the files off the external HDD, format it as NTFS for me, and copy everything back on. Thanks, Microsoft, for keeping from being FAT.&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022275681" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/112.aspx">Inside the DogHouse</category></item><item><title>MSCONFIG on Steroids</title><link>http://blogs.geekdojo.net/mitchell/archive/2007/11/30/2022274088.aspx</link><pubDate>Fri, 30 Nov 2007 13:58:39 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022274088</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Just ran across this little gem: &lt;a href="http://www.microsoft.com/technet/sysinternals/utilities/Autoruns.mspx"&gt;Autoruns&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022274088" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/112.aspx">Inside the DogHouse</category><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1008.aspx">Stupid Dog Tricks</category><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1028.aspx">General Development</category></item><item><title>Quotes - Johnny Cash</title><link>http://blogs.geekdojo.net/mitchell/archive/2007/11/28/2022273065.aspx</link><pubDate>Wed, 28 Nov 2007 14:07:37 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022273065</guid><dc:creator>mitchell</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;"I love the freedoms we got in this country. I appreciate your freedom to burn your flag if you want to, but I really appreciate my right to bear arms so I can shoot ya if you try to burn mine." - Johnny Cash&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022273065" width="1" height="1"&gt;</description><category domain="http://blogs.geekdojo.net/mitchell/archive/category/1007.aspx">Quotes</category></item><item><title>My Black Friday Finds</title><link>http://blogs.geekdojo.net/harterjj/archive/2007/11/25/2022270451.aspx</link><pubDate>Mon, 26 Nov 2007 01:35:17 GMT</pubDate><guid isPermaLink="false">8c778905-0e18-4c86-9fd6-6e26bc083633:2022270451</guid><dc:creator>harterjj</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I've been looking high and low for this &lt;a href="http://www.fisher-price.com/fp.aspx?st=8692&amp;amp;e=product&amp;amp;pid=41411"&gt;toy&lt;/a&gt; for my niece the last several weeks.&amp;nbsp; It turns out that I've was looking in places that definitely weren't going to have it.&amp;nbsp; Fischer Price finally confirmed on their web site that the "Little Einstein pat pat Rocket" is only available at Target stores so that eliminated the need to search Toy R Us or Wal Mart anymore.&lt;/p&gt; &lt;p&gt;Though I hate to admit it, I did participate in the Black Friday hoopla.&amp;nbsp; I started out at the new local Target where I came up empty handed for the "pat pat Rocket".&amp;nbsp; I decided to continue my quest for this item at other another Target location.&amp;nbsp; While at the second location I found a helpful sales assistant who was kind enough to check their inventory for the item.&amp;nbsp; She told me "it looks like they might have one in the back",&amp;nbsp; ten minutes later she comes out with two of them.&amp;nbsp;&amp;nbsp; Success!, rolling out of bed early Friday morning had paid off.&amp;nbsp; &lt;/p&gt; &lt;p&gt;Later in the day I got online and picked up and &lt;a href="http://www.amazon.com/Toshiba-HD-A3-720p-1080i-Player/dp/B000U62N1S"&gt;Toshiba HD-A3 HD DVD player&lt;/a&gt; for my parents.&amp;nbsp; It plays HD DVDs and up converts regular DVD as well.&lt;/p&gt; &lt;p&gt;On Saturday I found myself a &lt;a href="http://www.walmart.com/catalog/product.do?product_id=7958481"&gt;80GB Zune&lt;/a&gt; at the local Wal Mart.&amp;nbsp; This was really unexpected since they are in very short supply right now.&amp;nbsp; The Zune 80 is very similar to my current first generation Zune 30 (with the 2.0 firmware upgrade).&amp;nbsp; There are a couple of differences though, first the form factor is about half the size of the Zune 30. secondly the screen on the Zune 80 is bigger, and lastly&amp;nbsp; the Zune 80 has 80gb of storage.&amp;nbsp; Currently my Zune 30 is full so I had no room for movies or pictures.&amp;nbsp; The new Zune 80 gives me plenty of "head room" even with my pictures and movies loaded on the device.&lt;/p&gt;&lt;img src="http://blogs.geekdojo.net/aggbug.aspx?PostID=2022270451" width="1" height="1"&gt;</description></item></channel></rss>