Wednesday, April 25, 2012

Tech Review Software Development: Tuesday, April 24, 2012


SVN Simple Merge

  • Able to figure it out from this, but was not what I wanted.
Here is what I would have like to have found.

Steps to doing a simple merge from the command line.
  • Make sure that both the SVN source being merge from and the source being merged to are up-to-date
    • Do the following commands in both the from and the to folders.
      • > svn status -u
        • Should come back that everything is current
      • > svn update
        • Nothing should update
    • The from folder doesn't need to be on the present machine if you know its URL and that it is up-to-date.
  • In the to folder perform the merge command.
    • This is different from a checkout command which should be done in the folder above what is being created.
    • Get the URL in the from directory by doing the following command.
      • > svn info
        • You want the URL after "URL : "
    • Using the above URL perform the following command in the to folder.
      • svn merge <URL of the from>




Monday, April 23, 2012

Tech Review Software Development: Friday, April 20, 2012

Installing gacutil exe
  • You really need to install the Windows SDK

Microsoft Windows SDK for Windows 7 and .NET Framework 4

  • download and install
  • takes about 15 minutes





Friday, April 13, 2012

Tech Review Software Development: Thursday, April 12, 2012

Learning XML

Best XML Books

  • Nice list of books.
  • Also has a link for online tutorials and classes

XML Articles by Darla Ferrara

  • This has a ton of good looking articles for learning XML.





Thursday, April 12, 2012

Tech Review Software Development: Wednesday, April 11, 2012

How to resolve conflict with binary files?

  • to get the incoming version
    • svn resolve [filename]
  • to keep the base version
    • svn revert [filename]

How to use the HashSet and SortedSet Collection Classes in C# 4.0

  • HashSet<T> example = new HashSet<T>;
how do I call a parent class in C#
  • base.Routine()








Tech Review General: Wednesday, April 11, 2012

  • predicted death of Osama bin Laden 4 hours before President announced.
  • scans Twitter universe for connecting threads and pieces them together to form a predictive picture.



Monday, April 9, 2012

Wednesday, April 4, 2012

Tech Review: Wednesday, April 4, 2012


SVN Update Current Status Indicators

  • A = A file was added to your working copy.
  • U = A file was updated to your working copy.
  • D = A file was deleted from your working copy.
  • R = A file was replaced in your working copy.
  • G = A file was successfully merged.
  • C = A file has merge conflicts that must be resolved by hand



Powerfully lead by Spirit.


Monday, April 2, 2012

Tech Review: Friday, March 30, 2012


The 'broken patent system': how we got here and how to fix it


  • Good article
  • fails to discuss some of the real problems with current software patents:
    • overlap
    • constantly changing
      • we are not going to be closing the patent office anytime soon



Uniform resource identifier


  • a string of characters used to identify a name or a resource
  • URL - Uniform Resource Locator
  • URN - Uniform Resource Name


Google Augmented Reality Glasses Expected by Year's End

Google Augmented Reality Glasses Expected by Year's End



  • augmented reality 

Google Glasses Are a Prescription for Disaster

  • bobblehead googleites 

Google to Sell Heads-Up Display Glasses by Year's End

  • $250 - $600


Basic Merging



Using 'find' with Ignore Case
  • find . -iname "util"