Share/Bookmark

Featured Posts

SharePoint Ticker Web Part from Existing Data Ever wanted to create a ticker in SharePoint without having to buy the $99 add-on from Microsoft, well here's the code: Simply create a new Web Part using the 'Content Editor' and open the 'Source Editor...'...

Read more

Sony E3 Prediction 2010 With E3 upon us in the coming weeks, and Sony keeping tight lipped about their schedule I think it's time we started predicting the outcome, the announcements and surprises with educated and industry sector...

Read more

Sony E3 Prediction 2010 With E3 upon us in the coming weeks, and Sony keeping tight lipped about their schedule I think it's time we started predicting the outcome, the announcements and surprises with educated and industry sector...

Read more

Whats next for Nintendo? Today I noticed that Nintendo have had falling profits for 2010 and predict even less sales for next year. The Wii 2 hasn`t been officially announced and from what I can see is not really on the radar....

Read more

7 Great Free Android Apps The Android mobile operating system is both fast, reliable and can do everything that the Apple OS can and a little more (all for normally a fraction of the price.) plus it supports Flash and soon Flash...

Read more

Stop Most Robots Posting to your Forms

Posted by matthew | Posted in Code Snippets, Tutorial | Posted on 05-03-2010

Tags: , , ,

6

Sometimes you don’t want to use captchas or “are you human questions” on your forms, well here’s a simply way to block the vast majority of bots posting to your website forms.

jQuery loading animation during page load or form submission

Posted by matthew | Posted in Tutorial | Posted on 09-02-2010

Tags: , ,

0

This is a really quick and nasty way to display a div while a form is submitting.

Actionscript 2.0 Image Fade (Flash Slideshow) from XML

Posted by matthew | Posted in Tutorial | Posted on 29-01-2010

Tags: , ,

1

This article describes how to use flash to cycle through images as read from an XML file using only Acriptscript, with no timeline objects what-so-ever, what we are going to make can be previewed here.

Basic Guide to Database Normalisation: First Normal Form

Posted by daniel | Posted in Features, Tutorial | Posted on 29-12-2009

Tags: , , , , , , , , , , , , , , , ,

0

Before I start talking about the normal forms, I thought it would be best to explain what I am planning to write about, and what normalisation is.

I am going to cover what normalisation is for beginners and try to write it in such a way a novice will at least understand the key principles.

PHP Arrays Primer

Posted by matthew | Posted in Tutorial | Posted on 19-12-2009

Tags: ,

1

New to PHP and want to learn what arrays are and how to use them? Then this is the article for you!

Flash RSS Scroller / Vertical Ticker using ActionScript

Posted by matthew | Posted in Tutorial | Posted on 18-12-2009

Tags: , , , ,

2

Showing an RSS feed in Flash can often be tricky, however we have found a way to make it a lot easier and to animate the feed. Our example uses an RSS feed from Twitter, but this piece of code will work for any standard RSS feed.

Upload a File via sudo AJAX

Posted by matthew | Posted in Tutorial | Posted on 17-12-2009

Tags: , ,

0

Uploading a file or document from your computer using AJAX is quite frustrating when you try to do it right, but it can be useful for many reasons. So here is the wrong easy way we have found to do it.

Resize any DOM Element

Posted by matthew | Posted in Tutorial | Posted on 15-12-2009

Tags: , , ,

0

Using jQuery it is very easy to give the user the ability to resize any DOM element and set limits — here’s how:

Find a Users Language in PHP

Posted by matthew | Posted in Tutorial | Posted on 14-12-2009

Tags:

0

It can be very useful to determine the users set language when visiting your website. The determined result can be used for many different applications, from targeted adverts and country specific affiliate links to country specific wording or images.

jQuery Animated Consectively without Using :Next

Posted by matthew | Posted in Tutorial | Posted on 12-12-2009

Tags: ,

0

Although the ‘:first’ and ‘:next’ operators can be very good in jQuery, they can also cause problems. For example you may want more control of what happens in between the delay or customise the timing further, well, we have the code just for you then.