<?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>Matthew Leak&#039;s Blog &#8212; Bigbadbobthefish.com</title>
	<atom:link href="http://www.bigbadbobthefish.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bigbadbobthefish.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 10 Feb 2011 12:28:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>CSS3 Text Gradients</title>
		<link>http://www.bigbadbobthefish.com/css3-text-gradients/</link>
		<comments>http://www.bigbadbobthefish.com/css3-text-gradients/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 12:27:12 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=268</guid>
		<description><![CDATA[A week or so ago I decided it would be a good idea to recreate the Big Bad Bob the Fish logo/text that you can see in the header, using nothing but pure CSS. No secret/hidden PNG images, just the latest advancements in CSS3 technologies. However, it&#8217;s not just as simple as applying a &#8216;text-gradient&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>A week or so ago I decided it would be a good idea to recreate the Big Bad Bob the Fish logo/text that you can see in the header, using nothing but pure CSS. No secret/hidden PNG images, just the latest advancements in CSS3 technologies. However, it&#8217;s not just as simple as applying a &#8216;text-gradient&#8217; (which doesn&#8217;t actually exist), well actually it is in a way. By using a little CSS trickery I was able to recreate the logo; at least in webkit browsers anyway&#8230;<span id="more-268"></span></p>
<p><a class="post-button" href="http://matthewleak.co.uk/css3bob" target="_blank">View Final Result</a></p>
<p><strong>The HTML Markup</strong></p>
<p class="code">&lt;h1&gt;&lt;a href=&#8221;#&#8221;&gt;Big Bad Bob the Fish&lt;/a&gt;&lt;/h1&gt;</p>
<p>That&#8217;s it for the HTML &#8211; <em>really!</em></p>
<p><strong>The Styles</strong></p>
<p>In total, there were four HTML items that needed to be addressed with CSS:</p>
<p>1. h1 element<br />
2. h1 text-shadow<br />
3. h1 a<br />
4. CSS-generated content that lives in the h1 element.</p>
<p>First thing&#8217;s first, style the h1 element:</p>
<p class="code"><strong>h1</strong> {<br />
position: relative;<br />
font-family: ChunkFive, arial, sans-serif;<br />
font-size: 72px;<br />
line-height: 66px;<br />
text-transform: uppercase;<br />
font-weight: normal;<br />
}
</p>
<p class="code">
<strong>h1 a:link,</strong><br />
<strong>h1 a:visited,</strong><br />
<strong>h1 a:hover,</strong><br />
<strong>h1 a:active</strong>{<br />
color: rgb(114,115,113);<br />
}
</p>
<p>After applying the necessary font styles and text-shadows, I styled the h1 a element with the color I wanted to be at the top of the text gradient.</p>
<p>Now for the cool stuff &#8211; applying a mask using the CSS Mask / CSS Gradient properties in webkit browsers&#8230;</p>
<p class="code">
<strong>h1 a:link,</strong><br />
<strong>h1 a:visited,</strong><br />
<strong>h1 a:hover,</strong><br />
<strong>h1 a:active</strong>{<br />
color: rgb(114,115,113);<br />
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));<br />
}</p>
<p>-webkit-mask actually accepts a whole bunch of different things, including images. So we can use a -webkit-gradient value as a mask because it&#8217;s technically an image in it&#8217;s own right. By using the RGBA property, I was able to fade the top text layer out to transparency.</p>
<p>You&#8217;re not actually able to use CSS gradients on your text straight off, so unfortunately the only work around is to use the mask and RGBA properties. So, to fade to the second colour, a second copy of the text is needed to be sitting exactly behind the text that&#8217;s fading into transparency. To achieve this, I targeted the :after pseudo-selector.</p>
<p class="code">
<strong>h1:after</strong>{<br />
content: &#8220;Big Bad Bob The Fish&#8221;;<br />
color: rgb(63,63,63);<br />
}</p>
<p>By all means I could put have placed another copy of the text in the markup and wrapped it in a span, but what&#8217;s the point of unnecessarily dirtying up my markup?</p>
<p>Because I&#8217;ve already applied the position / top / z-index attributes in the CSS markup, both texts should appear &#8216;stacked&#8217; and the text gradient will be in full working order.</p>
<p>Now to complete the look, I added the text-shadows to the h1 element</p>
<p class="code">
<strong>h1</strong> {<br />
position: relative;<br />
font-family: ChunkFive, arial, sans-serif;<br />
font-size: 72px;<br />
line-height: 66px;<br />
text-transform: uppercase;<br />
font-weight: normal;<br />
text-shadow: 0 2px 2px rgb(255,255,255), 0 4px 8px rgba(0,0,0,.4);<br />
}
</p>
<p>There we have it, voila! Click the button below to see the final result. As you can tell, this isn&#8217;t necessarily a tutorial, but more of a guide.</p>
<p><a class="post-button" href="http://matthewleak.co.uk/css3bob" target="_blank">View Final Result</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/css3-text-gradients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Win a copy of Hardboiled Web Design</title>
		<link>http://www.bigbadbobthefish.com/win-a-copy-of-hardboiled-web-design/</link>
		<comments>http://www.bigbadbobthefish.com/win-a-copy-of-hardboiled-web-design/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 14:08:11 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=228</guid>
		<description><![CDATA[I&#8217;m giving you the chance to win a Limited Edition copy of Andy Clarke&#8217;s latest book, Hardboiled Web Design. It really is a great book and I highly recommend that every designer / front-end web developer should have this on their book shelves. &#8220;If you’ve been working on the web for a while, your bookshelves may [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>I&#8217;m giving you the chance to win a <em>Limited Edition</em> copy of <a href="http://twitter.com/#!/malarkey" target="_blank">Andy Clarke&#8217;s</a> latest book, <a href="http://fivesimplesteps.com/books/hardboiled-web-design" target="_blank">Hardboiled Web Design</a>. It really is a great book and I highly recommend that every designer / front-end web developer should have this on their book shelves.<span id="more-228"></span></p>
<p class="quote">&#8220;If you’ve been working on the web for a while, your bookshelves may already be buckling under the weight of books about HTML and CSS. Do you really need another one? &#8230;</p>
<p class="quote">&#8230; Hardboiled Web Design is different. It’s for people who want to understand why, when and how to use the latest HTML5 and CSS3 technologies in their everyday work. Not tomorrow or next week, but today. It won’t teach you the basics of writing markup or CSS, but if you’re hungry to learn about how the latest technologies and techniques will make your websites and applications more creative, flexible and adaptable, then this is the book for you&#8230;</p>
<p class="quote">&#8230; Are you ready to get hardboiled?&#8221;</p>
<p>All you have to do is retweet the message below and leave a comment on this here blog post explaining why <em>you</em> should win the book. Be original as possible, be creative, heck, why not even push the boat out and add some humour?</p>
<p>Don&#8217;t put things like &#8220;I should win because this would mean the world to me&#8221; &#8211; it&#8217;s a book, not an Oscar.</p>
<p class="quote">&#8220;WIN a Limited Edition copy of Hardboiled Web Design by Andy Clarke from @matthewleak &#8212; http://bit.ly/fgtFEq&#8221;</p>
<p><a class="post-button" title="Retweet to Win" href="http://twitter.com/home?status=WIN a Limited Edition copy of Hardboiled Web Design by Andy Clarke from @matthewleak --- http://bit.ly/fgtFEq" target="_blank">Retweet to Win</a></p>
<p><em>Don&#8217;t forget to leave your comment down below! <strong>Closes in 7 days &#8211; 02.02.2011</strong></em></p>
<p><strong>WINNER of the copy of Hard Boiled Web Design that i&#8217;m giving away is, according to random.org; <a href="http://twitter.com/nocturnalmonkey" target="_blank">@nocturnalmonkey</a> &#8212;<a title="http://content.screencast.com/users/ML123456/folders/Jing/media/b082776c-175d-41d3-9cd4-a7e964606494/2011-02-02_2037.png/" rel="nofollow" href="http://bit.ly/fGlmxu" target="_blank">http://bit.ly/fGlmxu</a></strong></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/win-a-copy-of-hardboiled-web-design/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>The Web Designer&#8217;s Mouse</title>
		<link>http://www.bigbadbobthefish.com/the-web-designers-mouse/</link>
		<comments>http://www.bigbadbobthefish.com/the-web-designers-mouse/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 12:22:52 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=212</guid>
		<description><![CDATA[Today I took delivery of my new mouse. Not just any mouse though, a mouse that  is in my opinion the best mouse for designers. I know it&#8217;s just a mouse but this thing is great. For one, it just sits perfectly in your hand, almost like a glove. It&#8217;s really comfortable and light weight [...]]]></description>
			<content:encoded><![CDATA[<p>Today I took delivery of my new mouse. Not just any mouse though, a mouse that  is in my opinion the <strong>best mouse for designers</strong>. I know it&#8217;s <em>just</em> a mouse but this thing is great. For one, it just sits perfectly in your hand, almost like a glove. It&#8217;s really comfortable and light weight which makes it perfect for the designer who never leaves the computer.<span id="more-212"></span></p>
<p>So what mouse am I actually talking about?</p>
<p><a href="http://www.logitech.com/en-us/mice-pointers/mice/devices/5845"><img class="aligncenter size-full wp-image-215" title="Logitech Performance Mouse MX" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/logitech.jpg" alt="Logitech Performance Mouse MX" width="650" height="150" /></a></p>
<p>A great feature of this mouse is the scroll wheel. It glides through web pages depending on the velocity of your flick on the wheel &#8211; It&#8217;s incredibly cool. If you click the button that&#8217;s sat just behind the scroll then the scroll wheel&#8217;s &#8216;glide mode&#8217; (as I like to call it) is turned off and you have the more conventional clicky scroll wheel.</p>
<p>It&#8217;s a wireless mouse but comes with the necessary hardware to turn the mouse into a wired one if that&#8217;s more your thing. Another cool thing is that you can plug this mouse into your mains for a super quick recharge, or even to charge while you work because the battery has died on you.</p>
<p>But the best feature of all has to be this, without a doubt. On the part of the mouse where your thumb rests, there&#8217;s a button and when clicked, all of your open windows / programs are thrown into a sort of exposé-style gallery and you can click the window/program you&#8217;re needing. This is so so so cool and incredibly handy. I will no longer be needing <strong>Alt + Tab &#8211; </strong><em><a href="http://a.yfrog.com/img612/576/p7v1.jpg" target="_blank">See this screenshot.</a></em></p>
<p>As with any great product, there&#8217;s always a catch. Only with this product, there&#8217;s 2.</p>
<p>1. Sorry lefties, this is for right handers only. (as far as I&#8217;m aware there&#8217;s no left hand version of this product)</p>
<p>2. The price tag. At $99 it&#8217;s not that cheap. £69 on eBuyer and £58 on eBay</p>
<p>I highly recommend that all right handed designers purchase this mouse, it&#8217;ll definitely be a worthwhile investment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/the-web-designers-mouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leaky&#8217;s adventure to #naconf &#8211; part 2</title>
		<link>http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-2/</link>
		<comments>http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-2/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 12:42:12 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=133</guid>
		<description><![CDATA[Because my experience at the New Adventures in Web Design conference was some-what overwhelming, I&#8217;ve had to write an absolute mammoth-sized blog post and split it into two separate posts to sum up my experience. So if you haven&#8217;t read Part 1 (an overview of the morning session) then really, you should do that first. [...]]]></description>
			<content:encoded><![CDATA[<p>Because my experience at the <a href="http://newadventuresconf.com" target="_blank">New Adventures in Web Design</a> conference was some-what overwhelming, I&#8217;ve had to write an absolute mammoth-sized blog post and split it into two separate posts to sum up my experience. So if you haven&#8217;t read <a href="http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-1/" target="_blank">Part 1</a> (an overview of the morning session) then really, you should <a href="http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-1/" target="_blank">do that first</a>.<span id="more-133"></span></p>
<p>So without further ado, let&#8217;s get to it.</p>
<p><img class="aligncenter size-full wp-image-141" title="Tim van Damme" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/timvandamme.jpg" alt="" width="650" height="150" /></p>
<p>The afternoon session kicked off with Tim Van Damme, who talked about web apps and how it&#8217;s important that they should be kept simple <em>(and he&#8217;s totally right!</em>)</p>
<p>He also gave some extremely good advice to designers. He said, on each project create a list of pros and cons of the finished piece and keep it. Then, on your next project have that piece of paper with you and try and correct the cons. Personally, I think that&#8217;s what every designer should be doing anyway, it&#8217;s the only way you&#8217;re really going to better your skill set as a designer.</p>
<p><em>ps. His work on <a href="http://gowalla.com/leaky">Gowalla</a> is amazing&#8230;</em></p>
<p><em><img class="aligncenter size-full wp-image-153" title="Greg Wood" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/gregwood.jpg" alt="" width="650" height="150" /></em></p>
<p>Next up, it&#8217;s Greg Wood. His talk about Art Direction on the Web was great, and thinking about it now, it was also a bit of an eye opener. He based his talk on a series of tests that he carried out by testing the none-designers&#8217; response to Art Direction on the Web.</p>
<p>His first test was a web page containing information about the T-Rex. He had two versions of the same text, one version was formatted in a very simple way and the other was an art directed post containing diagrams and pictures which aimed to attract more interest.</p>
<p>His second test was based on a Jamie Oliver recipe, and he did exactly the same thing as test 1. One recipe, two versions, one formatted in a simple way, and the other an art directed post.</p>
<p>His conclusion (as expected) was that Art Directed posts are generally more well received, but the Web is full of consumers who don&#8217;t really care for Art Direction on the Web and take the nice sites they see for granted.</p>
<p class="quote">&#8230; &#8220;Art direction is about evoking the right emotion. It&#8217;s about creating that connection to what you&#8217;re seeing and experiencing.&#8221; &#8230;</p>
<p><img class="aligncenter size-full wp-image-158" title="Veerle Pieters" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/veerlepieters.jpg" alt="" width="650" height="150" /></p>
<p>Veerle Pieters was up next talking about inspiration and how to become inspired. Like most designers, I&#8217;m always looking for inspiration when working on projects and so I was eager to hear what she had to say, and the stuff that she did have to say, well, it was so true.</p>
<p>I don&#8217;t really know how to put her main points into a paragraph so I&#8217;m just gonna quote them directly.</p>
<p class="quote">&#8230; &#8220;Inspiration is Everywhere&#8221; &#8230;</p>
<p class="quote">&#8230; &#8220;Don&#8217;t focus too much on finding the answer. It will come when you least expect it&#8221; &#8230;</p>
<p class="quote">&#8230; &#8220;By using trial and error on one idea, it could inspire another&#8221; &#8230;</p>
<p class="quote">&#8230; &#8220;Experiment!&#8221; &#8230;</p>
<p><img class="aligncenter size-full wp-image-170" title="Andy Clarke" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/andyclarke.jpg" alt="" width="650" height="150" /></p>
<p>Andy Clarke was up next who compared the Web to Comic books. He said that Comic books could help with pacing in web design. In comics, the size of the comic strip / panel indicates the amount of time you will spend reading. The larger the panel, the longer you&#8217;ll spend reading on that panel and the shorter / more broken the panel, the less time you&#8217;ll spend reading.</p>
<p class="quote">&#8230;&#8221;Getting the reader to think can be a very good thing in the right context.&#8221; &#8230;</p>
<p>This guy&#8217;s talk was another eye opener and made so much sense (as you&#8217;d hope) so I went and bought his book, Hardboiled. I&#8217;ve been recommended by many to buy this book and I&#8217;m glad I did. I&#8217;m only 50 pages or so in and I&#8217;m already hooked.  I recommend you <a href="http://fivesimplesteps.com/books/hardboiled-web-design" target="_blank">buy the book</a> too if you haven&#8217;t already done so and you&#8217;re a fellow web geek.</p>
<p><img class="aligncenter size-full wp-image-177" title="Brendan Dawes" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/brendandawes.jpg" alt="" width="650" height="150" /></p>
<p>Fuck me, what a great end to a brain-mashing day. This guy is hilarious, a Legend, and a stationary-obsessed fellow Mancunian. This guy really put on the perfect end to a great day. When I saw the title of his talk, &#8220;Produced for Use&#8221;, I kind of expected his talk to be about good User Interfaces and stuff, but no, it was about a fucking spaghetti measurer. Genius. (his talk that is, not the idea of a spaghetti measurer).</p>
<p>I emailed <a href="http://mnatwork.com" target="_blank">Magnetic North</a> in the Summer asking if they had any work or anything going. I got a reply from the agency saying that they liked my work, but there was nothing available at that moment. If I&#8217;d have known how cool this guy actually is, I&#8217;d have worked for biscuits.</p>
<p>In a sad but cool way, I really do wish that this guy was my Dad.</p>
<p><img class="aligncenter size-full wp-image-183" title="Simon Collison" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/simoncollison.jpg" alt="" width="650" height="150" /></p>
<p>I know I&#8217;ve already said this, but I just wanna say another Thanks to <a href="http://twitter.com/colly" target="_blank">@Colly</a> for putting together an amazing event. You can really tell how much ball ache he put into organising the event, so yeah, Thank You. This was my first conference that I&#8217;ve attended and I don&#8217;t think it&#8217;s going to be the last. I hope #naconf will return next year&#8230;</p>
<p>ps. <em>the newspaper is mint.</em></p>
<p>This one goes to <a href="http://twitter.com/craftedpixelz" target="_blank">@craftedemz</a>, who, after talking to for a while on Twitter, I finally met at #naconf. He&#8217;s actually quite funny and a nice all round chap.</p>
<p>Unfortunately though, I did miss the opportunity to catch up with <a href="http://twitter.com/chrisspooner" target="_blank">@chrisspooner</a> who I&#8217;ve been meaning to catch up with for a while now. He must be a ninja with a power to turn invisible or something because I could never see him during the breaks &#8211; <em>Maybe next time, ey?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leaky&#8217;s adventure to #NACONF &#8211; Part 1</title>
		<link>http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-1/</link>
		<comments>http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-1/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 23:25:27 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=47</guid>
		<description><![CDATA[Yesterday, Myself and @Pudny attended the New Adventures in Web Design conference and it was great.  This was the first time I&#8217;d attended any conference so I was a little unsure what to actually expect, but I really enjoyed the days events. The speakers were great, the atmosphere was great and the brews were great. [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, <a href="http://twitter.com/matthewleak" target="_blank">Myself</a> and <a href="http://twitter.com/pudny" target="_blank">@Pudny</a> attended the <a href="http://newadventuresconf.com" target="_blank">New Adventures in Web Design</a> conference and it was great.  This was the first time I&#8217;d attended any conference so I was a little unsure what to actually expect, but I really enjoyed the days events. The speakers were great, the atmosphere was great and the brews were great.<span id="more-47"></span></p>
<p>This was the first #naconf event <em>(and i&#8217;m sure it won&#8217;t be the last) </em>and it was a definite success. Props must go to Mr. Simon Collison for all the hard work he&#8217;s put into the event. I liked his little talks, and I especially liked it when he said</p>
<p class="quote">&#8220;&#8230; and we weren&#8217;t looking to make a profit&#8221;</p>
<p>Good man. I don&#8217;t think you should really try and profit from others desire to learn. For a conference, I thought the tickets were crazy cheap. I attended as a student and so my ticket cost £60 which I think is an amazing price for such a high-profile event.</p>
<p>Anyway, on to the days events&#8230;</p>
<p>8:45 am and me Pudny find ourselves in a large queue outside the Albert Hall, but what do you expect at an event like this where 600+ people have to go through the doors and the majority had been on the beer the night before? It didn&#8217;t bother me and I certainly wasn&#8217;t going to let it try and ruin the day ahead.</p>
<p>A little later than anticipated and the conference begins with an introduction from Simon. 10 minutes later and we&#8217;re off. On to the stage walks Dan Rubin.</p>
<p><img class="aligncenter size-full wp-image-119" title="Dan Roubin" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/danroubin1.jpg" alt="" width="650" height="150" /></p>
<p>Dan talked about the new language of web design and how specific words have power as our industry grows up. I especially liked it when he talked of how &#8216;borrowing&#8217; words from other industries can cause confusion, the main one(s) being &#8216;page&#8217; and &#8216;page size&#8217;. He said that we need to establish ground rules in the industry to eliminate the confusion.</p>
<p><em>(If anyone has the picture of Dan and the C*** background, send it my way!)</em></p>
<p><em><img class="aligncenter size-full wp-image-121" title="Mark Boulton" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/markboulton1.jpg" alt="" width="650" height="150" /><br />
</em></p>
<p>Next up, Mark Boulton and a New Canon. He said that by building responsive systems it will allow us to complete the task at hand. His key point, which I agreed very strongly with, is that we should</p>
<p class="quote">&#8230; &#8220;work with what know and define a grid based on content&#8221;</p>
<p>Backing this up by saying we should work <em>content out</em> and not <em>canvas in</em>. That way we create connectedness and bind the content to the device. Man, this guy&#8217;s influential. Kinda like a Superhero.</p>
<p><img class="aligncenter size-full wp-image-122" title="Sarah Parmenter" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/sarahparmenter1.jpg" alt="" width="650" height="150" /></p>
<p>Up next, Sarah Parmenter and her talk about Crafting User Experiences. Her talk was definitely one of my favourites because I felt it was one of the most relevant to me. Not only did she talk about the actual design of user interfaces, but also the Psychology. She showed a graph of the click through rates to her Twitter account when she rephrased the &#8216;follow me on twitter&#8217; text multiple times. I can&#8217;t remember what the texts were so if someone could fire over a picture of her graph then that would be cool.</p>
<p>Brew time &#8211; time to let the tea refuel the brain &#8230;</p>
<p><img class="aligncenter size-full wp-image-123" title="Elliot Jay Stocks" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/elliotjaystocks.jpg" alt="" width="650" height="150" /></p>
<p>Back in my seat and it&#8217;s time for Elliot Jay Stocks to take to the stage. Man, this guy is an actual legend. The points he was coming out with were so unbelievably true! My favourite point of his talk was this:</p>
<p class="quote">&#8230; &#8220;with lots of good design, there&#8217;s a lot of shit.&#8221;</p>
<p>He went on to say that just because we have all these new fantastic features in CSS3, we don&#8217;t <em>need</em> to use them. It&#8217;s alright to use them, but there&#8217;s a line that you just don&#8217;t cross, the over kill line. I think the best way for me to help you sum up Elliot&#8217;s talks / key points would be to point you to the sketch of the talk that was done by <a href="http://ubelly.com/2011/01/new-adventures-in-web-design-sketchnotes/img_0022/" target="_blank">UBelly</a>. (click it, or can&#8217;t you because it has no gradient/round corners? tehehehe).</p>
<p><strong>Resources:<br />
</strong>Affordances and Design — <a href="http://jnd.org/dn.mss/affordances_and_design.html">http://jnd.org/dn.mss/affordances_and_design.html<br />
</a>Tim Brown &#8211; More Perfect Typography — <a href="http://vimeo.com/17079380">http://vimeo.com/17079380</a></p>
<p><img class="aligncenter size-full wp-image-124" title="Jon Tan" src="http://www.bigbadbobthefish.com/wp-content/uploads/2011/01/jontan.jpg" alt="" width="650" height="150" /></p>
<p>Finally for the morning session, Jon Tan. I love what this guy had to say. It was related to Language and the Lizard Brain. Apparently this part of the brain&#8217;s job is to process emotional reactions (according to his neighbours neuroscientist friend) and that is why we have emotional reactions to forms and colour. He then proved his point by showing examples of typography. He had the word death or hate (but in a different language, can&#8217;t remember which) in the <a href="http://new.myfonts.com/fonts/underware/bello/" target="_blank">Bello</a> font and the word Love (again, translated) in an angry-looking death metal type font. But because of our reaction to the niceness of the Bello font, we immediately assumed that the word was a nice word and vice versa. Powerful stuff or what eh?<br />
<em>(ps. <del>where did you get your kicks &amp; jacket Jon?</del> <ins>Folk &amp; Patagonia if anyone else is interested)</ins> </em></p>
<p>I was certainly mind fucked at the end of Jon&#8217;s talk so it&#8217;s a good thing it was time for lunch after. Speaking of which, those &#8216;lunch in a bag&#8217; bags were pretty awesome.</p>
<p>I&#8217;ll write about the afternoon&#8217;s events tomorrow in part 2 and then probably merge the two posts together or something? I dunno.</p>
<p>Part 2 &#8211; <a href="http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-2/">http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-2/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/leakys-adventure-to-naconf-part-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook&#8217;s Magic Sauce</title>
		<link>http://www.bigbadbobthefish.com/facebooks-magic-sauce/</link>
		<comments>http://www.bigbadbobthefish.com/facebooks-magic-sauce/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 20:15:16 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=36</guid>
		<description><![CDATA[Ever wondered how Facebook chooses which items by which people are to be shown on your News Feed under the &#8216;Top News&#8217; section? The Top News section is great in my opinion, the &#8216;Most Recent&#8217; section of the news feed can sometimes be a little overwhelming, sifting through all the Bullshit to find posts that [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how Facebook chooses which items by which people are to be shown on your News Feed under the &#8216;Top News&#8217; section? The Top News section is great in my opinion, the &#8216;Most Recent&#8217; section of the news feed can sometimes be a little overwhelming, sifting through all the Bullshit to find posts that you feel are of relevance to you. It&#8217;s quite cool how Facebook works it out and is dictated by the <em>EdgeRank</em> algorithm.<span id="more-36"></span></p>
<p>Every item that shows up on your News Feed is considered an <em>Object</em>. If you have an object in your News Feed, ie: a status update, whenever users interact with that Object they&#8217;re creating an Edge, which includes such actions as &#8216;like&#8217; and &#8216;comment&#8217;.</p>
<p><img class="aligncenter" title="EdgeRank" src="http://d2o7bfz2il9cb7.cloudfront.net/main-qimg-a13bd4677d3b9a494d3785dabcdce0c1" alt="" width="453" height="159" /></p>
<p>Each Edge has three important components:</p>
<p><strong>1. </strong><em>Affinity Score</em> between the viewing user and the Object creator &#8211; If you send your friend a lot of messages and regularly check their profile, then you&#8217;ll have a much higher affinity score for that specific user than you would, say, an old acquaintance you haven&#8217;t spoken to for a few years.</p>
<p><strong>2. </strong><em>Weight</em> &#8211; There&#8217;s a given weight to each type of Edge, for example, a &#8216;comment&#8217; has more importance than a &#8216;like&#8217;.</p>
<p><strong>3. </strong><em>Time</em> &#8211; This is the most important factor in the EdgeRank algorithm. The older an Edge is, the less important it becomes.</p>
<p>Multiply the given factors for each Edge, add the Edge scores up and voila, you have your Object&#8217;s EdgeRank. The higher the EdgeRank is, the more likely your Object is to appear in the user&#8217;s feed.</p>
<p><em>FYI, creating an Object is also considered an Edge, which is what allows Objects to show up in your friends&#8217; feeds before anyone has interacted with them.</em></p>
<p>Why have I blogged about this? I&#8217;m currently working on something  that will use a similar algorithm and I thought I&#8217;d share my homework in case some of you are interested.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/facebooks-magic-sauce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You&#8217;re full of shit, you&#8217;re fired!</title>
		<link>http://www.bigbadbobthefish.com/youre-full-of-shit-youre-fired/</link>
		<comments>http://www.bigbadbobthefish.com/youre-full-of-shit-youre-fired/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 12:31:05 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=9</guid>
		<description><![CDATA[Last night on the apprentice saw the departure of the &#8216;now-wise 22 year old&#8217;, Stuart Baggs with a field of ponies. Now I wouldn&#8217;t usually blog about a TV show but something rather interesting happened&#8230; One of Lord Sugars Aides clearly proved that he knows as much about I.T terminology as a farmer does about [...]]]></description>
			<content:encoded><![CDATA[<p>Last night on the apprentice saw the departure of the &#8216;now-wise 22 year old&#8217;, Stuart Baggs with a field of ponies. Now I wouldn&#8217;t usually blog about a TV show but something rather interesting happened&#8230;<span id="more-9"></span></p>
<p>One of Lord Sugars Aides clearly proved that he knows as much about I.T terminology as a farmer does about plumbing. Usually I&#8217;d let such an easy mistake slip but when you&#8217;re named <strong>Bordon Tkachuk</strong> and you&#8217;re the CEO of <strong>Viglen Computers</strong>, it turns into something else.</p>
<p>While giving Baggs a grilling over his &#8216;fully-licensed&#8217; telecoms business which actually isn&#8217;t so fully licensed, he says:</p>
<p class="quote">&#8220;&#8230; I know what an ISP is &#8211; Internet Service Protocol&#8221;</p>
<p style="margin-top: 7px;">and he talked of it allowing</p>
<p class="quote">&#8220;&#8230;internet connection over bandwidth&#8221;</p>
<p>If the man doesn&#8217;t know such a simple thing about I.T then how and why is he the CEO of <strong>Viglen Computers</strong>? Beats me. For those of you not in the know, ISP stands for Internet Service<em> Provider</em>.</p>
<p>The second this was aired, tens of thousands professionals jumped on Twitter and began to shoot from the hip:</p>
<p class="quote">&#8220;#WhatIsAnISP? Internet Sugar-Panderer? Internet Service Plonker?&#8221;</p>
<p>None of this would matter if Bordon hadn&#8217;t been hammering into Baggs about whether he really did own a telecoms company. Bordon insisted he didn&#8217;t &#8211; Baggs insisted he did.</p>
<p>Bagg&#8217;s company, BlueWave, offers wireless hotspots and has an IP microwave link to the UK mainland to provide IP datacomms to businesses on the Isle of Man. Now I don&#8217;t know about anybody else, but to me that&#8217;s definitely &#8220;telecoms&#8221;.</p>
<p>Bordon Tkachuk &#8211; you&#8217;re fired?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/youre-full-of-shit-youre-fired/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>it&#8217;s alive!</title>
		<link>http://www.bigbadbobthefish.com/its-alive/</link>
		<comments>http://www.bigbadbobthefish.com/its-alive/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 14:28:09 +0000</pubDate>
		<dc:creator>Leaky</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bigbadbobthefish.com/?p=1</guid>
		<description><![CDATA[This here blog is going to be a sort of outlet for my (Matthew Leak)  random thoughts and scribblings. I already have a blog on my main freelance website but that has become somewhat depreciated over the past few months. So, I&#8217;m starting again&#8230; This time my blog is running under the alias Big Bad [...]]]></description>
			<content:encoded><![CDATA[<p>This here blog is going to be a sort of outlet for my <em>(<a href="http://matthewleak.co.uk">Matthew Leak</a></em>)  random thoughts and scribblings. I already have a blog on my main freelance website but that has become somewhat depreciated over the past few months. So, I&#8217;m starting again&#8230;<span id="more-1"></span></p>
<p>This time my blog is running under the alias Big Bad Bob the Fish. I&#8217;ve no idea where this came from, so don&#8217;t ask &#8211; It just seemed like a good idea at the time. I guess this is going to be a personal journal / diary type affair. So, sit back, relax and <em>wait</em> to read&#8230;</p>
<p>If you need any <a href="http://matthewleak.co.uk" title="Web Design Rochdale">web design rochdale</a> services then, be sure to <a href="http://matthewleak.co.uk/contact">Contact Me.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bigbadbobthefish.com/its-alive/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

