They are predicting that it might freeze hard for another week at least, so who knows we might even get to see an 'Elfstedentocht' this year (their 100 year jubilee is 15 Jan 2009).
.jpg)
Thoughts on cloud, observability, appdev, architecture, and open source software, but not always in that order...
# # For Windows: %USERPROFILE%\Application Data\Subversion\servers # # # For Linux or osX: ~/.subversion/servers # [global] http-proxy-host = <proxy.server.name> http-proxy-port = <some_port_number> http-proxy-username = <your_user_name> http-proxy-password = <your_password>
## # Cleans up this packages source build directory. # # RETURNS: boolean - True if the completes successfully, # otherwise false. ## def remove_build puts "Removings build..." if ($REMOVE_BUILD_SOURCES) buildSourcesLocation = "#{$BUILD_LOCATION}/#{srcDir}" if (!File.directory?(buildSourcesLocation)) return true end if (!FileUtils.rm_rf buildSourcesLocation, :verbose => true ) return false end end return true end