<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
  <title>Radixhound - Home</title>
  <id>tag:blog.radixhound.com,2011:mephisto/</id>
  <generator uri="http://mephistoblog.com" version="0.7.3">Mephisto Noh-Varr</generator>
  <link href="http://blog.radixhound.com/feed/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://blog.radixhound.com/" rel="alternate" type="text/html"/>
  <updated>2011-10-06T20:28:15Z</updated>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2011-10-06:5037</id>
    <published>2011-10-06T20:25:00Z</published>
    <updated>2011-10-06T20:28:15Z</updated>
    <category term="Technical"/>
    <category term="locomotivecms"/>
    <category term="rails"/>
    <category term="Rails"/>
    <category term="ruby"/>
    <category term="ruby on rails"/>
    <link href="http://blog.radixhound.com/2011/10/6/setting-up-locomotivecms-in-multi-site-mode" rel="alternate" type="text/html"/>
    <title>Setting up LocomotiveCMS in multi-site mode</title>
<content type="html">
            &lt;p&gt;&lt;a href=&quot;http://locomotivecms.com&quot;&gt;&lt;img src=&quot;http://locomotivehosting.s3.amazonaws.com/sites/4c34fc86cc85f01e47000005/theme/images/title.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;h2&gt;Why Multi-site?&lt;/h2&gt;


	&lt;p&gt;LocomotiveCMS has one killer feature for me which makes it beat out RefineryCMS in my books. That feature is the ability to do multi-site. I host websites for many people and have felt the pain of configuring sites by hand for each one of them, plus the extra sever load of running a separate process / instance for each website.&lt;/p&gt;


	&lt;p&gt;A good multi-site &lt;span class=&quot;caps&quot;&gt;CMS&lt;/span&gt; will take care of that pain pretty handily &#8211; it means that I can run one instance of the &lt;span class=&quot;caps&quot;&gt;CMS&lt;/span&gt; with mulitiple processes. So, my server costs go down and I can ensure that all the sites respond quickly &#8211; I don&#8217;t have to worry about their instances spinning down and having to spin up again if they are not visited regularly.&lt;/p&gt;


	&lt;h2&gt;Setting it up&lt;/h2&gt;


	&lt;p&gt;LocomotiveCMS doesn&#8217;t have great documentation, but their code seems to be really solid. It required me to do a bit of reading between the lines to sort it out. Actually, it was more &lt;em&gt;reading the lines of code&lt;/em&gt; but that&#8217;s a separate point.&lt;/p&gt;


	&lt;h3&gt;Step 1 &#8211; config/initializers&lt;/h3&gt;


	&lt;p&gt;Once you have locomotive running locally (see the installation guide) then you need to modify the initializer to tell it to operate in multi-site mode. The comments will tell you what to do, but this is what I did.&lt;/p&gt;


&lt;pre&gt;
  config.multi_sites do |multi_sites|
    multi_sites.domain = 'local.i'
    multi_sites.reserved_subdomains = %w(www email blog webmail mail support help site sites)
  end
&lt;/pre&gt;

	&lt;p&gt;This is for a local environment. The reason that I used &lt;code&gt;local.i&lt;/code&gt; was because I want to be able to test this on my development machine. I also removed admin from the list of reserved subdomains.&lt;/p&gt;


	&lt;h3&gt;Step 2 &#8211; set up your /etc/hosts (Mac)&lt;/h3&gt;


	&lt;p&gt;Now that the initializer is set, you need to configure your hosts file so that you can access your local server via subdomains using the built-in webserver (e.g. WEBrick)&lt;/p&gt;


	&lt;p&gt;This is what I added to my hosts file.&lt;/p&gt;


&lt;pre&gt;
 127.0.0.1 local.i
 127.0.0.1 admin.local.i
 127.0.0.1 sub1.local.i
&lt;/pre&gt;

	&lt;h3&gt;Step 3 &#8211; fire up the server and configure&lt;/h3&gt;


	&lt;p&gt;This next step took me a bit to sort out because I had already set up my locomotive config weeks ago. I was trying to switch things into multi-site mode but it wasn&#8217;t working. The easiest way for me to do it was to wipe out the db that I had created and visit the site again. If there is no db, it will prompt you to set up a new one from scratch. So, if you already have a locomotive db and you don&#8217;t care about the contents, wipe it out and start fresh. &lt;strong&gt;&lt;em&gt;if you do care about the contents: back it up, rename it, whatever. I&#8217;m not responsible for you wiping out your valued data&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;


Here are the two steps it takes you through:
	&lt;ol&gt;
	&lt;li&gt;create an admin user&lt;/li&gt;
		&lt;li&gt;set up a default site&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;For the default site, I used &lt;code&gt;name = Awesome Hosting&lt;/code&gt; and &lt;code&gt;subdomain = admin&lt;/code&gt;. The subdomain needs to match what you put into your &lt;code&gt;/etc/hosts&lt;/code&gt; file. Make sure you upload the default template&lt;/p&gt;


	&lt;h3&gt;Step 4 &#8211; enjoy!&lt;/h3&gt;


	&lt;p&gt;Now if you visit &lt;code&gt;admin.local.i:3000&lt;/code&gt; you will see your admin site. To administer it, go to &lt;code&gt;admin.local.i:3000/admin&lt;/code&gt; and login with your credentials. From there you can visit &lt;code&gt;settings -&amp;gt; my account&lt;/code&gt; and add new sites with the little (+ new site) button.&lt;/p&gt;


	&lt;h3&gt;Remarks..&lt;/h3&gt;


	&lt;p&gt;There are some oddities here that I&#8217;m not 100% comfortable with.&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;Why can&#8217;t I create the default site with no subdomain? e.g. just &lt;code&gt;local.i&lt;/code&gt; for the admin site rather than &lt;code&gt;admin.local.i&lt;/code&gt; ?&lt;/li&gt;
		&lt;li&gt;Why is adding sites under the obscure location of &lt;code&gt;settings -&amp;gt; my account&lt;/code&gt;? It should be somewhere like &lt;code&gt;settings -&amp;gt; sites&lt;/code&gt;&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;One thing I just noticed as I finish this write-up is that you can click on the little link it the top menu &lt;code&gt;switch to another site&lt;/code&gt; and you can switch between sites and add new sites from there. That&#8217;s cool.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2010-03-16:2833</id>
    <published>2010-03-16T22:11:00Z</published>
    <updated>2010-03-19T22:49:59Z</updated>
    <category term="autism"/>
    <category term="autism support"/>
    <category term="blair armstrong"/>
    <category term="websites for family"/>
    <link href="http://blog.radixhound.com/2010/3/16/back-me-up-with-this-autism-site" rel="alternate" type="text/html"/>
    <title>Back me up with this autism site</title>
<content type="html">
            &lt;p&gt;Help me out here. I just published the site for my brother-in-law. I want to prove to him that it&#8217;s going to work for 
him. So if you have a minute, drop him a line, welcome him to the community that is the internet and let him know what you think of the site!&lt;/p&gt;


	&lt;p&gt;&lt;a href=&quot;http://curiousmindsbc.com&quot;&gt;&lt;img src=&quot;/assets/2010/3/16/curiousminds.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;h3&gt;What&#8217;s at stake?&lt;/h3&gt;


	&lt;p&gt;More than my pride that&#8217;s at stake here. Yes, we all know that when working with family it tends to be a bit more challenging to get them to take you as a business professional. They are family after all, why should they? Really, we all need a place where we can go and people just shake their heads at us and think we&#8217;re full of it. It&#8217;s great for keeping real. What&#8217;s really at stake here is that I want him to see the results and &lt;strong&gt;believe in the power of his website.&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;I always try to convince my clients to start taking some time to do regular blogging and to get involved with Twitter and Facebook. In this case, I really believe in what Blair is trying to do and want to get him going at it.&lt;/p&gt;


	&lt;h3&gt;If you checked out this posting &#8211; take one more second..&lt;/h3&gt;


	&lt;p&gt;Please just take a second to visit Blair&#8217;s shiny new website, &lt;a href=&quot;http://curiousmindsbc.com&quot;&gt;Curious Minds &#8211; supports for autism&lt;/a&gt; and drop him a line. I&#8217;d just love to see his inbox filled up with messages saying &#8211; &#8220;hey, this internet stuff does work.&#8221; Of course it doesn&#8217;t hurt to say &#8220;your website is totally awesome &#8211; who built it for you?&#8221;. (wink, wink)&lt;/p&gt;


	&lt;p&gt;Now we just need to get him blogging. That brain of his is stuffed full of great info..&lt;/p&gt;


	&lt;p&gt;PS: I told him I would tell people about his site and he said in a rather pessimistic way &#8220;Yeah, we&#8217;ll see how many &lt;em&gt;clients&lt;/em&gt; I get out of it.&#8221; Yeah Blair &lt;strong&gt;we&#8217;ll see!&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;PPS&lt;/span&gt;: I had to hold off telling people about this for a couple days while. Well, now I can tweet and facebook it to my heart&#8217;s content!&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2010-03-08:2832</id>
    <published>2010-03-08T18:43:00Z</published>
    <updated>2010-03-08T19:01:59Z</updated>
    <category term="Chris Dwan"/>
    <category term="marketing"/>
    <category term="Oscars"/>
    <category term="Sandra Bullock"/>
    <category term="website"/>
    <category term="Why should I care"/>
    <link href="http://blog.radixhound.com/2010/3/8/the-oscars-were-rather-human" rel="alternate" type="text/html"/>
    <title>The Oscars were rather... human!</title>
<content type="html">
            &lt;p&gt;I watched the Oscars last night. I normally don&#8217;t and normally really don&#8217;t care about them, but somehow ended up watching them and was really surprised by the whole affair. It didn&#8217;t seem like a whole lot of glitz with no substance this time. It actually seemed like real people getting honored for real achievement.&lt;/p&gt;


	&lt;p&gt;I really am wondering how this came about. Who is the mastermind behind turning the Oscars into an event that is somewhat worth caring about? Who was smart enough to turn it into a bit of an intimate affair about real people? Where did all the ridiculous dresses with plunging necklines and rising hemlines go? Did someone send out a memo to everyone and tell them to come looking like real people to this event?&lt;/p&gt;


	&lt;p&gt;Here are some brief points:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Steve and Alec were awesome and so funny in such a simple, understated way.&lt;/li&gt;
		&lt;li&gt;The show took the time at each step to answer the question &#8220;why should I care?&#8221; 
	&lt;ul&gt;
	&lt;li&gt;why should I care about the award for short films? &#8211; answered!&lt;/li&gt;
		&lt;li&gt;why should I care about the award for sound engineering? &#8211; answered!&lt;/li&gt;
		&lt;li&gt;why should I care which star wins an award? &#8211; answered!&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
		&lt;li&gt;Sandra Bullock was so gracious! Actually, I used to be really &#8220;meh&#8221; about her, but since &#8220;The Blind Side&#8221; and associated behind the scenes stuff on that movie, I see that she&#8217;s a real person with real gratitude. It seems so rare and so marvelous in Hollywood.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;h3&gt;What can you learn from this?&lt;/h3&gt;


	&lt;p&gt;You need to answer the question &#8211; &#8220;why should I care&#8221; for the people around you. Then you will be interesting. You will be able to lead. You will be able to close deals. You will be able to make new contacts.&lt;/p&gt;


	&lt;p&gt;Now for business people, go look at your website and marketing materials. How well have you answered the question &#8220;why should I care?&#8221; Make sure it&#8217;s a &lt;em&gt;human&lt;/em&gt; answer because people really only truly care for and about people in the end.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2010-02-12:2830</id>
    <published>2010-02-12T18:48:00Z</published>
    <updated>2010-02-12T18:52:38Z</updated>
    <link href="http://blog.radixhound.com/2010/2/12/switching-back-to-adium" rel="alternate" type="text/html"/>
    <title>Switching Back to Adium</title>
<content type="html">
            &lt;p&gt;&lt;img class=&quot;img_r&quot; src=&quot;http://www.adium.im/images/logo.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;For some reason I stopped using &lt;a href=&quot;http://adium.im&quot;&gt;Adium&lt;/a&gt; months ago and have just been using iChat for chatting. Perhaps it was because I was doing a lot of video conferencing and didn&#8217;t like having to disable my &lt;span class=&quot;caps&quot;&gt;AIM&lt;/span&gt; account to be able to do that with iChat.&lt;/p&gt;


	&lt;p&gt;Anyway, I&#8217;ve decided to go back to Adium because I chat is constantly logging me out and I have to keep manually re-connecting. I&#8217;m expecting Adium to do a better job at keeping me online when I&#8217;m at my computer and logging me back in when I come back after being away for a while.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2010-02-08:2829</id>
    <published>2010-02-08T18:36:00Z</published>
    <updated>2010-02-08T18:37:15Z</updated>
    <category term="My Thoughts"/>
    <category term="clarity"/>
    <category term="emergencies"/>
    <category term="project management"/>
    <link href="http://blog.radixhound.com/2010/2/8/there-are-no-emergencies" rel="alternate" type="text/html"/>
    <title>There Are No Emergencies</title>
<content type="html">
            &lt;p&gt;&lt;img class=&quot;img_r&quot; src=&quot;http://blog.radixhound.com/assets/2010/2/8/853502_emergency_stop_small.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;For some reason I started thinking this morning about something I learned years ago when I was 19. Basically that even in the emergency room of a hospital, there are no emergencies.&lt;/p&gt;


	&lt;p&gt;I was on a three week wilderness hiking trip with Outward Bound. Our leader was a medical doctor and accomplished mountaineer. In the evenings we would gather and he&#8217;d talk with us and share wisdom about being in the outdoors and life in general. It may have been having to do with dealing with an injury that he mentioned this.&lt;/p&gt;


	&lt;p&gt;He told us that even in the emergency room there are no true emergencies. I can&#8217;t remember the specifics, but took away from it that there are no occasions in life where freaking out is an option. Someone may come into an emergency room with a split open gut or severed back or whatever, but there is always time to assess it and determine rationally how to deal with it.&lt;/p&gt;


	&lt;p&gt;So next time you are tempted to freak out about something and start acting without thinking in order to deal with some perceived emergency, stop for a second, remember that it probably isn&#8217;t truly an emergency, and proceed with a level head. Chances are that if you do proceed without clarity, you will regret it later.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2010-01-29:2828</id>
    <published>2010-01-29T06:36:00Z</published>
    <updated>2010-01-29T06:40:52Z</updated>
    <link href="http://blog.radixhound.com/2010/1/29/the-ipad" rel="alternate" type="text/html"/>
    <title>The iPad</title>
<content type="html">
            &lt;p&gt;So, there it is. The iPad.&lt;/p&gt;


	&lt;p&gt;It&#8217;s not everything I had hoped it would be. I can see why Apple wouldn&#8217;t allow it to become an input device for a Mac as I imagined. Primarily because it needs to be clearly &#8220;it&#8217;s own person&#8221; as it were. It also needs to clearly be part of it&#8217;s own ecosystem. It&#8217;s an ecosystem that involves lots of buying stuff, like music, books and movies and apps&#8230;&lt;/p&gt;


	&lt;p&gt;Cha-ching!&lt;/p&gt;


	&lt;p&gt;I have to say that while I was watching the keynote, all the possibilities for the device swirled around in my head and I literally thought to myself &#8220;this changes everything.&#8221; It does. Some people don&#8217;t see it yet, but it totally does.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2009-11-20:2827</id>
    <published>2009-11-20T20:07:00Z</published>
    <updated>2009-11-20T20:20:38Z</updated>
    <category term="apple tablet"/>
    <category term="input device"/>
    <category term="magic mouse"/>
    <category term="opinion"/>
    <category term="user interface"/>
    <link href="http://blog.radixhound.com/2009/11/20/the-apple-tablet" rel="alternate" type="text/html"/>
    <title>The Apple Tablet</title>
<summary type="html">&lt;p&gt;&lt;img class=&quot;img_r&quot; src=&quot;/assets/2009/11/20/tablet.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;Along with every other Apple / Mac fan and many tech enthusiasts, I have been eagerly awaiting the announcement of the new Apple Tablet computer. Here&#8217;s my thought on the matter and what I would consider awesomeness from the tablet.&lt;/p&gt;


	&lt;h3&gt;Input Device&lt;/h3&gt;


	&lt;p&gt;There&#8217;s probably only one really killer thing that my thoughts focus on when it comes to the tablet. It&#8217;s the idea of making it an input device as well as a computer.&lt;/p&gt;


	&lt;p&gt;I would be chomping at the bit to go out and get this tablet if it worked like this:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;You set it down on your desk, in front of your shiny iMac.&lt;/li&gt;
		&lt;li&gt;You hook up the mini display port from your Mac to Tablet (or maybe not &#8211; knowing Apple..)&lt;/li&gt;
		&lt;li&gt;It connects automatically via bluetooth (wi-fi?)&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;You now have a giant touch and pen based input device for your Mac&lt;/strong&gt;&lt;/li&gt;
		&lt;li&gt;While you&#8217;re working with it, it&#8217;s syncing your data to the device&lt;/li&gt;
		&lt;li&gt;When it&#8217;s time to go, you grab the tablet, head out and can carry on working remotely&lt;/li&gt;
		&lt;li&gt;All your files go with you via the cloud (mobile me)&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;There is so much talk these days about revolutionizing the way you interface with your computer, I&#8217;d be surprised (and sad) if it didn&#8217;t play out this way, at least eventually.&lt;/p&gt;


	&lt;p&gt;More after the jump.&lt;/p&gt;</summary><content type="html">
            &lt;p&gt;&lt;img class=&quot;img_r&quot; src=&quot;/assets/2009/11/20/tablet.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;Along with every other Apple / Mac fan and many tech enthusiasts, I have been eagerly awaiting the announcement of the new Apple Tablet computer. Here&#8217;s my thought on the matter and what I would consider awesomeness from the tablet.&lt;/p&gt;


	&lt;h3&gt;Input Device&lt;/h3&gt;


	&lt;p&gt;There&#8217;s probably only one really killer thing that my thoughts focus on when it comes to the tablet. It&#8217;s the idea of making it an input device as well as a computer.&lt;/p&gt;


	&lt;p&gt;I would be chomping at the bit to go out and get this tablet if it worked like this:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;You set it down on your desk, in front of your shiny iMac.&lt;/li&gt;
		&lt;li&gt;You hook up the mini display port from your Mac to Tablet (or maybe not &#8211; knowing Apple..)&lt;/li&gt;
		&lt;li&gt;It connects automatically via bluetooth (wi-fi?)&lt;/li&gt;
		&lt;li&gt;&lt;strong&gt;You now have a giant touch and pen based input device for your Mac&lt;/strong&gt;&lt;/li&gt;
		&lt;li&gt;While you&#8217;re working with it, it&#8217;s syncing your data to the device&lt;/li&gt;
		&lt;li&gt;When it&#8217;s time to go, you grab the tablet, head out and can carry on working remotely&lt;/li&gt;
		&lt;li&gt;All your files go with you via the cloud (mobile me)&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;There is so much talk these days about revolutionizing the way you interface with your computer, I&#8217;d be surprised (and sad) if it didn&#8217;t play out this way, at least eventually.&lt;/p&gt;


	&lt;p&gt;More after the jump.&lt;/p&gt;
&lt;h3&gt;What it&#8217;s Not Going to Be&lt;/h3&gt;


	&lt;p&gt;The tablet is going to fill a gap in what Apple is offering now and it will work synergistically with the other products Apple is offering. Guaranteed. SO, the apple tablet is not going to be:&lt;/p&gt;


	&lt;p&gt;1. A fully-functional computer (there&#8217;s a Mac for that)
2. An iPhone
3. An iPod replacement&lt;/p&gt;


	&lt;h3&gt;What it May Also Be&lt;/h3&gt;


	&lt;p&gt;1. A bigger gaming device
2. A mobile book reader
3. A &#8216;netbook&#8217; replacement (not exactly a netbook, but will fill the same hole)&lt;/p&gt;


	&lt;h3&gt;Why the Delay?&lt;/h3&gt;


	&lt;p&gt;Why isn&#8217;t Apple releasing this now? Forget &lt;span class=&quot;caps&quot;&gt;OLED&lt;/span&gt;! They just came out with a new Magic Mouse, and they don&#8217;t want to interfere with the sales of that interface device! (ok maybe this is a stretch)&lt;/p&gt;


	&lt;p&gt;There was a short mention of this idea on &lt;a href=&quot;http://bit.ly/5ya1mW&quot;&gt;Macrumors&lt;/a&gt; (would be Macrumours in Canada by the way, I always get that messed up) a while back. Looks like the source was &lt;a href=&quot;http://bit.ly/6EANgL&quot;&gt;Gizmodo&lt;/a&gt; I&#8217;m sure others are talking about this possibility. Why the heck not?&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2009-10-05:2824</id>
    <published>2009-10-05T03:35:00Z</published>
    <updated>2009-10-05T05:33:14Z</updated>
    <category term="barcamp vancouver"/>
    <category term="bcv09"/>
    <category term="depression"/>
    <category term="imagination"/>
    <category term="meaning of lyrics"/>
    <category term="the real world"/>
    <category term="u2"/>
    <link href="http://blog.radixhound.com/2009/10/5/it-s-a-beautiful-day-in-the-real-world" rel="alternate" type="text/html"/>
    <title>It's a Beautiful Day in the Real World</title>
<summary type="html">&lt;p&gt;Thank you Barcamp Vancouver!! I&#8217;m reeling from Barcamp Vancouver yesterday and my puny little mind is trying to absorb all of the inspiration, experiences and information it was plunged into.&lt;/p&gt;


	&lt;p&gt;For those looking for the notes from my session, they&#8217;ll be coming soon. Meanwhile the following is a direct result of my experience at Barcamp yesterday.&lt;/p&gt;


	&lt;h3&gt;I&#8217;m Grappling with the Idea of &#8220;The Real World&#8221;&lt;/h3&gt;


	&lt;p&gt;One of the biggest things that I was reflecting on yesterday as part of Barcamp is the concept of &#8220;The Real World&#8221;. I grappled with it all day yesterday and held a session trying to gather some more insight from the brilliant minds there.&lt;/p&gt;


	&lt;p&gt;What do I mean by &#8220;The Real World&#8221;? The concept basically encompasses real people, real bodies, real consequences as opposed to digital people (personas), digital consequences and the whole world of imagination. Why do I care about this? I lived much of my life where my imagination was more real to me than the real world, and there was a lot of pain and misery associated with that for me.&lt;/p&gt;


	&lt;h3&gt;Inspiration Cometh on the Strings of U2&lt;/h3&gt;


	&lt;p&gt;Well today is family day for me and I was going about my business, playing with my kids, making brunch and all that great family stuff when I noticed that my life had a soundtrack. Sweet! It was U2s&#8217; &#8220;Beautiful Day&#8221;. I started singing along with it, then I started reflecting on the meaning of the song&#8230;&lt;/p&gt;


	&lt;blockquote&gt;
		&lt;p&gt;You&#8217;re in the mud&lt;br /&gt;In the maze of her imagination&lt;/p&gt;
	&lt;/blockquote&gt;


	&lt;p&gt;A meaning for the lyrics came upon me like a slow motion locomotive. I won&#8217;t say &lt;em&gt;the&lt;/em&gt; meaning, but in my mind I was seeing it laden with profound meaning. The meaning was &lt;strong&gt;all about what I was grappling with yesterday!!&lt;/strong&gt; It&#8217;s about the real world and the world of imagination!&lt;/p&gt;


	&lt;h3&gt;The Meaning of the Lyrics (as I saw it)&lt;/h3&gt;


	&lt;p&gt;(after the jump) You can read my take on the lyrics. I could go on and on, but I&#8217;ve tried to keep it brief and to the point. Please check it out and add your comments, I really want to hear them.&lt;/p&gt;</summary><content type="html">
            &lt;p&gt;Thank you Barcamp Vancouver!! I&#8217;m reeling from Barcamp Vancouver yesterday and my puny little mind is trying to absorb all of the inspiration, experiences and information it was plunged into.&lt;/p&gt;


	&lt;p&gt;For those looking for the notes from my session, they&#8217;ll be coming soon. Meanwhile the following is a direct result of my experience at Barcamp yesterday.&lt;/p&gt;


	&lt;h3&gt;I&#8217;m Grappling with the Idea of &#8220;The Real World&#8221;&lt;/h3&gt;


	&lt;p&gt;One of the biggest things that I was reflecting on yesterday as part of Barcamp is the concept of &#8220;The Real World&#8221;. I grappled with it all day yesterday and held a session trying to gather some more insight from the brilliant minds there.&lt;/p&gt;


	&lt;p&gt;What do I mean by &#8220;The Real World&#8221;? The concept basically encompasses real people, real bodies, real consequences as opposed to digital people (personas), digital consequences and the whole world of imagination. Why do I care about this? I lived much of my life where my imagination was more real to me than the real world, and there was a lot of pain and misery associated with that for me.&lt;/p&gt;


	&lt;h3&gt;Inspiration Cometh on the Strings of U2&lt;/h3&gt;


	&lt;p&gt;Well today is family day for me and I was going about my business, playing with my kids, making brunch and all that great family stuff when I noticed that my life had a soundtrack. Sweet! It was U2s&#8217; &#8220;Beautiful Day&#8221;. I started singing along with it, then I started reflecting on the meaning of the song&#8230;&lt;/p&gt;


	&lt;blockquote&gt;
		&lt;p&gt;You&#8217;re in the mud&lt;br /&gt;In the maze of her imagination&lt;/p&gt;
	&lt;/blockquote&gt;


	&lt;p&gt;A meaning for the lyrics came upon me like a slow motion locomotive. I won&#8217;t say &lt;em&gt;the&lt;/em&gt; meaning, but in my mind I was seeing it laden with profound meaning. The meaning was &lt;strong&gt;all about what I was grappling with yesterday!!&lt;/strong&gt; It&#8217;s about the real world and the world of imagination!&lt;/p&gt;


	&lt;h3&gt;The Meaning of the Lyrics (as I saw it)&lt;/h3&gt;


	&lt;p&gt;(after the jump) You can read my take on the lyrics. I could go on and on, but I&#8217;ve tried to keep it brief and to the point. Please check it out and add your comments, I really want to hear them.&lt;/p&gt;
&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;The heart is a bloom&lt;br /&gt;Shoots up through the stony ground&lt;/td&gt;
			&lt;td&gt; The heart is the seat of our desires (motivation, cares, worries) And it&#8217;s power is illustrated&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;There&#8217;s no room&lt;br /&gt;No space to rent in this town&lt;/td&gt;
			&lt;td&gt; There&#8217;s no room in your heart for extra cares and worries. Nothing that takes up space in your heart is meaningless or transient. Everything in there has ownership. For you Christians:&#8221;There is need of only &lt;strong&gt;one thing&lt;/strong&gt;. Mary has chosen the better part, [...]&#8221;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;You&#8217;re out of luck&lt;br /&gt;And the reason: that you had to care&lt;/td&gt;
			&lt;td&gt; You have a heart, the heart is a powerful mover and it &lt;strong&gt;must&lt;/strong&gt; have an object of desire. You can&#8217;t not care about anything, you will care about something, and if it&#8217;s not deep and satisfying (real?) then you will end up with many, many cares &lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;The traffic is stuck&lt;br /&gt;And you&#8217;re not moving anywhere&lt;/td&gt;
			&lt;td&gt; Gridlock!! Too many little cares.. &lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;You thought you&#8217;d found a friend&lt;br /&gt;To take you out of this place&lt;br /&gt;Someone you can lend a hand&lt;br /&gt;In return for grace&lt;/td&gt;
			&lt;td&gt; (Several possible meanings for me, none strikes me as best to share) the key here perhaps is just a real person&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;It&#8217;s a beautiful day&lt;br /&gt;Sky falls, you feel like&lt;br /&gt;It&#8217;s a beautiful day&lt;br /&gt;Don&#8217;t let it get away&lt;/td&gt;
			&lt;td&gt; Biggest thing here for me is that second line. &#8220;you feel like the sky is falling&#8221; In the real world, it&#8217;s a beautiful day, but trapped in your imagination and the cares of your heart, you feel like the sky is falling. (depression anyone?)&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;You&#8217;re on the road&lt;br /&gt;But you&#8217;ve got no destination&lt;br /&gt;You&#8217;re in the mud&lt;br /&gt;In the maze of her imagination&lt;/td&gt;
			&lt;td&gt; You&#8217;re stuck. Trapped in the world of your imagination&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;You love this town&lt;/td&gt;
			&lt;td&gt;(the imaginary world)&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Even if that doesn&#8217;t ring true&lt;/td&gt;
			&lt;td&gt; (s.e.) &lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;You&#8217;ve been all over&lt;/td&gt;
			&lt;td&gt; Travelled all over your imaginary world&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;And it&#8217;s been all over you&lt;/td&gt;
			&lt;td&gt; It has led you where you haven&#8217;t wanted to go or planned to go, scary places, wrong places. You are not always the master of it, it is often the master of you&#8230;&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;It&#8217;s a beautiful day&lt;br /&gt;Don&#8217;t let it get away&lt;br /&gt;It&#8217;s a beautiful day&lt;/td&gt;
			&lt;td&gt; (s.e.) &lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;Touch me&lt;br /&gt;Take me to that other place&lt;/td&gt;
			&lt;td&gt; Holy crap-oly folks! To the attendees of my session: does this amaze and creep you out as much as it does me!? &lt;sup&gt;**&lt;/sup&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;Teach me&lt;br /&gt;I know I&#8217;m not a hopeless case&lt;/td&gt;
			&lt;td&gt; To me this is a powerful cry for help laden with many layers of meaning&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;See the world in green and blue&lt;br /&gt;See China right in front of you&lt;br /&gt;See the canyons broken by cloud&lt;br /&gt;See the tuna fleets clearing the sea out&lt;br /&gt;See the Bedouin fires at night&lt;br /&gt;See the oil fields at first light&lt;/td&gt;
			&lt;td&gt; This is part of the antidote. Take the time and see the need of the world around you! The world needs you! Don&#8217;t be fooled by the veneer that everything is OK. Everything is not ok. There is urgent need for good people to act.&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;And see the bird with a leaf in her mouth&lt;br /&gt;After the flood all the colors came out&lt;/td&gt;
			&lt;td&gt;Clearly a reference to Noah&#8217;s ark. In the Bible, the rainbow symbolizes God&#8217;s commitment to never destroy the world again because of the depravity of the people in it. There are a couple possible meanings here. There is hope and we shouldn&#8217;t count on an act of God to take care of the problems&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;It was a beautiful day&lt;br /&gt;Don&#8217;t let it get away&lt;br /&gt;Beautiful day&lt;/td&gt;
			&lt;td&gt; I&#8217;m guessing he&#8217;s talking now about the day when the rainbow came out &#8211; don&#8217;t let the meaning of that day get away&#8230; &lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;Touch me&lt;br /&gt;Take me to that other place&lt;br /&gt;Reach me&lt;br /&gt;I know I&#8217;m not a hopeless case&lt;/td&gt;
			&lt;td&gt; (s.e.)&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;table&gt;
		&lt;tr&gt;
			&lt;td&gt;What you don&#8217;t have you don&#8217;t need it now&lt;br /&gt;What you don&#8217;t know you can feel it somehow&lt;br /&gt;What you don&#8217;t have you don&#8217;t need it now&lt;br /&gt;Don&#8217;t need it now&lt;br /&gt;Was a beautiful day&lt;/td&gt;
			&lt;td&gt; Desiring things that you don&#8217;t have is a trap. You waste your life and the powers locked up inside your heart. Love and be satisfied with what you have (possessions, but also gifts and talents, relationships, appearance)  As long as your heart is locked on what you don&#8217;t have, you will miss the beauty of the real world around you.&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;p&gt;For those that may be wondering about my &#8220;holy crap-oly&#8221; remark, at my session, I had everyone turn and shake each others hands to demonstrate the power of human physical touch&#8230;&lt;/p&gt;


	&lt;p&gt;Please comment, I&#8217;d love to know others thoughts and if it draws out anything in you.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2009-09-21:2822</id>
    <published>2009-09-21T22:03:00Z</published>
    <updated>2009-09-21T22:08:19Z</updated>
    <category term="My Thoughts"/>
    <category term="blogging"/>
    <category term="get blogging again"/>
    <category term="it's hard to blog"/>
    <category term="motivation"/>
    <category term="motivation to blog"/>
    <link href="http://blog.radixhound.com/2009/9/21/time-to-stop-being-a-bad-blogger" rel="alternate" type="text/html"/>
    <title>Time to stop being a 'bad blogger'</title>
<summary type="html">&lt;p&gt;&lt;img class=&quot;img_r&quot; src=&quot;http://blog.radixhound.com/assets/2009/9/21/bad_dog.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;Are you a blogger? Or do you fall into the category that many bloggers would put themselves into? I call this being a &#8216;bad bloggizen&#8217;. Here&#8217;s how it goes: You set up a blog and you post some articles. Then you get to thinking that no one is listening and no one really cares what you think, and this is really a whole lot of work anyway. You blog languishes and before you know it your latest article is from months ago, or worse, years ago!&lt;/p&gt;


	&lt;p&gt;I&#8217;ve been thinking about this and it&#8217;s appropriate that I should start blogging again with a few thoughts on the matter and one key tip for turning it all around. Try it for yourself and see if it works!&lt;/p&gt;</summary><content type="html">
            &lt;p&gt;&lt;img class=&quot;img_r&quot; src=&quot;http://blog.radixhound.com/assets/2009/9/21/bad_dog.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;Are you a blogger? Or do you fall into the category that many bloggers would put themselves into? I call this being a &#8216;bad bloggizen&#8217;. Here&#8217;s how it goes: You set up a blog and you post some articles. Then you get to thinking that no one is listening and no one really cares what you think, and this is really a whole lot of work anyway. You blog languishes and before you know it your latest article is from months ago, or worse, years ago!&lt;/p&gt;


	&lt;p&gt;I&#8217;ve been thinking about this and it&#8217;s appropriate that I should start blogging again with a few thoughts on the matter and one key tip for turning it all around. Try it for yourself and see if it works!&lt;/p&gt;
&lt;h3&gt;A thought begets and action (or inaction)&lt;/h3&gt;


	&lt;p&gt;I started thinking about this a couple of weeks back. I was asked by &lt;a href=&quot;http://protocol7.net/&quot;&gt;someone&lt;/a&gt; via email about my online world and I realized that it was pretty embarrassing. I have a blog but I don&#8217;t update it! It doesn&#8217;t reflect well on me as a person living in the digital age! I immediately started coming up with excuses and justifications for the embarrassing state of my blog.&lt;/p&gt;


	&lt;p&gt;Wait a second!&lt;/p&gt;


	&lt;p&gt;I stopped and listened to myself for a second. (I find this to be very enlightening when I remember to do it!)  &lt;a href=&quot;http://forum.quoteland.com/eve/forums/a/tpc/f/99191541/m/4581974895&quot;&gt;Sow a thought, reap and action&lt;/a&gt; or so it has been said. So I spend a few seconds listing to what I was saying and thinking:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;I&#8217;ve chosen not to update my blog because I&#8217;m a good person and want to spend more time in the real world with my wife, kids and friends&lt;/li&gt;
		&lt;li&gt;It&#8217;s so embarrassing, it&#8217;d be almost better to not have a blog than to have a blog that&#8217;s never updated&lt;/li&gt;
		&lt;li&gt;I&#8217;m not practicing what I preach! I tell clients how important it is to update their sites and I don&#8217;t do it myself!&lt;/li&gt;
		&lt;li&gt;No one visits my blog anyway&lt;/li&gt;
		&lt;li&gt;I can&#8217;t think of things to post&lt;/li&gt;
		&lt;li&gt;It&#8217;s haaard &amp;lt;waaah&gt; ;-)&lt;/li&gt;
	&lt;/ul&gt;


	&lt;h3&gt;It&#8217;s embarrassing!&lt;/h3&gt;


	&lt;p&gt;When it comes down to the brass tacks, it&#8217;s just simply embarrassing to not keep the blog up to date. Sure the vast majority of bloggers start out strong and then trickle down to nothing. All this means is that I can choose to feel nice and cozy with mediocrity. I don&#8217;t want to be happily mediocre. I want to be unhappily mediocre with a strong drive to be great!&lt;/p&gt;


	&lt;p&gt;Of course, there was the nice justification I&#8217;m a great guy because I&#8217;ve chosen to spend time in the real world with real people so I&#8217;ve chosen not to keep my blog up-to date. There&#8217;s a nugget of truth in there, but as an overseas friend would say.. that&#8217;s bollocks! You can do both. It really doesn&#8217;t take that much time to keep the blog updated at least once a month or every two weeks.&lt;/p&gt;


	&lt;h3&gt;The solution&#8212;promote your blog!&lt;/h3&gt;


	&lt;p&gt;I had a final interesting thought about this whole thing. It was a result of the idea that no one visits my blog.&lt;/p&gt;


	&lt;p&gt;First of all, that&#8217;s simply not true. I had 127 visitors in the last month. Hardly anything to write home about, but I do have visitors. I should be presenting my best self to even those few!&lt;/p&gt;


	&lt;p&gt;Secondly, it&#8217;s all a vicious cycle. I&#8217;m not telling people about my blog because I&#8217;m embarrassed by it, and I&#8217;m not improving it because I feel like no one&#8217;s reading. How do I get out of the cycle? I can attack it on two fronts, but the I think the most effective is the opposite way most people would tackle the problem.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Start telling people about your blog&lt;/strong&gt; Tell people about your blog, attach it to your email signature. Choose to be proud of it or at least act like you&#8217;re proud of it. What&#8217;s going to happen if you do? I promise you&#8217;ll feel more motivated to keep it up to date and give it the &lt;span class=&quot;caps&quot;&gt;TLC&lt;/span&gt; it deserves. If you do it the other way around and wait to give it the &lt;span class=&quot;caps&quot;&gt;TLC&lt;/span&gt; before promoting it, I suspect that you&#8217;ll never pull together the motivation for either.&lt;/p&gt;


	&lt;h3&gt;What I chose to do&lt;/h3&gt;


	&lt;p&gt;I have chosen to tell people about my blog. So what if they notice that it basically has warts and looks like it&#8217;s been living in the pig sty for a few years. So what if the technology running it is a couple of years ancient? I&#8217;m going to tell the world about my blog and then discover the motivation to become a &#8216;good bloggizen&#8217;.&lt;/p&gt;


	&lt;p&gt;Happy blogging!&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2009-06-09:2122</id>
    <published>2009-06-09T17:53:00Z</published>
    <updated>2009-06-09T18:08:45Z</updated>
    <link href="http://blog.radixhound.com/2009/6/9/macupdate-bundle" rel="alternate" type="text/html"/>
    <title>MacUpdate Bundle</title>
<content type="html">
            &lt;p&gt;One of the best things about using a Mac is the quality of applications that are being written for it by the development community. Nowhere is it more apparent than with the iPhone, with over 50,000 applications that have been written in the last year.&lt;/p&gt;


	&lt;h3&gt;Mac Software Bundles&lt;/h3&gt;


	&lt;p&gt;Over the last year, I&#8217;ve taken advantage of several bundle sales for Mac software. With these bundles, you can buy a whole bunch of applications for one low price, which is typically the price you would pay for one of these apps, and usually much less than the price of some of the apps that are included.&lt;/p&gt;


	&lt;h3&gt;The Benefits&lt;/h3&gt;


	&lt;p&gt;After taking advantage of three bundle sales over the last year, I now own dozens of handy applications for  my Mac. The reality of the situation is that I only use a few of them, but the ones that I do use, I find indispensable. Some of them I use occasionally, but it is so great to know that if there is anything I need to do on my Mac, I can do it. Here&#8217;s some of the kinds of apps I&#8217;ve received as part of bundles:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Sound editing (Amadeus Pro)&lt;/li&gt;
		&lt;li&gt;Photo editing (Pixelmator, Graphic Converter, Acorn)&lt;/li&gt;
		&lt;li&gt;&lt;span class=&quot;caps&quot;&gt;CSS&lt;/span&gt; Editing (CSSEdit, Esspresso)&lt;/li&gt;
		&lt;li&gt;&lt;span class=&quot;caps&quot;&gt;FTP&lt;/span&gt; (Fetch)&lt;/li&gt;
		&lt;li&gt;Repair and diagnosis utilities &lt;/li&gt;
		&lt;li&gt;Handy tools&lt;/li&gt;
		&lt;li&gt;... and much more&lt;/li&gt;
	&lt;/ul&gt;


	&lt;h3&gt;The Current MacUpdate Bundle&lt;/h3&gt;


	&lt;p&gt;I&#8217;m about to purchase this one because it&#8217;s undeniably valuable. Parallels Desktop alone is worth $80. I have version 3 and use it all the time. The whole suite of tools for saving &lt;span class=&quot;caps&quot;&gt;DVD&lt;/span&gt; movies to your Mac is another big win.&lt;/p&gt;


	&lt;p&gt;I also signed up as a promoter of the bundle so I can get some benefit from telling all my friends and family to buy it! Click the image below to check out the bundle and purchase it!&lt;/p&gt;


	&lt;p&gt;There&#8217;s only 3 days left in the huge MU Bundle, so grab it before June 12th!&lt;/p&gt;




          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2008-12-14:2109</id>
    <published>2008-12-14T05:40:00Z</published>
    <updated>2008-12-14T05:51:18Z</updated>
    <link href="http://blog.radixhound.com/2008/12/14/time-lapse-painting" rel="alternate" type="text/html"/>
    <title>Time Lapse Painting</title>
<content type="html">
            &lt;p&gt;My daughters, who are five years and three years old,  did some finger painting today. I used my little Canon &lt;span class=&quot;caps&quot;&gt;SD1000&lt;/span&gt; on time lapse mode to film them painting. Unfortunately I didn&#8217;t have my large camera card on hand so the video stopped before the painting was finished.&lt;/p&gt;


	&lt;p&gt;I find it amazing what my digital camera was able to do. It&#8217;s also a fantastic way to capture this moment! I could have taken a picture of the final painting, but now I have so much more captured. You can see the creative process and that&#8217;s so awesome!&lt;/p&gt;


	&lt;p&gt;Here it is, enjoy. I hope it inspires you to capture some moments like this with your kids.&lt;/p&gt;



&amp;lt;noscript&gt;
&amp;lt;object height=&quot;496&quot; width=&quot;500&quot;&gt;
    &amp;lt;param /&gt;
    &amp;lt;param /&gt;
    &amp;lt;param /&gt;
    &amp;lt;param /&gt;
    &amp;lt;param /&gt;
    &amp;lt;param /&gt;
    &amp;lt;embed href=&quot;/assets/elizabeth_time_lapse.mov&quot; src=&quot;/assets/elizabeth_time_lapse-poster.jpg&quot; height=&quot;496&quot; width=&quot;500&quot;&gt;
    &amp;lt;/embed&gt;
&amp;lt;/object&gt;
&amp;lt;/noscript&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2008-11-22:2098</id>
    <published>2008-11-22T01:19:00Z</published>
    <updated>2008-12-14T05:40:02Z</updated>
    <category term="BC"/>
    <category term="Canada"/>
    <category term="disabled driving"/>
    <category term="driver rehab"/>
    <category term="driving with a disability"/>
    <category term="Larry Bowen"/>
    <link href="http://blog.radixhound.com/2008/11/22/new-disabled-driving-website" rel="alternate" type="text/html"/>
    <title>New Disabled Driving Website</title>
<content type="html">
            &lt;p&gt;&lt;a href=&quot;http://larrybowen.ca&quot;&gt;&lt;img class=&quot;img_r&quot; src=&quot;/assets/2008/11/22/disabled_driving.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;I have just helped a client put the finishing touches on his new website. It&#8217;s exciting because there doesn&#8217;t really appear to be anything like it out there, and the topic is so important. Larry is a driver rehab therapist and has been doing that here in British Columbia for over 20 years.&lt;/p&gt;


	&lt;p&gt;When I talked to Larry about his website and what he wanted to do with it, it became clear instantly that this man really knows what he&#8217;s talking about. He&#8217;s also passionate about what he does, it just flows out of him as part of who he is. Basically what he does is he works with disabled people to assess their ability to drive, teach them to drive if possible and to use special modifications to their vehicle to help them drive.&lt;/p&gt;


	&lt;p&gt;I helped Larry with the concept for his website, encouraging him to put his valuable expertise onto the internet to help people as much as possible rather than just a basic business website that lists his services. We built the site on Radiant &lt;span class=&quot;caps&quot;&gt;CMS&lt;/span&gt; so Larry can update it regularly.&lt;/p&gt;


I added the following plugins to the Radiant install:
	&lt;ul&gt;
	&lt;li&gt;mailer
	&lt;ul&gt;
	&lt;li&gt;I modified this slightly with a table tag so that the layout would go into a table automatically and I would have to do way less typing&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
		&lt;li&gt;paperclipped 
	&lt;ul&gt;
	&lt;li&gt;this is a great image extension, it can be slightly confusing for end users though&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
		&lt;li&gt;reorder&lt;/li&gt;
		&lt;li&gt;settings
	&lt;ul&gt;
	&lt;li&gt;I&#8217;m so glad I found this..&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
		&lt;li&gt;textile_editor&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;I have to say that the state of the nation for RadiantCMS is looking pretty darned good. There is a lot of activity and great new extensions arriving all the time.&lt;/p&gt;


	&lt;p&gt;If you know someone who has become disabled recently and wants to know about getting back behind the wheel, let them know about &lt;a href=&quot;http://larrybowen.ca&quot;&gt;Larry Bowen&#8217;s website.&lt;/a&gt; It has some useful information in there now, and Larry will be adding to it. The goal is to make it the &lt;strong&gt;best resource for disabled driving&lt;/strong&gt;!!&lt;/p&gt;


	&lt;p&gt;If you have suggestions on what kind of things Larry can add to his site to make it more relevant and useful, please feel free to mention the ideas in the comments.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2008-07-18:2062</id>
    <published>2008-07-18T17:35:00Z</published>
    <updated>2008-07-18T21:03:47Z</updated>
    <link href="http://blog.radixhound.com/2008/7/18/intel-futureshop-buying-guide-sucks-big" rel="alternate" type="text/html"/>
    <title>Intel / Futureshop buying guide sucks big</title>
<summary type="html">&lt;h3&gt;The bad user experience that turned a curious click turns into a maniacal rant&#8230;&lt;/h3&gt;


	&lt;p&gt;I just have to post something about this insanely stupid campaign created by Futureshop and Intel. I help lots of people decide on computer purchases because I am the neighborhood &#8216;computer guy&#8217;. I think I have an idea what people want to know and what just confuses them. This so-called &#8216;computer buying guide&#8217; on the Futureshop website is useless, confusing and, worst of all, is just a thinly veiled Intel advertisement. If I wasn&#8217;t an Apple user, I&#8217;d be inclined to swear off Intel just because of the smarminess and stupidity of this ad. Unfortunately, Apple is married to Intel now I can only  complain about the spouse&#8217;s annoying behaviour.&lt;/p&gt;


	&lt;h3&gt;It all begins with an innocent click&#8230;&lt;/h3&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_2_1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;I&#8217;m not a tech-fearing computer purchaser who needs help deciding on what to buy. If I were, I can see how it would be appealing to click here. Instead I&#8217;m just curious about what results they&#8217;ll give. Here&#8217;s my thought process:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;This seems a great idea. I wonder what kind of results it will give me. Will is suggest specific products like Apple or HP?&lt;/li&gt;
		&lt;li&gt;If they do this right, it would a handy little tool.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Now let&#8217;s walk through the process and see what the results are&#8230;&lt;/p&gt;</summary><content type="html">
            &lt;h3&gt;The bad user experience that turned a curious click turns into a maniacal rant&#8230;&lt;/h3&gt;


	&lt;p&gt;I just have to post something about this insanely stupid campaign created by Futureshop and Intel. I help lots of people decide on computer purchases because I am the neighborhood &#8216;computer guy&#8217;. I think I have an idea what people want to know and what just confuses them. This so-called &#8216;computer buying guide&#8217; on the Futureshop website is useless, confusing and, worst of all, is just a thinly veiled Intel advertisement. If I wasn&#8217;t an Apple user, I&#8217;d be inclined to swear off Intel just because of the smarminess and stupidity of this ad. Unfortunately, Apple is married to Intel now I can only  complain about the spouse&#8217;s annoying behaviour.&lt;/p&gt;


	&lt;h3&gt;It all begins with an innocent click&#8230;&lt;/h3&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_2_1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;I&#8217;m not a tech-fearing computer purchaser who needs help deciding on what to buy. If I were, I can see how it would be appealing to click here. Instead I&#8217;m just curious about what results they&#8217;ll give. Here&#8217;s my thought process:&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;This seems a great idea. I wonder what kind of results it will give me. Will is suggest specific products like Apple or HP?&lt;/li&gt;
		&lt;li&gt;If they do this right, it would a handy little tool.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Now let&#8217;s walk through the process and see what the results are&#8230;&lt;/p&gt;
&lt;h3&gt;The rest of the steps&#8230;&lt;/h3&gt;


	&lt;p&gt;Let&#8217;s just give all the rest of the steps and let them speak for themselves&#8230;&lt;/p&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_5.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_6.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_7.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_8.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_9.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img class=&quot;img_r&quot; src=&quot;/assets/2008/7/18/Picture_10.jpg&quot; alt=&quot;&quot; /&gt;
&lt;strong&gt;The results:&lt;/strong&gt; So here we are at the results page (see below). All I see is an advertisement for Intel processor technology. This text is generic, so it doesn&#8217;t matter what you punch in to the search, you&#8217;ll get something pretty much just like this with maybe the name of the processor changed. There doesn&#8217;t even appear to be a list of recommended products!!!&lt;/p&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_11_2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;h3&gt;To be fair, there is a list of recommended products&lt;/h3&gt;


	&lt;p&gt;At first sight, there doesn&#8217;t appear to be a list of recommendations anywhere. This is just bad user interface design, because it&#8217;s there, it&#8217;s just hiding down the page. First you have to read the ad copy telling you about wonderful Intel processors, then when you get to the bottom of reading that you will see the list&#8230; sort of.&lt;/p&gt;


	&lt;p&gt;Whoever designed this thing makes the disastrously wrong assumption that people are going to read past this text: &lt;em&gt;&#8220;Based on your interest in certain categories, the Intel® Centrino® Duo is the ideal processor choice to meet your needs.&#8221;&lt;/em&gt;  Sorry, this doesn&#8217;t have the scent of useful information, it has the stench of advertising. Most people aren&#8217;t going to get far in reading this. Personally, I just closed the sucker down right away, rather disappointed that I didn&#8217;t get any concrete results.&lt;/p&gt;


	&lt;p&gt;Then I took another look because I wanted to write a blog rant about it, and I discovered the concrete results hiding in there.&lt;/p&gt;


	&lt;p&gt;We can give the designers the benefit of the doubt once more and assume that they are designing this for people who really are hungry for help in picking a computer to buy, so maybe they will read all of this text. At the bottom of the text they will be rewarded with a list of recommendations. I don&#8217;t think the designers could have done a better job at hiding the list in plain sight.&lt;/p&gt;


	&lt;p&gt;&lt;img src=&quot;/assets/2008/7/18/Picture_12.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Where are the photos??&lt;/strong&gt; People expect to see photos of the products in a listing of products. I had to look carefully to recognize this as a list of products. Hidden in plain sight indeed! How are visitors going to recognize it&#8217;s a list of products in the first place, let alone compare and remember without pictures? Sorry, but &#8220;Dell Intel Core 2 Duo &lt;span class=&quot;caps&quot;&gt;T5550 1&lt;/span&gt;.83GHz Laptop&#8221; doesn&#8217;t draw my eye, is not memorable and makes it very hard for me to compare items.&lt;/p&gt;


	&lt;h3&gt;What would I change?&lt;/h3&gt;


	&lt;p&gt;First off, the list of results has to come first and have pictures of the product. Secondly, if you want to talk about the wonders of Intel Centrino technology, put something on the side with a title that says &#8220;Why these recommendations?&#8221; and then give reasons. For example, you need a dual core processor and at least 2GB because you want to do multimedia presentations. Oh, and finally, where are the Apple products in the results list? Get real and at least show people all the options that meet their needs and price range. Are they worried that with Apple products in the ring, it&#8217;s no longer a fair game?&lt;/p&gt;


	&lt;p&gt;In summary, I think this is a great example of how to confuse and annoy people. I, at least, was annoyed enough to blog about it&#8230; Well done!&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2008-06-04:2060</id>
    <published>2008-06-04T23:24:00Z</published>
    <updated>2008-06-04T23:39:08Z</updated>
    <category term="mysql"/>
    <category term="radiant"/>
    <category term="sqlite to mysql"/>
    <category term="sqlite3"/>
    <category term="sqlite3 to mysql"/>
    <link href="http://blog.radixhound.com/2008/6/4/transfering-sqlite3-to-mysql-and-back" rel="alternate" type="text/html"/>
    <title>Transfering SQLite3 to MySQL and back</title>
<content type="html">
            &lt;h2&gt;The Easy Way&lt;/h2&gt;


	&lt;p&gt;I &lt;a href=&quot;/2008/4/28/backing-up-radiant-cms-using-sqlite3&quot;&gt;previously posted&lt;/a&gt; my script for transferring from SQLite3 to MySQL here with involved step by step instructions. I&#8217;m going to mention it again with ultra simplified instructions to make it easier to digest and to save time for people who know what they are doing.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Here they are:&lt;/strong&gt;&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;Set up a development DB using SQLite3 (presumably you already have one from working locally)&lt;/li&gt;
		&lt;li&gt;Set up a production DB using MySQL&lt;/li&gt;
		&lt;li&gt;(optionally) Make sure they work&lt;/li&gt;
		&lt;li&gt;Install the plugin in the &lt;code&gt;vendor/plugins&lt;/code&gt; folder&lt;/li&gt;
		&lt;li&gt;Run the script with &lt;code&gt;rake db:backup:to_db TARGET_DB=production&lt;/code&gt;&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt; If you don&#8217;t have a development DB and set up your local install as production, just change your database.yml file to say that production is development&#8230;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt; I typically bootstrap my production DB before I migrate over. It works and all the bootstrap data gets wiped.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt; Use this carefully and please back up your original DB before you transfer over. If you get the syntax backwards you will wipe your data.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt; Both databases have to be the same structure before doing the transfer. So you have to migrate your extensions and make sure your source DB is using the same version of Radiant as the destination DB.&lt;/p&gt;


	&lt;h2&gt;Link to Script&#8230;&lt;/h2&gt;


	&lt;ul&gt;
	&lt;li&gt;&lt;a href=&quot;http://blog.radixhound.com/assets/2008/4/29/radiant_db_backup.zip&quot;&gt;radiant_db_backup.zip&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;http://blog.radixhound.com/assets/2008/4/29/radiant_db_backup.tar.gz&quot;&gt;radiant_db_backup.tar.gz&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
          </content>  </entry>
  <entry xml:base="http://blog.radixhound.com/">
    <author>
      <name>radixhound</name>
    </author>
    <id>tag:blog.radixhound.com,2008-04-28:1705</id>
    <published>2008-04-28T01:52:00Z</published>
    <updated>2008-10-08T16:03:34Z</updated>
    <category term="Technical"/>
    <category term="backup"/>
    <category term="mysql"/>
    <category term="radiant"/>
    <category term="rails"/>
    <category term="Rails"/>
    <category term="sqlite"/>
    <category term="sqlite3"/>
    <category term="transfer from sqlite3 to mysql"/>
    <link href="http://blog.radixhound.com/2008/4/28/backing-up-radiant-cms-using-sqlite3" rel="alternate" type="text/html"/>
    <title>Backing Up Radiant CMS using Sqlite3</title>
<content type="html">
            &lt;h3&gt;How to Transfer from SQLite to MySQL&lt;/h3&gt;


	&lt;p&gt;I noticed something while working on a couple &lt;a href=&quot;http://www.radiantcms.com&quot;&gt;Radiant&lt;/a&gt; sites. I found that when I was building them locally, I prefer to work with SQLite3 databases. Then when I deploy them they use MySQL.  Since so much of the configuration and site template lives in the database, I wanted an easy way to go from SQLite to MySQL. In the end I built it!&lt;/p&gt;


	&lt;h3&gt;Wouldn&#8217;t it be Nice&#8230; to Backup from MySQL to SQLite? And vice-versa?&lt;/h3&gt;


	&lt;p&gt;At the same time, I always thought it would be nice to be able to create a backup of the live database in SQLite. That way, if a client ever wanted their site &#8216;packaged up and portable&#8217; as it were, it would be easy, just dump the production DB into a SQLite development DB, zip up the radiant folder and you have the whole site ready to run.&lt;/p&gt;


	&lt;h3&gt;My &#8216;Plugin&#8217; &#8211; Installation&lt;/h3&gt;


	&lt;p&gt;I created this as a plugin for Radiant. Just download the package (at the end of this entry), uncompress into your plugins folder and you&#8217;re ready to go.&lt;/p&gt;


	&lt;h3&gt;How to Use it&lt;/h3&gt;


	&lt;p&gt;It&#8217;s fairly simple. Make sure you have SQLite and MySQL set up and running. Then configure your installation to use a SQLite DB for development and a MySQL DB for production.&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
development:
  adapter: sqlite3
  database: db/development.sqlite3
production:
  adapter: mysql
  database: myradiant_production
  username: radixhound
  password: paSSwerd
  host: localhost
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Then make sure your target DB is pre-created. So if you don&#8217;t have a production DB up to this point, you can do this.&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
rake db:migrate
rake db:migrate:extensions
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Then when you want to transfer from development to production, you can do this&#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
rake db:backup:to_db TARGET_DB=production
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;To do the reverse, you will do this&#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
rake production db:backup:to_db
&lt;/code&gt;&lt;/pre&gt;

	&lt;h3&gt;Or Backup to another SQLite DB altogether&#8230;&lt;/h3&gt;


	&lt;p&gt;You can also configure a third, fourth or fifth DB in your database.yml file and use that to back-up to, in case you don&#8217;t want to wipe out your development DB. Just add something like this to your database.yml file&#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
backup:
  adapter: sqlite3
  database: db/development.sqlite3
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Then you can do this..&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
rake production db:backup:to_db TARGET_DB=backup
&lt;/code&gt;&lt;/pre&gt;

	&lt;h3&gt;Download the Goods&lt;/h3&gt;


	&lt;p&gt;&lt;a href=&quot;/assets/2008/4/29/radiant_db_backup.zip&quot;&gt;radiant_db_backup.zip&lt;/a&gt; &lt;br /&gt;
&lt;a href=&quot;/assets/2008/4/29/radiant_db_backup.tar.gz&quot;&gt;radiant_db_backup.tar.gz&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;PS: I also have a version &lt;a href=&quot;http://blog.radixhound.com/assets/2008/4/29/db_backup.zip&quot;&gt;that works for Mephisto sites.&lt;/a&gt; you only get it in zip format &#8216;cause I have somewhere to be right now.&lt;/p&gt;


	&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;PPS&lt;/span&gt;: I figured this out from someone else&#8217;s script that did something similar-ish but not quite this. I don&#8217;t remember who or what though, sorry.&lt;/p&gt;
          </content>  </entry>
</feed>

