• Home
  • Portfolio
    • Online CV
    • Core Portfolio
    • Sort Portfolio by category
      • Branding
      • Website design
      • Online Marketing
      • Print & Press
      • Video editing
      • Screen & Digital
    • Sort Portfolio by type
      • HTML
      • PHP
      • Javascript
      • ActionScript
      • TV
      • Logos
      • Flash
      • After Effects
      • Marketing
      • Email
      • Banners
      • Print
      • TV
    • Quick Flash Presentation
    • BrandMarks
    • Downloads
      • PDF Portfolio (50mb)
      • Download CV (.doc)
      • Download CV (.pdf)
  • Blog
    • Art & Design
    • Coding & Developing
    • Technology & Tech News
    • HTML & CSS
    • Video & PostProduction
    • Online & The Web
    • Social & Networking
    • Media & Marketing
    • Streaming & IPTV
    • Science & The future
    • Games & Interactive
    • Mobile & Apps
    • Music & Film
    • The real world
  • Feeds
    • Twitter
    • facebook
    • Posterous
    • Flickr
    • delicious
    • FourSquare
    • LinkedIn
    • Google
    • YouTube
    • TheCore RSS Feed
    • TheCore Atom Feed
  • Projects
  • Contact

A Guide to Email Standards Design and Best Practices

Sep 7th

Posted by Jonathan Brothers in HTML & CSS

Introduction to designing for emailemail

This article aims to address the challenges faced in the design and development of HTML email and outlines the industry standards and company best practices that must be adhered to in order to ensure all email correspondance to our customers and prospective customers is optimised for accessibility, consistency in rendering and successful delivery.

Email design principals are significantly different from those of web or print design. It helps to pretend that you’re coding like it’s 1999 – a lot of what you need to do to make an html email render consistently across all email delivery platforms is very basic and nothing like coding for a normal website. Although email and site design have similar goals, email designers must take into account other factors such as email client and browser limitations, optimizing for the preview pane and call-to-action placement – just to name a few. Below are details on the the do’s and don’t’s that must be adhered to in developing an HTML email for Experian Interactive, followed by a quick checklist summarising the main points that, if applied, should ensure bulletproof email delivery.

Challenges

  • Most email programs now block all images in your HTML email by default. You’ve probably noticed how you have to right-click on an email, or click a button, to make images display in the emails you receive. How should you design around that?
  • In recent years, desktop email programs (like Outlook, Lotus, Eudora, and Apple Mail) have made great progress in standardizing the way they display HTML email. But now webmail services (like Yahoo, Gmail, and Hotmail) are getting more popular, and they have their own unique challenges. Two steps forward, one step back. What works and what doesn’t in webmail clients?
  • There’s so much spam out there, spam filters need their own spam filters – firewalls, and they block email before they even get to your recipients’ spam filters, based on reputation. What can we do in terms of design and build to make sure we’re not put on the spam list?
  • Spam laws require that every email marketer follow some very important rules. What you need to include in every single email you send to your customers to make sure you’re meeting legal requirements?

Dimensions

The width of your email (the containing table) should not exceed 600px. While the height (length) of the container does not need to be defined, it is important to include a call to action in the top 300px of the design to ensure it is visible in most viewing panes.

Preview Pane Area

Outlook’s preview pane window is a commonly overlooked element in email design. The designer only has, at the most, 300 pixels of height to present the email’s main content and navigation to an Outlook user. In this case, since the user doesn’t have to open the email to preview its content, this section should communicate the main message of the email quickly and efficiently.

Above-the-Fold Area

The area that appears above the browser’s bottom window bar is called the “Above-the-Fold” area. This is especially important for browser-based email clients such as Hotmail and Yahoo!. The “Above-the-Fold” section on a 17” monitor with a resolution of 1024×768 is on average 550px in height (depending on which email application and browser combination you’re using – for 800 x 600 resolution, it averages 420 pixels). In most cases, these extra 120 to 250 pixels of space are used for content that supports the preview pane area design. It is important to note that this area should be visually engaging as well, since this is the first thing Hotmail and Yahoo! users will see when they open the email. When laying emails out using Photoshop and Illustrator, it’s always useful to set guides at 300, 420 and 550 pixels to designate where the preview pane and above-the-fold sections appear.

Structure

Mail clients are light years behind in terms of CSS support, which means that we must resort to using tables for layout if we really want our newsletters to display consistently for every reader.

Layout using tables

In order to ensure rendering is consistent across all email platforms, stacked and nested tables should be used to lay out content in a robust, stable layout. Each table cell should have a width. It is recommended that a closed </td> tag be brought up to the preceding line – not left on it’s own, where it can add extra unwanted space. Tables should not have padding or cell spacing.

When using multiple nested tables, avoid using borders. If you need a border around a td cell, keep in mind that Gmail displays a border around a td cell when it’s defined in a div, but not when it’s defined as a border style in a td tag. To ensure your borders are always rendered, it is best to use an image stretched to the height/width of the outer rows/columns of the containing table OR for simple line borders, set 1px wide columns and rows on the edge of the table with a background colour that will fill to create a border effect.

Troubleshooting: Are you using styled borders on any tables? Some email clients render the border as an extension to the defined width of the table. So, for example, if you have a table that is 400px wide and it has a 1px border applied to it, some clients will display this table as 402px wide and this could affect your layout. It is advisable to calculate the width minus borders where appropriate or use images in separate table cells to emulate a border effect (this option is less likely to break your layout).

Avoid colspans: (table cells that “span” across multiple columns) in your HTML tables. There are lots of email applications that can deal only with basic table layouts and don’t properly render tables with colspans in them. The only way to combat this problem is to keep your layouts very, very simple, if you want your email to work across all the major email apps. If you’re working on an email layout and find the tables are getting complex, and you’re having to code using colspans you might think about chopping it up into separate tables. For instance, you should always use separate tables for the header, body, then footer of your emails. It is always better to go with more “simple” tables, than one big “complex” table.

If your design requires ‘floated’ blocks of information or images, do not use div’s (with a float style at- tribute) to achieve this effect. Some mail clients ignore “float” altogether (namely Gmail), and therefore it is better to code a more complex table layout than to rely on the float declaration.

Padding/Margins

Avoid using any padding or margin styles to layout content. Where white space is needed, add another row/column to your table and set it to the width of the padding/margin you require. While a 1×1-pixel image can be used to force spacing in order to create a precise email layout, spammers often use 1×1-pixel images to determine if their email has been opened. As such, using this practice will increase the likelihood that your email is classified as spam.

Use <br /> instead of <p>

The <p> tag in Internet Explorer uses more space (margin-top and margin-bottom) than in other browsers/email clients. This could lead to layout problems where, for example, if you’re using a table with a fixed width and height and your design is based upon these dimensions. If you have content in the table within <p> tags, than the height of the table could increase in Internet Explorer which could lead to gaps in your design. To prevent layout problems use the <br /> tag instead of the <p> tag as it renders the same in all browsers. Another problem with <p> tags is in Windows Live Hotmail. <p> tags are removed. So the safest way is to use the <br /> tag.

Forms

The use of forms within an HTML email is not recommended. If, however, a form is required they may be used as long as they don’t include JavaScript functionality and aren’t mailed to AOL or Hotmail users since these email apps don’t support form functionality.
Some email clients do not support forms that use <form method=”post” action=”http://…. >. Because of this, you’ll need to use the <form method=”GET” action=”http://.. > approach. This will write all forms content to the query string of the page they are posted to.

Other elements to consider – Flash, JavaScript, ActiveX, external stylesheets, movies, image maps and other stuff that won’t work in HTML…

  • Flash does not work in most popular email clients and should not be used in any email creative. You can deliver HTML emails with Flash in them, but most recipients won’t be able to view them. Not unless they’re using an email program that uses a browser to render their HTML email. Microsoft Outlook was a program that used Internet Explorer to render HTML email, so Flash would sometimes work there. But Microsoft Outlook 2007 (and reportedly Outlook 2010)is no longer going to use IE to render email. They’re using Microsoft Word instead, so Flash will not work in Outlook anymore. Also, most anti-virus applications block the code used to embed Flash movies, and they block JavaScript, ActiveX, and even background music files. All of these have been used in the past to spread viruses, so it’s commonly blocked now. Remember, keep it simple.
  • Javascript does not work and should not be used within an HTML email.
  • External stylesheets should not be referenced. Stylesheets used in the header area of the HTML document will not work in most email clients and should not be used. All styles should be inline and on each instance of the element being styled.
  • Try to keep the total file size under 30k. Emails should never exceed 100k as this is the threshold for some clients classifying them as spam.
  • Do not use image maps, sound files or video in HTML email.

Provide a link for an online version

Although you test your HTML email with different browsers and email clients, you never can be 100% sure how it will display in your subscribers email program. In case it doesn’t display correctly you must provide a link at the top of every HTML email to view an online version, for example:
If this email doesn’t display correctly, click here to view the online version.

Special Considerations for web-based email clients

A lot of your recipients will be checking their email in a web browser such as with Yahoo!Mail, Hotmail, or Gmail. Since they’re viewing email in browsers, there are some important factors to consider when designing/coding your HTML emails:

  • Most web based email apps will strip out your <HTML> and <HEAD> tags, in order to keep your code from interfering with their web pages. This means…
  • Any CSS that you place inside the <HEAD> tags will be lost. So don’t try to link to CSS files hosted on the server. Use embedded CSS instead, and make sure it’s below the <BODY> tag, inline where possible (using inline styles is the only way to ensure your styles are consistent across all email clients and browsers).
  • Some webmail clients are starting to strip even the most basic CSS, even if it’s embedded below the BODY tag (as described above). This is because they don’t want any of your CSS interfering with their CSS, or maybe because they’re using so much JavaScript and AJAX technology, things just get buggy. Keep this in mind, and do lots of testing.
  • Tip: you can use various web based Snapshot tools to get screenshots of your work in all the major email programs and webmail clients, to see if your code is breaking. This saves time and re-work.

Legal Requirements

Unsubscribe and Privacy Policy

Every email should provide a quick and reliable way for people to get off the mailing list. It will usually appear in the footer and the link must be prominent. A link to the businesses privacy policy should also be in the footer of every HTML email. Example: This email was sent to %%email%% because you have opted in to receive communications from xxx.co.uk. If you think you have received this e-mail in error, or if you wish to take yourself off the mailing list, follow this link. We invite you to learn more by reading our privacy statement.

Company information

The following company information should also feature in the footer of every email sent out from that business:
Trademark information, Copyright Details, Business registered numbers, Registered Address business, Trading Addresses, Rights Reserved statement, Links to any appropriate legal text.

Styling an HTML email

Use inline CSS-styling instead of referring to an external CSS-file in HTML emails. If you are styling text, the style must be applied to each and every table cell – it is not enough to simply put your font style on the containing table. In some email platforms (for example outlook 2007) the style does not filter down through nested tables. Avoid the use of any header tags (any tag above <body>) as web-based email systems, such as hotmail and yahoo! replace all header tags with their own html code. This includes using style sheets to define H tags also.

Example: <tr style=”font-family:verdana,arial,helvetica; font-color=#000066; font-size=12pt”>There is no support for replacing bullets with images in unordered <ul> lists in some email clients and therefore this technique should not be used. If using an image in place of a bullet is necessary for visual impact, the list should be displayed using a table where the bullets are displayed in one column and the list items in another, removing the need to use <ul> or <li> tags altogether.

Always design your CSS to “fail gracefully.” That means if someone took away your CSS, your design and content would still display decently. Before you send your HTML email, delete the CSS and see what it looks like. Did you have tiny text that is now gigantic, and blowing out your tables?

CSS is an especially touchy situation if you’re using a WYSIWYG editor to code an HTML email, because WYSIWYGs insert all kinds of crazy CSS and random DIVs by default. It’s one of the drawbacks of WYSI- WYGs for HTML email as you will likely have to go back and remove some of the code so things won’t break in email applications. This is especially true if you’re using the design view only in Dreamweaver for example. Always double check your code before finalising your email to ensure there are no hidden surprises or unnecessary/extra tags.

Using Microsoft Word to generate HTML is even worse than using WYSIWYGs. Word adds so much code behind the scenes that it is guaranteed not to render properly across most standard email apps and browsers. Do not use Word to generate code for HTML email.

Background images and background colours

Background tags and images are stripped by some browsers and email clients. To ensure consistency in rendering, emails should be designed so that there is no need for background images. While most email clients have a white background as default, others use grey or even black. To ensure copy is visible (ie. Black on white), define the body background colour (and that of the containing table) to white (<body bgcolor=#ffffff>).

Image Use

Where possible, the main message should never be contained in an image. If the image fails to load, the Alt text should communicate the message, however the impact of this message will be lost. There are some basic principles that should always be applied when working with images in HTML emails:

  • All images should be deep linked to their place on the server (or with Cheetahmail). When coding image tags in HTML email, do this:
  • <img src=”http://www.yourserver.com/email/images/logo.gif”> Instead of this: <img src=”images/logo.gif”>
  • When an image is sliced up for layout purposes, each image should be placed in its own table cell set to a height and width exactly the same as the image. These images should always have a style=”display:block;” attribute.
  • If an image is wrapped in an <a href> tag give the image a style=”border-style:none;” attribute to ensure the image doesn’t render with a blue link border.
  • Images should never be floated in a table cell. Not all email clients recognise this style. Where a float is necessary the content should be nested into another table.
  • Where an image is placed in a table cell that is vertically longer than the image, the cell must have a vertical alignment of ‘top’ applied to it.
  • Avoid spaces in your HTML code between an <img> tag and </td> tag. Some browsers will read this space as an actual space in the overall layout which can lead to “cracked” graphics.
  • Be sure all your images use the alt, title, height, and width attributes. Setting values for these attributes improves results in Google Mail, as well as maintaining your layout when a reader has their images turned off. Note, however, that Outlook 2007 does not recognize the alt attribute and so we must also include title tags to all images – read more in the section on accessibility below.
  • While some clients support animated gif’s, some do not (namely outlook 2007) and therefore should be used only when specifically requested. When used, it is important that the first frame of the animation contains the main message as this is what will show in clients without animated gif support.

Accessibility

Alt and Title Tags

Adding an Alt tag to your image tags will ensure that if any images are broken, or if images are turned off when a subscriber receives your email, your subscriber will have an idea of what is missing. Alt tags must be descriptive of the image – for example, it is not good enough to simply put ‘CreditExpert’ or ‘Free Credit Report’ on an image. It must relate to the surrounding copy so that it is clear what the message is. Alt tags also satisfy accessibility issues, conform to W3C HTML 4.01 specs, and allow the handicapped to read and receive their emails.

Alt Tag Example:

Incorrect: <img src=”http://imageserver/images/cta.gif” ALT=”CTA”=”0”>
Correct: <img src=”http://imageserver/images/cta.gif” ALT=”Click here for your FREE credit report now” border=”0” width=”10” height=”20” title=”Click here for your FREE credit report now”>

The title attribute can be used for almost any element (links, images, tables, etc.). Use the title attribute if you want to display a tooltip to describe the element. It is recommended to use the title attribute for links and images so that email clients that do not support Alt tags are still accessible.

Text and Richtext versions

Every HTML email must have a corresponding plain text and rich text version.

Rich Text Email: While you can generally be sure that if a user can view a rich text email, they will also be able to see your HTML email, some people choose not to receive HTML and so we must build a rich text version of every HTML email. A rich text version of your HTML email can be generated using the Cheetahmail system under the ‘Content’ tab. This code can then be copied in to Dreamweaver or text editor and altered if necessary. It is not advisable to use Microsoft Word to generate your rich text email.

Plain Text Email: It is imperative that we include a plain text version of HTML email for recipients who can’t view HTML. Sometimes, the plain-text version of your email is the one that gets displayed if your recipient checks their email on a mobile device. Here are a few tips on constructing a good Plain Text version of your HTML email:

  • Use a plain text editor, like NotePad. Don’t use Microsoft Word because it won’t give you the kind of “raw” text files you need. You need an application that gives no formatting whatsoever.
  • By default, some email applications start to wrap your plain-text messages at about 60 characters or so. That’s not really a big deal to most people. Just let your text wrap wherever their email programs choose. But if you have content that you absolutely do not want to wrap unexpectedly (like in the middle of a hyperlink), one trick is to type a letter 60 times across the top of your message, and use that as your visual “ruler.” As your content approaches the end of that ruler, hit your return key and “hard wrap” the line. Again, this is only if you want strict formatting.
  • You can’t code a clickable link with plain-text email. You just have to type out the entire URL. Some email applications will make it clickable automatically. Some won’t.
  • People don’t read email. They scan email. Especially plain-text email. So make it really easy to find important information with bullet points and visual markers.

Testing

Testing should take place throughout the build phase to ensure any errors are picked up straight away. All emails should be tested in browsers (IE6, IE7, Firefox, Safari, and Opera and IE8 where possible) as well as in email clients via the Cheetahmail system (Outlook 2005, Outlook 2007, gmail, hotmail and yahoo as a minimum). The Cheetahmail SnapShot tool should be used as a final test once the email is rendering properly in all of the above.

Common Mistakes to Avoid

Before an email is sent, it is important to double check that the following basic rules have been applied (also a useful checklist for troubleshooting if you’re having rendering issues):

DO:

  • Give all table cells a width and ensure nested table cell widths add up to their containing tables width
  • Apply a style (font, colour, size etc) tag to each table cell containing text. Always include both height and width tags to specify image sizes as well as table cell and dimensions.

DO NOT:

  • Use Flash, Javascript or Image maps.
  • Give tables cell padding or cell spacing
  • Use <p> tags (use <br /> tags instead)
  • Use background images
  • Use padding or margin attributes (in styles)
  • Use borders on nested tables (with exception – see section on tables/borders above)
  • Use floating elements
  • Link to external style sheets
  • Include head tags in your code
  • Get over ambitious with your email design. Designing HTML email isn’t the same as designing web pages. You can’t have all the CSS-positioning, DIVs, DHTML, and complex, embedded tables like you can in web pages. Keeping it as simple as possible will ensure its rendered correctly to all recipients

CHECK:

  • All special characters in email copy are replaced with Html entities. e.g – ‘&’ for &amp; etc. •    All images are coded with “absolute paths”. Remember, attaching graphics and using “relative paths” won’t work. You need to host the images on the server, then deep link to them in your code.
  • There should be no spaces in your HTML code between an <img> tag and </td> tag
  • All Anchor <a> tags must feature a title
  • All images that are linked or wrapped in an <a> tag must have border=”0” attribute and if contained in their own table cell, should also have style=”display:block;” attribute
  • Links or <a> tags href’s should be deep linked to the correct location and contain the correct source and banner code tracking for that email. (Request from briefer)
  • Are you using the most current header and footer code (copyright, unsubscribe etc.)? •    Be sure that your td cell widths are accurate. Unlike web browsers, which automatically set all cell to the widest-defined width, some email clients size each td cells based on the defined width.
  • Have you included an unsubscribe link, a link to the privacy policy and our company details in the footer of your email?
  • Ensure there are no unnecessary tags or divs in your code if you’re using a WYSIWYG editor – they are notorious for generating absolutely horrible HTML which can cause problems with email rendering
  • Test thoroughly. Every email must be tested in as many email clients/browsers and operating systems as available. You can use server web based testing tools to screen shot for testing on any browsers etc that you don’t have access to.

Useful Resources

Here are some links to handy HTML email resources/inspiration:

•   http://spammeltdown.com/ – Elements, trends and patterns in email design.
•    http://www.emailsherpa.com - Great email marketing case studies and research.
•    http://www.clickz.com - Lots and lots of online marketing and email marketing news.
•    http://www.marketingprofs.com – Interesting case studies and articles.
•    http://www.btobonline.com – Email and direct mail news.
•    http://www.campaignmonitor.com – great resource for email design inspiration.
•    http://emailmarketing.typepad.com/ – Tamara Gielen’s blog on email marketing.
•    http://www.email-marketing-reports.com/ – Useful email marketing articles and links.
•    http://www.newsletterarchive.org/ – Online repository of email newsletters – ideas and inspiration.

Final Thought

Why Micro$oft, Why!!!! After living with the worst email browser in history, ‘Outlook 2007′ for 4 years now, we had all hoped Outlook 2010 would address some of these issues.
Unfortunately, it would seem Micro$oft have made this version even worse and more restrictive in it’s rendering abilities, so be prepared for some of the above to not apply when you start supporting this email client. And be prepared for the regression and devolution of email functionality and the specification of what we can do with layout in emails being even more constrained in the future. Boo Hoo M$.

CSS, Email, HTML, Marketing

Free Wireframing Kits, UI Design Kits, PDFs and Resources

Aug 28th

Posted by Jonathan Brothers in Art & Design

http://feedproxy.google.com/~r/SmashingMagazine/~3/Ogu-aolPQ20/

Posted via email from thecore

Design, downloads, photoshop, resource, Wireframing

UFO Disclosure… Finally happening

Aug 27th

Posted by Jonathan Brothers in The real world

Aliens are real and here and always have been.
All signs point to Full Disclosure being planned and coming soon.

Former Canadian Defence Minister Paul Hellyer, talks about exterrestrial contact.

Edgar Mitchell UFO Disclosure Press Conference 09

Aliens, News, UFO

Flipboard app for iPad – will it survive

Aug 11th

Posted by Jonathan Brothers in Mobile & Apps

http://www.wired.com/epicenter/2010/07/is-flipboard-legal/

agreement to get this type of app launched. The user experience is better than any rss feed reader out there currently. but flipboard scrapes sites and thats the problem. But it doesn’t need to if we supported it now it exists. If some kind of new rss tags could be invented for people to define how much information flipboard and other similar services are aloud to take from your feed or site, or are served when identified by the server. This could really be the boost rss needs to get back on track and become mainstream finally.

Now to solve the advertising problem. Simple add tags to the feed that pulls in the correct ad server url for the correct banner campaign when it see’s what the app/service/browser is, then these services just integrate the banners (standard sizes) in the pages, if they are required to be attached legally with that article or page. They are styling and positioning all this other information. Ads would be no problem. Think of similar services on you tv and phone etc. just with different styling and the correct ads. I don’t mind ads. Everyones got to make a living. It is the way of the world. Even though I’d prefer not to have the ads, it’s a necessary evil for now. But users and business will have the choice of exactly how much to show and what to show with it alongside, and that will make everyone happy, job done, for everyone.

People will follow the rules, someone just needs to create some, but who, w3c? Who looks after rss standards? Dave Winer?

Whoever it is. For now flipboard is a great service and I suggest you install it and try it out now. As it’s so popular, you have to queue to activate your Twitter and Facebook feeds. And these are the best feature. A great way to get all the information you need, if you follow and are friends with people who have similar tastes and interests and report on news you want to know about.

Simple, but brilliant way to consume information. And is the start of the future way we will all be looking at our custom data.

Posted via email from thecore

app, apple, Apps, flipboard, iPad, mobile

The Aves Engine – HTML, CSS and JavaScript in browser gaming engine

Aug 9th

Posted by Jonathan Brothers in Coding & Developing

This is amazing, I can’t wait for more stuff like this to come out. The web of old that we knew has truly gone now. The shear number of concurrent sprites (or divs I suppose) that this engine is animating at such high resolutions is just mind boggling. And i cant begin to think how the modular JavaScript that allows it to interface and render movies, images and the browser within the game within a browser must look like.

Truly brilliant. Hope this evolves quickly.
check out the movie on there site: Dextrose.com

Application, Apps, Aves Engine, Coding, CSS, Development, Gaming, HTML 5, Javascript

The iPad and my thoughts after a month of use.

Jul 4th

Posted by Jonathan Brothers in Mobile & Apps

No comments

For starters, the iPad is not a computer.
And everyone has to stop looking at it like this.

It’s an appliance, like your stereo, dvd, hoover, microwave etc.

It’s a closed box designed to do one task and serve a single purpose or need in your life, not do everything.Second I’m tired of people saying, ‘so, it’s just a big iphone’.. (like it’s a bad thing)

Err, yes of course it’s just a big iphone, the point that everyone is forgetting is the iphone is a unique new type of computing device (making it revolutionary), and it’s interface and design so simple a child of 2 can use with ease (I have even seen a 9 month old baby unlock the iphone and start scrolling around now thats’ user experience).Apple have not complicated things, they’ve kept it simple so the whole world can use these devices.
It’s not perfect and could do more (But everything it does do, it does perfectly, no fuss, no hassle, good UX)

The rumor is though, that iphoneOS (or just iOS now) was designed for the ipad first, as a computing system that needs no knowledge of computers to use and learn. The perfect computing appliance, a terminal into the online world & your personal media with no fuss, no learning curve, It just works – like turning on your dishwasher.. So the iphone is just a side effect of the iPad, so you could say the iphone is a small iPad with a phone in it, not the other way round.

It is limited as far as a computer, but this device has to work easily / seamlessly for everyone.
(If your a developer / hacker / techy – Try android or Micro$ofts Windows Phone 7 If you want to get your fingers dirty and make it do new crazy things) But I bet you wouldn’t go putting a more powerful motor in your washing machine – cause it is, what it is and does the job you need it for.

Lastly the iPad is not meant to replace your computer, it’s meant to compliment it. It’s a tool (appliance) to serve a purpose, by providing easy go anywhere access to the world of communication and knowledge available online now.

Making the web finally truly social, and I don’t mean facebook, I mean for example, no one minds me passing them an ipad to look at something while at a dinner party, or while watching a film, at a bar etc. forget about it though if I start unfolding a heavy laptop to pass around, that’s just not done. But the iPad is somehow acceptable in these situations, like a phone generally is. Truly the best of both in one package.

Yes there will be and are over 50 different tablet PC’s with Android and Linux etc coming out or are already out as an alternative. But I guarantee they will all miss the point and the user experience and interfaces of these devices will not come close to the ipad.

Everybody is always so caught up trying to make the next iPhone or iPad killer, but they always miss the point and will try and do too much in an effort to jump in front of apple, and by the time they have copied 90% of the products functionality and released something half decent, Apple will have moved on again to bigger and better things, and completely side stepped the fight, letting everyone else head down a direction that the user’s only think they want.

Unfortunately the customer is not always right, and while other businesses follow market research to design a good product that suits every man and his dogs requirements, Apple do not, they follow one man’s vision, a man who thinks he knows what’s best for the you and the world and tells you (Arrogant, but it works) ‘too many cooks’ ‘you can’t please everyone’ ‘simple is best’ ‘less is more’ etc.

We didn’t even know we were missing something or that there was a hole too fill, until Apple did.

Other business will try to follow suit and play catch up, but none are able to innovate in the same way and I’m not sure anyone can catch Apple now.

Anyway rant over… For now.

Sent from my iPad

Posted via email from thecore

apple, iPad, mobile

Garmin gps competition winner – fastest skier 2010

Jun 4th

Posted by Jonathan Brothers in Technology & Tech News

No comments

http://connect.garmin.com/player/27826618 I just won the Garmin gps challenge for being tracked skiing at 75.1mph while on holiday in Morzine. Won a free holiday and spending money and a gamin gps tracker. Will post up link to the press release once they announce it officially.

Posted via email from thecore

75.1mph, Competition, Garmin, GPS, Skiing, Tech, Winner

Microsoft Bing Taking Over iPhone Search?

May 31st

Posted by Jonathan Brothers in Technology & Tech News

No comments

nav_logo13.jpg
http://feedproxy.google.com/~r/TheIphoneUserGuide/~3/Kln-lbD3x3E/

Microsoft Bing Taking Over iPhone Search?

It’s been reported that Bing will be replacing Google as the search engine of choice on the iPhone. Rumours than Google pay Apple up to $100m a year to be on the device have been mentioned more than once.

For the record. This is all rumour, so don’t worry. Your iPhone wont be losing Google for a while yet.

- via Feeddler RSS Reader

Sent from my iPad

Posted via email from thecore

Bing, iPhone, Microsoft, search

Apple iPad UK shipping date delayed

May 15th

Posted by Jonathan Brothers in Mobile & Apps

No comments

Apple iPad UK shipping date has been delayed if you didn’t order yours on the 10th or 11th of May then you won’t be able to get one delivered until the 7th June now.

Lucky for me I did order mine on the 10th so Apple are still saying this will be delivered on the 28th.

apple, iPad, mobile, Tech News, technology

Modern Warfare 2: Stimulus Package PS3 out now

May 15th

Posted by Jonathan Brothers in Games & Interactive

No comments

The Modern Warfare 2: Stimulus Package for the PS3 is finally out for download.

I downloaded it last night and it’s quite big so took ages to download and install. So you’ll have to be patient after you send your hard earned £10.99 on 5 new maps. Quite a lot of money for just 5 maps, but then if they had sold them separately for £1.99 each and lost 20p I wouldn’t have minded paying £2 for a new level so it’s not that bad value.

All in all the levels are not that great, but it’s worth it for the few new good ones. Only annoying thing is you have to play the crap ones online with the new ones. But a badly needed refresh to revitalise the game and has peaked my interest in Modern Warfare 2 again for a bit longer.

A must have for the Cod addict on the PS3

Download it now.

(1138) corecommand

COD, Games, Modern Warfare 2, Online Gaming, PS3

Sony Said to Announce Televisions With Intel Chips, Google Software in May

May 2nd

Posted by Jonathan Brothers in Video & PostProduction

No comments

Sony Said to Announce Televisions With Intel Chips, Google Software in May – Bloomberg:

By Ian King, Tim Culpan and Cliff Edwards – Apr 28, 2010

Sony Said to Announce Televisions With Intel Chips, Google Software in May By Ian King, Tim Culpan and Cliff Edwards – Apr 28, 2010 * Email * Share o Business Exchange o Twitter o Delicious o Digg o Facebook o LinkedIn o Newsvine o Propeller o Yahoo! Buzz * Print Sony Corp., trying to reverse sales declines in its TV division, will announce home-entertainment devices next month that use Intel Corp. chips and Google Inc. software, said two people familiar with the matter. The companies plan to discuss the new products at a conference sponsored by Google in San Francisco on May 19 and May 20, said the people, who asked not to be identified because details are still being worked out. Intel is contributing a customized version of its Atom chip that will run a new version of Google’s Android operating system called Dragonpoint. Sony, aiming to win back share lost to Samsung Electronics Co. and LG Electronics Inc., would use Intel and Google to help produce televisions and Blu-ray DVD players with Internet access. Intel, whose processors run 80 percent of personal computers, wants to get its chips into new areas, including mobile phones and consumer electronics. The three companies have been working with Logitech International SA on ways to add more Internet content to televisions, two people involved with the discussions said in March. Logitech is developing a keyboard that would work as a remote control, one of the people said. Gabriel Stricker, a spokesman for Mountain View, California-based Google, and George Boyd, a spokesman for Sony, both declined to comment. Mary Ninow, a spokeswoman for Intel, also declined to comment. Losing Ground Sony, based in Tokyo, ranks third in the television market, behind Samsung and LG. It suffered an 18 percent slide in TV revenue in the fourth quarter, according to market research firm DisplaySearch in Austin, Texas. Sales at Samsung, based in Suwon, South Korea, grew 13 percent, while Seoul-based LG’s revenue gained 20 percent. TV manufacturers are seeking to attract consumers by adding Internet connections, which allow TVs to handle streaming music and video services from companies such as Pandora Media Inc. and Netflix Inc. The sets also can run tailored programs called widgets, which provide information such as weather forecasts. Intel has said that Atom, a scaled-down version of its computer processors, will create an experience called “Smart TV” — where the Internet access will be integrated with advanced television guides, personal content libraries and search. The Santa Clara, California-based company also had its software engineers create programs that will better take advantage of its chips. To contact the reporters on this story: Tim Culpan in Taipei at tculpan1@bloomberg.net; Ian King in San Francisco at ianking@bloomberg.net; Cliff Edwards in San Francisco at cliff_edwards@businessweek.com

Google, Intel, ipTV, Microchip, Tech News, technology, television, TV

Screenshots Showing iPad Video Quality Over Wi-Fi and 3G | Cult of Mac

May 2nd

Posted by Jonathan Brothers in Mobile & Apps

No comments

Screenshots Showing iPad Video Quality Over Wi-Fi and 3G | Cult of Mac.

iPad video quality may not be as good as apples claiming for streaming video content.

apple, iPad, video

Great reversible neoprene sleeve for the iPad

May 1st

Posted by Jonathan Brothers in Mobile & Apps

No comments

http://www.more-thing.com/safara-collection-for-ipad.html

Great covers for the iPad

  • Compatible with Apple iPad
  • Reversible neoprene sleeve (Slip-in style)
  • Available in 3 unique styles:
    Black/Camo
    Neon Green/Blue Camo
    Purple/Zebra
  • Cushioned interior with soft lining to prevent and shield
    your iPad from scratches, damages and dust
  • Form fitted and lightweight

Pre-order date (Purple/Zebra): May 7, 2010
Estimated ship date: May 10, 2010

Case, iPad

Call of Duty: Black Ops Pre-orders Begin

May 1st

Posted by Jonathan Brothers in Games & Interactive

No comments

http://www.callofduty.com/blackops/


Black Ops, COD, Modern Warfare 2, Online Gaming

Modern Warfare 2: New map released 5th May

May 1st

Posted by Jonathan Brothers in Games & Interactive

No comments

Modern Warfare 2: Stimulus Package PS3/PC Release Date Announced

Infinity Ward has finally announced that the “Stimulus Pack” downloadable content (DLC) for Call of Duty: Modern Warfare 2 will be released on 5th May for PS3 and PC.

http://www.zath.co.uk/modern-warfare-2-stimulus-package-ps3-pc-release-date-announced/

COD, Modern Warfare 2, Online Gaming

Font’s supported on iPad, iWork and Keynote

May 1st

Posted by Jonathan Brothers in Mobile & Apps

No comments

What do I need to know about fonts on the iPad?

iPad supports over 40 fonts and font families which can be used with iWork for iPad apps. When importing a presentation that uses a font not available on iPad, iWork attempts to replace an unsupported font with one that is a close match. If a close match is not found, the Helvetica font will be used instead. After the import process, fonts that were replaced are listed for review by the user.

Fonts available on the iPad include:

  • American Typewriter
  • AppleGothic
  • Arial
  • Baskerville
  • Bodoni 72
  • Bradley Hand
  • Chalkduster
  • Cochin
  • Copperplate
  • Courier
  • Courier New
  • Didot
  • Futura
  • Geeza Pro
  • Georgia
  • Gill Sans
  • Heiti J
  • Helvetica
  • Hoefler Text
  • Marker Felt
  • Optima
  • Palatino
  • Papyrus
  • Party LET
  • Snell Roundhand
  • Thonburi
  • Times New Roman
  • Trebuchet MS
  • Verdana
  • Zapf Dingbats
  • Zapfino

Great article on building Keynote Presentation for the iPad over at TouchUserGuide:

http://www.touchuserguide.com/2010/04/26/how-to-make-keynote-presentations-on-your-mac-to-show-on-your-ipad/

Apple Keynote for iPad: Frequently Asked Questions (FAQ):
http://support.apple.com/kb/HT4066

apple, fonts, iPad, iWork, Keynote

Google Cloud Printing – Or GoogleFax

Apr 30th

Posted by Jonathan Brothers in Technology & Tech News

No comments

They should have called it GoogleFax!

Would you let your friends print straight to your printer? If they were going to send porn, they would have done it with the fax machine… wouldn’t they of? Hmm not convinced. Could be an interesting new form of communication like being back in the days of the telegraph machine and news room, receiving important updates via print out. Would be handy if I can print from my iPad/Phone while out and about ready for when I get home. Great for booking reservations, no more time wasting finding and printing that email… valuable seconds saved.

Google wants to clean up printer drivers, offers unified cloud-based printing architecture

by Sebastian Anthony 

One of the only evergreen, recurring nightmares of being a computer user is printer drivers. It’s even worse for the network administrator, or hapless grandparent. A lot of peripherals are now plug-and-play — they have been for years, even — but printers have somehow continued to side-step end-user convenience and remain a real pain in the ass to install and use. BUT NOT FOR LONG!

As part of the Chromium project — the root of both Google’s Chrome OS and Chrome browser — Google is now looking to move printing, and the associated management overhead, to the cloud. Rather than trying to print from your computer, you’ll send the document to the cloud and Google will then communicate with your printer. This isn’t such a massive deal for installed desktop PCs, but think about handheld devices: imagine being able to print a document from your mobile phone without having to worry about printer drivers or third-party applications. Very cool.

How does it work? Well it’s still early days — the code only appeared on the Chromium Project site a few hours ago — but it looks like it could work with both network-attached printers and local (USB) printers using some kind of ‘print proxy’. The app would send the document and details of the printer into the cloud — Google Cloud Print (or another cloud service) would then send back a correctly-formatted request to the printer, via the proxy.

Very smart, and not all that difficult to deploy. We might see this one ready for testing sooner rather than later.

Cloud, Google, Print, Tech News

Kip Drordy is on Facebook

Apr 30th

Posted by Jonathan Brothers in Music & Film

No comments

Become a fan of Kip Drordy on Facebook

Everyone should be friends with Kip

Kip

Facebook, South Park

Hulu $9.95 Subscription service

Apr 30th

Posted by Jonathan Brothers in Streaming & IPTV

No comments

http://latimesblogs.latimes.com/entertainmentnewsbuzz/2010/04/hulu-pushes-forward-with-995-subscription-service.html
Hulu

Hulu, the popular online site for watching television shows, plans to begin testing a subscription service as soon as May 24, according to people with knowledge of the plans.

That’s all well and good, and I’m all or subscription tv, after all that’s what we’re used too anyway.
But I don’t want to pay and then still have adverts, we may as well be back to our sky+’s & PVR/Tivo’s and get back to just skipping the adverts.

This could be a real blow for IPTV in general as others are likely to follow suit.
Oh well, hello bit torrent my old friend…

Hulu, ipTV, Online, Subscription, TV

Extraterrestrials are almost certain to exist

Apr 30th

Posted by Jonathan Brothers in The real world

No comments

The Aliens are out there. Just another hint from someone of higher authority preparing the little people for when they reveal themselves to us all.

Megaport writes:

“Promoting his new series on the Discovery channel, Stephen Hawking has given an interview to the Times in which ‘he has suggested that extraterrestrials are almost certain to exist but that instead of seeking them out,

humanity should be doing all that it can to avoid any contact.’ He says, ‘I imagine they might exist in massive ships, having used up all the resources from their home planet. Such advanced aliens would perhaps become nomads, looking to conquer and colonize whatever planets they can reach. … If aliens ever visit us, I think the outcome would be much as when Christopher Columbus first landed in America, which didn’t turn out very well for the Native Americans.’ Personally, I’ve always thought that the indigenous people of the world really had no chance to avoid contact here on such a small planet, but is hiding under our collective bed an option for humanity in the wider galaxy?”

Alien, Extraterrestrial, The Real World

Internet Explorer 9 HTML5 video will only support H.264

Apr 30th

Posted by Jonathan Brothers in Online & The Web

No comments

http://www.downloadsquad.com/2010/04/30/internet-explorer-9-html5-video-will-only-support-h-264-swivel/

In a bold, blunt and brash announcement that must surely be intended to up-stage Steve Jobs’ open letter to Adobe, the IE9 development team has stated that their new browser will only support H.264. This heralds the death of Ogg’s Theora codec — but OSnews says it better than I ever could.

It also comes hot on the heels of news that Google’s VP8 codec will be open-sourced… though I dare not predict whether IE9 or Google has more clout in the upcoming HTML5 video war.

If such sad news wasn’t big enough, Microsoft (or the IE Blog team) also finishes their blog post with a pot-shot at Adobe. “Flash does have some issues, particularly around reliability, security, and performance.” In other words, the IE9 team consider Flash to be the gimp — the gammy leg — when it comes to crafting a smooth, rich, HTML5 Web. What’s next? Coffee at a sidewalk cafe with Steve Jobs?

For those wondering, Microsoft cites a bunch of weird and unreal reasons for its adoption of H.264 over other HTML5 video codecs. They mention intellectual property rights, open source… but… they don’t mention that Microsoft has a stake in H.264, or that its ‘freeness’ will terminate in 2016. While this will definitely make the Web a lot smoother for the end user, Microsoft will gain a huge amount of control in the process.

Browser, Codec, Compression, H.264, HTML 5, Microsoft, video
  • Social Media Links

     Twitter Flickr Delicious Facebook LinkedIn YouTube Blip.tv Facebook Profile
  • Portfolio Stream

  • Portfolio Stream

    New Website Re-Brand Designs
    ProtectMyID Website designs
    AutoCheck – New Brand Logo
    CreditExpert Press Adverts
    Various Press and Magazine Adverts
    Customer Segmentation Desktop FlipChart
    Brand Vision and 4 Pillars posters
    ProtectMyID Marketing Emails + Service Email Template
    Various Campaign Landing Page Designs
    FaceBook Application design – FriendScore
    Branding Iron Faux 3D design in Photoshop
    Television Commercial End Frame and Website Screen designs
    Divas Delite Logo and brand for friends blog
    Going for Gold corporate event logo
    CreditMatch LogoType brand design
    White Label members centre design
    Protect My ID LogoType design
    Acquisition and Customer Marketing emails
    Promotional DM Flyers for members
    PopArt Creative – Flash Banners
    Website designs for secure members centre
    Partner Centres – Co-branded partnership pages and micro sites
    Member Emails UpSelling Credit Products and Insurance
    Acquisition Email Creatives
    Knowledge Creative Concept
    Credit Score Creative
    Tickbox Creative – Flash Banners
    TrapDoor, Falling letters Creative – Flash Banners
    Wheel of Credit Creative – Flash Banners
    Ostrich Creative – Flash Banners
    Are you Credit Fit Creatives
    Remote Creative – Flash Banners
    Icon Creative – Flash Banners
    Ultramarketing Logo
    AnimatedHeads Creatives
    FLU Podcast introduction movie
    Experian Educational Videos
    GCL – Galvus vision – CGI Movie Presentation
    K9 Pet Grooming Centre – Website and Logo Design
    Root10 developments – Yellow Pages Advert
    The Game – Marketing and brand
    FLU – Fluzine Magazine – Issue 003
    MoreTh>n Car Insurance Banners
    The Craft Company – Logo and Brand design
    AlgarveCountryVillas – Website and Logo Design
    IncDirect – Pesonalised DirectMail
    FLU – Future London Underground Flyer Designs
    FLU – Future London Underground – Logo and Brand Design
    Nanny-at-home Website and Logo Designs
    Child Minder Jacqui – Logo and Website Design
    The Green Room – Website Concept
    The Head Gardener – Website and Logo Design
    Mimesis – Logo Design
    BG Distrubutions – Website Concept
    Barchester Green Investment – Website Designs
    TheEcologist – Website designs
    Prego Design Website Concept
    AirFrance Banner designs
    Excell – email designs
    Ujima Translate – Interactive CDROM
    AKHProductions – Voice over artist
    GardensDirect.net – Landscape design service
    GlassTank.com – Logo and Website Concept
    Root10.net developments – Website and logo design
    Ozone Networks – SIP Based VoIP service provider
    EnglishHall – Luxury British Goods
    MetreSquare Logo Design
    Truefitt and Hill – Website Designs
    1 World Television – London Street Television
    Huurs Univers – Soldier of Fortune Gaming Server designs
    TurnBackTime Logo Design
    EnglishToys – Luxury Britsh Made Toys and Games Website
    Capital Connections – London Dating Website
    The Fatels Logo
    StarWars Fan film Trailer
    Chelsea Cobbler, Pied A Terre, and Bertie’s website designs
    House Redesigned for British Gas Newsletters at WWAV4
    Drag and drop Flash ActionScript driven template for WWAV portfolio
    House Members Newsletter for British / Scottish Gas at WWAV
    F42
      View the Portfolio Stream
  • My latest tweets

    Loading tweets...
    Follow me on Twitter!
  • Lifestream

    • Checked in at Wonga.com
      — May 17th via FourSquare
    • Liked Skiing accidental cliff jump fail oops.
      — March 12th via YouTube
    • Liked Skiing - cliff jump oops (Compressed Badly).
      — March 9th via YouTube
    • Liked 2 videos.
      — February 19th via YouTube
    • Liked Morzine Avoriaz Fantasticable 2011.
      — July 6th via YouTube
    • Liked Animated Doctor Who 1of5.
      — June 6th via YouTube
    • Liked 2 videos.
      — May 28th via YouTube
    • Liked Reptiles & Amphibians Documentary E1 Part 3.
      — May 21st via YouTube
    • Liked Freeski Big Drop Fat Freerider Ski World Record jump.
      — April 19th via YouTube
    • Liked Jacks head massage.
      — March 11th via YouTube
  • Wishlist

    View complete Wishlist
  • Bookmarks

    View delicious page
  • Tags

    75.1mph ActionScript advert after effects Alien Aliens app apple Application Apps Aves Engine Banner Bing Black Ops Branding Browser Case CDROM Cloud COD Codec Coding Competition Compression CSS Design Development director downloads editing Email Extraterrestrial Facebook facebook app Flash flipboard flu Flyer fonts Games Gaming Garmin Google GPS H.264 HTML HTML 5 Hulu Intel Interactive iPad iPhone ipTV iWork Javascript Keynote landing page Logo Marketing Microchip Microsoft mobile Modern Warfare 2 motion movie MySQL News Online Online Gaming PHP Portfolio PortfolioArt PortfolioBrand PortfolioMarketing PortfolioOnline PortfolioPress PortfolioScreen PortfolioVideo PortfolioWebsite Print PS3 resource search Skiing soundtrack South Park star wars Subscription Tech Tech News technology television The Real World TV UFO video Website white label Winner Wireframing
    View the Portfolio Stream
  • Kinect in 0 days

    0 days until Microsoft Kinect released on November 4th
  • Facebook Fans

RSS Feeds XHTML 1.1 Top