The do's, do not's & maybe's of Computers.
RSS icon Email icon Home icon
  • CheatSheets that I use

    Posted on November 8th, 2009 david No comments

    So when I’m programming or doing anything of that sort, I tend to have a cheat sheet for the tool or piece of software that I’m using at any given time, be it for an IDE like Netbeans or Textmate, or just a command-line tool like Git or SVN. It really can make life much simpler when you just have the commands or shortcuts at hand.

    Read the rest of this entry »

  • Recursivly delete .svn from your directories

    Posted on July 28th, 2009 david No comments

    A pretty simple tip that can save you a lot of time if you use revision control systems.This command can be used to remove the .svn folder that is used and placed within every folder to control your versioned files.

    rm -rf `find . -type d -name .svn`

    Simply run this command on the command line in the top level of the directory you want to remove the folders from. This will go down through all the folders in the directory and delete all the .svn folders.

    Note: This will only work on Unix based systems or with Cygwin :)

  • Installing TinyOS on Ubuntu 8.10

    Posted on March 13th, 2009 david 2 comments

    So installing TinyOS can be a bit of a pain sometimes. There are a number of options available but the easiest have to be the vmware image and the Debian repository install.
    Personally I prefer installing via the Debian Repository provided by Stanford University.

    This is my platform:
    Mac OS X 10
    VirtualBox 2.06
    Ubuntu Hardy 8.10
    TinyOS 2.1

    The motes that I am using are the Micaz

    I chose to install the TinyOS SDK on Ubunutu Hardy in a virtual machine on my Mac. ( I use VirtualBox for the virtual machine stuff)
    The guide that is on the tinyos.net website is correct for the most part but is missing some steps. Below are the steps I preformed to install the TinyOS Platform.
    The installation for TinyOS was preformed on a new install of Ubuntu using the default settings.

    Read the rest of this entry »

Disclaimer: All information published on this website is for knowledge purposes only. This website and the author's of it's content cannot be held responsible for any loss/damage to a user's computer (either software or hardware), which may have occurred as a result of the information posted above. All information published on this website is the expressed opinion of it's authors. This information is provided as is with no acknowledgement of responsibility, liability or guilt for any damage resulting from it's use.
©2009 Strotos Communications