dev-sys (48 posts)

View other categories:

Using rsyc to mirror a subversion repository

Posted on September 14, 2005

At work we use subversion to manage our code, we also use Trac to manage bugs which has handy hooks into subversion. Unfortunately they are on different (internal) servers. This is quick What I DidTM

Windows 2003 Mobile edition and Orange GPRS via Bluetooth

Posted on October 7, 2005

I have a Dell Axim x30 and a Motorola v3 and I want to connect to the int3rweb using the PDA via the phone sometimes. I was missing the modem string, so it didn't work. Anway, mostly for my own future

Firefox on my PDA

Posted on October 10, 2005

I've a Dell Axim x30i and occaisionlly I use it to look at things on the int3rweb. Windows 2003 Mobile Edition comes with IE (suprise suprise) but I'd rather use something else. Minimo, sounds like

Creating a subversion repository

Posted on April 7, 2006

I wanted to add my Zend Framework example code to subversion but to do that I needed a local Subversion repository :) As I had to figure out some of the bits how to this, I decided to put all of my

debian start-up script tip

Posted on April 16, 2006

If you've just installed something and want to make sure it starts on boot then the init.d script needs adding to the various run level folders as a symlink. It's a bit of a drag and it can be

Clone a VMWare virtual machine

Posted on April 18, 2006

Simple one, you have a windows virtual machine and you want to copy it: Copy the folder the VM is in (assuming you use a folder per virtual machine) and rename it to the new host name Click on the

Global search and replace using Vi

Posted on April 28, 2006

to replace all instances of - say - 127.0.0.1 with 10.0.0.1 in a file then using vi you can do: :%s/127.0.0.1/10.0.0.1/g if you mess it up then press u for undo. Of course if it's an important file

ssh logins without a password

Posted on April 28, 2006

Share ssh keys: client: cd ssh-keygen -t rsa the copy ~/.ssh/id_rsa.pub over to server server: mkdir .ssh cat id_rsa.pub >> .ssh/authorized_keys Job done

BASH for loop

Posted on June 22, 2006

#!/bin/sh for FOO in a b c d e f; do echo $FOO done Outputs a b c d e f

← Previous Page 2 of 5 Next →