Friday, 30 December 2011
Dec 30th 2011
There will be one blog from now on so i merged the content of cycleaustralia.blogspot.com adventurtures-of-a-slite-300.blogspot.com to emeraldjava.blogspot.com, it was quite easy once i found the blogspot import export tool. Added the next 7 bhaa event and story details to glfusion. Having some trouble trying to create a function on the mysql instance on the mac. And the Rover decided it didn't want to start this evening, so the plan evening run in dublin had to be cancelled.
Monthly Km's
Details of the monthly km's ran in 2011. The plan is to update the 2012 details here. September sticks out like a sore thumb with the madness of wisdom tooth removal.
Thursday, 29 December 2011
Saturday, 24 December 2011
Marathon Time Progression
Stockholm 2002 1/7/2002 3:30:00
Zurich 2003 1/5/2003 3:01:09
Berlin 2004 1/8/2004 3:00:00
Rotterdam 2005 1/4/0205 2:44:44
Zurich 2006 1/5/2006 3:02:20
Dublin 2006 31/10/2006 2:56:38
Cork 2007 1/6/2007 3:00:00
Dublin 2008 31/10/2008 3:52:53
Dublin 2009 31/10/2009 2:57:05
Dublin 2011 31/10/2011 2:43:02
Friday, 23 December 2011
Racetec Event Setup
Racetec Event Setup Tutorial
A guide to setting up and configuring an event and races in Racetec.
Monday, 19 December 2011
Sunday, 18 December 2011
RaceTec Notes
A Race can have multiple events, each event has race numbers, splits, categories
Splits/Laps
Waves - gun start, seeding and batches.
Teams
Gun Time - time of finish line read
Net Time - finish - start time. In event setup set finish time = net time option.
Splits/Laps
Waves - gun start, seeding and batches.
Teams
Gun Time - time of finish line read
Net Time - finish - start time. In event setup set finish time = net time option.
RFID Ultra Notes
Modes
- Start - reads chip once per second. 1 second gating.
- Finish - reads 30 times per second with signal strength identify best time
Gating
- Per Reader - two times from reader
- Per Box - Single first read time only
- First Time Seen
LCD Display
Time Last Chip Code
Signal Strength Voltage Gating Mode & Interval
Antenna Mode & Session Chip Reads
Gating Mode & Interval : R (per Reader) or B (per Box) 1 (seconds gating)
Antenna : 1 (on) 0 (off) for each antenna
Reader Mode & Session : S (Start) or F (Finish). Session ID
Thursday, 15 December 2011
Git on a USB Stick
Having loads of hassel the with git, ssh and https access to github.com, so i decided to setup git on a usb stick. I can work away during the day and synch to github at night.
I followed this tutorial
http://blog.costan.us/2009/02/synchronizing-git-repositories-without.html
http://swoes.blogspot.com/2009/02/setting-up-git-offline-work-via-usb.html
And these are the basic commands i ran.
mkdir /media/Transcend/git/com_bhaa
git clone --bare . /media/Transcend/git/com_bhaa/.git
git remote add usb file:///media/Transcend/git/com_bhaa/.git
assure@snapdragonubuntu:~/bhaa/zend/trunk/joomla/components/com_bhaa$ git remote -v
usb file:///media/Transcend/git/com_bhaa/.git (fetch)
usb file:///media/Transcend/git/com_bhaa/.git (push)
assure@snapdragonubuntu:~/git/com_bhaa$ git clone file:///media/Transcend/git/com_bhaa/.git .
Cloning into ....
remote: Counting objects: 6, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 6 (delta 0), reused 0 (delta 0)
Receiving objects: 100% (6/6), done.
assure@snapdragonubuntu:~/git/com_bhaa$ ls
index.html router.php
assure@snapdragonubuntu:~/git/com_bhaa$ git remote add usb file:///media/Transcend/git/com_bhaa/.gitassure@snapdragonubuntu:~/git/com_bhaa$ git pull usb master
From file:///media/Transcend/git/com_bhaa/
* branch master -> FETCH_HEAD
Already up-to-date.
assure@snapdragonubuntu:~/git/com_bhaa$ git remote -v
origin file:///media/Transcend/git/com_bhaa/.git (fetch)
origin file:///media/Transcend/git/com_bhaa/.git (push)
usb file:///media/Transcend/git/com_bhaa/.git (fetch)
usb file:///media/Transcend/git/com_bhaa/.git (push)
git clone --bare . /media/Transcend/git/joomala_bhaa.git
git remote add usb file:///media/Transcend/git/joomala_bhaa.git
assure@snapdragonubuntu:~/poconnell/code/joomla_bhaa$ git remote -v
usb file:///media/Transcend/git/joomala_bhaa.git (fetch)
usb file:///media/Transcend/git/joomala_bhaa.git (push)
assure@snapdragonubuntu:~/poconnell/code/joomla_bhaa$ git push usb
Counting objects: 12, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (11/11), 2.67 KiB, done.
Total 11 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (11/11), done.
To file:///media/Transcend/git/joomala_bhaa.git
9067f85..dbc96e6 master -> master