Friday, 30 September 2005

A History Of Violence

On Tuesday this week I had dinner and watched the game with my brother and he told me he reads this blog, so this entry's for him (Hi Gareth!). We sat and talked about the things we usually talk about: Family; Football and Films. He mentioned A History of Violence which I'd seen previews of when I was in the US in July. Based on his recommendation and the reviews I'd seen today I went to see the film this evening and it is excellent.

It contains some graphic violence and sex. The characters are very realistic, Vigo Mortenson is superb and William Hurt has a great cameo. This is well worth seeing. Highly recommended!

Posted by kevin at 11:22 PM in Personal

Thursday, 22 September 2005

APE to MAN

Excellent discusion by Carl Zimmer on creationist misunderstanding of evolution. I loved the anaolgy to the puzzle,

Posted by kevin at 8:46 AM in Science

Sunday, 18 September 2005

Crash

Travelling back from LA I watched Crash on the little four inch sceen on the aircraft. I thought this was the one of the best films I've seen (although not everyone agrees looking at the comments on IMDB). It ceratinly made me question my attitudes and assumptions.

Highly recommended!

Posted by kevin at 5:29 PM in Personal

Thursday, 15 September 2005

Keyboard clicks enable spying

After reading this I think it's time to find a silent keyboard!

Posted by kevin at 7:21 PM in Technology

Atlas

Yesterday I attended the first in-depth Atlas talk at the PDC along with Brock Allan a colleague of mine. Almost as soon as the presentation started we realised that we needed to create a class on this stuff. Brock called Jason Diamond another DevelopMentor intstructor, and Jason has agreed to write the class (Jason is the creator of My Ajax.Net an Ajax workalike).

This is an un-official announcement of this class, expect to see the official announcement of DevelopMentor's web site some time in the next week or so.

Posted by kevin at 6:57 PM in Net

Sunday, 11 September 2005

Isn't Technology Wonderful

I'm attending the Microsoft PDC and this morning I was awake early because of jet lag. I was sat in my hotel room in Los Angeles, connected to the Internet through a broadband connection, VPN'd into my router at home (in Cheltenham UK), using SSH to connect to my Linux server and then using emacs to edit files on that server (trying to fix my blog setup issues), while talking to a friend in Australia using Microsoft Messenger!

I attended my first PDC in 1992, when none of this technology was common place. It just struck me how far we'd come in less than 15 years!

Wonderful!

Posted by kevin at 11:56 PM in Technology

Blojsom and Apache Virtual Server

I've finally got this to work the way I wanted to although there are still some things in the setup I need to fix. I want to document the setup I have here in case anybody else tries to do the same thing.

As Blojsom is a Java web app I needed a Java web server, and being very familiar with Tomcat I chose to use that server (currently 5.5.9). The machine that hosts this blog is running Apache and I can't remove Apache just to run Tomcat so I had to get them both working together

The simplest solution was to use mod_proxy and just for giggles I decided to go with the VirtualHost approach. I found this Document and used that as the basis for setting up my server. Initially my VirtualHost entry looke like this

NameVirtualHost *:80
<VirtualHost *:80>
  ServerName blogs.advantaje.com

  ProxyRequests Off

  <Proxy *>
    Order deny,allow
    Allow from all
  </Proxy>

  ProxyPass        /  http://localhost:8081/blojsom/
  ProxyPassReverse /  http://localhost:8081/blojsom/

  ErrorLog /etc/httpd/logs/blogs_error.log
  LogLevel warn
  CustomLog /etc/httpd/logs/blogs_access.log combined

</VirtualHost>
i.e. forwarding any call to http://blogs.advantaje.com to http://localhost:8081/blojsom/
However this failed when I tried to adminsiter the site. I kept getting asked to log-in whenever I tried to perform any administrative task, so I'd log in, try the task again and be asked to login,a nd go round and round that loop!

In the end I went with a different solution. I create another instance of Tomcat, made Blojsom the default (ROO) app, changed the ports in TC from the default values and changed the VirtualHost to look like

NameVirtualHost *:80
<VirtualHost *:80>
  ServerName blogs.advantaje.com

  ProxyRequests Off

  <Proxy *>
    Order deny,allow
    Allow from all
  </Proxy>

  ProxyPass        /  http://localhost:48081/
  ProxyPassReverse /  http://localhost:48081/

  ErrorLog /etc/httpd/logs/blogs_error.log
  LogLevel warn
  CustomLog /etc/httpd/logs/blogs_access.log combined

</VirtualHost>
Blojsom's happy and I'm happy!

Posted by kevin at 11:39 PM in General

Friday, 9 September 2005

New Blog

I've been meaning to do this for a while, move to a new blogging engine. This is Friday night and I'm off to the PDC at 6 o'clock tomorrow so I've just got this working I think!

It needs to be tested a lot more and the home page(s) needs to be fixed, but I'll get there.

Why move? Several reasons, the blog I currently have was originally written by Ted Neward and then re-written by me and there are several features missing such as categories. I was working on another re-write but simply don't have the time to do what I want so I figured it's time to move on. I've chosen blojsom as the blog engine. I wanted a Java engine and I liked blojsom having seen poor reports of JRoller. Hopefully here I'll blog more often but it will be on other things as well as Java.

Posted by kevin at 7:02 PM in General

« September »
SunMonTueWedThuFriSat
    123
45678910
11121314151617
18192021222324
252627282930