Apr 2013 29
  • Forearm Forklift Lifting and Moving Straps
  • Shoulder Dolly
  • Magnetic Tool Holder

Share
Apr 2013 26

SVN is a version control system often used by programmers to keep track of versions or changes of code. It makes it easy collaborate on code projects and keep a backup of every change you’ve made. Following are some common tasks you may need to perform.

Checking out trunk 

This copies files from your trunk folder in SVN to a folder on your local computer. The folder on your local computer is your “working copy” where  you make changes.

[..]

Share
Apr 2013 26

A documentary  about how big corporations like Apple can avoid paying taxes.

CAUTION: This documentary will most likely piss you off!

 

Share
Apr 2013 26

Interesting documentary. A must see! Is it better to invest in indexes instead of individual funds?

Watch The Retirement Gamble on PBS. See more from FRONTLINE.

 

And here’s a nice explanation of how much your managed investment fees can cost you.

http://www.pbs.org/wgbh/pages/frontline/business-economy-financial-crisis/retirement-gamble/how-retirement-fees-cost-you/

Share
Apr 2013 26

Creating a branch in SVN is like creating a copy of a folder. The command line command is


$ svn copy svn+ssh://host.example.com/repos/project/trunk \
svn+ssh://host.example.com/repos/project/branches/NAME_OF_BRANCH \
-m "Creating a branch of project"

but if you do it in SmartSVN, it’s shown below.

Just make sure you don’t create a folder in your branches folder and then copy the contents of your origin folder into your newly-created branch folder. That would result in a separate branch for each folder within your origin folder as opposed to one branch of your entire origin folder.

Share
Page 1 of 3912345102030...Last »