Category: Uncategorized

  • Installing Node.js and CoffeeScript

    This tutorial is intended to provide a simple walk through on installing [[http://nodejs.org/|Node.js]] and [[http://coffeescript.org/|CoffeeScript]]. ==Pre-reqs== * Install `Git` {{{ lang=bash # RHEL/CentOS sudo yum install git # Debian/Ubuntu sudo apt-get install git }}} ==Node.js== * Clone the node.js git repo {{{ lang=bash git clone https://github.com/joyent/node.git }}} * Compile and install {{{ lang=bash cd node…

  • Couldn’t get lock on destination repos – SVNSync

    To fix this issue, remove the lock property on the remote repository via svn command line. The lock property is typically left after an incomplete synchronization, and can be removed with the below command: {{{ svn propdel –revprop -r0 svn:sync-lock file:///path/to/repository/mirror }}}