About Me

Name: Paul Brunt
Age: Not 30 Yet!
Occupation: Web Developer
Education: Physics BSc
Interests: Programing, CG,
Animation, Maths,
Tech Stuff

SVG Flip

I decided to see what SVG was capable of so I set about creating a page turning document.

Read More..

  • SVG Flip
  • Berts Breakdown
  • New Website!
  • Blender Game Test

Archive for the ‘Programing’ Category

Head Tracking in Blender with OpenCV

This is a quick experiment using OpenCV in blender, The position of the viewers head is calculated and then the cameras projection matrix is set according. …Read More

SSH Key Exchange (SSH no password)

I’m not sure if it was just me being a bit dense or the fact that tutorials on the subject where really confusing, but I’d always struggled to get this working. So, I thought that now I’ve cracked it I’ll do my own little tutorial for others out there that may still be a little bit stuck. …Read More

Essential AJAX Functions

Okay here are a couple of really usefull javascript functions when it come to ajax. Though having recently decoverd jquery I may use a little less now: …Read More

MySQL Hints and Tips

MySQL linking a table to itself.
To link a table to itself you simply have to use alias names on the tables, ie:
select * from table as a left join table as b on a.field=b.otherfield;
et viola you have a table linking to itself. …Read More