Archive for the 'English' category

The US have been revoced

August 4, 2005 0:00

I’ts been a long time since I laughed so hard. Have a look at the Declaration of Revocation by John Cleese. Really makes you think.. Maybe we should revoce Norway, there always so smug everytime they beat us in skiing. And they keep reminding us about the oil. Everytime.. Maybe a couple of decades of backtaxes will wipe the smile away. *The destroyer of worlds needs to file down the horns again, low profile, looow profile..*

New export script Nanoblogger

July 31, 2005 0:00

I have a new script to export my blogg to my webserver, based on a script on Pesche Schlau’s homepage.

I modified it a little, here is mine:
#!/bin/sh
# publish a nanoblogger blog
PUB_HOST="ftp.to.my.site"
PUB_LOGIN="login,password"
PUB_PATH="path/on/server"
cd $BLOG_DIR
# Include all except cache/ data/ parts/ blog.conf export.sh
PUB_PATTERN="-I * -X cache/ -X data/ -X parts/ -x blog.conf -x export.sh"
lftp -c "open -u $PUB_LOGIN $PUB_HOST; mirror -v -R $PUB_PATTERN . $PUB_PATH"

[Note: Changed from nanoblogger so this is only a referense]