<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Andy Marciniak</title>
	<atom:link href="http://andymarciniak.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://andymarciniak.com</link>
	<description>UX Designer &#38; Front-End Developer</description>
	<lastBuildDate>Mon, 11 Oct 2010 16:16:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>HTML5 &#8211; A Brief Introduction</title>
		<link>http://andymarciniak.com/blog/html5-a-brief-introduction/</link>
		<comments>http://andymarciniak.com/blog/html5-a-brief-introduction/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 16:07:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=576</guid>
		<description><![CDATA[Most modern browsers now have fairly good support for many HTML5 properties but what are the new features and their advantages over current methods?]]></description>
			<content:encoded><![CDATA[<p>Over the past few months, the HTML 5 movement has gained a lot of momentum. Particularly since both Google &#038; Apple recently announced they are pouring their weight behind the new standard &#8211; the former, for example, phasing in an HTML 5 video player for YouTube and Apple refusing to support Flash on their mobile devices in favour of these emerging technologies.</p>
<p><img src="http://andymarciniak.com/wp-content/uploads/2010/08/blog4_html5_ipad.jpg" alt="HTML5 iPad" title="HTML5 iPad" width="480" height="197" class="alignnone size-full wp-image-682" /><br />
Most modern browsers now have fairly good support for many HTML5 properties but what are the new features and their advantages over current methods?</p>
<h2>New semantic Markup</h2>
<p>Coding is much more minimal and neater with meaningful tags have been introduced to structure a document.  For example, a basic WordPress blog can be laid out using the following:<br />
<code>&lt;header&gt;</code> &#8211; for introductory information such as a logo and description.<br />
<code>&lt;nav&gt;</code> &#8211; for primary navigation.<br />
<code>&lt;article&gt;</code> &#8211; for main content such as a blog post.<br />
<code>&lt;aside&gt;</code> &#8211; for information related to the main content such as a sidebar.<br />
<code>&lt;footer&gt;</code> &#8211; to contain secondary navigation, copyright notice etc.</p>
<p>Semantic markup has many benefits, mainly because it allows programs to properly recognise the information in your pages and make decisions based on it.  It can aid huge improvements in such things as search engine optimisation and accessibility.</p>
<p><strong>Resources</strong><br />
<a href="http://www.alistapart.com/articles/semanticsinhtml5" target="blank">A List Apart &#8211; Semanatics in HTML5</a></p>
<h2>Video</h2>
<p><img src="http://andymarciniak.com/wp-content/uploads/2010/08/blog4_html5_video.jpg" alt="HTML5 Video" title="HTML5 Video" width="480" height="159" class="alignnone size-full wp-image-684" /><br />
HTML5 supports video playback without the need for a plug in, the result of which is a format that is much lighter on bandwidth and the CPU.  Videos play instantly and users can jump to anywhere in the video without buffering.  In addition videos can be manipulated inline using JavaScript and CSS.</p>
<p><strong>Resources</strong><br />
<a href="http://www.youtube.com/html5" target="blank">YouTube HTML5 Video Player</a><br />
<a href="http://blog.theflashblog.com/?p=1698" target="blank">FlashBlog &#8211; HTML5 and Flash video</a></p>
<h2>Canvas</h2>
<p><img src="http://andymarciniak.com/wp-content/uploads/2010/08/blog4_html5_canvas.jpg" alt="HTML5 Canvas" title="HTML5 Canvas" width="480" height="159" class="alignnone size-full wp-image-681" /><br />
Some herald canvas as the death of Flash since it can be used to represent elements visually in your browser and generally go beyond the limitations of CSS.  It can be utilised, for example to draw diagrams, charts and animations, although, the possibilities are endless.  In this example Canvas and Javascript have been used to create a game of Astroids.</p>
<p><strong>Resources</strong><br />
<a href="http://thinkvitamin.com/dev/html-5-dev/how-to-draw-with-html-5-canvas/" target="blank">How to Draw with HTML 5 Canvas</a><br />
<a href="http://9elements.com/io/projects/html5/canvas/" target="blank">HTML5 Canvas and Audio Experiment</a></p>
<h2>Offline Storage</h2>
<p><img src="http://andymarciniak.com/wp-content/uploads/2010/08/blog4_html5_storage.jpg" alt="HTML5 Offline Storage" title="HTML5 Offline Storage" width="480" height="159" class="alignnone size-full wp-image-683" /><br />
This allows offline storage of data within the web browser, essentially making it possible to have, for example, offline versions of Gmail, Calendar &#038; Docs.  These developments have lead Google to ditch their Gears technology and should become a staple in their forthcoming Chrome OS.</p>
<h2>Forms</h2>
<p>The new web forms allows you to do validation, placeholder text and a many other features much more simpler and semantic way and without the use of Javascript.  Other new &#8220;built in&#8221; elements include date pickers and number sliders.</p>
<p><strong>Resources</strong><br />
<a href="http://brucelawson.co.uk/tests/html5-forms-demo.html" target="blank">HTML5 Forms Demo</a><br />
<a href="http://diveintohtml5.org/forms.html" target="blank">A form of madness</a></p>
<h2>Geolocation</h2>
<p>Allows access to a users geographical position through the web browser and without the need for GPS hardware as found in smart phones.  This can create a much more personalised experience for the user based on their location, for example, automatically locating your nearest bank branch or nearest italian restaurant without having to input a postcode.</p>
<p><strong>Resources</strong><br />
<a href="http://maxheapsize.com/static/html5geolocationdemo.html" target="blank">HTML5 geolocation demo</a> &#8211; (requires FF)</p>
<p>It is probably obvious that this summary barely scratches the surface of the full capabilities of HTML5 and it will  be a good many years before we see this as a passed standard.  With this in mind, using its features should be done with a deal of caution but this should not stop Web Developers from experimenting and implementing where possible.</p>
<p>HTML5 gives us a web without proprietary plugins such as Flash and Silverlight and drastically improves the experience for the user in terms of speed, usability and accessibility.  Huge web companies such as Google and Apple have put real leverage behind HTML 5 and will this will likely play an important role in making it ubiquitous in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/blog/html5-a-brief-introduction/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>JB Cooper</title>
		<link>http://andymarciniak.com/portfolio/jb-cooper/</link>
		<comments>http://andymarciniak.com/portfolio/jb-cooper/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:05:20 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=356</guid>
		<description><![CDATA[JB Cooper (2009)]]></description>
			<content:encoded><![CDATA[<div class="summary">
<h3>A portfolio site for Film and Travel Writer Jonny Cooper</h3>
<p>The theme is based around a minimal, magazine style which brings the focus to his journalistic, writing style, film skills.</p>
<p>The aim of the site is to build a platform in which to establish a strong brand and name in the world of journalism whilst showcasing his work as a filmaker and writer.  The site will also be used as a resource for people interested in film or travel to return to.</p>
<p><strong>* Role: Design/UI, HTML, CSS, Javascript</strong></p>
<p><a href="http://www.jbcooper.com/" target="blank">Visit Site</a></p>
</div>
<div class="images"><img src="http://andymarciniak.com/wp-content/uploads/2010/08/jbcooper.jpeg" alt="" title="jbcooper" width="500" height="250" class="alignnone size-full wp-image-752" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/jbcooper2.png" alt="" title="jbcooper2" width="220" height="196" class="alignleft size-full wp-image-753" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/jbcooper3.png" alt="" title="jbcooper3" width="220" height="272" class="alignright size-full wp-image-754" /></div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/jb-cooper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Villa Riachuelo</title>
		<link>http://andymarciniak.com/portfolio/villa-riachuelo/</link>
		<comments>http://andymarciniak.com/portfolio/villa-riachuelo/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:04:56 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=354</guid>
		<description><![CDATA[Villa Riachuelo (2009)]]></description>
			<content:encoded><![CDATA[<div class="summary">
<h3>A showcase site for a Villa in Malaga, Spain</h3>
<p>The feel of this site is based around a warm, hispanic, colour scheme with an emphasis on a homely, simple, slightly rustic style.  I used a watercolour painting metaphor to achieve this, incorporating a Andalucian landscape watercolour on a paper texture background.</p>
<p>The purpose of the site is to attract bookings for the villa all year round by using engaging photography and descriptive copy.  The site was built to appeal to a luxury market whilst still remaining affordable to the majority.</p>
<p><strong>* Role: Design/UI, XHTML, CSS, Javascript</strong></p>
<p><a href="http://www.villariachuelomalaga" target="blank">Visit Site</a>
</div>
<div class="images">
<img src="http://andymarciniak.com/wp-content/uploads/2010/08/Villa-Riachuelo.jpeg" alt="" title="Villa Riachuelo" width="500" height="250" class="alignnone size-full wp-image-755" /><a href="http://andymarciniak.com/wp-content/uploads/2010/08/villaria2.png"><img src="http://andymarciniak.com/wp-content/uploads/2010/08/villaria2.png" alt="" title="villaria2" width="220" height="268" class="alignleft size-full wp-image-756" /></a><img src="http://andymarciniak.com/wp-content/uploads/2010/08/villaria3.png" alt="" title="villaria3" width="220" height="209" class="alignright size-full wp-image-757" /></div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/villa-riachuelo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HostelBookers.com</title>
		<link>http://andymarciniak.com/portfolio/hostelbookers-com/</link>
		<comments>http://andymarciniak.com/portfolio/hostelbookers-com/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:03:38 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=351</guid>
		<description><![CDATA[HostelBookers.com (2009)]]></description>
			<content:encoded><![CDATA[<div class="summary">
<h3>Re-design and font-end build of global hostel booking web site.</h3>
<p>The aim of the HostelBookers rebuild was to build a faster, more efficient service whilst reestablishing a brand within the travel industry.  This lead to an increase in traffic and conversions.</p>
<p>The design was based around improving usability, accessibility and organising huge amounts of content into an easily digestible format.</p>
<p>Many new features were incorporated including a new keyword search mechanism, AJAX functionality such as search filters and form validation and Google Maps integration.</p>
<p>The redesign also involved the creation of a travel guides section, which needed to be easily navigable and use the content and photography to provide an engaging experience whilst driving traffic back to the main site.</p>
<p><strong>* Role: Design/UI, XHTML, CSS, Javascript</strong></p>
<p><a href="http://www.hostelbookers.com" target="blank">Visit Site</a>
</div>
<div class="images">
<img src="http://andymarciniak.com/wp-content/uploads/2010/08/Hostelbookers.jpeg" alt="" title="Hostelbookers" width="500" height="250" class="alignnone size-full wp-image-749" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/hostelbookers2.png" alt="" title="hostelbookers2" width="220" height="224" class="alignleft size-full wp-image-750" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/hostelbookers3.png" alt="" title="hostelbookers3" width="220" height="152" class="alignright size-full wp-image-751" /></div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/hostelbookers-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HostelBookers Blog</title>
		<link>http://andymarciniak.com/portfolio/hostelbookers-blog/</link>
		<comments>http://andymarciniak.com/portfolio/hostelbookers-blog/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:03:14 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=349</guid>
		<description><![CDATA[HostelBookers Blog (2009)]]></description>
			<content:encoded><![CDATA[<div class="summary">
<h3>The Official HostelBookers Blog</h3>
<p>The main look and feel of this site was to be a less corporate, more friendly and engaging version of HostelBookers, attracting backpackers from all over the world.</p>
<p>Driven by content and photography, the site uses a fairly clean interface where the content is the focal point.  There were also many social networking features built into the site in an effort to create a community and readership around the blog.  The overall purpose of the blog is to drive traffic back to the main HostelBookers site and generate traffic through SEO.</p>
<p><strong>* Role: Design/UI, HTML, CSS, JS, PHP, MYSQL</strong></p>
<p><a href="http://blog.hostelbookers.com" target="blank">Visit Site</a>
</div>
<div class="images"><img src="http://andymarciniak.com/wp-content/uploads/2010/08/Hostelbookers-Blog.jpeg" alt="Hostelbookers Blog" title="Hostelbookers Blog" width="500" height="250" class="alignnone size-full wp-image-764" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/hbblog2.png" alt="" title="hbblog2" width="220" height="231" class="alignleft size-full wp-image-762" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/hbblog3.png" alt="" title="hbblog3" width="220" height="235" class="alignright size-full wp-image-763" /></div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/hostelbookers-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Sweat Shakespeare Blog</title>
		<link>http://andymarciniak.com/portfolio/no-sweat-shakespeare/</link>
		<comments>http://andymarciniak.com/portfolio/no-sweat-shakespeare/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:02:48 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=347</guid>
		<description><![CDATA[No Sweat Shakespeare Blog (2008)]]></description>
			<content:encoded><![CDATA[<div class="summary">
<h3>Informal Shakespearean Literature Blog</h3>
<p>The theme is kept with the popular main site, using rustic, vintage styles.</p>
<p>The aim of the site is provide a resource to people interested in, or<br />
studying Shakespearean literature.</p>
<p><strong>* Role: Design/UI, HTML, CSS, JS, PHP, MYSQL</strong></p>
<p><a href="http://www.nosweatshakespeare.com/blog/" target="blank">Visit Site</a>
</div>
<div class="images">
<img src="http://andymarciniak.com/wp-content/uploads/2010/08/No-Sweat-Shakespeare-Blog.jpeg" alt="" title="No Sweat Shakespeare Blog" width="500" height="250" class="alignnone size-full wp-image-765" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/nss2.png" alt="" title="nss2" width="220" height="119" class="alignleft size-full wp-image-766" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/nss3.png" alt="" title="nss3" width="220" height="233" class="alignright size-full wp-image-767" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/no-sweat-shakespeare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Travel Intelligence Blog</title>
		<link>http://andymarciniak.com/portfolio/travel-intelligence-blog/</link>
		<comments>http://andymarciniak.com/portfolio/travel-intelligence-blog/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 11:01:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=522</guid>
		<description><![CDATA[Travel Intelligence Blog (2009)]]></description>
			<content:encoded><![CDATA[<div class="summary">
<h3>Blog site linked to Boutique and Luxury hotel site Travel intelligence</h3>
<p>The blog attracts a fairly high brow readership so the look and feel needed to match this and the writing style and themes.  It also crosses over the brand from the TI.com site.</p>
<p><strong>* Role: Design/UI, HTML, CSS, PHP</strong></p>
<p><a href="http://blog.travelintelligence.com/" target="blank">Visit Site</a>
</div>
<div class="images">
<img src="http://andymarciniak.com/wp-content/uploads/2010/08/tiblog1.png" alt="" title="tiblog1" width="500" height="250" class="alignnone size-full wp-image-768" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/tiblog2.png" alt="" title="tiblog2" width="200" height="142" class="alignleft size-full wp-image-769" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/tiblog3.png" alt="" title="tiblog3" width="200" height="289" class="alignright size-full wp-image-770" />
</div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/travel-intelligence-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Max Bradley Photography</title>
		<link>http://andymarciniak.com/portfolio/max-bradley-photography/</link>
		<comments>http://andymarciniak.com/portfolio/max-bradley-photography/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 22:51:53 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=343</guid>
		<description><![CDATA[Max Bradley Photography (2008)]]></description>
			<content:encoded><![CDATA[<div class="summary">
</div>
<div class="images">
<img src="http://andymarciniak.com/wp-content/uploads/2010/08/maxbradley1.jpg" alt="" title="maxbradley1" width="500" height="250" class="alignnone size-full wp-image-719" /><br />
<img src="http://andymarciniak.com/wp-content/uploads/2010/01/maxbradleydesign.jpeg" alt="" title="maxbradleydesign" width="500" height="374" class="alignnone size-full wp-image-776" /></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/max-bradley-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Natasha Barber</title>
		<link>http://andymarciniak.com/portfolio/natasha-barber/</link>
		<comments>http://andymarciniak.com/portfolio/natasha-barber/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 23:02:28 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=345</guid>
		<description><![CDATA[Natasha Barber (2008)]]></description>
			<content:encoded><![CDATA[<div class="summary">
<h3>A portfolio site for London-based Film Artist Natasha Barber</h3>
<p>It was important to reflect Natashas personality by using clean and feminine styles and colours.</p>
<p>The site showcases the work from an artistic viewpoint with short film clips and sketching slideshows.</p>
<p><strong>* Role: Design/UI, XHTML, CSS, Javascript, Flash</strong></p>
<p><a href="http://www.natashabarber.com" target="blank">Visit Site</a>
</div>
<div class="images"><img src="http://andymarciniak.com/wp-content/uploads/2010/08/Natasha-Barber.jpeg" alt="" title="Natasha Barber" width="500" height="250" class="alignnone size-full wp-image-779" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/natashab2.png" alt="" title="natashab2" width="220" height="198" class="alignleft size-full wp-image-780" /><img src="http://andymarciniak.com/wp-content/uploads/2010/08/natashab3.png" alt="" title="natashab3" width="220" height="304" class="alignright size-full wp-image-781" /></div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/natasha-barber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serv-U Ltd.</title>
		<link>http://andymarciniak.com/portfolio/serv-u-ltd/</link>
		<comments>http://andymarciniak.com/portfolio/serv-u-ltd/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 22:47:43 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://localhost:8888/?p=340</guid>
		<description><![CDATA[Serv-U Ltd. (2008)]]></description>
			<content:encoded><![CDATA[<div class="summary">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat</p>
<p><strong>* Role: Design/UI, XHTML</strong>
</div>
<div class="images"><img src="http://andymarciniak.com/wp-content/uploads/2010/01/Serv-U-Ltd.jpeg" alt="Serv-U Ltd" title="Serv-U Ltd" width="500" height="250" class="alignnone size-full wp-image-783" /></div>
]]></content:encoded>
			<wfw:commentRss>http://andymarciniak.com/portfolio/serv-u-ltd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

