Wednesday, March 19, 2008

Some Handy Git Commands

# Grab some GIT stuff
git clone <git_reference>

# Possible GIT workflow. One person team. Master branch.
git pull <git_reference>
git add <filesystem object>
git commit -m 'Comment here' <filesystem object>
git push <git_reference>

# See what is different
git diff

Monday, March 17, 2008

Some Handy CVS Commands

# Checkout a Module
cvs co <module>

# Checkout a Module from a given branch, MY_BRANCH_TAG
cvs co -rMY_BRANCH_TAG <module>

# Display log associated with a file
cvs log <file>

# Update the Module with any new code committed
cvs update <module>

# Add a new binary file
cvs add -kb <binary_file>
cvs commit

# Review list of files that have been modified in your diretory
cvs -qn up

Monday, March 03, 2008

Mini Fake Python DNS Server


Google: "pyminifakeDNS"
Code here

A Windows TFTP / DHCP Server


TFTPD32 (Philippe Jounin (philippe@jounin.net))

Some Excellent Dot Net Tools


.NET Reflector (Lutz Roeder)
SharpDevelop (IDE)