Subscribe RSS

Archive for February, 2009

Bored of lorem ipsum Feb 20

AdhesiontextRecently been working on a multilingual site where we’re filling the page templates with lorem ipsum. Trouble is, lorem ipsum is fine and dandy for English sites, but what about foreign ones, they use all sorts of funny characters. A bit of googleing turned up this lorem ipsum generator that uses all manner of character sets. Excellent.

Adhesiontext alternative Lorem Ipsum Generator

Category: Web Dev  | Tags: , ,  | Leave a Comment
Managing multiple domain names Feb 13

Multiple domains pointing to a single site? Want to divert the traffic based on domain name? Then this is the simple two liner to do it without faffing with virtualhosts.


RewriteCond %{HTTP_HOST} ^(www\.)?mywebsite.com$
RewriteRule    ^/$  /mywebsite.html [L]

RewriteCond %{HTTP_HOST} ^(www\.)?myotherwebsite.com$
RewriteRule ^/$ /myotherwebsite.html [L]

What Can SEO do for your company? Feb 09

istock_000006562465xsmallMy research shows that in recent years, and especially throughout the recent economic crisis there has been a continued growth of interest in the area of Search engine optimisation and there is a lot of money being spent by people trying to drive traffic to their sites. People stick to reliable investments, so gold ahead of hedge funds and SEO over other forms of online marketing. So w hat is it about SEO at the moment and why is it worthwhile?

SEO has the potential for a great return on your initial investment. It costs relatively little in comparison with many other forms of online marketing and while the work needed to bring in well targeted traffic can take time, the work you’ve done will continue to be prosperous long after completion. This helps improve any ROI SEO is responsible for. Most websites can be improved in some way to benefit natural search results and to drive traffic. A well designed website will convert better than a badly designed one, and a well coded website is easier to list and index, SEO goes hand in hand with good design, usability and accessibility and should be given the same weight in decision making in the design and creation of websites. Following good SEO, Usability and Accessibility guidelines will not only drive extra traffic to your site but will improve conversion rates from traffic that comes from other sources than search, hence multiplying the benefits.
Although SEO is rarely a “quick fix”, when used as a long term online marketing solution, properly implemented and tracked, SEO will normally work out cheaper and have more fringe benefit than many other forms of online marketing.

SEO is bound to continue its rapid growth in the coming years as there is a general interest in the subject and companies now have a more restricted marketing budget, instead of a full on redesign of a site a company may opt for an optimisation of current materials. SEO is becoming recognised as a viable and skilled form of marketing especially as there is now less space these days for “black hat” SEO. With companies such as Google working to reduce effectiveness of black hat techniques; link farms are garnering less results, linkbaiting is being reduced and other techniques have been stamped out entirely. There tends to be more people with basic knowledge of SEO too. The increase in average knowledge and greater level of skill in the industry will improve the level of competition.
Search is predicted to grow 17% [NMA 2008] despite the current economic downturn and with it believed that 80 percent of all Web site visitors reach any given site through a search engine SEO is a profitable and viable form of marketing.
It is with the above reasons in mind that I believe we need to offer some form of SEO service to our current and future clients. It is a “buzzword” that more and more people now know and one that will be more influential in the process of choosing a developer.

Eddie

Better PNG’s Feb 02

istock_000006667803xsmallPhotoshop used to have problems saving ‘proper’ png files. They used to be silly large and have color-space problems. Well, it seems Photoshop is probably getting this right now but it still tends to create silly large image files which, when used in a web template, are a bit of a pain in the arse.

We found Pngcrush seemed to do a rather better job of compressing (and fixing) the PNG. You can download this from sourceforge for windows/linux  here: Pngcrush

I use a Mac, so finding it for Mac OS X isnt easy, but here isa version compiled by a colleague. Its quite an old version. pngcrush for mac os x

And heres how I use it:


unzip and move to /usr/local/bin

cd to the directory containing some PNG images.
pngcrush -rem gAMA -d fixedpngs *.png

(This command creates a directory called ‘fixedpngs’ and puts the processed png’s into it)

 

(Eddie: If you happen, like me, to be a heathen and use a windows based machine there is also awindows command prompt version of pngcrush which is very easy to use with the  command [pngcrush.exe infile.png outfile.png])

Category: Css, OS X Software  | Tags: , , , ,  | 2 Comments