<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>JudoGeek Blog</title>
		<link>http://www.lancewicks.com/blog/index.php</link>
		<description><![CDATA[Kia Kaha, Kia Toa, Kia Manawanui!]]></description>
		<copyright>Copyright 2013, Lance Wicks</copyright>
		<managingEditor>Lance Wicks</managingEditor>
		<language>en-US</language>
		<generator>SPHPBLOG 0.5.1</generator>
		<item>
			<title>Inspect and adapt!</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry130410-162619</link>
			<description><![CDATA[Hi all,<br />so life on the new team was short lived; I am back in the Perl team and working on a new &quot;Acceptance Test Driven Development (ATDD)&quot; project. This is a relatively new approach for the Scrum team I work on and a new part of the product we are testing.<br /><br />ATDD for this team is basically automating the running of tests that confirm that the product &quot;does what it says on the tin&quot;. In other words, we are creating a barrage of tests that run regularly (hourly) and confirm that the product conforms to a set of formal documents. These documents range from standards from industry to product specific behaviours.<br /><br />Rather than testing edge cases and behaviours, what we are mainly doing is testing the products output in standard situations. Confirming that as it iterates towards  the production version the standard outputs remain constant. In our case we are working on something new, so we are coding tests for things as or in places before the product actually does what it should.<br /><br />So our test dashboards are turning red now, and slowly turning green as other teams enable the functionality we are testing. It is a interesting and rewarding way of working. You setup a test and see it fail, then some time (days or even weeks) later, it magically turns green when the other teams release the latest version of the product and the test starts passing.<br /><br />One of the key things we did early on was tie our tests to the specification and standards documents. This has proven to be really key as we have in the test results (specifically in the failures) references to shared documents. So when we say to a member of another team &quot;oph hey, feature x is failing because the widget says bing instead of bong&quot; and the person knee jerks a response like &quot;oh thats how it should be&quot;. We are able to say &quot;REALLY???... Thats not what document X says. It says it should be bong, see right here on page 42...&quot;<br /><br />This is helpful for preventing the very human thing of batting things from one team to another as an immediate reaction to someone on another team saying what you have done is wrong. It&#039;s a programmatic way of solving a human problem. <br />We are using code that refers to documents to prevent people arguing. :-)<br /><br />Beyond this aspect of $dayjob, the team is continuing to develop it&#039;s use of TDD (Test Driven Development) and Pair Programming with mixed results.<br /><br />]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry130410-162619</guid>
			<author>Lance Wicks</author>
			<pubDate>Wed, 10 Apr 2013 21:26:19 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=13&amp;m=04&amp;entry=entry130410-162619</comments>
		</item>
		<item>
			<title>A small change in situation.</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry130204-170045</link>
			<description><![CDATA[So it is February already, wow what happened to Janaury!<br /><br />Thought I should write something to clear my head. This week I head to Paris with the IJF to work at the Paris Grand Slam judo event. Should be good. I am taking my Raspberry Pi with me and then I&#039;ll be sending it with colleagues until I meet up with it again in Samsun Turkey in March. I hope I have it setup correctly!<br /><br />On the $dayjob side of things, this month marks a small change in my role in the office. Whilst remaining the <a href="http://www.mountaingoatsoftware.com/scrum/scrummaster" target="_blank" >scrummaster</a> for my old team I become a dev team member of a new (related) team. The change is minor but interesting.<br /><br />My old team is a primarily Perl team, doing console server applications. In the new team as well as Perl, there is PHP and Javascript involved in an internal web application. So I&#039;ll be brushing up on my PHP and getting a daily dose of PHP and JQuery. <br /><br />It&#039;s one of those interesting changes in situation that comes along and if you roll with it you learn a lot along the way. I am fortunate that as the existing scrum master for both teams, this is not a case of meeting new people. Sure I have to learn a new codebase and coding style and standard; but I know the team members and all that good stuff.<br /><br />Back on the Judo side, but locally. My club(s) are going strong; the Southampton club just regained the third place position in the Hampshire Team Championships and we are preparing for the Hampshire Individual Championships.<br />I am the competitions organiser so it was great to see a good turn out for the team championships and to be seeing entries for the individual championships coem in steadily already.<br /><br />Anyway... the only real issue is the old work/life balance. <br />I&#039;m doing my usual trick of burning the candle at both ends and in the middle. :-) Stay tuned for updates on things.<br /><br />Lance<br /><br />P.s. hello, if you are reading this please let me know either in a comment or via email. I am always curious if this cathartic exercise of blogging is purely for me, or if there are people out there reading these words. ]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry130204-170045</guid>
			<author>Lance Wicks</author>
			<pubDate>Mon, 04 Feb 2013 23:00:45 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=13&amp;m=02&amp;entry=entry130204-170045</comments>
		</item>
		<item>
			<title>Trying my hand a Node.js and Raspberry Pi</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry121118-064558</link>
			<description><![CDATA[So, the title says it all. I am trying writing some code in Node (server side javascript) for my Raspberry Pi. I have done some testing and I actually have a working prototype. I am planning on taking my Pi with me to China and Japan and test it there. Not sure yet if I will as A) it might get broken and B) customs may freak out.<br /><br />Writing Node has been a bit of a brain twister. All the callbacks, anonymous subroutines. It makes my head spin at times. Fortunately Node has a good body of Google-able information and is pretty good structure wise. That said, being a Perl guy, the temptation to switch to Perl grows as what I am trying to do gets more complex. <br /><br />Which brings me to why I think node is good. Much like Perl, node has a nice repository of shared modules for doing things. The <a href="https://npmjs.org/" target="_blank" >NPM</a> which is like <a href="http://www.cpan.org/" target="_blank" >CPAN</a>. Basically, much like Perl, when you decide you want to do something tricky the first thing you do is go looking for a NPM module that does it already. Which is the way you do things in Perl, search CPAN and find the tool that best fits.<br />So when I wanted to listen for UDP packets, easy just load the dgram npm. Sent a tweet, load the Twit NPM. Need to write to a couchDB database add in nano. Want growl notifications on my Mac... yup load up the Growl NPM. Easy and Simple.<br /><br />Having written and tested on my Mac, I have tested on the Raspberry Pi. The Pi is a brilliant little machine, cheap and easy. But for what I am doing I need very little resource. Just a linux box with connectivity. I have added an extra ethernet port via the USB socket which works. That way I can be listening on one network (a private LAN) and use the second port to tweet and write to the database via the internet connected port.<br /><br />It&#039;s been easy to manage via <a href="https://github.com/lancew/ijf.io" target="_blank" >github</a>, the toughest part has been my lack of a windows physical machine. So I have been running teh socreboard in a VM on my mac and that has been a pain in the butt as just getting pings backwards and forwards has been challenging... still working out why.<br /><br />Anyway, off to China then Japan next week, so lots of time on planes and hotels to work on the project. :-)<br /><br />Lance]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry121118-064558</guid>
			<author>Lance Wicks</author>
			<pubDate>Sun, 18 Nov 2012 12:45:58 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=12&amp;m=11&amp;entry=entry121118-064558</comments>
		</item>
		<item>
			<title>Moving from Unity to Xmonad (via Ratpoison).</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry120917-165800</link>
			<description><![CDATA[In my $dayjob, I spend a vast majority of my time on a Ubuntu Linux machine writing Perl code in VI/VIM. I, unlike I think all my colleagues like the Unity desktop that now comes with Ubuntu Desktop.<br /><br />I really like the fullscreen terminal window, it gives me lots of screen real estate for my SSH session (with GNU Screen). <br /><br />It&#039;s good, but it was not quite 100% what I wanted, mainly as that mouse thing kept getting used. My Judo shoulders don&#039;t like a mouse much, so I try to limit how much I use a mouse. Unity helped especially with GNU Screen, but something was missing.<br /><br />So lots of Googling and understanding what I wanted later, I was running the Ratpoison window manager in a VM to test it out. A little more testing and exploring and now I have Xmonad running and making me (and one of my team mates) happy with our almost entirely keyboard driven desktop.<br /><br />Xmonad ( <a href="http://xmonad.org/" target="_blank" >http://xmonad.org/</a> ), is a tiling windows manager for Linux. That basically means that rather than the &quot;desktop&quot; metaphor with window panes sitting &quot;on top&quot; and overlapping one another; I have windows that tile automatically on a workspace.<br /><br />When you first login you are greeted by a blank screen, workspace 1.<br />I press ALT-SHIFT-RETURN and a terminal opens up fullscreen. And I mean FULLSCREEN. I have the menu bar turned off, no status bar, nothing but a terminal session and a single pixel red border.<br /><br />For me, I then SSH into my main dev server and type &quot;screen -dR&quot; which connects me back up to my GNU screen sessions. In screen I get multiple sessions that persist even if I get disconnected from the server (handy when working from home or elsewhere). I tend to work in VIM and use Screen to have &quot;tabs&quot; for editing multiple files.<br /><br />Screen makes this easy CTRL-A then c, creates a new &quot;tab&quot; where I can vi a new file. CTRL-A CTRL-A switches back to the original tab. I can have loads of &quot;tabs&quot; and get to them with CTRL and the number of the &quot;tab&quot;. My normal modus operandi is to have tab 0 for running unit tests and doing git checkins. Tab 1 for my unit test script and Tab 2 for the code I am working on.<br /><br />With Xmonad in the mix, I have the nice new ability to open up a second (or move) terminal session locally with ALT-SHIFT-RETURN. This (by default) splits the screen (workspace) in two down the centre vertical line of the screen. If I repeat the process I get a large tile across the top and below it two smaller sessions below it tiled evenly.<br /><br />I can move tiles with ALT-J/K or change the tiling pattern with ALT-SPACE.  It;s very cool and once you get used to the key sequences, it&#039;s super fast and means you don&#039;t need to take your hands over to the rodent.<br /><br />I&#039;ll write more on Xmonad in a later post I think as it is &quot;the business&quot;.<br />I&#039;ve not even started to play with the many many customisations for Xmonad, I have the two most basic ones that bizarrely perhaps are not installed by default on Ubuntu. Those being dmenu and gmrun. They, along with Xmonad itself is a simple apt-get away; give it ago.]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry120917-165800</guid>
			<author>Lance Wicks</author>
			<pubDate>Mon, 17 Sep 2012 21:58:00 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=12&amp;m=09&amp;entry=entry120917-165800</comments>
		</item>
		<item>
			<title>Perl, TDD, CI, Scrum and the universe.</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry120704-132620</link>
			<description><![CDATA[So, those who read this blog will have picked up that it has been gathering dust as other projects have soaked up my time and energy. Which is not a good thing as I firmly believe that blogging is a important reflective practice that makes me better at the other things I do.<br /><br />Anywho...<br /><br />So the &quot;stuff&quot; I mentioned above is mainly two things, a great gig writing perl code and secondly working for the European Judo Union and International Judo Federation on their IT teams. The EJU and IJF stuff is amazing and awesome and great, but I&#039;ll save that for my blog over at <a href="http://www.judocoach.com" target="_blank" >http://www.judocoach.com</a><br /><br />The perl stuff has been awesome too.<br />Perl was the first language that &quot;stuck&quot; for me, the first one where I really truely got beyond Hello world and occasional hacking. In Perl I discovered creating stuff. Later PHP took centre stage, but Perl held a special place in my heart.<br /><br />Recently (ok since about October 2011), I had a chance to write lots of perl code in a corporate environment and damn has it been great.<br /><br />Perl as a language for some reason reads nicely for me. It has a rhythm that makes sense to me. Beyond that it has flexibility and power. It has CPAN and it has a strong community. So returning to Perl has been really enjoyable and writing code everyday is great, you learn something new all the time and that tangible improvement is addictive.<br /><br />I&#039;m also lucky as I work on a small agile team using the scrum methodology. I am enjoying scrum alot as it really encourages you to work hard and fast, but in short bursts (sprints, tasks and pomodoros). It is a flexible framework that encourages the team to improve it&#039;s own working habits and processes, so during and after each sprint there is lively debate over what we do well, what we do poorly, what we can change, what we should change etc etc. Scrum teams are self-organising, so everyone is encouraged to take responsibility for the team and contribute. It&#039;s really enjoyable.<br /><br />I operate partially as a member of the dev team and partially as the scrum-master for two scrom teams. I am enjoying the technical coding side and the more human oriented helping the teams side.<br /><br />One of the things that we have done (self-organised) is moved to a Continuous Integration way of working using unit and functional tests powered by Jenkins-CI tool. Being a Perl shop we use Test::More for the unit testing and the TAP plugin and Jenkins to pull our code from Git and test it when changes get merged into the main code base.<br /><br />The flow-on change from this is our gradual movement towards purely test driven development. I have experimented and tried to work that way in the past and even blogged on this site about it in the past. Working that way again has been great and encouraging others to work that way is great too. <br />What I find is that at first there is a struggle to make the change, but once you strike gold once or twice and write a chuck of code in the TDD style; you get hooked and realise how much time and pain it saves you. That time saving is real and untill you get it right a couple of times I think people struggle to believe that all the test first effort will actually work for them.<br /><br />So I am really busy, travelling a lot and working hard writing code plus delivering live video streams for Judo. Add to this my coaching at two Judo clubs and running local kids Judo events and I have been stretched pretty darn thin.<br /><br />But I am getting the balance right more often now and with the lul in the Judo calendar due to London2012, I hope to recover a bit before launching solidly into the last part of the year!<br /><br />Stay tuned as I hope to blog more frequently as I get the balancing/juggling right.]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry120704-132620</guid>
			<author>Lance Wicks</author>
			<pubDate>Wed, 04 Jul 2012 18:26:20 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=12&amp;m=07&amp;entry=entry120704-132620</comments>
		</item>
		<item>
			<title>Feeding my sons obsession.</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry120411-144028</link>
			<description><![CDATA[My son is very keen, as many boys his age are, on video games.<br /><br />Xbox, Wii, Playstation, Nintendo, flash games, Scratch, Bin Weevels; it goes on and on.<br />It&#039;s what he loves and especially things like <a href="http://scratch.mit.edu" target="_blank" >scratch.mit.edu</a> are where I try and push him with the hope that it will encourage him to learn more about the world of technology and how games and computers generally work.<br /><br />Recently, I discovered &quot;<a href="http://gamestarmechanic.com/" target="_blank" >Gamestar Mechanic</a>&quot; and interesting site that lets him play a young game player come game game designer who must go through a variety of quests Pokemon style.<br />Whats nice about the site is that it teaches game design not just game playing. The NPCs in the quests and the levels in the quests teach him about how games work and he gets to design his own games too.<br /><br />Embedded below is one of his first attempts, a two level affair. Which I must confess I can&#039;t beat, give it a go! :-)<br /><br />
<div id="gsm_49195"><script type="text/javascript">var _gsm = _gsm || []; _gsm.push(['_node_id', 'gsm_49195']); _gsm.push(['_game_id', '49195']); _gsm.push(['_dynamic_url', 'gamestarmechanic.com/xml/get/']); _gsm.push(['_base_url', 'gamestarmechanic.com']); _gsm.push(['_info_url', 'images.gamestarmechanic.com/embed_info_game_835141.txt?AWSAccessKeyId=AKIAI7PSLPMJVIRA2JTQ&Expires=1649533697&Signature=mLgBj8CdJCdkFAd5%2BVXSPJ7g3%2FA%3D']);(function(){var embedUrl_http = 'http://gamestarmechanic.com/embed/embed_game_fast.js'; var embedUrl_https = 'https://gamestarmechanic.com/embed/embed_game_fast.js'; var embedUrl = ('https:' == document.location.protocol ? embedUrl_https : embedUrl_http); var gsm = document.createElement('script'); gsm.type = 'text/javascript'; gsm.src = embedUrl; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gsm, s);})(); </script></div>
]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry120411-144028</guid>
			<author>Lance Wicks</author>
			<pubDate>Wed, 11 Apr 2012 19:40:28 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=12&amp;m=04&amp;entry=entry120411-144028</comments>
		</item>
		<item>
			<title>Perl baby!</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry111207-152144</link>
			<description><![CDATA[So in my $dayjob, I have for the last couple of months been working almost exclusively in Perl development.<br /><br />I have mainly been doing PHP web stuff for the last couple of years, so it&#039;s been interesting looking at Perl again. Coming back to Perl has reminded me how nice a language it is to work in and how many powerful tools it has.<br /><br />What is interesting coming back to it is noticing how much talk there is about how Perl has lost ground to PHP, Python, Ruby etc. There is the Modern Perl movement and a push currently to up the social media war. For example the &quot;Ironman&quot; challenge trying to get modern articles on Perl online.<br /><br />What has not changed is Perl 6 is still vapourware prety much.<br /><br />Anyway...<br /><br />So Perl Best Practices is great, especially when coupled with PerlCritic.<br />My tendency is to work like this:<br /><br />1. Run PerlTidy on whatever code I am working on. <br />I have some local standards setup to match the style of the team I work with.<br /><br />2. Hack away<br />Preferably I &quot;try&quot; to start by writing a t test file or a script that automates testing the script I am working on when the code is not a module. So TDD with unit tests where possible and TDD with regression testing when a script. <br />I&#039;d love some guidance in this area if anyone wants to comment.<br /><br />3. Run the code through PerlTidy again<br /><br />4. Run the code through PerlCritic.<br />I have this setup at level 3 or 4 currently. Depending on how clever I am feeling or how messy the code is, I tend to run PerlCritic over and over at different levels and try and fix up as many things as I can.<br /><br />5. Commit the code and get a colleague to review the code.<br /><br />6. Fix the changes recommended and send it back fro review again until it passes.<br /><br />7. Merge it into the main codebase.<br /><br /><br />It&#039;s been great to get back into Perl and I shall post more about it over the coming days, weeks, months. :-)<br /><br />P.s. If you are interested in Learning Perl, you should check out <a href="http://affiliates.udemy.com/l/165/18491" target="_blank" >Gabor Szabo&#039;s Beginner Perl Maven course on Udemy.</a><br />]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry111207-152144</guid>
			<author>Lance Wicks</author>
			<pubDate>Wed, 07 Dec 2011 21:21:44 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=11&amp;m=12&amp;entry=entry111207-152144</comments>
		</item>
		<item>
			<title>Digital Natives, Social Media, Social Hardware.</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry111103-155247</link>
			<description><![CDATA[On the 27th of October I was lucky enough to have the opportunity to deliver a talk at Anglia Ruskin University on coaching digital natives, social media and social hardware.<br /><br />The talk is the v2.0 of the original DIgital Natives talk I gave at the University of Bath in 2008.<br /><br />In the talk I tried to cover in a  fairly short time what a digital native is, what social media is and why either of them matter. I also added a section on Social Hardware or the &quot;Internet of Things&quot; and how it relates to coaching.<br /><br />Anyway... I was able to take a video of the talk and here it is:<br /><br />
<iframe src="http://www.archive.org/embed/DigitalNativesAndSocialMediaTalk"  frameborder="0" ></iframe>
<br /><br /><br /><br />Lance<br />If you can&#039;t see the video, try it on Archive.org:<br /><a href="http://www.archive.org/details/DigitalNativesAndSocialMediaTalk" target="_blank" >http://www.archive.org/details/DigitalN ... lMediaTalk</a>]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry111103-155247</guid>
			<author>Lance Wicks</author>
			<pubDate>Thu, 03 Nov 2011 20:52:47 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=11&amp;m=11&amp;entry=entry111103-155247</comments>
		</item>
		<item>
			<title>Reflections on becoming a Marathoner.</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry110926-164907</link>
			<description><![CDATA[On Sunday September 25th 2011, I became a marathoner. I completed the New Forest Marathon in the abysmal time of five hours and forty minutes. It was one of the most painful experiences in my life and I have informed my wife that she has permission to slap me if I ever suggest I run another!<br /><br />The idea for running a Marathon has been bubbling under the surface for quite a few years. Mainly thanks to the <a href="http://steverunner.com/" target="_blank" >Pheidipidations podcast from Steve Runner</a>. I&#039;ve previously run a ten mile race and a half marathon (January this year). <br /><br />As with my half marathon, I used a training program from <a href="http://runkeeper.com/user/LanceW/" target="_blank" >Runkeeper.com</a>.<br />Sadly, unlike the half marathon, this time I slacked off the last two months before the marathon! And that is what did me in!<br /><br />I had been training like a trooper, keeping to the program, fitting in the scheduled runs. But unfortunately for me, all that great base work was wasted. The way my run went proved the old adage that &quot;Piss poor preparation, leads to piss poor performance&quot;.<br /><br />When I look at the mile times I did, I also suspect I went too fast too soon. I didn&#039;t feel like I was running hard, but all of my first 5 miles were run under 9:30 pace. In fact only two of my first 10 miles were over ten minutes per mile.<br /><br />After about 15 miles it all went horribly wrong. From about 16 miles my leagues were cramping and the going was bad, really bad. I tried to walk some of it off, but I was walking REALLY slow. The alternative was trying to run through the cramps, but that hurt and tended to generate more cramps.<br /><br />I was hurting and came very VERY close to quitting a bunch of times. It was on reflection, interesting how my mind played tricks on me. At about 19 miles for example; I decided a marathon was only 23 miles long. So I only had 4 miles to go. A couple of miles later, my mind realized that a marathon is 26.2 miles. Weird. Two miles of confusion.<br /><br />I don&#039;t know where it happened, but around the 23 miles mark, the sweeper vehicle caught me up. The sweeper, is a van that comes around and picks up stragglers or hands out disclaimers saying you are outside the end of the race and you are on your own.<br /><br />Being caught by the sweeper van, spurred me on and I managed to catch up with the van and overtake it and get &quot;back in the race&quot;. Shortly afterwards I was overtaken again; then overtook it again with maybe two miles to go. And I stayed ahead till the race finished!<br /><br />Coming down the final length, I was greeted by my wife and my twin 8 year olds. And they ran with me the last 200 yards or so and the ordeal was over!<br /><br /><br />I am very happy to have finished the race, it hurt like hell. But I am pleased I finished. One of the little conversations I had with myself, was saying that I had to finish, else I would feel like I had to run another one so I had actually completed one… and there was no way I wanted to go through that again.<br /><br />The interesting think about running the 26.2 miles that makes a marathon is that you body is not designed to do it. You can&#039;t run that distance without training, nutrition, hydration and lots of perspiration.<br /><br />It is obvious to me that the last two months of training is key to a marathon. I had hoped that the base training I had done would carry me through; but it was no where needed. I needed a lot more miles under my belt and more long runs.<br /><br />I had good hydration and nutrition, plenty of sweets and carb gel packs. And I drank at every drink station (approx every 4 miles). Which was something i worked on and planned for. <br /><br />The legs were what gave out. And today I know they gave out bad. I have a sore lower back and also pain around my lower ribs. I am presuming the lower back is form the strain and the ribs from the grunting, groaning, wheezing and swearing and of course gasping for breath as I tried to run.<br /><br />I should have seen it coming, the last few runs I did managed to fit in that were of reasonable length (8-10 miles) I felt some discomfort/pain in my upper thighs/hips. This was what I felt at about 10-11 miles into the marathon, before it expanded and blew up into full blown cramps shortly after.<br /><br />It was rather an emotional experience, I was a broken man by the end. I gave it my all, more than I knew I had in me. I managed to finish in a poor time, but I finished just inside the official race period (out running that evil sweeper van).<br /><br />I don&#039;t desire to run another marathon, I am happy to have completed a huge challenge. Even if I didn&#039;t get the performance/time I had hoped for.<br /><br />An ordeal, but the marathon is supposed to be an ordeal, a trial. I made it the full distance and that is enough for me, I feel like I discovered and exceeded a physical/emotional/mental limit within myself. And for that experience the 5 hours and 40 minutes of pain was worth it perhaps.<br />]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry110926-164907</guid>
			<author>Lance Wicks</author>
			<pubDate>Mon, 26 Sep 2011 21:49:07 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=11&amp;m=09&amp;entry=entry110926-164907</comments>
		</item>
		<item>
			<title>A quick update while I hope the rain stops.</title>
			<link>http://www.lancewicks.com/blog/index.php?entry=entry110806-125617</link>
			<description><![CDATA[I am writing this as I wait to go for a 5 mile run, sadly being summer in England; it&#039;s pouring with rain. So, a quick blog update till it drys out a little (hopefully).<br /><br />So, running, yeah doing a lot of that. I am running the New Forest Marathon in Spetember and am on week 9 of my training programme for it. Running 4 times a week, last month I ran 123 miles! My training runs include upwards of 15 miles. I have found running in summer has it&#039;s own set of problems (compared to last years winter training programme).<br /><br />I have also been very busy Judo-wise. Coaching two clubs as well as my recent involvement with the European Judo Union and International Judo Federation computer teams. This has been a great new thing in my life, I LOVE IT! I get to go to some of the top Judo competitions and do my IT thing with other people who love Judo and IT. This month for example, I get to go to the Cadet and Senior world championships. How cool is that!<br />Earlier I went to the Moscow Grand Slam, which was amazing both on the side of Judo and of course going to Russia. I had forgotten till I got there that I really was fascinated with Russia in my mid-late teens. I was lucky enough to get a quick tour of Moscow before departiung and got to walk Red Square... WOW!<br /><br />IT-wise, blogs and podcast are neglected as a result of the two items above I guess and also because of my latest project &quot;<a href="http://carmindr.com" target="_blank" >CarMindr</a>&quot;, which is my response to that &quot;has my MOT expired??&quot; panic. I&#039;ve built and just launched a simple email and text message reminder service. It is different from other services out there as it is simpler and does not make a &quot;land grab&quot; for peoples personal information. My feeling was/is that the service should give value for any personal information it collects; not just get that info as a matter of course and then try and spam people.<br /><br />I launched on Monday and so far the traffic is growing steadily and reminders in the system are growing steadily. Please do check out the site and let me know what you think.<br /><br />Another project that I have been involved in is the <a href="http://cardiff2012judo.org/" target="_blank" >2012 Commonwealth Judo Championships</a>. I am the IT director for the project, working with my <a href="http://www.judospace.com/" target="_blank" >JudoSpace</a> colleague Dr. Mike Callan to put on the most innovative and exciting Judo championships you could imagine! It&#039;s going to be amazing! It is being held at the Wales Millenium Centre, which most people recognise as that place on Torchwood. It&#039;s an amazing venue and the format includes shows for teh finals blocks that include not just Judo but singers, dancers, bands and other performers! (All to be confirmed of course).<br /><br />Well, the rain has dropped down to slightly wet, so I had better run.]]></description>
			<category></category>
			<guid isPermaLink="true">http://www.lancewicks.com/blog/index.php?entry=entry110806-125617</guid>
			<author>Lance Wicks</author>
			<pubDate>Sat, 06 Aug 2011 17:56:17 GMT</pubDate>
			<comments>http://www.lancewicks.com/blog/comments.php?y=11&amp;m=08&amp;entry=entry110806-125617</comments>
		</item>
	</channel>
</rss>
