-
I’m calling it “tonal selections,” since it’s based on a curve’s ability to discriminate between lighter and darker tones.
Archive for March 2008
- @Plip 140 characters isn’t enough space to express just how wrong that would be. #
- O2 online billing system SSL certificate expiry FAIL! #
- @johnniemoore Which end of Kings Cross is the loose one? #
- @Plip Where you going to be? I’m in Waterloo until lunchtime – you central? #
- Being followed by someone with no updates, and I’m his only followee. Should I be worried? #
- @colinschlueter: take your pick from the list of projects on my desk
# - Crashing. #
Powered by Twitter Tools.
- About to go to the BCS, where someone is going to tell me how to run projects. Apparently. #
- At a "change management" seminar at the BCS. As exciting as it sounds- am the only non-suit in the room, and definitely have the only iPhone #
- Irony of the day – the British Computer Society offices don’t have wifi. #
- @nrturner Judging by my fellow audience members, I’d go for 25 years behind. No wonder the "profession" has an image problem. #
- Really not sure about the wisdom of using public-private partnerships as good examples of successful projects… #
- Can safely predict I’m the only person twittering *this* presentation. SXSW, this ain’t… #
- @jkerrstevens Unless you count copies of the latest BCS magazine, sadly not. Not sure this audience *ever* wear tshirts somehow. #
- The back channel here is less Twitter, more supressed tutting #
- @Plip SXSW? I wish! Tho following the Twitter feeds is the next best thing to being there… #
- @jkerrstevens Seriously suits. Most with ties. I’m beginning to question the value of my subscription… #
- God, I spend 30 mins offline on the train and the Twittersphere explodes. It’s getting to be a fulltime job keeping up with this lot #
- @robertbrook Damn, must have disappeared underground seconds before your tweet. Roll on 3G in the tunnels, I say #
Powered by Twitter Tools.
- @Suw @dominiccampbell: Is this the eye of the hurricane passing over? #
- @dominiccampbell @robertbrook This is "if voting changed anything they’d abolish it" updated for the online age #
- Considering getting a paramilitary time-and-motion consultancy to do a drive-by on the local coffee shop. Could they BE more inefficient? #
- @tomtaylor Don’t forget the additional problem causes – PETCAK – Problem Exists ‘Twixt Chair And Keyboard… #
- @Suw if you have to ask, you clearly aren’t part of the Circle
# - /refers @Suw to the Grouch Marx quote about not wanting to join a club that would have someone like him as a member
# - Cursing the Lexmark C522, officially the shittest printer in the known Universe #
- Oh Twitter hive mind – where shall we eat tonight? Somewhere near Westminster with decent veggie options and no need to book… #
Powered by Twitter Tools.
-
“I am beginning to think that Internet social networking is another CB radio, destined to crash and burn.”
- The coffee’s on. #
- @urbanwide Learn the words for "ouch" in the native language of the country you’re snowboarding in #
Powered by Twitter Tools.
-
How to set up Subversion from scratch on a Debian box
- Explaining fundamental database concepts in very short words and phrases to a client’s "data analysis specialists" #
- Resisting the temptation to scream "you can’t DO that in Excel" #
- About to start building database exports. But first, coffee… #
- Shouting at the cretin that passes for Home Secretary being cretinously stupid about ID cards as she lies through her teeth about security #
- @andrewdisley: no problem with ZiPhone and a 1.1.3 off the shelf from Apple #
- @russelldavies: Interesting2008? #
- Date for diaries – @Russelldavies is doing Interesting again http://tinyurl.com/2vdgbe Be there, or be… well, not very Interesting… #
- @tomtaylor: the only appropriate response to that Tweet seems to be "lol! wtf?" #
- @tomtaylor I thought for a moment that you were bailing her out, after she’d gone postal with a marker pen over a badly-placed apostrophe #
- Lady Thatcher taken into hospital, according to the BBC. Here’s hoping for the best of all possible outcomes… #
Powered by Twitter Tools.
I’ve finally got around to figuring out how to install and configure a Subversion repository on one of my Debian boxes – these notes are more for my benefit than anything else, but through the power of Google they may come in handy for someone else.
Installing Subversion with HTTPS support from scratch:
Installing Subversion on Debian Etch Complete
Creating the initial repository
svnadmin create –fs-type fsfs /var/svn/myproject
Doing the initial import
svn import -m “New import” myproj https://mydomain.com/myproj
This lifts the contents of the myproj directory and imports it into the repository
Working around HTTPS certificate problems in a Subversion client
If you’re using a GUI client to access a svn repository through an https connection, this can cause the client to barf – if it’s an invalid certificate, you may not get the option to trust it.
The workaround (on OS X, at least) is to cache the certificate from the command line so that the gui client will then accept it.
If you fire off
svn list https://host.example.com/repos/project
at the command line, you’ll get the option to reject or accept the certificate. Permanently accept it, and this will be cached and used by the gui client next time you access the repository.
Technorati Tags: debian, linux, subversion
