Andrej Koelewijn

10/13/2003

We all like to read about Larry…

Filed under: — andrejk @ 11:32 pm

Mark Rittman has listed some books about Larry Ellison and Oracle. He forgot my favorite. Actually, it’s the only book i’ve ever read which is about Larry Ellison. Actually, it’s not about Larry, but he is part of the story: The Proving Ground: The Inside Story of the 1998 Sydney to Hobart Race. It’s a nice read, but it won’t tell you anything about databases :-( Now can anyone recommend me a thriller which includes steve jobs or bill gates?

Rsync

Filed under: — andrejk @ 5:01 pm


We use pvcs here for version control. Problem is that pvcs is only available on a unix server, and i do most of my development using toad on my windows laptop. It’s easy to synchronize two directories, one on my laptop, and one in my home directory on unix with rsync. Rsync is part of cygwin


rsync -auv --rsh="ssh -l <username>" --exclude "*.swp"
--exclude "*.log" --exclude "*~"
<unix_server>:<home_directory>/<project_folder> .


rsync -auv --rsh="ssh -l <username>" --exclude "*.swp"
--exclude "*.log" --exclude "*~"
. <unix_server>:<home_directory>/<project_folder>


This works ok, except for one small problem. When a file doesn’t change, size doesn’t change, and the timestamp doesn’t change, but the file mode access permission do change, these are not synchronized. This happends when i a file out of pvcs to lock it, the file permission change so that it is writable. After using rsync, the file will still be unwritable on my laptop.

Powered by WordPress