<?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>Lynsay&#039;s Little World</title>
	<atom:link href="http://www.lynsayshepherd.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.lynsayshepherd.com/blog</link>
	<description>The ramblings thoughts of a twentysomething year old geek</description>
	<lastBuildDate>Wed, 04 Apr 2012 10:57:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing A Standalone Instance of MySQL on Mac OS X</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1241</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1241#comments</comments>
		<pubDate>Wed, 04 Apr 2012 10:57:37 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1241</guid>
		<description><![CDATA[Recently I decided I needed to broaden my horizons and learn a bit more about Ruby on Rails, whilst using a MySQL database back-end. I&#8217;m a fan of XAMPP and have been using it for years. Of course MySQL comes with XAMPP however, I was reluctant to mess around with this installation when it came [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I decided I needed to broaden my horizons and learn a bit more about Ruby on Rails, whilst using a <a href="http://www.mysql.com/">MySQL</a> database back-end. I&#8217;m a fan of <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> and have been using it for years. Of course MySQL comes with XAMPP however, I was reluctant to mess around with this installation when it came to setting up Ruby on Rails. Instead, I opted to install a standalone version of MySQL for use with Ruby on Rails. I encountered a few difficulties along the way so thought I&#8217;d write this blog. It&#8217;s not exactly a step-by-step guide but hopefully something in here will help others.</p>
<p><strong>1. Install XCode</strong><br />
XCode is Apple&#8217;s suite of developer tools. It&#8217;s a free download from the Mac App Store. Download it from there and it should install itself, no problem.</p>
<p><strong>2. Install Homebrew</strong><br />
Next, you need to install Homebrew. Homebrew is an open source package manager for OS X. This is what we&#8217;re going to use to help install MySQL. Before we installing Homebrew, we need to make a folder for the packages we will download. This will be done via the Terminal (if you&#8217;re unsure where to find this, it&#8217;s under Applications &gt; Utilities &gt; Terminal).</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>Cellar</pre></div></div>

<p>Now we are ready to install Homebrew using the following command in the Terminal</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>ruby <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$(/usr/bin/curl -fksSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)</span>&quot;</span></pre></div></div>

<p>If you&#8217;re having trouble installing Homebrew, more information can be found at <a href="https://github.com/mxcl/homebrew/wiki/installation">https://github.com/mxcl/homebrew/wiki/installation</a></p>
<p>This may take a short while (I&#8217;ve forgotten how long it took me). If you want to check it has installed correctly, run the &#8220;brew doctor&#8221; command. This will alert you to any issues, such as problems with the PATH variables. I&#8217;m not going to cover errors with Homebrew in this particular blog however, if you do encounter troubles, there are a number of sites out there providing useful help.</p>
<p><strong>3. Installing MySQL</strong><br />
Once Homebrew has installed and any errors have been resolved, run the following command to install MySQL:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">brew <span style="color: #c20cb9; font-weight: bold;">install</span> mysql</pre></div></div>

<p>Again, I can&#8217;t remember how long this took to install but it didn&#8217;t take an overly long amount of time, if that&#8217;s some comfort. It would be a great time to go and get a cup of tea though.</p>
<p>After this, we need to set the MySQL server to launch at start-up, though I&#8217;m not convinced this worked as it should on my machine. Just remember to change the version number in the command below, in accordance with the one you are using.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysql_install_db <span style="color: #660033;">--verbose</span> <span style="color: #660033;">--basedir</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$(brew --prefix mysql)</span>&quot;</span> <span style="color: #660033;">--datadir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>mysql <span style="color: #660033;">--tmpdir</span>=<span style="color: #000000; font-weight: bold;">/</span>tmp
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> ~<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>LaunchAgents
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>Cellar<span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">/</span>5.5.20<span style="color: #000000; font-weight: bold;">/</span>com.mysql.mysqld.plist ~<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>LaunchAgents<span style="color: #000000; font-weight: bold;">/</span>
launchctl load <span style="color: #660033;">-w</span> ~<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>LaunchAgents<span style="color: #000000; font-weight: bold;">/</span>com.mysql.mysqld.plist</pre></div></div>

<p><strong>4. Running 2 instances of MySQL simultaneously</strong><br />
Here&#8217;s where the fun and games begin. We already have MySQL installed on the Mac- the version which came with XAMPP. MySQL usually runs on port 3306 and obviously, this will cause chaos if we try and run 2 versions at once (slight exaggeration there: it won&#8217;t cause chaos but it just won&#8217;t work!).</p>
<p>In order to prevent any conflicts, I decided to force the standalone version of MySQL to run on another free port. In my case, I chose port 3307. If you&#8217;re unsure which port to use, there&#8217;s a port scanner included with OS X under Applications &gt; Utilities &gt; Network Utility and this will help you identify a free one. Still, 3307 should be ok.</p>
<p>Navigate to usr/local/etc/my.cnf. If there is no my.cnf file, make one. Copy and paste the following information into it (this information sets MySQL to run on port 3307 on localhost):</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #FF00FF;">&#91;</span>client<span style="color: #FF00FF;">&#93;</span>
port <span style="color: #CC0099;">=</span> <span style="color: #008080;">3307</span>
socket <span style="color: #CC0099;">=</span> <span style="color: #CC0099;">/</span>tmp<span style="color: #CC0099;">/</span>mysql.sock 
&nbsp;
<span style="color: #FF00FF;">&#91;</span>mysqld<span style="color: #FF00FF;">&#93;</span>
event_scheduler <span style="color: #CC0099;">=</span> <span style="color: #990099; font-weight: bold;">ON</span>
skip<span style="color: #CC0099;">-</span>character<span style="color: #CC0099;">-</span>set<span style="color: #CC0099;">-</span>client<span style="color: #CC0099;">-</span>handshake
collation_server <span style="color: #CC0099;">=</span> utf8_unicode_ci
character_set_server <span style="color: #CC0099;">=</span> utf8 
&nbsp;
bind<span style="color: #CC0099;">-</span>address <span style="color: #CC0099;">=</span> 127.0.0.1
port <span style="color: #CC0099;">=</span> <span style="color: #008080;">3307</span>
socket <span style="color: #CC0099;">=</span> <span style="color: #CC0099;">/</span>tmp<span style="color: #CC0099;">/</span>mysql.sock
max_connections <span style="color: #CC0099;">=</span> <span style="color: #008080;">20</span></pre></div></div>

<p>Before we go any further, I would suggest starting up XAMPP and navigating to http://localhost/phpmyadmin in your browser, just to check that it&#8217;s still running correctly. There&#8217;s no reason the standalone version should interfere with the XAMPP version but you might want to double-check for peace of mind (I did).</p>
<p><strong>5. Here come the errors (probably)&#8230;.</strong><br />
At this stage, you&#8217;re likely to get errors with the MySQL installation. Want to test it and see if that&#8217;s the case? Enter the following into the Terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;">mysql.server <span style="color: #990099; font-weight: bold;">start</span>
mysql</pre></div></div>

<p>Chances are, this will generate the &#8220;ERROR 2002 (HY000): Can&#8217;t connect to local MySQL server through socket &#8216;/var/lib/mysql/mysql.sock&#8217; (2)&#8221; error. That&#8217;s because we still have a few things to change to resolve any issues.</p>
<p>Navigate to /usr/local/Cellar/mysql/5.5.20/support-files/mysql.server</p>
<p>Near the start of the file you should see the following lines:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;">basedir<span style="color: #CC0099;">=</span>
datadir<span style="color: #CC0099;">=</span></pre></div></div>

<p>Change these lines to:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;">basedir<span style="color: #CC0099;">=/</span>usr<span style="color: #CC0099;">/</span><span style="color: #990099; font-weight: bold;">local</span><span style="color: #CC0099;">/</span>Cellar<span style="color: #CC0099;">/</span>mysql<span style="color: #CC0099;">/</span>5.5.20<span style="color: #CC0099;">/</span>
datadir<span style="color: #CC0099;">=/</span>usr<span style="color: #CC0099;">/</span><span style="color: #990099; font-weight: bold;">local</span><span style="color: #CC0099;">/</span>Cellar<span style="color: #CC0099;">/</span>mysql<span style="color: #CC0099;">/</span>5.5.20<span style="color: #CC0099;">/</span><span style="color: #990099; font-weight: bold;">data</span></pre></div></div>

<p>It may seem obvious but check your version number and add in the appropriate one- I&#8217;m running 5.5.20 but off the top of my head, I&#8217;m not sure if that&#8217;s the latest version.</p>
<p>Try starting the server again by using:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysql.server start
mysql</pre></div></div>

<p>You may still get an error which says something along the lines of &#8220;ERROR! Manager of pid-file quit without updating file.&#8221; I&#8217;m not entirely sure what that&#8217;s all about but it&#8217;s not good.</p>
<p>Again, you need to navigate back to /usr/local/Cellar/mysql/5.5.20/support-files/mysql.server</p>
<p>Locate the following line:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;">mysqld_pid_file_path<span style="color: #CC0099;">=</span>$datadir<span style="color: #CC0099;">/</span><span style="color: #008000;">`/hostname`</span>.pid</pre></div></div>

<p>Change it to:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;">mysqld_pid_file_path<span style="color: #CC0099;">=</span>$datadir<span style="color: #CC0099;">/</span><span style="color: #008000;">`/bin/hostname`</span>.pid</pre></div></div>

<p>Now try:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysql.server start
mysql</pre></div></div>

<p>Hey presto, it should work! Go and have a celebratory cup of tea. If the installation still gives an error, get a cup of tea anyway- you&#8217;ll probably be needing one by this stage. Most likely, there will be an issue with file permissions some where along the line. I found this <a href="http://stackoverflow.com/questions/1334272/cant-start-mysql-in-mac-os-10-6-snow-leopard">thread on stackoverflow </a>to be quite useful. Basically, you may need to &#8220;chown&#8221; a few folders.</p>
<p><strong>6. Installing the MySQL Preference Pane</strong><br />
There&#8217;s nothing to see here, move along. What I&#8217;m trying to say is, I battled with the prefpane. I wanted it to work, I really did but it didn&#8217;t. In short, it was a pain in the backside. It only wanted to start/stop the MySQL installation in the default location which is /usr/local/mysql as opposed to /usr/local/Cellar/mysql. Just use commands in the Terminal instead to start/stop the server:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysql.server start
mysql.server stop</pre></div></div>

<p><strong>7. Useful Information</strong><br />
Whilst trying to install MySQL, I found both <a href="http://www.frederico-araujo.com/2011/07/30/installing-rails-on-os-x-lion-with-homebrew-rvm-and-mysql/">Frederico Araujo&#8217;s blog</a> and <a href="http://thinkvitamin.com/code/ruby-on-rails/installing-ruby-rails-and-mysql-on-os-x-lion/">Jason Seifer&#8217;s blog</a> to be useful resources.</p>
<p>Additionally, you may find the <a href="http://www.mysql.com/products/workbench/">MySQL Workbench tool</a> handy when managing various databases. It serves as a neat front-end and allows you to either type SQL or interact with a user interface.<br />
*     *     *     *<br />
As I previously mentioned at the beginning of this post, this isn&#8217;t a fine-detailed guide to installing a standalone version of MySQL whilst running XAMPP- there are a number of errors which could appear and I couldn&#8217;t possibly anticipate them all. However, if there are people out there who have been struggling, I&#8217;m hoping this post at least provides some guidance.</p>
<p>Now I just need to get started on building something with Ruby on Rails&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1241</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Durolane Round 1 Update</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1239</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1239#comments</comments>
		<pubDate>Fri, 09 Mar 2012 15:10:59 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Hip]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1239</guid>
		<description><![CDATA[Apologies- I meant to update my blog regularly with news of how my hip was holding up following the Durolane injection I had in June 2011. My 3 month check-up was in September and that went very well. How are things now? Well, there&#8217;s good and bad news. The good news: my hip felt great [...]]]></description>
			<content:encoded><![CDATA[<p>Apologies- I meant to update my blog regularly with news of how my hip was holding up following the Durolane injection I had in <a href="http://www.lynsayshepherd.com/blog/?p=1132">June 2011</a>. My 3 month check-up was <a href="http://www.lynsayshepherd.com/blog/?p=1161">in September </a>and that went very well.</p>
<p>How are things now? Well, there&#8217;s good and bad news.</p>
<p>The good news: my hip felt great over the winter. The cold weather usually irritates it but due to the combination of the mild winter and the Durolane, I barely felt it. In fact, I&#8217;ve hardly taken any painkillers at all (though I am still remaining teetotal as I have done since 2008 <img src='http://www.lynsayshepherd.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). My hip did have the occasional day where it hurt but those were days where I&#8217;d overdone it. Overall, my hip has been fantastic and it&#8217;s been nice to go out for walks without the need to take painkillers first.</p>
<p>The bad news: all good things must come to and end. This is now the beginning of March, 8 months on from the injection and the Durolane is wearing off. I&#8217;ve already been to speak to my Dr and have been referred for another injection. Whilst I&#8217;m dreading the thought of being back in the operating theatre, getting stabbed with a javelin, I know it&#8217;s worth it. Anything to stave off the inevitable hip replacement.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1239</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Thoughts On The Windows 8 Dev Preview</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1221</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1221#comments</comments>
		<pubDate>Sun, 26 Feb 2012 16:36:49 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1221</guid>
		<description><![CDATA[Perhaps I&#8217;m a little behind the times since I&#8217;ve only just installed the Windows 8 Developer Preview (when it was actually released mid-December). Nevertheless, I&#8217;ve been playing around with it to get a feel for it.  Before I go any further, it should noted that the preview was running on a MacBook via VirtualBox. I [...]]]></description>
			<content:encoded><![CDATA[<p>Perhaps I&#8217;m a little behind the times since I&#8217;ve only just installed the Windows 8 Developer Preview (when it was actually released mid-December). Nevertheless, I&#8217;ve been playing around with it to get a feel for it.  Before I go any further, it should noted that the preview was running on a MacBook via VirtualBox. I chose not to create an account via my Windows Live ID and instead chose the option of creating a Local Account.</p>
<p>The installation process was easy. A few steps and that was it. Microsoft seem to have improved upon this- as I recall, installing XP took several steps and information had to be entered periodically though the process. Maybe I just think it&#8217;s easier because I&#8217;m more experienced now?</p>
<p>Right, initial thoughts on the interface. First off, it&#8217;s very green but not in a bad way. The Start Screen is colourful, and filled with a selection of apps and options- I believe this is the Metro interface (I have included an image of it). As soon as I saw it, I wanted to start using my laptop screen as a touchscreen. Since it isn&#8217;t a touchscreen, it would do nothing other than generate a mass of greasy fingerprints.</p>
<p style="text-align: center;"><a href="http://www.lynsayshepherd.com/blog/wp-content/uploads/2012/02/Screen-shot-2012-02-25-at-16.48.06.png"><img class="size-medium wp-image-1224" title="Windows 8 Start Screen" src="http://www.lynsayshepherd.com/blog/wp-content/uploads/2012/02/Screen-shot-2012-02-25-at-16.48.06-300x224.png" alt="Windows 8 Start Screen" width="300" height="224" /></a></p>
<p>This leads me to my first piece of criticism of the developer preview- the interface seems geared towards tablet devices and I&#8217;m not sure that translates to the desktop experience. One of the apps I played around with was the Piano one. It was ok using the mouse but it&#8217;s something I would have preferred to use on a touchscreen- it would have been much faster. Microsoft seems eager to demonstrate the capabilities of the Metro interface which is fair enough because it is nice but again, I&#8217;m not sure these touchscreen apps adapt to suit a desktop environment.</p>
<p>Another app I looked at was the Internet Explorer app. I only experimented with it briefly but the thing I found odd was that the address bar was at the bottom of the screen! It was surrounded by black so it was unobtrusive but it struck me as an odd place to put it. Thinking about it, it&#8217;s actually a good place to put it- it doesn&#8217;t get in the way of the top part of the website you&#8217;re trying to view. It&#8217;s a neat app. For those that are panicking, the standard desktop version of Internet Explorer is also included so you&#8217;re not forced to use the tablet-optimised one.</p>
<p>One thing I found a little odd was the lack of an X in the corner to close an app. Instead, pressing the Windows key on the keyboard works as an X button. I guess this relates to tablet features being included with the OS, as on those devices, you press a &#8220;Home&#8221; button or something similar to leave an app.</p>
<p>For seasoned users who are worried this is a totally different version of Windows they&#8217;ll have to get used to, fear not, the traditional desktop environment still exists and Windows Explorer is there to use.</p>
<p style="text-align: center;"><a href="http://www.lynsayshepherd.com/blog/wp-content/uploads/2012/02/win8menu.png"><img src="http://www.lynsayshepherd.com/blog/wp-content/uploads/2012/02/win8menu-300x223.png" alt="Shutting Down" title="Shutting Down" width="300" height="223" class="size-medium wp-image-1233" /></a></p>
<p>When I was finished playing around with the preview, I needed to shut down the machine- this is where I ran into a problem. How do you normally shut down a Windows computer? Start &gt; shut down. When I tried this in Windows 8, there was no shut down option. I resorted to Google which told me I had to click on the Start button, then click on settings. This produced a large green sidebar on the right of the screen. You then have to select power from this menu, then you can finally shut down. I&#8217;ve been a Windows user since around 1997/1998 and I felt a bit silly because I didn&#8217;t know how to shut down- why has this changed and what was wrong with the old way?</p>
<p>My overall thoughts. I think the Windows 8 Developer Preview looks quite nice but many of the UI features are geared towards tablet devices, and it doesn&#8217;t quite work in a desktop environment. That said, at least they have included the desktop Windows users have come to expect so there isn&#8217;t a huge learning curve for existing users. Personally, I think Microsoft should stick to having a separate desktop and tablet/mobile OS, like Apple have OSX and iOS. That&#8217;s just my 2 cents. Of course, the Consumer preview is supposed to be released on the 29th of February so things may have changed!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1221</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2012 Resolutions</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1218</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1218#comments</comments>
		<pubDate>Fri, 30 Dec 2011 23:38:28 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Year review]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1218</guid>
		<description><![CDATA[2011 has been a rough year and I&#8217;m glad to see the back of it. Many things haven&#8217;t gone as planned this year and at the end of the summer I lost a beloved family member, a loss which I feel every single day. 2011 has had a few good moments. The 8 days I [...]]]></description>
			<content:encoded><![CDATA[<p>2011 has been a rough year and I&#8217;m glad to see the back of it. Many things haven&#8217;t gone as planned this year and at the end of the summer I lost a beloved family member, a loss which I feel every single day.</p>
<p>2011 has had a few good moments. The 8 days I had in New York City with my best friend were amazing. We crammed in so much: Top of the Rock, New York Public Library, Bryant Park (and chess!), Times Square, Liberty Island, Ellis Island, Battery Park, Wall St, New York Yankees vs Texas Rangers, Hershey&#8217;s, Museum of Modern Art, American Museum of Natural History, The Met, Central Park, the Upper West Side, comic book stores, 5th Avenue, Grand Central Station and lots of Starbucks. Great times.</p>
<p>I digress. Here are my resolutions for 2012:</p>
<ul>
<li>Get fitter. Specifically, I want to build up more strength in my hip. The Durolane is slowly wearing off (but I&#8217;m ok just now) and I think a little more muscle would provide a but more support for it. I just have to be careful and stick to my limits.</li>
<li>Try and get a full-time position- I love my job at the moment but it&#8217;s a temporary contract. If I could get the same job permanently, I&#8217;d be ecstatic.</li>
<li>Attend more gigs and performances- what can I say? I&#8217;m always up for seeing more shows.</li>
<li>Spend more time with friends- actually, I&#8217;ve already been working on this. I&#8217;ve seen my friends more this year than I have in previous years. There&#8217;s still some I haven&#8217;t seen in a long time though!</li>
<li>Improve my photography- do I need to explain this one? I feel I haven&#8217;t been out with the camera much this year so I need to rectify that. I&#8217;m seriously considering another 365 challenge like the one I did in 2008 (<a href="http://www.flickr.com/photos/lynsay87/sets/72157603602259285/">see my 2008 challenge pics </a>).</li>
</ul>
<p>So here&#8217;s to 2012. Let&#8217;s hope it&#8217;s a good one (and that the world doesn&#8217;t end!).</p>
<p>One last thing, since I&#8217;m watching 30 Rock as I write this, I&#8217;ll leave you with a Liz Lemon quote- &#8220;<em>One of my New Year’s resolutions is to say yes. Yes to love. Yes to life. Yes to staying in more!</em>&#8220;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1218</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bryan Adams, AECC Aberdeen, 26th Nov 2011</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1198</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1198#comments</comments>
		<pubDate>Sun, 27 Nov 2011 20:45:02 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Bryan Adams]]></category>
		<category><![CDATA[Gigs]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1198</guid>
		<description><![CDATA[The AECC was where I saw my first Bryan Adams concert, back in October 2004. I was only 16 at the time and was still in High School. I loved it. I distinctly remember arriving home quite late after the concert, being in awe of Bryan and the band and telling my mum that I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="photo sharing" href="http://www.lynsayshepherd.com/blog/wp-content/uploads/2011/11/S6301063a.jpg"><img class="aligncenter" src="http://www.lynsayshepherd.com/blog/wp-content/uploads/2011/11/S6301063a.jpg" alt="bryan adams aecc" /></a></p>
<p>The AECC was where I saw my first Bryan Adams concert, back in October 2004. I was only 16 at the time and was still in High School. I loved it. I distinctly remember arriving home quite late after the concert, being in awe of Bryan and the band and telling my mum that I &#8220;just HAD to see them again&#8221;.</p>
<p>Flash forward to the present day. 7 years later I found myself back the AECC eagerly awaiting my 7th Bryan Adams show. There was a tiny queue at the west entrance so when the doors opened at 6.30pm, I had time to buy a t-shirt, get some water and get a good spot in the 2nd row, in front of one of Bryan&#8217;s mics.</p>
<p>This year marks the 20th anniversary of the Waking Up The Neighbours (WUTN) album. To mark the occasion, he decided to do a tour in the UK. I&#8217;d been looking forward to the gig since it was announced at the end of March. Back in 1992, I was way too young to attend the original tour dates for the album.</p>
<p>Highlights of the show&#8230;.</p>
<p><strong>House Arrest-</strong> <em>What an opener- It got everybody going. It also happens to be a favourite of mine from WUTN and it was the first time I&#8217;d heard it live.</em></p>
<p><strong>Here I Am-</strong> <em>I&#8217;ve only ever heard this played live acoustically (in Dundee and Glasgow). Great with the full band too.</em></p>
<p><strong>All I Want Is You-</strong> <em>Another of the songs from the WUTN album and it rocked. Again, I hadn&#8217;t heard this live before.</em></p>
<p><strong>Thought I&#8217;d Died And Gone To Heaven-</strong> <em>Also from WUTN. Yet again, this was another tune I hadn&#8217;t heard live. Fantastic to hear.</em></p>
<p><strong>Hearts On Fire-</strong> <em>The guitar solo battle between Bryan and Keith Scott. Need I say more?</em></p>
<p><strong>Do I Have To Say The Words?-</strong> <em>I first heard this live in Glasgow last year, but that was on acoustic guitar. Very powerful with the full band.</em></p>
<p><strong>Summer of &#8217;69-</strong> <em>This song is always in the highlights of any gig I go to. It sends the audience wild and you can feel the energy in the room.</em></p>
<p><strong>Is Your Mama Gonna Miss Ya/ If You Wanna Leave Me / Touch The Hand (medley)-</strong> <em>First off, the medley was fantastic. All 3 songs were from WUTN and they are rarely/almost never played live. What made it even better was the way it was arranged. Mickey Curry came to the front and played the drums on buckets, pots and pans. Keith joined in on a plastic bucket (and looked like a kid who was enjoying himself) whilst Norm Fisher played &#8220;bass&#8221; on another bucket. You couldn&#8217;t make this stuff up. Sorry to use the phrase but it was epic. I don&#8217;t know how it worked but it just did.</em></p>
<p><strong>It&#8217;s Only Love-</strong> <em>Keith Scott and his fingers of fire- wow. How he manages to play the way he does is beyond me. The solo was amazing. I still remember the first time I saw Keith play the solo at a gig- my jaw literally dropped. He&#8217;s a legend.</em></p>
<p><strong>Depend On Me-</strong> <em>Another WUTN tune and another first for me.<br />
</em></p>
<p><strong>When You&#8217;re Gone-</strong> <em>Kerry from Laurencekirk was chosen as the WYG and she did a fantastic job- no nerves at all! I was really pleased someone from Laurencekirk was chosen as that&#8217;s where I went to High School.</em></p>
<p><strong>There Will Never Be Another Tonight-</strong> <em>This just happens to be one of my favourite songs. In the past I&#8217;ve seen it used as an opener. No matter where it is in the set, it still rocks.</em></p>
<p><strong>The Way You Make Me Feel-</strong> <em>Bryan wrote this song for Ronan Keating but last year, he included it on the Bare Bones album. This was my first opportunity to hear it live myself.</em></p>
<p>Other thoughts about the show?</p>
<p>I for one was really glad to see Keith Scott back. The acoustic shows were great with Gary Breit and Bryan but I missed Keith. Not only that but I&#8217;ve missed his solos- he&#8217;s a heck of a guitar player.</p>
<p>Also, the lighting set-up for the show was spectacular. By the looks of things, lasers were used and when they were blasting around the arena towards the end, it was really pretty. The giant screen at the back of the stage showing various graphics (and the Twitter feed) brought the whole show together. It was impressive.</p>
<p>Finally, the setlist (see the bottom of the blog post for the complete list). Wow. It was a storming set. Rocker after rocker. As you can tell from the gig highlights, there was a large number of songs which I hadn&#8217;t heard live before. Brilliant.</p>
<p>My final thoughts on the gig? Every time I come back from one of Bryan&#8217;s shows, I say &#8220;oh, it was amazing!&#8221;. This time is no different. It really was amazing. The most rockin&#8217; show I&#8217;ve seen for a long time.</p>
<p>I took a few pics (but not many) and you can find them on <a href="http://www.flickr.com/photos/lynsay87/6408204459/in/photostream">my Flickr page</a></p>
<p><strong>Setlist from the show</strong></p>
<p>House Arrest<br />
Somebody<br />
Here I Am<br />
All I Want Is You<br />
Can&#8217;t Stop This Thing We Started<br />
I&#8217;m Ready<br />
Thought I&#8217;d Died And Gone To Heaven<br />
Hearts On Fire<br />
Do I Have To Say The Words<br />
18 til I die<br />
Back To You<br />
Summer Of &#8217;69<br />
Is Your Mama Gonna Miss Ya/ If You Wanna Leave Me / Touch The Hand (Medley)<br />
Everything I Do<br />
Cuts Like A Knife<br />
It&#8217;s Only Love<br />
Depend On Me<br />
When You&#8217;re Gone<br />
Heaven<br />
The Only Thing That Looks Good On Me Is You<br />
Run To You<br />
There Will Never Be Another Tonight<br />
Cloud No. 9<br />
The Way You Make Me Feel<br />
Straight From The Heart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1198</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thoughts On iOS 5</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1169</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1169#comments</comments>
		<pubDate>Mon, 31 Oct 2011 11:15:09 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile Phones]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1169</guid>
		<description><![CDATA[iOS 5 was released to the public on the 12th of October, following the announcement at the Apple event in the previous week. Such was the demand for iOS 5 that Apple&#8217;s servers struggled to cope and many users received the dreaded 3200 error. I myself had been eagerly anticipating the new software. Now that [...]]]></description>
			<content:encoded><![CDATA[<p>iOS 5 was released to the public on the 12th of October, following the announcement at the Apple event in the previous week. Such was the demand for iOS 5 that Apple&#8217;s servers struggled to cope and many users received the dreaded 3200 error.</p>
<p>I myself had been eagerly anticipating the new software. Now that I&#8217;ve had time to play around with it, I thought I&#8217;d give my views on it from the perspective of an iPhone 3GS user.</p>
<p><strong>Speed</strong><br />
First things first, iOS 5 is definitely faster than iOS 4. If you recall, there were issues when iOS 4.3 was released. When I ran it, my phone seemed to lag and the graphics weren&#8217;t as smooth. At the time, iPhone 4 users were also affected and soon after, Apple released an update to rectify the issue.</p>
<p><strong>Notification Centre</strong><br />
People are saying that the notification centre has been ripped off from Android. I haven&#8217;t used an Android phone so I can&#8217;t really make a fair comparison. Whatever the case, I think the notification centre in iOS 5 is a useful feature. It&#8217;s handy to have one central place to view new messages, emails and events. The new badges/alerts system is nice too- better than the standard popup which was used for everything.</p>
<p><strong>Siri</strong><br />
This is not a feature which is enabled on the 3GS so its not something I&#8217;ve used yet. From what I&#8217;ve read, I have mixed feelings about Siri.</p>
<p>Sure Siri is a great feature- its practically a personal assistant. Who needs to type a message when you can dictate it to Siri? All joking aside, it does seem to be useful for finding out information. Since it uses voice recognition, I&#8217;m also thinking it would be a great tool for disabled users.</p>
<p>The downsides? First off a security flaw has been identified where the phone can be accessed by Siri when locked (<a href="http://www.techradar.com/news/computing/apple/siri-security-flaw-uncovered-1035270">Tech Radar article</a>).</p>
<p>Secondly, Siri appears to have a problem with Scottish accents, as reported by the media (<a href="http://m.zdnet.com/blog/london/lost-in-translation-siri-cannot-understand-the-scottish-accent/261">zdnet article</a>). Now I can understand this to a degree. I&#8217;m a Scot and even I have trouble with some Scottish accents, after all, some of them are really strong.</p>
<p>This isn&#8217;t the first time voice recognition has caused problems in the past few years. Hands up if you&#8217;ve ever played the Brain Training games on the Nintendo DS. Did anyone encounter any issues (well, apart from being told that you had a brain age well above your actual age)? The games seemed to have a problem with my accent too so it&#8217;s not just an Apple issue. Think about the way Scots generally pronounce &#8220;seven&#8221;. It comes out as &#8220;sivin&#8221; doesn&#8217;t it?</p>
<p>Anyway, my first thought when Siri was announced: &#8221; jeez, this is going to encourage more people to talk to themselves on trains&#8221;.</p>
<p><strong>Location-based Reminders</strong><br />
This is a feature I was looking forward to using the most in iOS 5. Beside a shop? Pick up milk. Approaching your destination on the train? Send an alarm to make sure you haven&#8217;t fallen asleep. Sounds great, doesn&#8217;t it?</p>
<p>Well it&#8217;s not so great if you&#8217;re the owner of an iPhone 3GS because the location part of reminders has been removed. Why? The iPhone 3GS is more than capable of running this feature since it has GPS. It&#8217;s worth noting that the feature was enabled in beta versions of iOS 5. Honestly, why have Apple done this? Your guess is as good as mine (read: making people upgrade to a new phone equals money).</p>
<p>On a 3GS, I&#8217;m not sure that reminders adds anything more to the OS. I find myself continuing to use the calendar app. Perhaps the reminders feature is for small tasks like picking up items from the shop and the calendar should be reserved for appointments?</p>
<p><strong>iCloud</strong><br />
Another great feature of iOS 5. Users are able to back-up and restore their devices wirelessly using iCloud. Unfortunately, I haven&#8217;t been able to get iCloud back-ups to work yet as my computer seems to be confused about its identity.</p>
<p>iTunes in the Cloud is also quite a neat idea. Recently, I purchased a track on iTunes (Teardrop by José González if you really wanted to know- it was used in the House season 4 finale) and I quite happily listened to it on my laptop. I wanted it on my iPhone too. Did I have to connect my iPhone to my laptop and transfer it? Nope. If you go into iTunes on your phone, select &#8220;purchased&#8221; then select &#8220;not on this iPhone&#8221;, you will be shown a list of all the songs you&#8217;ve previously purchased and you can then download them directly to your device. Great for when you&#8217;re away from your laptop.</p>
<p><strong>iMessages</strong><br />
iMessage allows you to send messages between iOS 5 devices for free and is basically an IM service. The joke has been made that it&#8217;s just like Blackberry Messenger except it actually works (referring to the recent <a href="http://www.guardian.co.uk/technology/2011/oct/10/blackberry-outage-affects-bbm-services">BBM outage</a>). I love the fact that it allows you to send text-like messages to non-phone devices like the iPod Touch. Add Skype into the mix too and provided you have a wi-fi connection, your iPod essentially becomes a phone.</p>
<p><strong>Overall Thoughts</strong><br />
iOS 5 has made vast improvements to the iPhone 3GS. The phone appears to be faster and the notification centre is a nice, unobtrusive way of viewing various alerts and messages. iMessages makes it easier to stay in touch with others and iCloud negates the need for the the iPhone to be connected to the computer. All fantastic new features.</p>
<p>That said, I&#8217;m still a bit disappointed with it. I was hoping that iOS 5 might feature NFC support. Android announced support for NFC when Gingerbread was released at the end of 2010. Since then, Google has created a Wallet system to take advantage of the feature. In May, RIM announced a BlackBerry device supporting NFC and just a few weeks ago, Nokia announced some <a href="http://techcrunch.com/2011/10/17/nokia-launches-new-nfc-enabled-games/">NFC-enabled games</a>. In this capacity, Apple are seriously lagging behind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1169</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIP Mr Jobs</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1164</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1164#comments</comments>
		<pubDate>Thu, 06 Oct 2011 20:24:23 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1164</guid>
		<description><![CDATA[Last night, I was sitting in front of the computer reading a few articles on web development. I got a bit caught up in what I was reading and lost track of time. It turns out it was after 1am. Just before I nodded off, I decided to check Twitter one more time. That&#8217;s where [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, I was sitting in front of the computer reading a few articles on web development. I got a bit caught up in what I was reading and lost track of time. It turns out it was after 1am. Just before I nodded off, I decided to check Twitter one more time. That&#8217;s where I read the words: &#8220;RIP Steve Jobs&#8221;.</p>
<p>Surely it couldn&#8217;t be true? After all, Twitter is usually crawling with death hoaxes. Still, my timeline was full of tweets related to Steve so I checked the BBC News site where they confirmed it: the Apple co-founder was dead.</p>
<p>Despite it being such a sad day, there have been some brilliant tributes to the man and I&#8217;m not sure if there&#8217;s much more I can add.</p>
<p>All I can say is that Steve Jobs was a visionary who changed the world. Thanks to him Apple devices have become ubiquitous. Look around you, how many Apple devices do you see people using on a daily basis? How many Apple products do you own? I was using my MacBook when I heard he&#8217;d died and this blog post was typed up on my iPhone whilst I was on the move. Think about how he&#8217;s changed the way we interact with the world.</p>
<p>What else can I say? RIP Steve Jobs. The world is a poorer place without you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1164</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Durolane 3 Month Check-up</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1161</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1161#comments</comments>
		<pubDate>Sun, 02 Oct 2011 11:03:03 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Hip]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1161</guid>
		<description><![CDATA[As the title of this post suggests, yesterday (Friday) I had a 3 month check-up at the hospital following the Durolane injection I had in June. So, how did it go? Well. Really well. My consultant asked how I&#8217;d gotten on post-injection and I was pleased to tell him that I thought it had worked. [...]]]></description>
			<content:encoded><![CDATA[<p>As the title of this post suggests, yesterday (Friday) I had a 3 month check-up at the hospital following the Durolane injection I had <a href="http://www.lynsayshepherd.com/blog/?p=1132">in June.</a></p>
<p>So, how did it go? Well. Really well.</p>
<p>My consultant asked how I&#8217;d gotten on post-injection and I was pleased to tell him that I thought it had worked. I was really unsure for the first few weeks, and I found it difficult to quantify how well it was working. He explained this is normal as the hyaluronic acid can take as long as 4-6 weeks to interact with the tissue and cartilage surrounding the joint.</p>
<p>I was also asked if the pain got worse in the week after the injection. This didn&#8217;t happen to me. I said that I had expected a rough week post injection (I had 1 particularly bad day after the steroid injection in Feburary) but it didn&#8217;t happen. My hip felt a little bruised but then again, it had just had a needle stuck in it.</p>
<p>Durolane appears to have been a success for me and has greatly reduced the pain in my hip joint. My hip isn&#8217;t perfect and it still has it&#8217;s off days where I need my painkillers. Thankfully, these days are few and far between. I think the real test will be how well it holds up over the winter as it usually feels more painful in the cold weather.</p>
<p>The only catch with the Durolane injection is that there&#8217;s no telling how long it will last. It could be 3 months, 6 months or even a year. It&#8217;s different for each individual. It has certainly lasted longer than the steroid injection I had: the steroid injection- 6 weeks. Hyaluronic acid: 3 months and counting. Apparently, upon multiple injections of hyaluronic acid, there can be a cumulative effect which is a huge bonus!</p>
<p>What does this mean for me? Well, it means I can delay my inevitable hip replacement surgery for a bit longer. Durolane was effectively my last shot at keeping my original hip and there was no certainty that it would work. Unlike steroid injections, there are no finite amount of hyaluronic injections a person can receive, since the substance occurs naturally in our joints anyway. When I feel real pain again, I just have to go to the doctors and I&#8217;ll be sent for another one.</p>
<p>For the first time in a long time, I left the hospital feeling much happier. Unfortunately, because I can delay my hip replacement, there will be no bionic Lynsay for quite some time. I know a few people were looking forward to that <img src='http://www.lynsayshepherd.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>PS- For more info on Durolane, visit their <a href="http://www.durolane.com/">website</a> or <a href="https://twitter.com/#!/Durolane">twitter account</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1161</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Freedom Day 2011, Dundee</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1157</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1157#comments</comments>
		<pubDate>Thu, 29 Sep 2011 00:23:18 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[Geek]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1157</guid>
		<description><![CDATA[Saturday the 17th of September was Software Freedom Day. The aim of the day was to provide information to the public about free and open source software. Rather than demand that people should use such software, the event simply presents people with a choice and informs them of available software options. I attended the event [...]]]></description>
			<content:encoded><![CDATA[<p>Saturday the 17th of September was Software Freedom Day. The aim of the day was to provide information to the public about free and open source software. Rather than demand that people should use such software, the event simply presents people with a choice and informs them of available software options.</p>
<p>I attended the event in Dundee which was run in conjunction with <a href="http://the-os.org.uk/">The Open Society</a> and the <a href="http://dundeelug.org.uk/index.php/TayLUG_Home">Dundee &amp; Tayside Linux Users Group</a>. After an introduction by Ryan Ward regarding free and open source software, the talks ran on 2 tracks so I&#8217;ll give a brief overview of the ones which I observed.</p>
<p><strong>On Expectations, Requirements and Survival when Starting with Linux by Markus Tauber</strong><br />
This provided a brief intro to Linux and discussed some of the common mistakes users make when first installing the OS. Of course a mistake a lot of people make is formatting the wrong partition!</p>
<p><strong>What is Android by Kris Findlay</strong><br />
I didn&#8217;t know much about Android so thought I&#8217;d find a bit more out at this talk which provided a good overview. It will be interesting to see the future of Android and the direction it takes. Guess who was the only person in the room with an iPhone? Yep&#8230;</p>
<p>Next up, we had a break for lunch where we were provided with Domino&#8217;s pizza. The veggie pizza with goats cheese was amazing!</p>
<p>Over lunch, I had the opportunity to talk to others who were attending and I was shown Google Music, which is still supposed to be US only at the moment. It seems like a nice idea but in order to listen to your music on the go, you have to upload it to the Google servers first. Depending on the size of your music library, that could take quite some time!</p>
<p>Google+ also came up in conversation and I said that I hadn&#8217;t used it much (not sure what to think of it to be honest). It was suggested that I keep Facebook for friends only but in the case of Google+, approach it like Twitter, where you interact with developers/people who share the same interests but that you don&#8217;t necessarily know in real-life. It was also suggested that you could create separate Circles of coders, designers etc so you could share information with the appropriate groups of people. It was an interesting conversation and it&#8217;s changed my perspective on Google+.</p>
<p><strong>Open Source and Broadcasting by Kenny Coyle</strong><br />
This talk discussed how community radio could benefit from open source solutions. Again, radio is an area I know very little about and the talk raised some interesting points. I was unaware that radio/TV stations are required to keep logs of broadcast material for a certain period of time (this is so OFCOM have a reference point should a viewer/listener complain). The logging systems implemented can then be used to create on demand material e.g. programmes for iPlayer.</p>
<p><strong>Geo-Caching by Scott Cowie</strong><br />
I&#8217;ve only just become a geocacher this year (if this is the right term) but I know Scott is a seasoned pro so I wanted to hear what he had to say on the subject. He gave quite a few tips such as using a dedicated GPS device which is something I hadn&#8217;t thought to do. I&#8217;ve only done a few but I&#8217;ve used my phone GPS which tends to run away with battery life.  I need to find more!</p>
<p><strong>Introduction to PKI by Robert Ladyman</strong><br />
This was the last talk I saw before dashing off for the train. Robert gave a great introduction to public key infrastructure and highlighted that they are quite easy to use. He emphasised that you could use them as a digital signature for proving your identity when handling online contracts as opposed to only using a key to protect your emails.</p>
<p>Overall the day was really interesting and I did learn quite a bit about various aspects of free and open source software. I even took home a few Linux distros and I can tell you I am now dual-booting my old laptop with a combination of Windows XP and Linux Mint.</p>
<p>If you&#8217;re are interested in any of the talks that were given, keep checking the Open Society&#8217;s site: all talks were filmed and will be online in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1157</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mons Graupius</title>
		<link>http://www.lynsayshepherd.com/blog/?p=1151</link>
		<comments>http://www.lynsayshepherd.com/blog/?p=1151#comments</comments>
		<pubDate>Tue, 13 Sep 2011 17:31:36 +0000</pubDate>
		<dc:creator>Lynsay</dc:creator>
				<category><![CDATA[History]]></category>

		<guid isPermaLink="false">http://www.lynsayshepherd.com/blog/?p=1151</guid>
		<description><![CDATA[Recently, when I was tidying out my desk (onerous task, I know), I stumbled upon my first ever USB pendrive.  It was from back in the days where 128MB seemed like a huge amount of space(!).  When I plugged it in, I discovered  *drumroll* my Advanced Higher History Dissertation from 2005. Yes, you read that [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, when I was tidying out my desk (onerous task, I know), I stumbled upon my first ever USB pendrive.  It was from back in the days where 128MB seemed like a huge amount of space(!).  When I plugged it in, I discovered  *drumroll* my Advanced Higher History Dissertation from 2005.</p>
<p>Yes, you read that correctly.  When I was at High School, I did indeed study Advanced Higher History, specifically Northern Britain before 1000 A.D.  Had I not gone on to study Computing at university, I would have undertaken a History degree.  They almost seem like polar opposite fields, don&#8217;t they?  I think I watched too much &#8220;Time Team&#8221; as a child.</p>
<p>Studying the course required that students write a dissertation of 4000 words in length, a limit which nowadays pales in comparison to my honours project (17000 words) and my MSc dissertation (26000 words).</p>
<p>I chose to write a dissertation entitled &#8220;A Comparative Study Of The Historiography Of The Battle Of Mons Graupius&#8221;.  The title is a bit of a mouthful.  Basically, it&#8217;s all about the battle of which Tacitus said took place in either 83-84AD.  There are a number of debates around the battle.  When exactly did it take place?  Where did it occur (to this day there are a number of plausible sites yet none have been confirmed)?  Is Mons Graupius even the correct name?  The dissertation attempts to address these issues.</p>
<p>If you want to read it, <a href="http://www.lynsayshepherd.com/blog/wp-content/uploads/2011/09/Lynsay_Shepherd-Adv_Higher_History_Dissertation.pdf">click here</a>.  Forgive my writing skills.  It was researched and written when I was 16/17 years old.  Apologies in advance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lynsayshepherd.com/blog/?feed=rss2&#038;p=1151</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

