latest tweet...

dragged in by the cat...

Sunday, 27 February 2005
filed at around evening time by dr_who in: life
technorati tags:
QR code for this entry · average time to read 0:33 minutes

intrigued by an image in an intermediate guide to digital photography by john clements demonstrating how to turn a photo into an “ink drawing” using various photoshop filters, i set out to accomplish the same with gimp…i took one of the althagen harbour pictures and started out:

  • first, created a layer copy
  • applied some liberal gaussian blurring on the layer copy
  • then, pumped it through edge detection (using gaussian blurring)
  • followed this with a threshold operation to reduce the result of the previous operation to a black & white line art layer
  • next, i created another layer copy
  • cut out all the white areas by using the selection by color operation
  • applied another blurring to that layer
  • finally, changed the opacity of the first line art layer to about 60-70%

see for yourself, i quite like the effect :-)

filed mid-afternoon by dr_who in: life
technorati tags:
QR code for this entry · average time to read 0:25 minutes

having done a bit of de-cluttering on my website, i wanted to redirect queries to a whole set of pages to a single page…no, problem it seemed: use something like apache’s Redirect directives, put it into an .htaccess file and be done with it…well, nooot quite…the first attempt:

 RedirectMatch permanent ^/3g-cannes.* /photos/2004-02%20cannes/pixs.html 

did not work: the %20 got translated into a a %2520 somehow…apache 1.3 getting muddled?

after a bit of fiddling around, the following solution finally did the job:

 RedirectMatch permanent ^/3g-cannes.* "/photos/2004-02 cannes/pixs.html" 

and http://d2h.net/3g-cannes/index.html gets redirected as intended. :-)