<?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>Jooldesign</title>
	<atom:link href="http://www.jooldesign.co.uk/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jooldesign.co.uk</link>
	<description>by Christopher Briggs - Open technology specialist</description>
	<lastBuildDate>Mon, 13 May 2013 10:54:44 +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>Charity Bike Ride</title>
		<link>http://www.jooldesign.co.uk/charity-bike-ride-827</link>
		<comments>http://www.jooldesign.co.uk/charity-bike-ride-827#comments</comments>
		<pubDate>Mon, 13 May 2013 10:54:31 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[me]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=827</guid>
		<description><![CDATA[On Sunday 19th May, I shall be cycling a 50 mile route from Stoke-on-Trent to Market Drayton, on to Nantwich and back to Stoke. Having only done a small amount of training in the last few weeks I&#8217;m not sure I&#8217;m totally prepared but I fully intend to complete all 50 miles no matter how long [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.jooldesign.co.uk/charity-ride/"><img class="alignleft  wp-image-828" alt="screenshot" src="http://www.jooldesign.co.uk/wp-content/uploads/2013/05/screenshot.jpg" width="378" height="216" /></a>On Sunday 19th May, I shall be cycling a 50 mile route from Stoke-on-Trent to Market Drayton, on to Nantwich and back to Stoke. Having only done a small amount of training in the last few weeks I&#8217;m not sure I&#8217;m totally prepared but I fully intend to complete all 50 miles no matter how long it takes!</p>
<p><span id="more-827"></span>When I was younger I managed a 60 mile ride in Yorkshire and my legs felt like jelly afterwards &#8211; but at least I know I can do it.</p>
<p>As part of the charity ride event I wanted people to track my progress on the day so I created a <a href="http://www.jooldesign.co.uk/charity-ride/">page</a> where you can do just that. The page currently just shows the route I will be taking but on the day it will show markers for where I am (I&#8217;ll update from my handle-bar mounted phone as I&#8217;m riding). I&#8217;ll also being using the hashtag #JDcharityride to tweet and post picture every now and then on the ride. Feel free to use the hashtag to tweet your encouragements <img src='http://www.jooldesign.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The charity I&#8217;m riding for is the <a href="http://www.dmhospice.org.uk/">Douglas Macmillan Hospice</a> and have an initial target of £100 I&#8217;d like to raise, so any donations you could submit will be much appreciated!</p>
<p><a href="http://www.justgiving.com/jooldesign/donate"><img class="aligncenter size-full wp-image-829" alt="donate" src="http://www.jooldesign.co.uk/wp-content/uploads/2013/05/donate.png" width="178" height="42" /></a></p>
<p>Looking at the weather at the moment, it doesn&#8217;t look great but I&#8217;m at least hoping for some sunny spells to dry me out if it does rain.</p>
<p>Keep an eye on the <a href="http://www.jooldesign.co.uk/charity-ride/">charity ride page</a> on Sunday around 10am (Not exactly sure what time it starts &#8211; I&#8217;ll update you soon)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/charity-bike-ride-827/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting started with GIT for Version Control</title>
		<link>http://www.jooldesign.co.uk/getting-started-with-git-for-version-control-819</link>
		<comments>http://www.jooldesign.co.uk/getting-started-with-git-for-version-control-819#comments</comments>
		<pubDate>Thu, 09 May 2013 12:30:53 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[software programming]]></category>
		<category><![CDATA[GIT]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=819</guid>
		<description><![CDATA[GIT is a de-centralised version control system. A version control system manages the state of a ‘repository’ as it is called. A repository can contain an entire application, a single file or something in between. A version control system keeps a history of all changes in the repository. This is handy for a person working [...]]]></description>
				<content:encoded><![CDATA[<p><img class="alignright  wp-image-821" alt="GIT version control" src="http://www.jooldesign.co.uk/wp-content/uploads/2013/05/878a0ea898da1701df8573ed64a5cc9d-1.png" width="202" height="202" />GIT is a de-centralised version control system. A version control system manages the state of a ‘repository’ as it is called. A repository can contain an entire application, a single file or something in between. A version control system keeps a history of all changes in the repository. This is handy for a person working on their own in that they can access previous changes to their work if they find they are going down the wrong route. It is especially useful for teams of people working on the same work. Multiple people can contribute their changes and the entire history is available to everyone in the team.</p>
<p><span id="more-819"></span>By being de-centralised, GIT differs from some other version control systems like Subversion (SVN) that stores the history of the project on one central server — a single point of weakness if the project were to become corrupted or lost. With GIT, all users have a full working history of the project so the problem of a central repository is solved.</p>
<p>GIT has many features beyond simply tracking changes within a repository. For example, branching is useful for working on a feature of a project without affecting the main project. Once you are happy with a feature, you can merge your changes in the main branch. All the daily-use features of GIT will be discussed in this article.</p>
<p>First of all, let’s take a look at what a repository might look like:</p>
<p>.git/<br />
.gitignore<br />
README<br />
index.html<br />
css/<br />
- styles.css</p>
<p>This is what a very simple website might look like in a GIT repository. There are 2 things to notice. First, the .git/ directory. This contains the entire history of the repository. Unlike SVN, a .git/ directory only appears in the root of the repository and not in every sub-directory as well. Secondly is a file called .gitignore. This is a plain-text file containing line-separated rules that tell GIT to not track the changes of specific files. For example you might want to disable tracking of cached files, config files etc that would be be unique to each person working on the project.</p>
<p>First make sure you have GIT installed on your computer (link in the useful resources at the end of this post). I assume you are using Linux or Mac — I have no experience with using GIT on Windows&#8230;</p>
<p>OK, so how do we create a repository? Navigate to the root path of the directory you want to become a repository in the terminal and type:</p><pre class="crayon-plain-tag">git init</pre><p>Your directory is now a repository! At the moment GIT knows about the files in the repository but isn’t doing anything with that information. The files are in an ‘untracked’ state. There are three state to be aware of.</p>
<p>untracked/unstaged ——&gt; staged ——&gt; committed</p>
<p>A file that GIT hasn’t seen before, such as a newly added file (or in the case of a newly initialised repository like above, all the files are new to GIT) is labelled as untracked. If a file has been modified or deleted since the last commit, it is labelled as unstaged.</p>
<p>You can check the status of your working copy by issuing the following command:</p><pre class="crayon-plain-tag">git status</pre><p>This will show you which files are untracked, unstaged and which are staged. Staging a file means that you want to commit it to history of the project. To stage a file type:</p><pre class="crayon-plain-tag">git add /path/to/file.txt</pre><p>You can also issue variations on this command to stage different things:</p><pre class="crayon-plain-tag">git add file1.txt file2.txt</pre><p>This stages multiple files by space-separated paths.</p><pre class="crayon-plain-tag">git add -A</pre><p>This stages all untracked and unstaged files.</p>
<p>Once your files are staged and you want to commit those changes to the history of the repository, you type:</p><pre class="crayon-plain-tag">git commit -m “commit message”</pre><p>It is important that you write a commit message (in fact GIT won’t allow you to commit changes without one) because this will be used by yourself or others in the future to quickly identify the purpose of the commit. An example of a commit message might be “Fixed a bug in the CSS that was floating the header to the left”.</p>
<p>You can also stage and commit in one move:</p><pre class="crayon-plain-tag">git commit -a -m “commit message”</pre><p>It is good practice to commit your changes regularly so that you can go back to previous versions incrementally if something goes wrong rather than just committing when a feature is complete.</p>
<p>Once your changes are committed to the repository’s history you can type:</p><pre class="crayon-plain-tag">git log</pre><p>This will show you the history of your repository. Each commit gets a unique identifier which can be used to return your working copy to that commit. By typing:</p><pre class="crayon-plain-tag">git checkout 780a2fc</pre><p>you revert your working copy to that commit. Note that you don’t have to type the entire commit identifier — the first 6 or 7 characters are usually unique enough for GIT to realise which commit you mean. By checking out a different part of the history of the project, you will notice that the actual files in the directory will change to reflect the history of the project at the time of the commit.</p>
<p>You will actually need to stage and commit these files if you want to save this back to the top of the history as this will become a new commit. But if instead you want to go back to the top of the history just type:</p><pre class="crayon-plain-tag">git checkout HEAD</pre><p>HEAD is a special identifier that always points the last commit of the project.</p>
<p>Perhaps you want to see exactly what you’ve changed rather than just what files you changed since the last commit (remember, use git status to see what files are untracked/unstaged). You can use the following command:</p><pre class="crayon-plain-tag">git diff</pre><p>This will show the lines in the files that have been changed. Red lines represent lines that have been removed and green lines show new lines that have been added. Red lines followed by green lines show where you have modified a line or lines (GIT assumes you removed the lined and replaced it with a modified version of the line)</p>
<p>To just get a summary of the changes (just the number of lines added/removed for each file) type:</p><pre class="crayon-plain-tag">git diff -stat</pre><p>There are various other commands that are useful for manipulating the status of a staged file, such as <pre class="crayon-plain-tag">git reset</pre> , <pre class="crayon-plain-tag">git rm</pre>  and <pre class="crayon-plain-tag">git mv</pre>  but I won’t be discussing them here.</p>
<p>Next up, we’re going to look at branching. Branching is a great feature of GIT. Say for example that you want to start an experimental feature of a website that you’re not sure will work out (it’s experimental after all). You can create a separate branch to work on that feature while keeping the main branch (called ‘master’) clear to do your main work. You can create a branch by typing:</p><pre class="crayon-plain-tag">git branch branch_name</pre><p>This also switches you to working on the new branch. Any work you now do will be committed to this branch (which also contains all the history up to the point at which you branched off). You can carry on using GIT in the same way until you are happy to merge the changes you made in this branch into the master branch (or perhaps just discard the branch as it didn’t work out).</p>
<p>You can get a list of branches by typing:</p><pre class="crayon-plain-tag">git branch</pre><p>To switch between branches, just type:</p><pre class="crayon-plain-tag">git checkout -b branch_name</pre><p>This reverts your working copy to that branch.</p>
<p>To merge the changes from the experimental branch into the master you must first checkout the branch you want to merge into (in this case master). Then type:</p><pre class="crayon-plain-tag">git merge branch_name</pre><p>This will merge the changes you made in the experimental branch into the master branch along with the history of commits you made while you were on that branch. Most of the time this works fine, but occasionally you may have modified a line in a file in the history of both branches — this causes a merge conflict. GIT will put merge conflict markers in the file that the conflict occurred in. You can manually edit the file and select the version of the line(s) you want to keep and then mark the file as resolved by typing <pre class="crayon-plain-tag">git add conflicted_file_name</pre>  and then committing the change. The merge conflict is then resolved.</p>
<p>Finally if you want to delete a branch (make sure you don’t have it checked out at the time) you can type:</p><pre class="crayon-plain-tag">git branch -d branch_name</pre><p>This concludes our simple look at how branching works. Next we’ll look at at how to contribute with others.</p>
<p>Perhaps you are not the initiator of a project. But someone else on you team has made their repository available to you. You can clone their repository along with the entire history of the project by typing:</p><pre class="crayon-plain-tag">git clone git://192.168.1.100/home/repos/repo_name.git</pre><p>This will clone the repository into your current directory. There are several protocols used to make a remote repository available, git://, ssh:// and http(s)://. There are advantages and disadvantages to each that you can explore yourself.</p>
<p>You can also create a repository on a remote server that everyone on your team has access to. You can then set the remote repository that your local repository should look for when pushing and pulling changes to and from the remote server. Just type:</p><pre class="crayon-plain-tag">git remote add remote_name user@remote.location:remote_repo/location.git</pre><p>The remote_name is an identifier that you will use for pushing/pulling. Once you have added the remote repository you can fetch changes from the remote server by typing:</p><pre class="crayon-plain-tag">git fetch</pre><p>Then to merge the fetched changes into your master branch:</p><pre class="crayon-plain-tag">git merge</pre><p>You can also combine the 2 command into one (which I find more useful):</p><pre class="crayon-plain-tag">git pull</pre><p>If you have multiple remotes and/or you want to pull a certain branch down to your local repository, you need to type:</p><pre class="crayon-plain-tag">git pull remote_name branch_name</pre><p>After resolving any conflicts you now have the latest working copy from everyone on the team.</p>
<p>To push your own changes to the remote repository, type:</p><pre class="crayon-plain-tag">git push</pre><p>or</p><pre class="crayon-plain-tag">git push remote_name branch_name</pre><p>I always find it beneficial to pull and resolve any conflicts before pushing my own changes. Pushing your changes doesn’t need to happen as regularly as your commits — maybe once or twice a day depending on how your team works.</p>
<p>There are many complicated working patterns that a team may develop when implementing a version control strategy. For example, you may want all team members to push changes to a particular person that dictates whether to include them in a master repository. Or maybe you might have a testing remote repository that you push changes to for testing on a replica of the production server before pushing to the production repository itself. The sky is the limit for coming up with better ways to work with others.</p>
<p>That’s about all you need to know to get started with GIT. There are of course many more advanced features like stashing, tagging, hooks etc that I haven’t talked about here but the following resources are a great place to start if you want to delve deeper.</p>
<p><strong>Some great GIT resources</strong></p>
<p><a href="http://gitref.org/">http://gitref.org/</a><br />
<a href="http://git-scm.com/book">http://git-scm.com/book</a><br />
<a href="http://git-scm.com/downloads">http://git-scm.com/downloads</a></p>
<p><strong>GIT repository hosting</strong></p>
<p>The following links point to websites that you can use to host your repository online. You can make the repositories public or private (there may be a charge for private repositories). There are some great features to using these sorts of sites, especially for working with others (such as issue tracking)</p>
<p><a href="https://github.com">https://github.com</a><br />
<a href="https://bitbucket.org">https://bitbucket.org</a></p>
<p><b>GIT GUI clients</b></p>
<p>If using the terminal is getting you down or you’re more of a visual person then maybe using a GUI client might be for you. Here is a non-extensive list of free and paid-for applications:</p>
<p><a href="http://www.git-tower.com/">Tower</a> &#8211; Paid &#8211; Mac<br />
<a href="http://www.gitboxapp.com/">Gitbox</a> &#8211; Paid &#8211; Mac<br />
<a href="http://gitx.laullon.com/">GitX (L)</a> &#8211; Free &#8211; Mac<br />
<a href="http://code.google.com/p/gitextensions/">Git Extensions</a> &#8211; Free &#8211; Windows<br />
<a href="http://www.sourcetreeapp.com/">SourceTree</a> &#8211; Free &#8211; Mac, Windows<br />
<a href="http://git-cola.github.com/">git-cola</a> &#8211; Free &#8211; Mac, Windows, Linux<br />
<a href="http://www.syntevo.com/smartgit/index.html">SmartGit</a> &#8211; Paid &#8211; Mac, Windows, Linux<br />
<a href="http://www.giteyeapp.com/">GitEye</a> &#8211; Free &#8211; Mac, Windows, Linux</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/getting-started-with-git-for-version-control-819/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telescope Schedules &#8211; NASA&#8217;s Space Apps Challenge</title>
		<link>http://www.jooldesign.co.uk/telescope-schedules-nasas-space-apps-challenge-808</link>
		<comments>http://www.jooldesign.co.uk/telescope-schedules-nasas-space-apps-challenge-808#comments</comments>
		<pubDate>Tue, 23 Apr 2013 11:26:43 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[Astronomy/Physics]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[software programming]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=808</guid>
		<description><![CDATA[Last week, I took part in NASA&#8217;s space apps challenge &#8211; an international hackathon that took place over 48 hours in 83 countries around the world. Over 9000 people took part and with over 50 challenges to choose from it was great fun. I&#8217;ve not taken part in a hackathon before and although I was [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://telescope-schedules.jooldesign.co.uk"><img class="alignleft  wp-image-810" alt="screenshot" src="http://www.jooldesign.co.uk/wp-content/uploads/2013/04/screenshot.jpg" width="300" height="163" /></a>Last week, I took part in <a href="http://spaceappschallenge.org/">NASA&#8217;s space apps challenge</a> &#8211; an international hackathon that took place over 48 hours in 83 countries around the world. Over 9000 people took part and with over 50 <a href="http://spaceappschallenge.org/challenges/">challenges</a> to choose from it was great fun. I&#8217;ve not taken part in a hackathon before and although I was unable to attend an event in person (the nearest event to me was either York or Leicester. There were also events in London, Exeter and Glasgow) I still had a great time using technologies I&#8217;ve not used before.</p>
<p><span id="more-808"></span>The challenges ranged from deployable greenhouses on Mars to exploration of the dark side of the Moon. As I was working alone, I decided on the <a href="http://spaceappschallenge.org/challenge/my-space-cal/">My Space Cal</a> challenge. This involved querying various sources of scheduling data for space based telescopes and collating it into a calendar that scientists and researchers could use to plan space observations using the various telescopes.</p>
<p>The data gathering process was more laborious than I had expected as each telescope presented its data in different formats. Some had websites that could be scraped, some had CSV files I could download, and some had data in such a random format, it was almost impossible to parse the fields I needed. This process of building scraping scripts took most of the first day, along with creating a DB schema to hold all the scheduling data.</p>
<p>On the second day I got my hands dirty with the <a href="http://d3js.org/">D3 JavaScript library</a> &#8211; something I had been looking for a use for for a while. Rather than just building a simple calendar I thought it would be more useful to created a timeline of events so it was easy to compare different telescopes at the same time.</p>
<p>Although I spent a good amount of time working on it, I didn&#8217;t manage to get all the features built into it that I would have liked in the 48 hours. I wanted to be able to add filters for target names and wavelengths as well as a cron job that could retrive data automatically each day. Also some telescope data is missing such as for the Hubble, Spitzer and Chandra telescopes. I plan on working on this some more in the future as I think it would be a really useful tool for professional astronomers to use.</p>
<p>You can check out the <a href="http://telescope-schedules.jooldesign.co.uk/">Telescope Schedules</a> application (works best in chrome) &#8211; the source code is available over at <a href="https://github.com/jooldesign/Telescope-Schedules">github</a>.</p>
<p><strong>UPDATE</strong></p>
<p>I received an <a href="http://open.nasa.gov/blog/2013/04/25/virtual-winners/">honourable mention</a> for my application at the awards for virtual participation. Very happy with that!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/telescope-schedules-nasas-space-apps-challenge-808/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It&#8217;s OK To Be An Amateur</title>
		<link>http://www.jooldesign.co.uk/its-ok-to-be-an-amateur-771</link>
		<comments>http://www.jooldesign.co.uk/its-ok-to-be-an-amateur-771#comments</comments>
		<pubDate>Fri, 22 Feb 2013 15:00:40 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[me]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=771</guid>
		<description><![CDATA[I thought I would start this post with some definitions. Professional - A person following a profession, especially a learned profession. Amateur - A person who engages in an art, science, study, or athletic activity as a pastime rather than as a profession. As concrete as these definitions appear to be, I believe there is more and [...]]]></description>
				<content:encoded><![CDATA[<p><img class="alignright  wp-image-779" alt="Amateur astronomers" src="http://www.jooldesign.co.uk/wp-content/uploads/2013/02/594px-Astronomy_Amateur_3_V2.jpg" width="179" height="182" />I thought I would start this post with some definitions.</p>
<blockquote><p><strong>Professional</strong> - A person following a profession, especially a learned profession.</p></blockquote>
<blockquote><p><strong>Amateur</strong> - A person who engages in an art, science, study, or athletic activity as a pastime rather than as a profession.</p></blockquote>
<p>As concrete as these definitions appear to be, I believe there is more and more overlap these days. People with hobbies in Astronomy, Art, Sport, Computer programming etc are making greater and greater contributions to their fields of interest.</p>
<p><span id="more-771"></span>For example, amateur astronomers are <a title="Amateur discovery of exo-planets" href="http://astronomyonline.org/Exoplanets/AmateurDetection.asp">discovering exo-planets</a> many light years away. Enthusiasts are building and engineering solutions to problems using open-source technologies built on top of <a title="Arduino" href="http://www.arduino.cc/">Arduino</a> microcontrollers and the <a title="Raspberry Pi" href="http://www.raspberrypi.org/">Raspberry Pi</a>. <a title="3D printing" href="http://en.wikipedia.org/wiki/3D_printing">3D printing</a> will soon be cheap enough that people can print almost any 3D object they can imagine.</p>
<p>Amateurs can lift their heads high, above the stigma of tinkerers and dabblers. Amateurs often have several hobbies and interests. They&#8217;re sometimes labelled as Jacks of all trades, masters of none &#8211; a derogatory turn of phrase, that I believe amateurs should no longer need to endure.</p>
<p>The 80/20 rule that seems to rear its head a lot in the universe can be applied quite well here. Amateurs can obtain 80% of the knowledge of a professional in the same field whilst dedicating perhaps 20% as much time as a professional.</p>
<p>Do you need to need to gain 100% knowledge in a field to make valid contributions. No, I don&#8217;t think so.</p>
<p>And by not trying to become a professional in a field, you open up so many more possibilites for learning. You can become competent in many fields. This is something employers are looking for more often these days due to cuts in the economy. People who are multi-skilled are valuable. And not only in the job market. Multi-skilled amateurs can combine their skills to come up with concepts and products that a single skilled person could never dream up.</p>
<p>The think tank, Demos, released a short <a title="Professional Amateurs" href="http://www.demos.co.uk/files/proamrevolutionfinal.pdf">ebook about the impact of professional amateurs</a>. It&#8217;s well worth a read. Professional amateurs or (Pro-Ams) are described as amateurs who &#8216;work&#8217; to a professional level but do not consider their interests/activities as their profession. It is an aspiring title that doesn&#8217;t come with the pressure of performance for your livelihood. Instead you &#8216;work&#8217; at a professional level for the fun of it and can still make significant contributions to the development of your field(s).</p>
<p>As an aside, I wanted to briefly talk about <a title="Autodidactism" href="http://en.wikipedia.org/wiki/Autodidacticism">autodidactism</a>. An autodidact is someone who learns on their own. They gain knowledge by reading and by experimentation. This is of course the opposite of learning via traditional education &#8211; school, college, university. So much can be learned now that information is such an abundant commodity on the internet. Traditional education has its merits of course. It&#8217;s much more structured for example, and you are learning from experts. But you can&#8217;t tackle multiple fields of interest at university level. It would cost too much in time and money and traditional education in almost all cases focuses on a smaller and smaller niche of a field, the further you study &#8211; Bachelors degree -&gt; Masters degree -&gt; PhD -&gt; and beyond.</p>
<p>Amateurs are natural autodidacts. They crave information about their chosen field(s). Their thirst for knowledge is insatiable. Most of all, they pursue their interests because it makes them happy. They don&#8217;t need to become a professional to reach this goal. That only limits us. Be proud to be an amateur. Widen your field of view and see what you can create, achieve, contribute and discover.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/its-ok-to-be-an-amateur-771/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Social Media Platforms Only For What They&#8217;re Best At</title>
		<link>http://www.jooldesign.co.uk/using-social-media-platforms-only-for-what-theyre-best-at-767</link>
		<comments>http://www.jooldesign.co.uk/using-social-media-platforms-only-for-what-theyre-best-at-767#comments</comments>
		<pubDate>Thu, 21 Feb 2013 12:49:15 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[me]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=767</guid>
		<description><![CDATA[I recently had a massive purge of &#8216;friends&#8217; on Facebook because I&#8217;m tired of getting sucked into reading about things I&#8217;m not remotely interested in. Facebook is addictive &#8211; and the only way to fight addiction is to control it. Going one step further, I want to use various social platforms for only what I [...]]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft  wp-image-768" alt="SMM-Confusion1" src="http://www.jooldesign.co.uk/wp-content/uploads/2013/02/SMM-Confusion1.jpg" width="167" height="184" />I recently had a massive purge of &#8216;friends&#8217; on Facebook because I&#8217;m tired of getting sucked into reading about things I&#8217;m not remotely interested in. Facebook is addictive &#8211; and the only way to fight addiction is to control it. Going one step further, I want to use various social platforms for only what I see is most beneficial to me. So from now on, you can expect to me online in the following places for the following reasons:</p>
<p><strong><span id="more-767"></span>Facebook</strong> &#8211; strictly for communicating with close (real world friends &#8211; i.e I physically see them at least once a year) and family*<br />
<strong>Twitter</strong> &#8211; this is the only place I will actively network with people and organisations I don&#8217;t know personally. If I have interesting news or tidbits, I will most likely share them here.<br />
<strong>Flickr</strong> &#8211; will become my home for <strong>any</strong> photos I take, whether it be with my phone, or new camera. May <em>occasionally</em> share some of these photos with Twitter and Facebook manually.<br />
<strong>Github</strong> &#8211; any code I create that I&#8217;m happy to share with the world will be found here.<br />
<strong>Soundcloud</strong> &#8211; any music I make will end up here (again only if I&#8217;m happy to share it)<br />
<strong>Spotify</strong> &#8211; if you wanna send me a tune, feel free, I&#8217;ll take a listen&#8230;<strong><br />
Skype</strong> - If I&#8217;m online, I will be on Skype. This is by far the quickest way to get in touch with me<br />
<strong>This site</strong> &#8211; for anything much longer that 140 characters, it will appear on this blog.</p>
<p>That&#8217;s it! It may still seem like a lot, but I&#8217;m only using each network for a specialised function. I think that a lot of new social networks that pop up everyday don&#8217;t offer anything new, and just suck your productivity away. All the links for these accounts are in the header of my website above.</p>
<p>Some networks that didn&#8217;t make the cut:</p>
<p><strong>Instagram</strong> &#8211; poor quality photos that I can post on Flickr anyway now and I don&#8217;t have many connections here anyway.<br />
<strong>Google+</strong> &#8211; again not many connections and although it has some nice features like the communities, it&#8217;s not worth my time sharing stuff to it.<br />
<strong>LinkedIn</strong> &#8211; my profile will remain, but I&#8217;m not going to actively participate anymore.<br />
<strong>Many more</strong> - I no longer interact with a lot of other services that I&#8217;ve probably forgotten the login for anyway. I will close these down as and when I come across them again.</p>
<p>I will be retreating from these networks over the next month.</p>
<p>What are the benefits of reducing the networks you involve yourself with?</p>
<ol>
<li><span style="line-height: 13px;">Less likelyhood of identity theft (especially if you sever all cross-pollination plugins that post facebook messages to twitter etc etc).</span></li>
<li>Less services to feel <em>compelled</em> to check and interact with every day.</li>
<li>No more reading the same things by the same people on different platforms &#8211; what a waste of time.</li>
<li>More time to spend in the real world doing real things (that ironically become worth sharing with friends on social networks)</li>
</ol>
<p><small>* I also need access to various facebook pages for business use and to one or two Facebook groups for my studies, but that&#8217;s by-the-by.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/using-social-media-platforms-only-for-what-theyre-best-at-767/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big n little</title>
		<link>http://www.jooldesign.co.uk/big-n-little-765</link>
		<comments>http://www.jooldesign.co.uk/big-n-little-765#comments</comments>
		<pubDate>Tue, 19 Feb 2013 16:16:54 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=765</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><!-- This post is created by Instagrate to WordPress, a WordPress Plugin by polevaultweb.com - http://www.polevaultweb.com/plugins/instagrate-to-wordpress/ --><a href="http://distilleryimage9.s3.amazonaws.com/c6ce80407aaf11e29a2a22000a1fb02b_7.jpg" title="Big n little"><img src="http://distilleryimage9.s3.amazonaws.com/c6ce80407aaf11e29a2a22000a1fb02b_7.jpg" class="instagram" alt="Big n little" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/big-n-little-765/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Basic Particle Classification</title>
		<link>http://www.jooldesign.co.uk/basic-particle-classification-762</link>
		<comments>http://www.jooldesign.co.uk/basic-particle-classification-762#comments</comments>
		<pubDate>Fri, 15 Feb 2013 13:52:32 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[Astronomy/Physics]]></category>
		<category><![CDATA[particle physics diagram]]></category>
		<category><![CDATA[particles diagram]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=762</guid>
		<description><![CDATA[In my Cosmology module, we had to read and understand about the basic particles and their interactions and so I thought I would create a diagram to help me remember how particles are classified, e.g. an electron is a lapton and a fermion etc&#8230; Hopefully others will find this useful too. I intend to compliment [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.jooldesign.co.uk/wp-content/uploads/2013/02/particles.jpg"><img class="alignnone size-full wp-image-763" title="Basic classification of particles" alt="Particle diagram" src="http://www.jooldesign.co.uk/wp-content/uploads/2013/02/particles.jpg" width="612" height="873" /></a></p>
<p>In my Cosmology module, we had to read and understand about the basic particles and their interactions and so I thought I would create a diagram to help me remember how particles are classified, e.g. an electron is a lapton and a fermion etc&#8230;</p>
<p>Hopefully others will find this useful too. I intend to compliment this diagram with another one to show how the various particles interact and the forces between them some time in the near future.</p>
<p>If you spot any mistakes, let me know&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/basic-particle-classification-762/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valentine&#039;s day meal</title>
		<link>http://www.jooldesign.co.uk/valentines-day-meal-758</link>
		<comments>http://www.jooldesign.co.uk/valentines-day-meal-758#comments</comments>
		<pubDate>Thu, 14 Feb 2013 20:27:55 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=758</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><!-- This post is created by Instagrate to WordPress, a WordPress Plugin by polevaultweb.com - http://www.polevaultweb.com/plugins/instagrate-to-wordpress/ --><a href="http://distilleryimage10.s3.amazonaws.com/035ec4f876e511e2aeb222000a1f9e7e_7.jpg" title="Valentine&#039;s day meal"><img src="http://distilleryimage10.s3.amazonaws.com/035ec4f876e511e2aeb222000a1f9e7e_7.jpg" class="instagram" alt="Valentine&#039;s day meal" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/valentines-day-meal-758/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#whpfromwhereistand</title>
		<link>http://www.jooldesign.co.uk/whpfromwhereistand-750</link>
		<comments>http://www.jooldesign.co.uk/whpfromwhereistand-750#comments</comments>
		<pubDate>Sun, 20 Jan 2013 21:17:18 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=750</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><!-- This post is created by Instagrate to WordPress, a WordPress Plugin by polevaultweb.com - http://www.polevaultweb.com/plugins/instagrate-to-wordpress/ --><a href="http://distilleryimage4.s3.amazonaws.com/c57ec770634611e2bf8022000a1fbe54_7.jpg" title="#whpfromwhereistand"><img src="http://distilleryimage4.s3.amazonaws.com/c57ec770634611e2bf8022000a1fbe54_7.jpg" class="instagram" alt="#whpfromwhereistand" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/whpfromwhereistand-750/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow sarie</title>
		<link>http://www.jooldesign.co.uk/snow-sarie-748</link>
		<comments>http://www.jooldesign.co.uk/snow-sarie-748#comments</comments>
		<pubDate>Sat, 19 Jan 2013 15:03:31 +0000</pubDate>
		<dc:creator>jooldesign</dc:creator>
				<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://www.jooldesign.co.uk/?p=748</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><!-- This post is created by Instagrate to WordPress, a WordPress Plugin by polevaultweb.com - http://www.polevaultweb.com/plugins/instagrate-to-wordpress/ --><a href="http://distilleryimage9.s3.amazonaws.com/63764c22624911e2ab5722000a1f9684_7.jpg" title="Snow sarie"><img src="http://distilleryimage9.s3.amazonaws.com/63764c22624911e2ab5722000a1f9684_7.jpg" class="instagram" alt="Snow sarie" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jooldesign.co.uk/snow-sarie-748/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
