frase.id.au archives

January 2009

May 2008

March 2008

January 2008

November 2007

September 2007

August 2007

May 2007

September 2006

June 2006

May 2006

April 2006

March 2006

February 2006

January 2006

December 2005

November 2005

October 2005

September 2005

August 2005

July 2005

June 2005

May 2005

April 2005

March 2005

February 2005

January 2005

December 2004


frase.id.au archives for May 2007:



Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Australia/ACT' for 'EST/10.0/no DST' instead in /store/1/www/frase.id.au/archives/content.php on line 35

11-05-2007 - removing unversioned files from svn (frase)



Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Australia/ACT' for 'EST/10.0/no DST' instead in /store/1/www/frase.id.au/common/functions.php on line 76

Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Australia/ACT' for 'EST/10.0/no DST' instead in /store/1/www/frase.id.au/common/functions.php on line 77

Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Australia/ACT' for 'EST/10.0/no DST' instead in /store/1/www/frase.id.au/common/functions.php on line 78

Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Australia/ACT' for 'EST/10.0/no DST' instead in /store/1/www/frase.id.au/common/functions.php on line 78

Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Australia/ACT' for 'EST/10.0/no DST' instead in /store/1/www/frase.id.au/common/functions.php on line 80

Friday 11-05-2007

removing unversioned files from svn

comments (0) »

Posted by frase @ 15:55 on 11-05-2007

hi guys, this is my first blog post in forever!

just thought I'd chuck a juicy little tidbit here: a simple script to remove unversioned files from an svn tree (just make sure you add the file before running it, otherwise you'll have to recreate it!).

#!/bin/sh

svn status | grep "^?" | awk '{print $2}' | xargs rm -rf


And that's it!

Until next time,

t