<?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></title>
	<atom:link href="http://2toria.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://2toria.com</link>
	<description></description>
	<lastBuildDate>Thu, 16 May 2013 19:49:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How ajax works &#8211; a simple tutorial</title>
		<link>http://2toria.com/2013/05/16/how-ajax-works-a-simple-tutorial/</link>
		<comments>http://2toria.com/2013/05/16/how-ajax-works-a-simple-tutorial/#comments</comments>
		<pubDate>Thu, 16 May 2013 19:49:27 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1972</guid>
		<description><![CDATA[Note: this post isn&#8217;t about the cleaning brand. Whether you&#8217;re new to web development or not, no doubt you&#8217;ve heard of ajax somewhere on the web.  Often considered tricky or fiddly to implement, libraries like jQuery have made it not only accessible, but straightforward to use. In this article I want to explain in the <a href="http://2toria.com/2013/05/16/how-ajax-works-a-simple-tutorial/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2012/12/28/what-is-jquery-and-why-should-i-use-it/"     class="crp_title">What is jQuery, and why should I use it?</a></li><li><a href="http://2toria.com/2012/10/09/flot-tutorial-creating-a-simple-bar-chart/"     class="crp_title">Flot tutorial:  Creating a simple bar chart</a></li><li><a href="http://2toria.com/2013/02/17/jqbullet_bullet_graphs_for_webpages/"     class="crp_title">jqBullet &#8211; bullet graphs for wepages</a></li><li><a href="http://2toria.com/2013/01/21/worried-about-learning-something-new-read-on/"     class="crp_title">Worried about learning something new?  Read on&#8230;</a></li><li><a href="http://2toria.com/2011/08/21/what-makes-2toria-work/"     class="crp_title">What makes 2toria work?</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p><a href="http://2toria.com/wp-content/uploads/2013/05/ajax.jpg"><img class="size-full wp-image-1975 aligncenter" alt="ajax" src="http://2toria.com/wp-content/uploads/2013/05/ajax.jpg" width="640" height="329" /></a></p>
<p><span style="color: #808080;"><em>Note: this post isn&#8217;t about the cleaning brand.</em></span></p>
<p>Whether you&#8217;re new to web development or not, no doubt you&#8217;ve heard of ajax somewhere on the web.  Often considered tricky or fiddly to implement, libraries like <a href="http://jquery.com/">jQuery</a> have made it not only accessible, but straightforward to use.</p>
<p>In this article I want to explain in the simplest terms the general concept of ajax and how it works in order to give you a good overall image of what is happening behind the scenes in pages that use the now seemingly ubiquitous concept.   Whilst a lot more does happen behind the scenes than I discuss here, I think the basics should be enough to begin with.</p>
<p>So, what is ajax exactly?   Ajax stands for Asynchronous Javascript And Xml, which nowadays I suppose is a bit of a misleading term, but the concepts are still sound.  It describes the fact that a request can be made via javascript code to another server <em>asynchronously</em> (ie, without any perceivable hangup in the browser) and the browser can deal with the returned data and even update the page you are looking at in real time without having to refresh.  That&#8217;s my simplified take on it, anyway.</p>
<p>AJAX these days is pretty much everywhere, from Google Maps to Twitter, and basically describes any action that does something with data that isn&#8217;t on the page you&#8217;re currently looking at.  Dynamically and without having to click the refresh button, new content can be added to the page and databases can be updated.  It&#8217;s one of the steps towards making web applications behave more like native desktop apps and is one of the technologies that makes applications like (for example) Google Spreadsheets work.</p>
<p>How does it work then?  Let&#8217;s start with webpages in general.  When you visit a URL, the following happens (at the simplest level):-</p>
<ol>
<li>Your browser sends a request to a url and awaits a response.</li>
<li>The receiving server processes the request and sends back some content (likely html).</li>
<li>This data/content is then received, parsed, processed and rendered on screen in the browser.</li>
</ol>
<p>You don&#8217;t really see any of this happening, you just press enter, or click a link, and a few seconds later, you see some content on the page.  Next time you click a link imagine what is happening (at some speed, I must add) behind the scenes.  Fascinating stuff, isn&#8217;t it?</p>
<p>So.  On to ajax.  How does that work?</p>
<p>You probably won&#8217;t be surprised to hear that more or less the same thing happens, only in the background and without any movement away from the page you&#8217;re looking at.  Lets say you&#8217;re looking at a page with a button on that, when clicked, pulls the latest weather report from another site (such as  the BBC) and displays it on your page.</p>
<p>Here&#8217;s what happens (again, oversimplified):-</p>
<ol>
<li>You press the button</li>
<li>Some javascript code reacts to the pushed button by sending a request to a url, after which it awaits a response.  You can still continue to use/view the page whilst this happens.</li>
<li>The receiving server processes the request and sends back its response to the function that called it.  Again, this can be html, but could also be text, xml or another data format (such as JSON).</li>
<li>The function that was called by the button press listens out for a successful response in answer to the request it made.  Once it has received this, it receives the data that has been sent back and does something with it.  In our example, it is some weather data.  If the response is an error, it can be programmed to react accordingly.</li>
<li>Another part of the same function, or another one, processes the received data and dynamically displays something on the active webpage.  If an error occurred at some point, the function could display an error message in the same way.</li>
</ol>
<p>Amazing stuff, isn&#8217;t it?  The general technology of ajax is driving much of the web today, from live updates on twitter to google maps.  Getting your head around the concepts of what is happening is the first step in being able to use it yourself.</p>
<p>Now you know the basics, the next thing is to learn how to use it.  As mentioned earlier in the article, there are a lot of pre-built javascript libraries that can abstract and simplify a lot of the complex code and make it easier to use and process the returned data.  <a href="http://jquery.com/">jQuery</a> is a great example and provides some extremely straightforward ways of dealing with ajax, especially if you are designing for browsers that might deal with ajax in subtly different ways.</p>
<p>In a future article I&#8217;d like to post more about ajax, including a couple of tutorials on how to implement it in your pages.  Until then, why not do a little research yourself on the web?</p>
<p>Comments and questions are, as always, very welcome.</p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2012/12/28/what-is-jquery-and-why-should-i-use-it/"     class="crp_title">What is jQuery, and why should I use it?</a></li><li><a href="http://2toria.com/2012/10/09/flot-tutorial-creating-a-simple-bar-chart/"     class="crp_title">Flot tutorial:  Creating a simple bar chart</a></li><li><a href="http://2toria.com/2013/02/17/jqbullet_bullet_graphs_for_webpages/"     class="crp_title">jqBullet &#8211; bullet graphs for wepages</a></li><li><a href="http://2toria.com/2013/01/21/worried-about-learning-something-new-read-on/"     class="crp_title">Worried about learning something new?  Read on&#8230;</a></li><li><a href="http://2toria.com/2011/08/21/what-makes-2toria-work/"     class="crp_title">What makes 2toria work?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/05/16/how-ajax-works-a-simple-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time to write</title>
		<link>http://2toria.com/2013/05/15/time-to-write/</link>
		<comments>http://2toria.com/2013/05/15/time-to-write/#comments</comments>
		<pubDate>Wed, 15 May 2013 19:32:08 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[2toria]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1965</guid>
		<description><![CDATA[I&#8217;ve been checking out some of the advice on movethewebforward.org today, most notably this bit which comes under the section entitled &#8216;Write&#8217;:- This part in particular has made me think a little about the way I have been running 2toria over the past couple of years.  I&#8217;ve been looking at finding useful tutorials, or things that are new <a href="http://2toria.com/2013/05/15/time-to-write/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2012/07/14/learning-new-things/"     class="crp_title">Learning new things?</a></li><li><a href="http://2toria.com/2012/12/31/2toria-end-of-year-post/"     class="crp_title">2toria end of year post</a></li><li><a href="http://2toria.com/2011/11/10/excel-quick-tip-return-the-cell-address-of-the-maximum-value-in-a-column/"     class="crp_title">Excel quick tip: Return the cell address of the maximum&hellip;</a></li><li><a href="http://2toria.com/2012/02/04/editing-excel-charts-with-illustratorinkscape/"     class="crp_title">Editing Excel charts with Illustrator/Inkscape</a></li><li><a href="http://2toria.com/2011/11/25/excel-tip-display-the-name-of-the-last-user-to-save-a-file/"     class="crp_title">Excel tip:  Display the name of the last user to save a file</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been checking out some of the advice on <a href="http://movethewebforward.org/">movethewebforward.org</a> today, most notably this bit which comes under the section entitled &#8216;Write&#8217;:-</p>
<p><a href="http://2toria.com/wp-content/uploads/2013/05/write.jpg"><img class="size-full wp-image-1966 aligncenter" alt="write" src="http://2toria.com/wp-content/uploads/2013/05/write.jpg" width="690" height="100" /></a></p>
<p>This part in particular has made me think a little about the way I have been running 2toria over the past couple of years.  I&#8217;ve been looking at finding useful tutorials, or things that are new (to me anyway) without concentrating on the stuff I consider to be &#8216;simple&#8217; and &#8216;straightforward&#8217;, even when I was posting about Excel.  I&#8217;ve also avoided posting about things that I might not fully understand.</p>
<p>The main reason I originally set up 2toria was to share knowledge that I&#8217;d picked up with you guys, as well as to help my own learning along the way.  I&#8217;m constantly learning new things and I don&#8217;t ever want to stop, but for some reason I still find myself scratching around for content to post on at times.  I usually think of things, but sometimes they seem <em>too simple</em> or <em>too complicated </em>and I put them off.  I also sometimes know a little bit about something, but don&#8217;t want to post about it in case I get something wrong and face criticism for providing misleading or incorrect information.  Sometimes I find myself with an opinion or idea about something but again don&#8217;t post just in case I&#8217;ve got the wrong end of the stick or I&#8217;m <em>just plain wrong about it.</em></p>
<p>Starting today, that&#8217;s going to change.  I want to concentrate on more regular posts, tutorials and discussions on the site, because I feel that by doing it, it might add something that&#8217;s of use to <em>somebody, maybe even you</em>.  The very concept that something I write might be of use at some point is a very rewarding one.</p>
<p>Looking at the past year&#8217;s most popular posts, they are all posts I&#8217;ve done at some point where I&#8217;ve shared something I know or have recently learned with the world.  Here are the top five for the year:-</p>
<p><a href="http://2toria.com/2012/10/09/flot-tutorial-creating-a-simple-bar-chart/">Flot tutorial: creating and simple bar chart</a></p>
<p><a href="http://2toria.com/2011/11/25/excel-tip-display-the-name-of-the-last-user-to-save-a-file/">Excel tip:   Display the name of the last user to save a file</a></p>
<p><a href="http://2toria.com/2011/11/10/excel-quick-tip-return-the-cell-address-of-the-maximum-value-in-a-column/">Excel quick tip: Return the cell address of the maximum value in a column</a></p>
<p><a href="http://2toria.com/2012/02/04/editing-excel-charts-with-illustratorinkscape/">Editing Excel charts in Illustrator/Inkscape</a></p>
<p><a href="http://2toria.com/2012/08/23/sql-server-show-the-date-a-table-was-last-modified/">SQL Server:  Show the date a table was last modified</a></p>
<p>These have all been useful to <em>somebody </em>(hopefully) at some point, and they were all knowledge that I shared with others that I&#8217;d probably picked up on more or less the same day.  It feels great that people come across this content, even though somebody has probably written similar in the past.</p>
<p>So, to summarise, I intend to start writing much more from now.  I&#8217;m not the most knowledgeable person in the world in the subjects I find interesting, but I have stuff to say.  I might not get everything right, but it&#8217;s better than sitting here with my mouth/laptop shut.</p>
<p>It&#8217;s time to get back on track and <em>just write.</em></p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2012/07/14/learning-new-things/"     class="crp_title">Learning new things?</a></li><li><a href="http://2toria.com/2012/12/31/2toria-end-of-year-post/"     class="crp_title">2toria end of year post</a></li><li><a href="http://2toria.com/2011/11/10/excel-quick-tip-return-the-cell-address-of-the-maximum-value-in-a-column/"     class="crp_title">Excel quick tip: Return the cell address of the maximum&hellip;</a></li><li><a href="http://2toria.com/2012/02/04/editing-excel-charts-with-illustratorinkscape/"     class="crp_title">Editing Excel charts with Illustrator/Inkscape</a></li><li><a href="http://2toria.com/2011/11/25/excel-tip-display-the-name-of-the-last-user-to-save-a-file/"     class="crp_title">Excel tip:  Display the name of the last user to save a file</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/05/15/time-to-write/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2toria favourites – w/c 06/05/2013</title>
		<link>http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/</link>
		<comments>http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/#comments</comments>
		<pubDate>Sun, 12 May 2013 09:29:16 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[2toria]]></category>
		<category><![CDATA[favourites]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1960</guid>
		<description><![CDATA[Apologies, I missed last weeks, but I&#8217;m back on track and on time (for a change).  Here are a few things that I&#8217;ve favourited, read and liked over the past week:- Lea Verou&#8217;s Bsc thesis explains (throughly) the inner workings of Dabblet.  Very interesting read. Social Roulette has a 1 in 6 chance of deleting <a href="http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/"     class="crp_title">2toria favourites – w/c 22/04/13</a></li><li><a href="http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/"     class="crp_title">2toria favourites – w/c 15/04/2013</a></li><li><a href="http://2toria.com/2012/12/31/2toria-end-of-year-post/"     class="crp_title">2toria end of year post</a></li><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/05/01/2toria-favourites-wc-270413/"     class="crp_title">2toria favourites – w/c 27/04/13</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>Apologies, I missed last weeks, but I&#8217;m back on track and on time (for a change).  Here are a few things that I&#8217;ve favourited, read and liked over the past week:-</p>
<p><a href="http://thesis.dabblet.com/">Lea Verou&#8217;s Bsc thesis explains (throughly) the inner workings of Dabblet.  Very interesting read.</a></p>
<p><a href="http://socialroulette.net/">Social Roulette has a 1 in 6 chance of deleting your Facebook account.  Do you feel lucky?</a></p>
<p><a href="http://christianheilmann.com/2013/05/10/justcode/">Christian Heilmann urges you to play with things. </a></p>
<p><a href="http://hereistoday.com/">Had a bad day?  It&#8217;s just a day, in the grand scheme of things, and as it happens, that&#8217;s not much at all</a></p>
<p><a href="http://blog.getfirebug.com/2013/05/02/future-of-firebug-lite/">Firebug lite is no longer being worked on or supported.  Want to contribute to its future?</a></p>
<p><a href="http://t.co/OERviv20Ku">Of no point whatsoever, but I love it</a></p>
<p><a href="http://www.netmagazine.com/news/css-zen-garden-returns-tenth-anniversary-132734?utm_source=feedly">CSS Zen Garden is coming back for its tenth anniversary</a></p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/"     class="crp_title">2toria favourites – w/c 22/04/13</a></li><li><a href="http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/"     class="crp_title">2toria favourites – w/c 15/04/2013</a></li><li><a href="http://2toria.com/2012/12/31/2toria-end-of-year-post/"     class="crp_title">2toria end of year post</a></li><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/05/01/2toria-favourites-wc-270413/"     class="crp_title">2toria favourites – w/c 27/04/13</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS:  Creating a polaroid-style image using CSS</title>
		<link>http://2toria.com/2013/05/12/css-creating-a-polaroid-style-image-using-css/</link>
		<comments>http://2toria.com/2013/05/12/css-creating-a-polaroid-style-image-using-css/#comments</comments>
		<pubDate>Sun, 12 May 2013 08:54:19 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[polaroid]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1951</guid>
		<description><![CDATA[Polaroid is quite an iconic brand, and instantly recognisable for its retro look.  In this simple tutorial, I will explain how to create a polaroid-style effect for photographs on your pages. First of all, let&#8217;s create a simple html page which contains a header and the image we want to use.  My starting html looks <a href="http://2toria.com/2013/05/12/css-creating-a-polaroid-style-image-using-css/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/01/05/a-silly-little-css3-thing/"     class="crp_title">A silly little CSS3 thing</a></li><li><a href="http://2toria.com/2013/01/01/css-collapsing-margin-confusion/"     class="crp_title">CSS &#8211; Collapsing margin confusion</a></li><li><a href="http://2toria.com/2012/12/28/linking-to-external-files-in-web-development/"     class="crp_title">Linking to external files in web development</a></li><li><a href="http://2toria.com/2013/01/03/css-centering-an-absolutely-positioned-element-horizontally/"     class="crp_title">CSS &#8211; Centering an absolutely positioned element&hellip;</a></li><li><a href="http://2toria.com/2012/02/01/wikipedia-changing-charts-2/"     class="crp_title">Wikipedia &#8211; Changing Charts #2</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>Polaroid is quite an iconic brand, and instantly recognisable for its retro look.  In this simple tutorial, I will explain how to create a polaroid-style effect for photographs on your pages.</p>
<p>First of all, let&#8217;s create a simple html page which contains a header and the image we want to use.  My starting html looks like this:-</p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
   &lt;head&gt;
      &lt;title&gt;Polaroid effect in CSS&lt;/title&gt;
      &lt;link rel="stylesheet" href="pol-style.css" /&gt;
   &lt;/head&gt;
&lt;body&gt;
      &lt;h1&gt;Polaroid-style border effect using CSS&lt;/h1&gt;
      &lt;div class="polaroid"&gt;
          &lt;img src="polaroid-images/doggie.jpg" /&gt;
          &lt;h2&gt;This is my dog&lt;/h2&gt;
      &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>It&#8217;s a fairly simple html file, with a link to a stylesheet and an image in separate folders for the project.  I&#8217;ve created a div with class name of &#8216;polaroid&#8217;, which will be used to style the image to make it look like a polaroid.  As far as HTML goes, that&#8217;s it.  The rest of the work will be done with the CSS.</p>
<p>So far then, we have this:-</p>
<p style="text-align: center;"><a href="http://2toria.com/wp-content/uploads/2013/05/polaroid-initial.jpg"><img class=" wp-image-1953 aligncenter" alt="polaroid-initial" src="http://2toria.com/wp-content/uploads/2013/05/polaroid-initial.jpg" width="372" height="342" /></a></p>
<p style="text-align: left;">Nothing much to get excited about, really, apart from the dog (which isn&#8217;t mine, by the way &#8211; I got the image from <a href="http://www.flickr.com/photos/alexbalan/3717404335/">here</a>).</p>
<p style="text-align: left;">Right, then.  So, how do we make the image look like a polaroid?  Here&#8217;s the CSS I used:-</p>
<pre>body {
    background-image: url(polaroid-images/dark-noise-1.png);
    font-family: arial;
}

h1{
    color: white;
}

h2 {
    color: black;
    text-align: center;
    margin: 10px;
    font-weight: normal;
}

.polaroid {
    background-color: white;
    display: inline-block;
    padding: 20px 20px 0 20px;
    box-shadow: 10px 10px 5px Black;
    transform:rotate(4deg);
    -ms-transform:rotate(4deg);
    -webkit-transform:rotate(4deg);
    -moz-transform:rotate(4deg);
}</pre>
<p>And the page now looks like this:-</p>
<p style="text-align: center;"><a href="http://2toria.com/wp-content/uploads/2013/05/polaroid-finished.jpg"><img class=" wp-image-1954 aligncenter" alt="polaroid-finished" src="http://2toria.com/wp-content/uploads/2013/05/polaroid-finished.jpg" width="418" height="280" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">There&#8217;s a lot more we could do to this, but I wanted to keep things simple.<br />
The finished product can also be viewed <a href="http://2toria.com/learning/polaroid.php">here</a>.</p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/01/05/a-silly-little-css3-thing/"     class="crp_title">A silly little CSS3 thing</a></li><li><a href="http://2toria.com/2013/01/01/css-collapsing-margin-confusion/"     class="crp_title">CSS &#8211; Collapsing margin confusion</a></li><li><a href="http://2toria.com/2012/12/28/linking-to-external-files-in-web-development/"     class="crp_title">Linking to external files in web development</a></li><li><a href="http://2toria.com/2013/01/03/css-centering-an-absolutely-positioned-element-horizontally/"     class="crp_title">CSS &#8211; Centering an absolutely positioned element&hellip;</a></li><li><a href="http://2toria.com/2012/02/01/wikipedia-changing-charts-2/"     class="crp_title">Wikipedia &#8211; Changing Charts #2</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/05/12/css-creating-a-polaroid-style-image-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2toria favourites – w/c 27/04/13</title>
		<link>http://2toria.com/2013/05/01/2toria-favourites-wc-270413/</link>
		<comments>http://2toria.com/2013/05/01/2toria-favourites-wc-270413/#comments</comments>
		<pubDate>Wed, 01 May 2013 20:31:02 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[2toria]]></category>
		<category><![CDATA[favourites]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1947</guid>
		<description><![CDATA[Here are a few things that have been keeping us happy, contended and amused over the past week at 2toria towers:- Lots of cool HTML5 stuff at CreativeJS Paul Miller took a year off from the internet &#8211; how did it go?  Really interesting and well written article. &#8216;Screengrab&#8217; &#8211; a clever, clever bit of <a href="http://2toria.com/2013/05/01/2toria-favourites-wc-270413/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/"     class="crp_title">2toria favourites – w/c 15/04/2013</a></li><li><a href="http://2toria.com/2012/12/31/2toria-end-of-year-post/"     class="crp_title">2toria end of year post</a></li><li><a href="http://2toria.com/2010/08/31/clever-google-chrome/"     class="crp_title">Clever Google Chrome</a></li><li><a href="http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/"     class="crp_title">2toria favourites – w/c 22/04/13</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>Here are a few things that have been keeping us happy, contended and amused over the past week at 2toria towers:-</p>
<p><a href="http://creativejs.com/">Lots of cool HTML5 stuff at CreativeJS</a></p>
<p><a href="http://www.theverge.com/2013/5/1/4279674/im-still-here-back-online-after-a-year-without-the-internet">Paul Miller took a year off from the internet &#8211; how did it go?  Really interesting and well written article.</a></p>
<p><a href="http://vimeo.com/64686559">&#8216;Screengrab&#8217; &#8211; a clever, clever bit of film&#8230;just try to figure out how it was done</a></p>
<p><a href="http://manchester.gov.uk/">Lots of praise amongst web devs and designers about this beautiful piece of design for Manchester City Council</a></p>
<p><a href="http://www.greenheartgames.com/2013/04/29/what-happens-when-pirates-play-a-game-development-simulator-and-then-go-bankrupt-because-of-piracy/">A clever way of dealing with software piracy in a game development simulator.</a></p>
<p><a href="https://medium.com/i-m-h-o/56ed7faaad58">The Trouble with Codeschool</a> &#8211; forget language specifics, this article contains a list of things you really should know if you&#8217;re a developer.  I need to do some learning&#8230;</p>
<p>&nbsp;</p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/"     class="crp_title">2toria favourites – w/c 15/04/2013</a></li><li><a href="http://2toria.com/2012/12/31/2toria-end-of-year-post/"     class="crp_title">2toria end of year post</a></li><li><a href="http://2toria.com/2010/08/31/clever-google-chrome/"     class="crp_title">Clever Google Chrome</a></li><li><a href="http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/"     class="crp_title">2toria favourites – w/c 22/04/13</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/05/01/2toria-favourites-wc-270413/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2toria favourites – w/c 22/04/13</title>
		<link>http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/</link>
		<comments>http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 20:12:30 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[2toria]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1944</guid>
		<description><![CDATA[Another slightly late one, but here are some things that have kept us interested, intrigued and entertained over the past week or so:- This is cool Click some dots and this app will calculate your age (didn&#8217;t work for me, but worth a try). Play a responsive accordion with your browser (resize the window). Like <a href="http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/"     class="crp_title">2toria favourites – w/c 06/05/2013</a></li><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/"     class="crp_title">2toria favourites – w/c 15/04/2013</a></li><li><a href="http://2toria.com/2011/07/10/first-impressions-of-google/"     class="crp_title">First Impressions of Google+</a></li><li><a href="http://2toria.com/2011/07/29/more-pie-bashing/"     class="crp_title">More pie-bashing..</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>Another slightly late one, but here are some things that have kept us interested, intrigued and entertained over the past week or so:-</p>
<p><a href="http://codepen.io/pixelgrid/pen/mCjes">This is cool</a></p>
<p><a href="http://kgajos.eecs.harvard.edu/ag/">Click some dots and this app will calculate your age (didn&#8217;t work for me, but worth a try).</a></p>
<p><a href="http://artpolikarpov.github.io/garmoshka/">Play a responsive accordion with your browser (resize the window).</a></p>
<p><a href="http://www.comicsalliance.com/2013/04/23/comic-strip-app-gocomics-calvin-and-hobbes-the-far-side-peanuts/">Like Calvin and Hobbes?  Want to read all of the comics for free (and legally)?  There&#8217;s an app for that.</a></p>
<p><a href="http://blog.stephenwolfram.com/2013/04/data-science-of-the-facebook-world/">A huge (and extremely interesting) article on the Stephen Wolfram blog about Facebook statistics and data.  Well worth a read if you&#8217;ve time.</a></p>
<p><a href="http://www.wolframalpha.com/facebook/">Also, try out the Wolfram|Alpha personal analytics for Facebook to get some really interesting insights into your Facebook world.</a></p>
<p><a href="http://trivialmummy.blogspot.co.uk/">Oh, and my sister in law has started a new blog about being a mum, saving money and other important stuff.</a></p>
<p>Hopefully will be back on track next week..</p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/"     class="crp_title">2toria favourites – w/c 06/05/2013</a></li><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/"     class="crp_title">2toria favourites – w/c 15/04/2013</a></li><li><a href="http://2toria.com/2011/07/10/first-impressions-of-google/"     class="crp_title">First Impressions of Google+</a></li><li><a href="http://2toria.com/2011/07/29/more-pie-bashing/"     class="crp_title">More pie-bashing..</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 essential non-technical skills for developers</title>
		<link>http://2toria.com/2013/04/18/9-essential-non-technical-skills-for-developers/</link>
		<comments>http://2toria.com/2013/04/18/9-essential-non-technical-skills-for-developers/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 19:53:09 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[essential]]></category>
		<category><![CDATA[skills]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1923</guid>
		<description><![CDATA[You can develop. You can develop. Anybody can develop. There is very little in the way of your learning how to develop. I just wanted to get that out of the way before I start, because this post is about what I consider the top essential skills that any developer should have or put the <a href="http://2toria.com/2013/04/18/9-essential-non-technical-skills-for-developers/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2012/07/12/my-understanding-of-agile-development/"     class="crp_title">My Understanding of Agile Development</a></li><li><a href="http://2toria.com/2013/01/21/worried-about-learning-something-new-read-on/"     class="crp_title">Worried about learning something new?  Read on&#8230;</a></li><li><a href="http://2toria.com/contact/office-development/"     class="crp_title">Office Development</a></li><li><a href="http://2toria.com/2011/09/10/developers-block/"     class="crp_title">Developers Block</a></li><li><a href="http://2toria.com/2012/07/07/excel-standards/"     class="crp_title">Excel standards</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p><strong>You</strong> can develop.</p>
<p>You <strong>can</strong> develop.</p>
<p><strong>Anybody</strong> can develop.</p>
<p>There is very little in the way of your learning how to develop.</p>
<p>I just wanted to get that out of the way before I start, because this post is about what I consider the top essential skills that any developer should have or put the effort into learning.  Some of the skills discussed are those that come naturally, whilst others can be learned and developed with practise.  I&#8217;m certainly not saying you can only be a developer if you tick all of the boxes discussed here, but I think they are a big help, and I also believe that in most cases they are skills that can be fed and watered and nurtured over time.</p>
<p>I&#8217;m discussing non-technical skills here, so I won&#8217;t be talking about specific languages, tools or concepts, although I may do that in a future post.</p>
<p>Let&#8217;s get started, shall we?</p>
<h3>Math(s)/Algebra</h3>
<p>I&#8217;m not saying you should have a phd in mathematics, or that you should understand calculus, but a decent understanding of the basic mathematical concepts is, I think, an important skill to have if you are a developer.  Using variables efficiently requires a decent grasp of algebra, especially if you intend to calculate values to use in your applications.  If you&#8217;re wanting to develop games, you will likely need a good understanding of geometry and basic physics concepts, too, or you&#8217;ll find it hard (and frustrating) work.</p>
<p>No good with maths?  Make your way to <a href="https://www.khanacademy.org/">Khan Academy</a> and learn (more on this later).  It&#8217;s easier than you think, and very rewarding (and will make your programming life much, much easier, trust me).</p>
<h3>Problem solving skills</h3>
<p>If you&#8217;re wanting to be a developer, you probably already have these.  After all, what else is development if not solving problems?  The great thing about this skill is that, the more you do it, the better you get at it.  Answers can sometimes take a long while to come, but when they do, the additional knowledge you get from them tends to stick.</p>
<h3>Communication and social skills</h3>
<p>I don&#8217;t think there&#8217;s really any job you can do without having good communication skills, and developing is no exception.  Being able to explain to people what you are doing is fundamental in developing applications, especially if your clients are of a non-technical nature.  If you&#8217;re going it alone as a freelance developer, good communication is vital for you to get business and develop good working relationships that might get you more.  Documenting your efforts well also requires good written communication so that others can understand how things work, or why you made particular decisions in your development process.</p>
<h3>A thirst for knowledge</h3>
<p>I firmly believe that you can&#8217;t really stand still as a developer.  With new trends and technologies appearing all of the time, it&#8217;s important to have an enquiring mind and to keep yourself ahead of the crowd.  With the internet at your disposal, you can learn more or less anything, it&#8217;s just a case of looking in the right places.  In fields such as development, nobody ever knows <strong>everything</strong> (some people seem to, or pretend to).  Keeping on track and never allowing yourself to stagnate is, in my opinion, super important.</p>
<h3>Organisation</h3>
<p>Developing software requires good (if not, great) organisational skills.  Opening up an IDE and randomly vomiting code into it might get you the results you want to start with, but it can become a nightmare to maintain that code as it increases in size, especially <del>if</del> when you start getting bugs.  A good developer knows how to organise their work to make it not only easier to maintain, but also to pass on to others.  Planning a software project well makes it much easier to develop, too, especially if you&#8217;re working with true object-oriented development or in teams.</p>
<p>Organisation and planning are also important for you to get an idea of how long projects might take.  Telling a client your work will only take two weeks is fine, if you&#8217;ve planned it right.  If not, and the project takes two months, that client won&#8217;t be knocking on your door any time soon.</p>
<h3>Patience</h3>
<p>I believe patience is a skill that can be learned and nurtured.  Some are better at it than others, and some are more patient in certain circumstances than they are in others, but I believe that, given the practice you can get better at it.  Patience is <strong>really</strong> important for developers for a number of reasons.</p>
<p>First of all, learning new techniques and technologies takes patience, and we&#8217;ve already discussed how important your thirst for knowledge is, haven&#8217;t we?</p>
<p>Second, you <strong>will</strong> need patience when developing applications, especially if you encounter a bug (or multiple bugs) and can&#8217;t quite yet figure out how to fix it/them.  Reading line after line of code, or following the path of your code through a debugger requires a keen eye and, yes, sometimes lots and lots of patience.  Remember, computers only do what they are told, so if you&#8217;re not getting the results you want, it&#8217;s <strong>you</strong> that did something wrong, not the computer (most of the time).  Don&#8217;t throw your machine through the nearest window if you&#8217;re not getting the results you need. Go outside, breathe and relax&#8230;learn to be patient and things will seem so much easier, I promise.</p>
<h3>Memory</h3>
<p>Whilst there are tools and techniques to help improve memory, in general I think people either have good ones, or they don&#8217;t.  That doesn&#8217;t mean a bad memory is a barrier to good software development, but having a decent one <strong>can</strong> help.  Being able to keep a number of things in your head at the same time can be really useful when developing solutions, especially if you are moving values around between variables in your application.  Having said that, there&#8217;s only so much you can keep in your head at any one time, so being able to organise yourself is once again, very important.  Pen and paper are extremely useful tools, too.  Write things down that your head doesn&#8217;t want to store so that you can refer to them quickly when needed.</p>
<h3>The ability to handle criticism, and to be self-critical</h3>
<p>One thing you&#8217;ll hear a lot as a developer is criticism.  Your application takes too long to load, the font you use is terrible to read, and the form you built doesn&#8217;t seem logical.  Don&#8217;t take it to heart.  One skill that is important is being able to handle criticism well.  Most of the time it will be constructive, but often it won&#8217;t be.  Being able to listen and see things from your users&#8217; perspective can help you a lot. Why don&#8217;t they like the font?  How could it be better?  Speak to people and you might find they are actually right!  Usage of software and styling can be subjective, so learn to handle feedback well and have a reasoned response if you feel the user is wrong.  Don&#8217;t get grumpy or defensive, it&#8217;ll get you nowhere.</p>
<p>Self-criticism is also essential.  You aren&#8217;t perfect.  No, you really aren&#8217;t..  Writing a piece of software, leaving it alone for a few days or weeks and then coming back to it will often highlight areas that don&#8217;t work as well as you thought when you first wrote it.  Self-criticism makes the difference between a good developer and a &#8216;just ok&#8217; developer, and makes the difference between an adequate product and an outstanding one.  With every re-visit of <strong>anything</strong> you make or develop, you should see something you could have done better.  Learn this trait and use it regularly.</p>
<p>And last of all (but possibly one of the most important)&#8230;</p>
<h3>Being a nice person</h3>
<p>Being a nice person is just <strong>good, </strong>ok?  If you regularly lurk on forums waiting for questions from noobs only to shoot them down in flames for not knowing as much as you, you&#8217;re <strong>not</strong> a nice person.  You were new to this stuff once too, remember?  If you can&#8217;t be helpful, don&#8217;t bother.  It doesn&#8217;t help and can be a real confidence killer for those just starting out.</p>
<p>Can you think of any more?  Comments are welcome, as always.</p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2012/07/12/my-understanding-of-agile-development/"     class="crp_title">My Understanding of Agile Development</a></li><li><a href="http://2toria.com/2013/01/21/worried-about-learning-something-new-read-on/"     class="crp_title">Worried about learning something new?  Read on&#8230;</a></li><li><a href="http://2toria.com/contact/office-development/"     class="crp_title">Office Development</a></li><li><a href="http://2toria.com/2011/09/10/developers-block/"     class="crp_title">Developers Block</a></li><li><a href="http://2toria.com/2012/07/07/excel-standards/"     class="crp_title">Excel standards</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/04/18/9-essential-non-technical-skills-for-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New theme!</title>
		<link>http://2toria.com/2013/04/18/new-theme/</link>
		<comments>http://2toria.com/2013/04/18/new-theme/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 16:34:39 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[2toria]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1921</guid>
		<description><![CDATA[And that&#8217;s it done!  I have planned to re-theme 2toria for some time and procrastinated on it for long enough.  Whilst I haven&#8217;t coded the theme completely from scratch, I have customised an existing one (codium) quite a lot to get things looking the way I want.  There&#8217;s still some tweaking that probably needs to be <a href="http://2toria.com/2013/04/18/new-theme/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2011/08/21/optimising-2toria-for-mobile/"     class="crp_title">Optimising 2toria for Mobile</a></li><li><a href="http://2toria.com/2013/04/18/excuse-me-whilst-i/"     class="crp_title">Excuse me whilst I&#8230;</a></li><li><a href="http://2toria.com/2012/10/19/2toria-redesign/"     class="crp_title">2toria redesign</a></li><li><a href="http://2toria.com/2012/10/21/2toria-theme-development-diary-1-making-a-start/"     class="crp_title">2toria theme development diary: #1 &#8211; Making A Start</a></li><li><a href="http://2toria.com/2011/08/18/changing-the-theme-of-form-controls-in-ms-access/"     class="crp_title">Changing the theme of form controls in MS-Access</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>And that&#8217;s it done!  I have planned to re-theme 2toria for some time and procrastinated on it for long enough.  Whilst I haven&#8217;t coded the theme completely from scratch, I <strong>have</strong> customised an existing one (<a href="http://wordpress.org/extend/themes/codium">codium</a>) quite a lot to get things looking the way I want.  There&#8217;s still some tweaking that probably needs to be done, but in all I&#8217;m quite happy with the look so far.    The old theme was fine to start with but I&#8217;d been hankering for something plainer, cleaner, and whiter.</p>
<p>The theme is also responsive, which means it looks great on tablets and (hopefully) mobile.  The only problem I&#8217;ve come up against so far is that the main header logo is cropped slightly on mobile.  This will be fixed soon, hopefully..</p>
<p>Anyway, I&#8217;m hoping any regular visitors prefer the new cleaner look.  Now to get more content written and posted *scribbles furiously.</p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2011/08/21/optimising-2toria-for-mobile/"     class="crp_title">Optimising 2toria for Mobile</a></li><li><a href="http://2toria.com/2013/04/18/excuse-me-whilst-i/"     class="crp_title">Excuse me whilst I&#8230;</a></li><li><a href="http://2toria.com/2012/10/19/2toria-redesign/"     class="crp_title">2toria redesign</a></li><li><a href="http://2toria.com/2012/10/21/2toria-theme-development-diary-1-making-a-start/"     class="crp_title">2toria theme development diary: #1 &#8211; Making A Start</a></li><li><a href="http://2toria.com/2011/08/18/changing-the-theme-of-form-controls-in-ms-access/"     class="crp_title">Changing the theme of form controls in MS-Access</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/04/18/new-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excuse me whilst I&#8230;</title>
		<link>http://2toria.com/2013/04/18/excuse-me-whilst-i/</link>
		<comments>http://2toria.com/2013/04/18/excuse-me-whilst-i/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 13:55:41 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[2toria]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1874</guid>
		<description><![CDATA[&#8230;update the blog theme.  I&#8217;m currently rolling my own, but in the meantime I&#8217;m giving it a bit of a facelift with an established theme.  Whilst I&#8217;m doing this, things might occasionally go a bit wonky&#8230;<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/04/18/new-theme/"     class="crp_title">New theme!</a></li><li><a href="http://2toria.com/2012/10/19/2toria-redesign/"     class="crp_title">2toria redesign</a></li><li><a href="http://2toria.com/2011/08/13/some-design-changes/"     class="crp_title">Some design changes</a></li><li><a href="http://2toria.com/2011/08/21/optimising-2toria-for-mobile/"     class="crp_title">Optimising 2toria for Mobile</a></li><li><a href="http://2toria.com/2012/06/17/its-been-a-while-but/"     class="crp_title">It&#8217;s been a while, but&#8230;</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>&#8230;update the blog theme.  I&#8217;m currently rolling my own, but in the meantime I&#8217;m giving it a bit of a facelift with an established theme.  Whilst I&#8217;m doing this, things might occasionally go a bit wonky&#8230;</p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/04/18/new-theme/"     class="crp_title">New theme!</a></li><li><a href="http://2toria.com/2012/10/19/2toria-redesign/"     class="crp_title">2toria redesign</a></li><li><a href="http://2toria.com/2011/08/13/some-design-changes/"     class="crp_title">Some design changes</a></li><li><a href="http://2toria.com/2011/08/21/optimising-2toria-for-mobile/"     class="crp_title">Optimising 2toria for Mobile</a></li><li><a href="http://2toria.com/2012/06/17/its-been-a-while-but/"     class="crp_title">It&#8217;s been a while, but&#8230;</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/04/18/excuse-me-whilst-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2toria favourites – w/c 15/04/2013</title>
		<link>http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/</link>
		<comments>http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 12:55:50 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[2toria]]></category>
		<category><![CDATA[favourites]]></category>

		<guid isPermaLink="false">http://2toria.com/?p=1872</guid>
		<description><![CDATA[Apologies if you missed last week&#8217;s list.  I was having a baby.  Well, my partner was&#8230; Anyway, here is a list of the things that have cheered us up, kept us entertained and generally happy this past week:- Really cool animated text fill effect using just CSS No explanations necessary &#8211; this is just incredible <a href="http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/"> read more <span class="meta-nav">&#187;</span></a><div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/05/01/2toria-favourites-wc-270413/"     class="crp_title">2toria favourites – w/c 27/04/13</a></li><li><a href="http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/"     class="crp_title">2toria favourites – w/c 22/04/13</a></li><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/"     class="crp_title">2toria favourites – w/c 06/05/2013</a></li><li><a href="http://2toria.com/2012/06/17/its-been-a-while-but/"     class="crp_title">It&#8217;s been a while, but&#8230;</a></li></ul></div>]]></description>
				<content:encoded><![CDATA[<p>Apologies if you missed last week&#8217;s list.  I was having a baby.  Well, my partner was&#8230;</p>
<p>Anyway, here is a list of the things that have cheered us up, kept us entertained and generally happy this past week:-</p>
<p><a href="http://codepen.io/zitrusfrisch/pen/fjbal">Really cool animated text fill effect using just CSS</a></p>
<p><a href="http://donottouch.org/">No explanations necessary &#8211; this is just incredible work&#8230;</a></p>
<p><a href="https://medium.com/career-pathing/349656f95dab">Ben Howdle writes about why &#8220;can&#8217;t&#8221; is a copout.</a></p>
<p><a href="http://t.co/qIF2A8eYEX">A list of interesting internet tips and tricks on Reddit.  Definitley worth a read through if you&#8217;ve some time</a></p>
<p><a href="http://www.yacoset.com/Home/signs-that-you-re-a-good-programmer">Signs you&#8217;re a good programmer</a> and, if you&#8217;re interested, <a href="http://www.yacoset.com/Home/signs-that-you-re-a-bad-programmer">its opposite.</a></p>
<p><a href="http://www.jsdb.io/?sort=trending&amp;utm_source=buffer&amp;buffer_share=f7a52">A handy database of Javascript libraries, categorised by type</a></p>
<p><a href="http://www.theverge.com/2013/3/21/4127110/40-years-of-icons-the-evolution-of-the-modern-computer-interface">40 years of icons, the evolution of the modern computer interface</a></p>
<p><a href="http://www.explainxkcd.com/wiki/index.php?title=Time">Time</a></p>
<p><a href="http://money.cnn.com/2013/04/08/technology/security/shodan/index.html">Shodan:  The scariest search engine on the Internet</a></p>
<div class="crp_related"><h4>Some other good stuff:</h4><ul><li><a href="http://2toria.com/2013/05/01/2toria-favourites-wc-270413/"     class="crp_title">2toria favourites – w/c 27/04/13</a></li><li><a href="http://2toria.com/2013/04/25/2toria-favourites-wc-22-04-13/"     class="crp_title">2toria favourites – w/c 22/04/13</a></li><li><a href="http://2toria.com/2013/04/07/2toria-favourites-wc-01042013/"     class="crp_title">2toria favourites &#8211; w/c 01/04/2013</a></li><li><a href="http://2toria.com/2013/05/12/2toria-favourites-wc-06052013/"     class="crp_title">2toria favourites – w/c 06/05/2013</a></li><li><a href="http://2toria.com/2012/06/17/its-been-a-while-but/"     class="crp_title">It&#8217;s been a while, but&#8230;</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://2toria.com/2013/04/17/2toria-favourites-wc-15042013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
