26 May 2009

Internet Explorer tester software

For all you web developers out there, a friend recommended some software which allows you to test your web pages in several flavours of Internet Explorer.

It's called IETester, and is free to use. Click here to visit the website.

12 April 2009

Microsoft Internet Explorer 7 and Favourite icon

If you're looking to add a favourite icon beside the domain name in your browsers address bar, then this works for Microsoft Internet Explorer 7 and Firefox:

Simply add it between the HEADER tags in your web pages (between the < and > characters)

link rel="Shortcut Icon" href="images/favicon.ico"

Note:
For some reason the ico file must go into the 'images' folder for it to work; anywhere else and IE doesn't show it.

9 March 2009

Photoshop tutorials for digital photography

Here's a great selection of tutorials for any digital photographer - everything from how to change the colour of hair to adding eye make-up, great stuff so be sure to check some of these out.

Click here to go to the tutorials

19 February 2009

13 February 2009

Canon EOS 5D Mark II .MOV files and VLC Media Player

If you use VLC Media Player to view HD videos recorded with the Canon EOS 5D Mark II and the playback is jerky, then this may fix your problem (works for me and many others judging by feedback in various forums):

Quote:

H.264/MPEG-4 AVC playback is too slow


You can speed up the H.264/MPEG-4 AVC playback by disabling loop filter for H.264 decoding. To do this go to Tools -> Preferences... (set Show Settings to All) and Input / Codecs -> Other codecs -> FFmpeg and in the drop-down box for Skip the loop filter for H.264 decoding change it to All. Remember to press Save to save VLC settings and restart VLC after that to make sure changes are enabled.

26 January 2009

Cool CGI Artist

Just a quickie, stumbled across Dan Platt's website today - awesome Maya work. He's worked on movies, including i-Robot.

http://www.danplatt.com

Plogger - PHP gallery system

Quote taken from the website:
"Plogger is the next generation in open-source photo gallery systems. A web application not bloated with superfluous features or complicated configuration settings. Plogger is a simple yet powerful tool — everything you need to share your images with the world. Plogger is your photos integrated into your website, a fully featured photo sharing package with an attractive and easy to use administrative interface that makes managing your galleries a breeze. Integrating our gallery software into your website is as easy as inserting three lines of PHP code. And did we mention the price? Absolutely Free. Plogger requires a server setup with at least MySQL v3.23, GD1.0, and PHP4."

Visit their website to download Plogger and learn more:
http://www.plogger.org/

18 January 2009

3D architectural scenes to learn from

If you're an avid 3D Studio Max user, along with V-Ray, you may find this learning material useful. This product provides you with 10 ready to render architectural scenes which, judging by the images on the website, look brilliant. It's called Archinteriors Vol. 1 and it comes from Evermotion. At the time of writing it costs 120 Euro plus shipping.

Click here to visit the website and learn more.

16 January 2009

CSS Menu Generator

A handy online CSS menu generator with loads of samples and code for you to play with.

Click here to visit CSS Menu Maker

14 January 2009

Samantha Buxton - Glamour model


Based in the UK, Samantha Buxton is a gorgeous glamour model. Whilst going through some photography websites I stumbled across her profile. Would love to work with her one day...

Visit her website here

Cool iPhone wallpapers

I stumbled across these wondeful wallpapers for the iPhone, enjoy:

View wallpapers

9 January 2009

Adobe Flash email links

When invoking an email link from within Flash (using the getURLmailto:email@somewhere.com) you may find that Internet Explorer opens a new blank window. This doesn't happen in Firefox. To resolve this issue simply remove the target parameter, see below.

ActionScript code before:
on(release){
getURL("mailto:springheadpark@cpplc.com","_blank");
}

ActionScript code after:
on(release){
getURL("mailto:springheadpark@cpplc.com");
}