Featuring articles relating to photography, web design and development, computer games and gaming, computer hardware, cool gadgets, and more. Oh, and every once in a while, the odd snippet of humour.
3 October 2013
Great example of creative web design from French agency Viens-la
French design agency Viens-la have crafted a wonderfully interactive and vibrant website; this is a great example of how technologies such as jQuery and CSS can be used to introduce new and quirky ways in which to capticate audiences, and bring in new clients. A brilliant showpiece!
Visit the Viens-la website here
18 April 2013
This just might be the t-shirt for you
Whether you work in IT, develop or design websites, code the latest and greatest video games, or are a theoretical physicist, then this t-shirt just might be the thing you've been looking for.
Do you get pestered by your friends, family and colleagues for anything computer or internet related? And do you end up having to Google it for them? Well, save yourself the hassle and wear this t-shirt. "Google it" is available in all sizes, for boys and girls, in a myriad of colours and styles, even organic ones, so head over to Red Bubble to check it out:
Take me to the Google it t-shirt on Red Bubble
5 April 2013
Cool ecommerce websites for design inspiration
Looking for some design inspiration? Working on an ecommerce website? Then take a look at how these guys have delivered compelling, sometimes downright quirky, and quite brilliant ecommerce websites.
http://www.nevertellyourtailor.com/
http://satorisan.com
http://jethroandjackson.com.au/
http://www.shoebedoo.com.au/
http://www.katespade.com/
http://gb.burton.com/on/demandware.store/Sites-Burton_GB-Site/default
22 February 2013
How to truly crop a PDF file
The Crop tool in Adobe Acrobat is non-destructive; this means, once you've made a selection and you're then shown your cropped area, the PDF will still retain all the other canvas data and elements. This can cause issues later on, so if you're after a true crop of an area within your PDF, this is how to do it...
Step 1
Make your crop, as usual, using the Crop tool.
Step 2
Now this is the part that makes all the difference: export the cropped PDF as a Postscript file.
Step 3
Close Acrobat. Double-click and open the Postscript file. A window will appear, which processes the PS file and generates a new PDF file. This new PDF file is now a true crop.
Thanks to those in the following discussion:
http://forums.adobe.com/thread/471138
Step 1
Make your crop, as usual, using the Crop tool.
Step 2
Now this is the part that makes all the difference: export the cropped PDF as a Postscript file.
Step 3
Close Acrobat. Double-click and open the Postscript file. A window will appear, which processes the PS file and generates a new PDF file. This new PDF file is now a true crop.
Thanks to those in the following discussion:
http://forums.adobe.com/thread/471138
25 January 2013
Fullscreen background image Wordpress themes
Fullscreen background image websites deliver an unparalleled visual impact to any website, and here are some excellent examples of Wordpress themes using fullscreen background images:
http://www.webdesigndev.com/inspiration/10-modern-fullscreen-wordpress-themes
19 December 2012
How to loop a Flash banner three times
Some websites require that Flash banners only loop three times; I was recently creating such a banner and needed a solution. Luckily, I stumbled across this elegant solution on David Stiller's blog: http://www.quip.net/blog/2006/flash/how-to-loop-three-times
This particular solution is for Actionscript v2, however, there is one available for v3 too, see the website for more info.
For now, here's the AS2 version:
Add a keyframe to the last frame of your movie. Any layer will do, but if you like to be organized, create a dedicated scripts layer. Click into this concluding keyframe and paste the following ActionScript.
if (!loopCount) {
var loopCount:Number = 0;
}
loopCount++;
if (loopCount >= 3) {
this.stop();
}
How it works
An if statement checks to see if a variable named loopCount exists. If it doesn’t, this variable is created and initialized to a value of zero. During the movie’s first run, loopCount won’t exist, of course, and will be created. During subsequent runs, the variable creation will be ignored.
The ++ operator increments loopCount by one.
Another if statement checks to see if loopCount’s value is equal to or greater than three. If it is, the MovieClip.stop() method is invoked on the main timeline, which halts the movie. On the movie’s first and second run, loopCount will be less than three, so the movie will automatically loop.
Variations
If you want the movie to five times, change that three to a five. For fifteen loops, change it to a 15. You get the idea. :) If you only want the movie to play once, scrap all of the above and simply put this.stop(); instead.
If you want the movie to loop, but not from the beginning — that is, start on frame 1, play through frame 300, then loop from 100 through 300 — alter the code like this:
if (!loopCount) {
var loopCount:Number = 0;
}
loopCount++;
if (loopCount >= 3) {
this.gotoAndPlay(100);
}
...replacing 100 with whatever frame number you please.
This particular solution is for Actionscript v2, however, there is one available for v3 too, see the website for more info.
For now, here's the AS2 version:
Add a keyframe to the last frame of your movie. Any layer will do, but if you like to be organized, create a dedicated scripts layer. Click into this concluding keyframe and paste the following ActionScript.
if (!loopCount) {
var loopCount:Number = 0;
}
loopCount++;
if (loopCount >= 3) {
this.stop();
}
How it works
An if statement checks to see if a variable named loopCount exists. If it doesn’t, this variable is created and initialized to a value of zero. During the movie’s first run, loopCount won’t exist, of course, and will be created. During subsequent runs, the variable creation will be ignored.
The ++ operator increments loopCount by one.
Another if statement checks to see if loopCount’s value is equal to or greater than three. If it is, the MovieClip.stop() method is invoked on the main timeline, which halts the movie. On the movie’s first and second run, loopCount will be less than three, so the movie will automatically loop.
Variations
If you want the movie to five times, change that three to a five. For fifteen loops, change it to a 15. You get the idea. :) If you only want the movie to play once, scrap all of the above and simply put this.stop(); instead.
If you want the movie to loop, but not from the beginning — that is, start on frame 1, play through frame 300, then loop from 100 through 300 — alter the code like this:
if (!loopCount) {
var loopCount:Number = 0;
}
loopCount++;
if (loopCount >= 3) {
this.gotoAndPlay(100);
}
...replacing 100 with whatever frame number you please.
26 October 2012
Automatic Image Montage with JQuery
![]() |
| Automatic Image Montage using JQuery |
Here's a fantastic way of displaying a group of images in a montage style, and the great thing is, it's all done automatically and on-the-fly using JQuery.
The functionality can be added to fixed size or fluid elements, you can even add it to the body of a website. Visit the site to view demos and get the code: http://tympanus.net/codrops/2011/08/30/automatic-image-montage/
19 October 2012
How to build a custom Wordpress theme from scratch
As the title suggests, here's a great tutorial on creating your own Wordpress theme from scratch. Thanks to Russell for the heads up!
http://blog.spoongraphics.co.uk/tutorials/how-to-build-a-custom-wordpress-theme-from-scratch
16 October 2012
Get The Wordpress Anthology
As a web designer and developer dabbling with Wordpress I stumbled across (and took advantage of) a great deal on the Mightydeals website: grab The Wordpress Anthology book from Sitepoint for only $19. Yep, a tiny $19, a bargain for such a quality book from a trusted and respected publisher, so you know it's going to be very good value for money.
The book is a great resource for any Wordpress developer, or designer, who wants to learn more about working with the loop, custom post types, plugins, themes, taxonomies, image galleries and featured images and the Wordpress API, to name but a few of the chapters.
The book is well written and presented, and provides useful code examples as it explains the inner workings of Wordpress. Learn more about this great offer at the Mightydeals website.
15 October 2012
A cool collection of Photography Wordpress themes
If you're into Wordpress and photography, then you'll love these Wordpress themes for photographers. The video above presents 30 themes, with a diverse range of visual styles.Some wonderful work here...
The Google Plus song
I stumbled across this rather cool video on Youtube today, a song about Google Plus, of all things! :) Enjoy.
WordPress Theme Development tutorial
Courtesy of Ecommerce Developer website here's a useful insight and series of tutorials into developing your own Wordpress theme: http://ecommercedeveloper.com/articles/2791-WordPress-Theme-Development-Part-1-Installation-and-Graphic-Design/
The tutorials are broken into six steps, and includes the Biolerplate HTML5 template. For more about Boilerplate see here: http://html5boilerplate.com/
3 October 2012
Free Adobe Photoshop Actions
If you're an avid fan of Adobe Photoshop, and let's face it, who isn't?, then you'll like these cool Photoshop Actions. Best part is, they're free so head on over to the site below to see what's on offer. The image accompanying this article is one such Action on offer.
Click here to visit see all the free Photoshop Actions
2 October 2012
Wordpress and Linux hosting that delivers
As a professional in the web development and design field, I've many years experience of dealing with web hosting companies; all shapes and sizes, some great, some not so great.
If you want the ultimate hosting solution, then Rackspace comes up trumps, if money is no object that is. So, there are many other hosting companies out there and they all vary in their offerings and products. Recently, I've been working with Wordpress in my spare time, and there's no doubt it's a mature and practical CMS solution if you're a web designer or developer.
So I wondered...which hosting company offers good, reliable Wordpress support and hosting, but doesn't cost the earth? After much reading of I decided to try Tsohost, a UK based cloud web hosting company based in Maidenhead, Berskshire.
Of course, I can only tell you of my own experience with them, and I'm very happy to report that Tsohost have been great. In fact, just recently, they updated their website and customer portal and control panel; and they've done a fantastic job.
Visit their website for details on what they have to offer, at very affordable prices...I'm not kidding!
27 September 2012
Useful JQuery Libraries and JQuery Plugins
Spruce up your website with some JQuery, so, here are some excellent JQuery libraries and plugins to choose from. Courtesy of Smashing Magazine.
Click here to visit the Smashing Magazine article.
Subscribe to:
Posts (Atom)










