‘General’ Archive

10 Useful Wordpress Plugins

There are an amazing amount of Wordpress plugins to choose from (over 3000!), some of them are great, some of them leave a lot to be desired. Here’s a list of 10 wordpress plugins that have proved their worth and are definitely worth a look!

(more…)

New website finally finished

I’ve finally managed to get my personal website built and running. I meant to get it done ages ago but so much had been happening that I simply didn’t have time.

My new website will act as a portfolio and a personal blog. Like all other great things in the world the site is built on Wordpress and themed by me.

See the site now - james.padolsey.com »

(more…)

Cool Characters in Twitter - A GreaseMonkey Script!

Recently there’s been some "hype" around the previously unknown fact that Twitter accepts cool UTF-8 characters. To be honest I never really assumed otherwise but the story covering it got over 2000 diggs today so I’m probably in the minority.

The actual story which was dugg was offering a bookmarklet which you can press to bring up a popup window which enabled you to copy (*gasp*) and paste (*gasp*) funny characters into your tweets. The only problem with this being that it is manual and not really worth the effort… not even slightly! I’m quite lazy so cannot be bothered to open a new window… go into that new window… highlight a bit of text… copy it… select the twitter window… and then paste it into the textbox! So, spending that wouldbe wasted time I created a sweet little GreaseMonkey script which does all of it for you!

(more…)

Google Chrome

Originally I wasn’t looking forward to the launch of Google Chrome for one reason - it’s *another* browser which us web developers have to cater for. But since I heard it is based on the not-so-bad WebKit rendering engine I started getting excited. What does this mean for Firefox though - can they compete with Apple and Google (both WebKit)!? The new Google browser is not just another duck in the pond either; they have completely rethought the typical browser interface and have added a bunch of features making the browser experience better for users and the developing experience better for us developers.

(more…)

Style Switcher - *Non* jQuery version

A tutorial that I wrote explaining how to develop a degradable style switcher in jQuery and PHP has just been published on NETTUTS.

I thought it would be a good idea to expand on the tutorial for the benefit of those who want to integarete the style-switcher into their own website.

(more…)

Useful Bookmarklets

Okay… We all know about the ‘javascript’ pseudo protocol and how wrong it is to use it within links to initiate functions. What I’m talking about here is doing some like this: (please don’t!)

<a href="javascript:func(this)">Linky</a>

There is one valid way to use it though… You’ve probably seen quite a few sites that have bookmark links intended for you to drag the link to your bookmarks panel within your browser. These links are not limited to plain old URLs! - You can actually put javascript within them (with the ‘javascript’ protocol) so when you click on one it can carry out something on the page you’re currently on. These are known as "bookmarklets" and can be really useful!

(more…)

Some extra reading - Links from around the world

Lots of "blogs" nowadays have one of those "top links from this month" kind of post every so often. To be honest, I rarely find these posts very useful; most of them seem rushed and contain pretty average links to pretty average content.

So, in rebellion of the above status quo I have put together an awesome list of all the articles which I feel will be useful to the great majority of people who read this. I won’t be doing this regularely - that’s why there are so many. Some of them are very techie, some of them are inspirational, some of them are preaching usability, some of them are just for beginners and some of them are quite old (but still relevant)… Regardless of what type of web developer/designer you are I think there is a mixed enough blend of content linked to, to keep you satisfied.

(more…)

Search term highlighting

This has been around for a while (Probably since the days when WEB 2.0 was still in fashion), but I’ve only seen it utilised on various forums and a few informational sites in the past. Even though most browsers’ "find" function is only a couple of keystrokes away (ctrl+F) I think this search-term highlighting thing is really great and makes it even easier for the user to read and navigate the content of your site!

(more…)

My first jQuery plugin - An image gallery

This is my first jQuery plugin and to be honest I am quite proud of it. It’s nothing complicated - a simple image gallery/viewer. When calling the plugin you specify which images you want to use like this:

$('div.some-images img').gallery();

The script would take all images within "div.some-images" (or whatever you specified) and put them within the gallery.

You can see a DEMO of it here.

(more…)

“Rewarding” those with better browsers

There is no doubt amongst web professionals that some browsers are simply better than others. Although we, as web developers are obligated to make our websites totally cross-browser compatible and completely functional on all platforms there is the question of whether it’s okay to selectively enhance the user’s experience (dependent on which browser they’re running).

(more…)