<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Candy by James</title>
	
	<link>http://james.gameover.com</link>
	<description>A journal by a James</description>
	<lastBuildDate>Sat, 07 Nov 2009 18:20:21 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Music</media:category><itunes:explicit>no</itunes:explicit><itunes:subtitle>A journal by a James</itunes:subtitle><itunes:category text="Music" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/CandyByJames" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Vertically centring in css (without hacks and multi-line enabled)</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/v6sP2KVyNg4/</link>
		<comments>http://james.gameover.com/index.php/2009/vertically-centring-in-css-without-hacks-and-multi-line-enabled/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 16:09:28 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://james.gameover.com/?p=397</guid>
		<description><![CDATA[Chris Coyier over at css-tricks.com had a great example of a css conundrum: how to centre, both vertically and horizontally, multiple lines of text. He some good code (using table-cell) but his code for IE relied on some (script)expressions which can have the unfortunate habbit of slowing down a page.
[update: to get a bit more [...]]]></description>
			<content:encoded><![CDATA[<p>Chris Coyier over at css-tricks.com had a <a href="http://css-tricks.com/vertically-center-multi-lined-text/">great example of a css conundrum</a>: how to centre, both vertically and horizontally, multiple lines of text. He some good code (using table-cell) but his code for IE relied on some (script)expressions which can have the unfortunate habbit of slowing down a page.</p>
<p>[<strong>update</strong>: to get a bit more background on absolute &amp; relative positioning, and how to center horizontally, read:  <a href="/index.php/2005/on-horisontal-css-centering-using-absolute-positioning/">On Horizontal CSS Centering using Absolute Positioning or how Relative Positioning can rock your css</a>.]</p>
<p>The regular way of <a rel="nofollow" href="http://www.jakpsatweb.cz/css/css-vertical-center-solution.html">vertically centring in css</a> has been documented by Dušan Janovský back in 2004. It needs an extra div for its IE solution, but it doesn’t require any expressions, only regular (fast!) css. Because a div-tag is semantically empty (like the span-tag), it doesn’t add any wrong semantic meaning (like a table-tag would).</p>
<p>The <code>.area</code> div isn’t stricly necessary, but it was in the original problem posed in the css-tricks.com article. I have however edited out the superfluous background declaration, as it doesn’t have anything to do with positioning.</p>
<blockquote><p>I’ve updated the example to use <a href="http://www.simonclayson.co.uk/reportage/comments/ie_6_text_only/">conditional comments</a> instead of hacks. The html (in your page) becomes:</p>
<p><code>&lt;div class="area" id="two"&gt;<br />
&lt;div class="bubble"&gt;<br />
&lt;div&gt;<br />
&lt;p&gt;Doing this may not be as easy or obvious as we would hope.&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>The css (in your stylesheet) becomes:</p>
<p><code>.area {width:300px; height:300px; position:relative; float:left; }<br />
.bubble {position:absolute; left:93px; top:21px; width:135px; height:84px; display:table; }<br />
.bubble div {display:table-cell; vertical-align:middle; text-align:center;}<br />
</code></p>
<p>The IE specific css (in your html-page) becomes:</p>
<p><code>&lt;!--[if lt IE 8]&gt;<br />
&lt;style&gt;<br />
.bubble div {position:absolute; top:50%;}<br />
.bubble div p {position:relative; top:-50%}<br />
&lt;/style&gt;<br />
&lt;![endif]–&gt;</code></p></blockquote>
<p>Have a <a href="http://css-tricks.com/examples/VerticallyCenteredText/">look at the demo</a> to see what you should end up with. Questions welcome!</p>
<p><a href="http://james.gameover.com/index.php/2009/vertically-centring-in-css-without-hacks-and-multi-line-enabled/" rel="bookmark">Vertically centring in css (without hacks and multi-line enabled)</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 14 July 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/vertically-centring-in-css-without-hacks-and-multi-line-enabled/</feedburner:origLink></item>
		<item>
		<title>CSS3 Fonts: The ideal implementation</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/m6DdLt0CRLI/</link>
		<comments>http://james.gameover.com/index.php/2009/css-3-fonts-the-ideal/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 15:00:15 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://james.gameover.com/?p=408</guid>
		<description><![CDATA[This series of articles is about the challenges that arise when using @font-face. Font licensing is one (that many others have written about) and the file-size of included font-files is another, but this article is about browser implementation eccentricities. I’ll start off by showing the ideal @font-face implementation in this article, before moving on to [...]]]></description>
			<content:encoded><![CDATA[<p>This series of articles is about the challenges that arise when using @font-face. Font licensing is one (that <a href="http://dbaron.org/log/20090317-fonts">many</a> <a href="http://blogs.msdn.com/ie/archive/2008/07/21/font-embedding-on-the-web.aspx">others</a> <a href="http://blog.typekit.com/2009/06/11/when-free-fonts-arent-free/">have</a><a href="http://www.webdirections.org/blog/the-return-of-font-embedding-to-the-web/"> written</a> about) and the file-size of included font-files is another, but this article is about browser implementation eccentricities. I’ll start off by showing the ideal @font-face implementation in this article, before moving on to showing current browser deficiencies and the implementation I settled on for including a full font-family which works in the here and now.</p>
<p>Ideally, designers would specify the font-file they wanted to use for regular text, and then one for each variation they had at their disposal (so, one for Bold, Italic, Bold Italic, Small Caps, Light, Ultra Condensed, etc.) – all using the same font-family name, so that all variations would be picked up automatically for body text, and, if @font-face isn’t supported by the browser,  all text will still display in the proper font-variant.</p>
<blockquote><p>To do that, your css would look something like this:</p>
<p><code>/* A font by Jos Buivenga (exljbris) -&gt; www.exljbris.nl */<br />
@font-face {font-family: "Fontin Sans";<br />
src: url(fonts/Fontin_Sans_R_45b.otf) format("opentype");<br />
}<br />
@font-face {font-family: "Fontin Sans";<br />
src: url(fonts/Fontin_Sans_B_45b.otf) format("opentype");<br />
font-weight: bold;<br />
}<br />
@font-face {font-family: "Fontin Sans";<br />
src: url(fonts/Fontin_Sans_I_45b.otf) format("opentype");<br />
font-style: italic;<br />
}<br />
@font-face {font-family: "Fontin Sans";<br />
src: url(fonts/Fontin_Sans_BI_45b.otf) format("opentype");<br />
font-style: italic;<br />
font-weight: bold;<br />
}<br />
@font-face {font-family: "Fontin Sans";<br />
src: url(fonts/Fontin_Sans_SC_45b.otf) format("opentype");<br />
font-variant: small-caps;<br />
}</code></p></blockquote>
<p>This would ensure proper fall-back in browsers that don’t support @font-face (or only part of it) and compatibility with current stylesheets, making @font-face implementation for designers plug-&amp;-play.</p>
<p>The <em>ideal</em> @font-face rendering (on the left) and fall-back rendering (on the right) would look a little like this (notice the fi-ligature!):</p>
<div class="insertimg"><a title="ideal-fallback by James John Malcolm, on Flickr" href="http://www.flickr.com/photos/akaxaka/3713309878/"><img src="http://farm3.static.flickr.com/2620/3713309878_a9fb7bd82e.jpg" alt="ideal-fallback" width="500" height="209" /></a></div>
<p>You’ll have guessed by now that browsers haven’t reached this ideal implementation yet. The series will continue with CSS 3 Fonts: The here and now.</p>
<p><em>Information in this series was acquired while <a href="http://james.gameover.com/index.php/portfolio/#s-next">working on the design and css</a> for the site of Standards.next and subsequent tests afterwards. The Fontface used in this example is <a href="http://www.josbuivenga.demon.nl/fontinsans.html">Fontin Sans by Exljbris (Jos Buivenga)</a></em><em>.</em></p>
<p><a href="http://james.gameover.com/index.php/2009/css-3-fonts-the-ideal/" rel="bookmark">CSS3 Fonts: The ideal implementation</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 12 July 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/css-3-fonts-the-ideal/</feedburner:origLink></item>
		<item>
		<title>Rain.
Hong Kong (via spaceships via talkev)</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/Pt2wJgtSgRc/</link>
		<comments>http://james.gameover.com/index.php/2009/rain-hong-kong-via%c2%a0spaceships-via-talkev/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 14:54:56 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/129385824</guid>
		<description><![CDATA[<img><br /><br /><p>Rain.</p>
<blockquote>Hong Kong (via <a href="http://spaceships.tumblr.com/post/128035953/hong-kong-via-talkev">spaceships</a> via <a href="http://www.flickr.com/photos/tallkev/249136794/">talkev</a>)</blockquote>]]></description>
			<content:encoded><![CDATA[<p><img src="http://14.media.tumblr.com/MhArk9gLvp0m47ic5ESJioUXo1_500.jpg"/><br/><br/>
<p>Rain.</p>
<blockquote><p>Hong Kong (via <a href="http://spaceships.tumblr.com/post/128035953/hong-kong-via-talkev">spaceships</a> via <a href="http://www.flickr.com/photos/tallkev/249136794/">talkev</a>)</p></blockquote>
<p><a href="http://james.gameover.com/index.php/2009/rain-hong-kong-via%c2%a0spaceships-via-talkev/" rel="bookmark">Rain.<br />
Hong Kong (via spaceships via talkev)</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 24 June 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/rain-hong-kong-via%c2%a0spaceships-via-talkev/</feedburner:origLink></item>
		<item>
		<title>Good Example: YouWorkForThem</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/_NCCw5O3vhA/</link>
		<comments>http://james.gameover.com/index.php/2009/good-example-youworkforthem/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 12:13:32 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/116765915</guid>
		<description><![CDATA[<a href="http://www.youworkforthem.com/blog/category/art/">Good Example: YouWorkForThem</a>: <p>Nice clear vertical design from YouWorkForThem. Good use of fixed positioning for the pagination.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youworkforthem.com/blog/category/art/">Good Example: YouWorkForThem</a>:
<p>Nice clear vertical design from YouWorkForThem. Good use of fixed positioning for the pagination.</p>
<p><a href="http://james.gameover.com/index.php/2009/good-example-youworkforthem/" rel="bookmark">Good Example: YouWorkForThem</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 2 June 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/good-example-youworkforthem/</feedburner:origLink></item>
		<item>
		<title>Ootje Oxenaar designer of the most beautiful banknotes in the…</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/7ypdgIh65AU/</link>
		<comments>http://james.gameover.com/index.php/2009/ootje%c2%a0oxenaar-designer-of-the-most-beautiful-banknotes-in-the/#comments</comments>
		<pubDate>Thu, 21 May 2009 08:37:18 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/110894047</guid>
		<description><![CDATA[<img><br /><br /><p><a href="http://www.creativereview.co.uk/cr-blog/2007/february/the-money-maker">Ootje Oxenaar</a> designer of the most beautiful banknotes in the world. (Guilder notes, now replaced by the euro) – via <a href="http://www.creativereview.co.uk/"><a href="http://www.creativereview.co.uk">www.creativereview.co.uk</a></a></p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://14.media.tumblr.com/0oOejCJhInqr81wcoekxXkhFo1_500.jpg"/><br/><br/>
<p><a href="http://www.creativereview.co.uk/cr-blog/2007/february/the-money-maker">Ootje Oxenaar</a> designer of the most beautiful banknotes in the world. (Guilder notes, now replaced by the euro) – via <a href="http://www.creativereview.co.uk/"><a href="http://www.creativereview.co.uk">www.creativereview.co.uk</a></a></p>
<p><a href="http://james.gameover.com/index.php/2009/ootje%c2%a0oxenaar-designer-of-the-most-beautiful-banknotes-in-the/" rel="bookmark">Ootje Oxenaar designer of the most beautiful banknotes in the…</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 21 May 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/ootje%c2%a0oxenaar-designer-of-the-most-beautiful-banknotes-in-the/</feedburner:origLink></item>
		<item>
		<title>Refreshed Candy</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/NX0kcdWdsfs/</link>
		<comments>http://james.gameover.com/index.php/2009/refreshed-candy/#comments</comments>
		<pubDate>Tue, 05 May 2009 21:59:05 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://james.gameover.com/?p=384</guid>
		<description><![CDATA[Just a quick note to commemorate a design refresh of this site. Have been looking for ways to create seperate attention for main text and the sidebar. Can’t say I haven’t been inspired by Jon Hicks (and others) who has also just implemented a differing-colour-main-part-with-border on his site. Kept the main nav in the middle, to [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to commemorate a design refresh of this site. Have been looking for ways to create seperate attention for main text and the sidebar. Can’t say I haven’t been inspired by <a href="http://www.hicksdesign.co.uk/journal/">Jon Hicks</a> (and <a href="http://tangerine-tree.net/">others</a>) who has also just implemented a differing-colour-main-part-with-border on his site. Kept the main nav in the middle, to <span style="text-decoration: line-through;">add ugliness</span> give the design a quirky edge. If I have time to put the searchbar up top the nav may be able to move over to the left.</p>
<p>You’ll notice the logo is a lot smaller. What can I say? My <a href="http://makemylogobiggercream.com/">cream ran out</a>, plain and simple. I’m much happier with it, now it’s smaller. I’ve still to update the logos for the inspiration square.</p>
<p>The sidebar <span style="text-decoration: line-through;">still suffers from mixed header styles</span> headers have been updated too. Haven’t managed to add any other colours to the red &amp; gold colour scheme yet though!</p>
<p>Make sure you visit my (on site!) <a href="http://james.gameover.com/index.php/category/tumblr/">Tumblr page</a>. An upcoming post will describe how I managed to create internal links to the content there — the “latest interesting stuff” links in the sidebar are generated on the fly.</p>
<p>Of course, if you find any quirks, let me know.</p>
<p><a href="http://james.gameover.com/index.php/2009/refreshed-candy/" rel="bookmark">Refreshed Candy</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 5 May 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/refreshed-candy/</feedburner:origLink></item>
		<item>
		<title>Fierce Disco Angels Wallpaper (Double Bill)</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/WdhmmrlCOvs/</link>
		<comments>http://james.gameover.com/index.php/2009/fierce-disco-angels-wallpaper-double-bill/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:03:58 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://james.gameover.com/?p=359</guid>
		<description><![CDATA[Now here’s a treat: two Jason Brooks wallpapers from his time at Fierce Angels. He’s left now, and Fierce Angels have taken on Jason Jaroslav Cook to create their covers.
The first wallpaper is taken from the beautiful Jason Brooks illustration on the website of Fierce Angels, from their september 2006 re-style. A beautiful dark angel, [...]]]></description>
			<content:encoded><![CDATA[<p>Now here’s a treat: two <a href="http://www.jason-brooks.com/">Jason Brooks</a> wallpapers from his time at Fierce Angels. He’s left now, and <a href="http://www.thefutureisfierce.com/">Fierce Angels</a> have taken on <a href="http://www.jasoncook.co.uk/">Jason Jaroslav Cook</a> to create their covers.</p>
<p>The first wallpaper is taken from the beautiful Jason Brooks illustration on the website of Fierce Angels, from their september 2006 re-style. A beautiful dark angel, with a big sword, high heeled boots and a thunderous sky above her. What more could you want?</p>
<div class="insertimg"><a href="http://www.flickr.com/photos/akaxaka/420324911/sizes/o/in/set-72157600055741578/"><img src="http://farm1.static.flickr.com/150/420324911_4ca0f1c589.jpg" alt="Fierce Angels Wallpaper (september06) (10x7)" width="500" height="375" /></a></div>
<p>Next up is a disco girl, taken from the cover of a Fierce Angels CD, Fierce Disco, in stores from 16th of April 2007. Somewhat less dramatic, but still nice to have if you’re a fan of the style.</p>
<div class="insertimg"><a href="http://www.flickr.com/photos/akaxaka/450647275/sizes/m/in/set-72157600055741578/"><img src="http://farm1.static.flickr.com/223/450647275_d9d4df34e9.jpg" alt="Fierce Disco (1024x768)" width="500" height="375" /></a></div>
<p>Download: <a href="http://www.flickr.com/photos/akaxaka/420324911/sizes/o/in/set-72157600055741578/">Fierce Angel 2006</a> &amp; <a href="http://www.flickr.com/photos/akaxaka/450647275/sizes/m/in/set-72157600055741578/">Fierce Disco</a>. Enjoy!</p>
<p><a href="http://james.gameover.com/index.php/2009/fierce-disco-angels-wallpaper-double-bill/" rel="bookmark">Fierce Disco Angels Wallpaper (Double Bill)</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 27 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/fierce-disco-angels-wallpaper-double-bill/</feedburner:origLink></item>
		<item>
		<title>In the  future, all houses should have stairs with a side slide.…</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/ihI284JuVu4/</link>
		<comments>http://james.gameover.com/index.php/2009/in-the-%c2%a0future-all-houses%c2%a0should-have-stairs-with-a-side-slide/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 15:15:00 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/97201856</guid>
		<description><![CDATA[<img><br /><br /><p>In the  future, all houses <a href="http://1.bp.blogspot.com/_oGAywUGHKdI/SdPaIqAFlWI/AAAAAAAAASw/KPXNTU8JP4k/s1600-h/hosl01_green_house.jpg">should have stairs with a side slide</a>. Via <a href="http://www.cookiemag.com/homefront/decor/2008/11/london_greenhouse?slide=2#showSlide">CookieMag</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://6.media.tumblr.com/0oOejCJhImekgl4k1hTrxIWeo1_400.jpg"/><br/><br/>
<p>In the  future, all houses <a href="http://1.bp.blogspot.com/_oGAywUGHKdI/SdPaIqAFlWI/AAAAAAAAASw/KPXNTU8JP4k/s1600-h/hosl01_green_house.jpg">should have stairs with a side slide</a>. Via <a href="http://www.cookiemag.com/homefront/decor/2008/11/london_greenhouse?slide=2#showSlide">CookieMag</a>.</p>
<p><a href="http://james.gameover.com/index.php/2009/in-the-%c2%a0future-all-houses%c2%a0should-have-stairs-with-a-side-slide/" rel="bookmark">In the  future, all houses should have stairs with a side slide.…</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 17 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/in-the-%c2%a0future-all-houses%c2%a0should-have-stairs-with-a-side-slide/</feedburner:origLink></item>
		<item>
		<title>Jon Hicks has just redesigned his site. It includes a great…</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/eZZzJ7b9Dmo/</link>
		<comments>http://james.gameover.com/index.php/2009/jon-hicks-has-just-redesigned-his-site-it-includes-a-great/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 11:24:17 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/96788855</guid>
		<description><![CDATA[<img><br /><br /><p><a href="http://hicksdesign.co.uk/journal/">Jon Hicks</a> has just redesigned his site. It includes a <a href="http://hicksdesign.co.uk/contact">great contact page</a>!</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://7.media.tumblr.com/0oOejCJhImcwrym09FNoCjFso1_500.png"/><br/><br/>
<p><a href="http://hicksdesign.co.uk/journal/">Jon Hicks</a> has just redesigned his site. It includes a <a href="http://hicksdesign.co.uk/contact">great contact page</a>!</p>
<p><a href="http://james.gameover.com/index.php/2009/jon-hicks-has-just-redesigned-his-site-it-includes-a-great/" rel="bookmark">Jon Hicks has just redesigned his site. It includes a great…</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 16 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/jon-hicks-has-just-redesigned-his-site-it-includes-a-great/</feedburner:origLink></item>
		<item>
		<title>El Ten Eleven playing Hot Cakes. Pure instrumental goodness.…</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/jh1DDomXhZ0/</link>
		<comments>http://james.gameover.com/index.php/2009/el-ten-eleven-playing-hot-cakes-pure-instrumental-goodness/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 16:52:00 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/94892429</guid>
		<description><![CDATA[<br /><br /><p>El Ten Eleven playing Hot Cakes. Pure instrumental goodness. It’s like they only play the cool bits of rock songs.</p>]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="336"><param name="movie" value="http://www.youtube.com/v/xFCRMonf7lI&#038;rel=0&#038;egm=0&#038;showinfo=0&#038;fs=1"></param><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/xFCRMonf7lI&#038;rel=0&#038;egm=0&#038;showinfo=0&#038;fs=1" type="application/x-shockwave-flash" width="400" height="336" allowFullScreen="true" wmode="transparent"></embed></object><br/><br/>
<p>El Ten Eleven playing Hot Cakes. Pure instrumental goodness. It’s like they only play the cool bits of rock songs.</p>
<p><a href="http://james.gameover.com/index.php/2009/el-ten-eleven-playing-hot-cakes-pure-instrumental-goodness/" rel="bookmark">El Ten Eleven playing Hot Cakes. Pure instrumental goodness.…</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 10 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/el-ten-eleven-playing-hot-cakes-pure-instrumental-goodness/</feedburner:origLink></item>
		<item>
		<title>Craig Damrauer has some new math for us.</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/43zxHnW6eOA/</link>
		<comments>http://james.gameover.com/index.php/2009/craig-damrauer-has-some-new-math-for-us/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 14:35:41 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/94855194</guid>
		<description><![CDATA[<img><br /><br /><p>Craig Damrauer has some <a href="http://www.morenewmath.com/about/">new math</a> for us.</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://19.media.tumblr.com/0oOejCJhIm4iyzwySe0qu8Zro1_500.gif"/><br/><br/>
<p>Craig Damrauer has some <a href="http://www.morenewmath.com/about/">new math</a> for us.</p>
<p><a href="http://james.gameover.com/index.php/2009/craig-damrauer-has-some-new-math-for-us/" rel="bookmark">Craig Damrauer has some new math for us.</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 10 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/craig-damrauer-has-some-new-math-for-us/</feedburner:origLink></item>
		<item>
		<title>Has all 120 Crayon Names and Color Codes from Crayola. Brings…</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/xm-NPWYaeo4/</link>
		<comments>http://james.gameover.com/index.php/2009/has-all%c2%a0120-crayon-names-and-color-codes-from-crayola-brings/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 10:46:00 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/93428392</guid>
		<description><![CDATA[<img><br /><br /><p>Has <a href="http://www.colourlovers.com/blog/2008/04/22/all-120-crayon-names-color-codes-and-fun-facts/">all 120 Crayon Names and Color Codes from Crayola</a>. Brings back memories and great colour combinations!</p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://15.media.tumblr.com/0oOejCJhIlyl157iltRnsuC8o1_500.jpg"/><br/><br/>
<p>Has <a href="http://www.colourlovers.com/blog/2008/04/22/all-120-crayon-names-color-codes-and-fun-facts/">all 120 Crayon Names and Color Codes from Crayola</a>. Brings back memories and great colour combinations!</p>
<p><a href="http://james.gameover.com/index.php/2009/has-all%c2%a0120-crayon-names-and-color-codes-from-crayola-brings/" rel="bookmark">Has all 120 Crayon Names and Color Codes from Crayola. Brings…</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 6 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/has-all%c2%a0120-crayon-names-and-color-codes-from-crayola-brings/</feedburner:origLink></item>
		<item>
		<title>Eat Me Daily</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/fXRYOxVgPF4/</link>
		<comments>http://james.gameover.com/index.php/2009/eat-me-daily/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 10:45:08 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/93428140</guid>
		<description><![CDATA[<a href="http://www.eatmedaily.com/2008/10/introduction-mission-statement/">Eat Me Daily</a>: <p><i>Eat Me Daily</i> is a critical (and cynical) take on food, media, and culture.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.eatmedaily.com/2008/10/introduction-mission-statement/">Eat Me Daily</a>:
<p><i>Eat Me Daily</i> is a critical (and cynical) take on food, media, and culture.</p>
<p><a href="http://james.gameover.com/index.php/2009/eat-me-daily/" rel="bookmark">Eat Me Daily</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 6 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/eat-me-daily/</feedburner:origLink></item>
		<item>
		<title>Matt Davey’s portfolio..</title>
		<link>http://feedproxy.google.com/~r/CandyByJames/~3/DMG8bJkb3oM/</link>
		<comments>http://james.gameover.com/index.php/2009/matt-daveys-portfolio/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 10:40:00 +0000</pubDate>
		<dc:creator>James John Malcolm</dc:creator>
				<category><![CDATA[Tumblr]]></category>

		<guid isPermaLink="false">http://jjm.tumblr.com/post/93427571</guid>
		<description><![CDATA[<a href="http://mdfolio.co.uk/">Matt Davey's portfolio..</a>: <p>..has a great navigation. Very focused.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://mdfolio.co.uk/">Matt Davey’s portfolio..</a>:
<p>..has a great navigation. Very focused.</p>
<p><a href="http://james.gameover.com/index.php/2009/matt-daveys-portfolio/" rel="bookmark">Matt Davey’s portfolio..</a> originally appeared on <a href="http://james.gameover.com">Candy by James</a> on 6 April 2009.</p>
]]></content:encoded>
			<wfw:commentRss />
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://james.gameover.com/index.php/2009/matt-daveys-portfolio/</feedburner:origLink></item>
	<media:rating>nonadult</media:rating></channel>
</rss>
