<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>I am the owner of Flipwire in Moose Jaw, SK where I design websites and create iPhone applications such as Prairie Locator and Celsius.

I am a full time Information Systems Technician at SaskTel.

I am a Volkswagen enthusiast and I spend many summer hours working with the community at SKDubs.com.</description><title>Mike Gabriel</title><generator>Tumblr (3.0; @mikegabriel)</generator><link>http://blog.mikegabriel.net/</link><item><title>Can you go from coordinates to legal and vice versa with your app?</title><description>&lt;p&gt;Currently Prairie Locator is a one-way conversion.  Reverse conversions may become available in the future but I have no timeframe to provide at this time.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/5755188744</link><guid>http://blog.mikegabriel.net/post/5755188744</guid><pubDate>Sun, 22 May 2011 20:37:13 -0600</pubDate></item><item><title>Apple TV 2 — Fix a Crashing XBMC</title><description>&lt;p&gt;I see this thread a lot on FireCore and various other forums.  Running XBMC under ATV2 works fine and then one day it starts crashing back to Lowtide after a random amount of time.&lt;/p&gt;

&lt;p&gt;What’s actually happening is ATV Updater Service is checking for updates with Apple and once an update becomes available it tries to prompt, of course XBMC isn’t designed to allow Lowtide prompts take the responding view and it crashes.&lt;/p&gt;

&lt;p&gt;The easiest way to solve the issue is to SSH into the Apple TV, install a text editor (I prefer VIM, but Nano works too) and add a block to the hosts file so that when the updater service checks it doesn’t actually reach Apples update servers.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ssh root@apple-tv.local&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;apt-get install vim&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;vim /etc/hosts&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Make your &lt;code&gt;/etc/hosts&lt;/code&gt; file look like the following&lt;/p&gt;

&lt;pre&gt;
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost
fe80::1%lo0     localhost
127.0.0.1       mesu.apple.com
&lt;/pre&gt;

&lt;p&gt;You’ll notice the last line adds &lt;code&gt;127.0.0.1  mesu.apple.com&lt;/code&gt;.  Once you have added that line, save the file and all will now be good in the world of XBMC.&lt;/p&gt;

&lt;p&gt;Keep in mind, if you choose to update your ATV2 in the future, you will need to edit this file and comment or remove that line so it can connect to the update servers.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/4387184206</link><guid>http://blog.mikegabriel.net/post/4387184206</guid><pubDate>Wed, 06 Apr 2011 03:09:00 -0600</pubDate><category>apple tv</category><category>xbmc</category></item><item><title>Celsius — Environment Canada for iPhone</title><description>&lt;p&gt;Recently released is my newest application for iPhone and iPod Touch. Celsius, a simple weather application powered by Environment Canada.  A must have for every Canadian with an iOS Device!  Check it out at &lt;a href="http://www.celsiusapp.ca" target="_blank"&gt;http://www.celsiusapp.ca&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/3973051300</link><guid>http://blog.mikegabriel.net/post/3973051300</guid><pubDate>Sat, 19 Mar 2011 20:28:30 -0600</pubDate><category>celsius</category><category>iphone</category><category>flipwire</category></item><item><title>No Recent Files in OS X</title><description>&lt;p&gt;After spending a few hours exchanging emails with developer &lt;a href="http://twitter.com/vadimshpakovski" target="_blank"&gt;Vadim Shpakovski&lt;/a&gt; while trying to troubleshoot an issue with &lt;a href="http://codeboxapp.com" target="_blank"&gt;CodeBox&lt;/a&gt; we managed to come across a solution that wasn’t initially apparent.&lt;/p&gt;

&lt;p&gt;If you’ve ever been working with an application and noticed the Recent Files history is empty, then you have likely ran into the same issue I did.&lt;/p&gt;

&lt;p&gt;Luckily, the solution is simple.  In your OS X &lt;strong&gt;System Preferences&lt;/strong&gt;, under &lt;strong&gt;Appearance&lt;/strong&gt; ensure &lt;strong&gt;Number of Recent Items&lt;/strong&gt; is not set to &lt;strong&gt;None&lt;/strong&gt;.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/3693948261</link><guid>http://blog.mikegabriel.net/post/3693948261</guid><pubDate>Sun, 06 Mar 2011 21:11:00 -0600</pubDate></item><item><title>Uninstall Xcode on OS X</title><description>&lt;p&gt;If you ever need to completely remove Xcode due to application issues or future upgrades, you can run a single command from Terminal to remove it.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo /Developer/Library/uninstall-devtools --mode=all&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Of course, &lt;code&gt;/Developer&lt;/code&gt; is dependant on where you installed Xcode to.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/3392131275</link><guid>http://blog.mikegabriel.net/post/3392131275</guid><pubDate>Sat, 19 Feb 2011 18:55:00 -0600</pubDate><category>xcode</category><category>osx</category></item><item><title>Quickly Removing .SVN Directories via Terminal</title><description>&lt;p&gt;If you’ve ever faced that truly … testing … task of needing to remove a whole heap of hidden .svn directories from a folder and it’s myriad subfolders because some idiot did an SVN Checkout rather than Export to a development server, you’ll love this Terminal command:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;find . -name .svn -print0 | xargs -0 rm -rf&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;You can run it from inside any folder to remove all .svn folders from it and all it’s child folders. Beautiful.&lt;/p&gt;

&lt;p&gt;– &lt;a href="http://www.beyondstandards.com/archives/removing-svn-directories-in-terminal/" target="_blank"&gt;Beyond Standards&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/3333977652</link><guid>http://blog.mikegabriel.net/post/3333977652</guid><pubDate>Wed, 16 Feb 2011 17:20:00 -0600</pubDate><category>osx</category><category>svn</category></item><item><title>Rdio Blog: Announcing: Rdio for iPhone 1.0 </title><description>&lt;a href="http://blog.rdio.com/post/3329814809"&gt;Rdio Blog: Announcing: Rdio for iPhone 1.0 &lt;/a&gt;: &lt;p&gt;Rdio.com launched version 1.0 of their iPhone app today.  It’s quite the improvement over the previous version which I thought worked fantastic.  Next I am hoping to see a lot more content for Canadian users.  It’s funny that there’s a great majority of Canadian artists that are not available due to licensing restrictions.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/3333588516</link><guid>http://blog.mikegabriel.net/post/3333588516</guid><pubDate>Wed, 16 Feb 2011 16:58:37 -0600</pubDate></item><item><title>Saskatchewan Volkswagen &amp; Audi Club</title><description>&lt;a href="http://skdubs.com/forum/index.php"&gt;Saskatchewan Volkswagen &amp; Audi Club&lt;/a&gt;</description><link>http://blog.mikegabriel.net/post/3297825694</link><guid>http://blog.mikegabriel.net/post/3297825694</guid><pubDate>Mon, 14 Feb 2011 16:19:57 -0600</pubDate></item><item><title>EGO Style for XCode 4</title><description>&lt;a href="http://developers.enormego.com/view/ego_xcode_theme_for_xcode_4_egov2"&gt;EGO Style for XCode 4&lt;/a&gt;</description><link>http://blog.mikegabriel.net/post/3263595087</link><guid>http://blog.mikegabriel.net/post/3263595087</guid><pubDate>Sat, 12 Feb 2011 20:42:38 -0600</pubDate></item><item><title>DroboFS Automounting on OS X</title><description>&lt;p&gt;I recently purchased a DroboFS and one of the only hiccups I have had with it is getting it’s shares automounted &lt;strong&gt;properly &lt;/strong&gt;under OS X 10.6.4.  Surfing the net there is all kinds of lame-ass solutions such as adding the shares to the Login Items profiles, which works if your user gets automatically logged in on system boot, but then you get a Finder window that pops up.  Rather annoying when other solutions are possible.  Normally in past environments I would just add the share to the /etc/fstab file and you’d be cooking with fire, but I wasn’t having any luck with this DroboFS.
&lt;!-- more --&gt;
After some digging around I have manged to get the DroboFS shares mounted when OS X boots up.  I have tested it with both smbfs and and afp and they work as expected, you just need to substitute them into the &lt;code&gt;/etc/auto_smb&lt;/code&gt; file.  With that said, here’s what you need to do.&lt;/p&gt;

&lt;p&gt;Edit the &lt;code&gt;/etc/auto_smb&lt;/code&gt; file and add a line with the following format:&lt;/p&gt;

&lt;pre&gt;
&lt;share_path&gt; -fstype=smbfs ://&lt;username&gt;:&lt;password&gt;@&lt;server_ip&gt;/&lt;share_name&gt;
&lt;/pre&gt;

&lt;p&gt;Create the local share path and give full access:&lt;/p&gt;

&lt;pre&gt;
mkdir &lt;share_path&gt;
chmod 777 &lt;share_path&gt;
&lt;/pre&gt;

&lt;p&gt;Enable &lt;code&gt;auto_smb&lt;/code&gt; in the &lt;code&gt;/etc/auto_master&lt;/code&gt; file&lt;/p&gt;

&lt;pre&gt;
#
# Automounter master map
#
+auto_master            # Use directory service
/net                    -hosts          -nobrowse,hidefromfinder,nosuid
/home                   auto_home       -nobrowse,hidefromfinder
/Network/Servers        -fstab
/-                      -static
/-                      auto_smb
&lt;/pre&gt;

&lt;p&gt;And you’re done!  Reboot the machine and it will auto mount the share on boot.  If you have any questions just post a comment below and I’ll try my best to help.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/2101858092</link><guid>http://blog.mikegabriel.net/post/2101858092</guid><pubDate>Sat, 04 Dec 2010 20:00:00 -0600</pubDate><category>drobo</category><category>osx</category></item><item><title>Prairie Locator - Alberta, Saskatchewan and Manitoba Legal Land Description to GPS Converter &amp; Locator</title><description>&lt;a href="http://www.prairielocator.com"&gt;Prairie Locator - Alberta, Saskatchewan and Manitoba Legal Land Description to GPS Converter &amp; Locator&lt;/a&gt;: &lt;p&gt;I have just finished launching the newest version of Prairie Locator and you can now convert and plot Alberta, Saskatchewan and Manitoba Land Locations.  Check it out!&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1607180188</link><guid>http://blog.mikegabriel.net/post/1607180188</guid><pubDate>Wed, 17 Nov 2010 23:28:07 -0600</pubDate></item><item><title>VW Factory - Germany</title><description>&lt;iframe width="400" height="245" src="http://www.youtube.com/embed/nd5WGLWNllA?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=nd5WGLWNllA" target="_blank"&gt;VW Factory - Germany&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1245998456</link><guid>http://blog.mikegabriel.net/post/1245998456</guid><pubDate>Mon, 04 Oct 2010 19:08:04 -0600</pubDate></item><item><title>Apple &amp; Kindle Spoof</title><description>&lt;iframe width="400" height="240" src="http://www.youtube.com/embed/2feluXHSV-I?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Apple &amp; Kindle Spoof&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1161623743</link><guid>http://blog.mikegabriel.net/post/1161623743</guid><pubDate>Tue, 21 Sep 2010 08:43:51 -0600</pubDate></item><item><title>Gymkhana 3 Part Two</title><description>&lt;iframe width="400" height="240" src="http://www.youtube.com/embed/4TshFWSsrn8?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=4TshFWSsrn8" target="_blank"&gt;Gymkhana 3 Part Two&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1123987120</link><guid>http://blog.mikegabriel.net/post/1123987120</guid><pubDate>Tue, 14 Sep 2010 19:37:32 -0600</pubDate></item><item><title>Requiem For A Dream
This was one of the most popular pages on my...</title><description>&lt;embed type="application/x-shockwave-flash" src="http://assets.tumblr.com/swf/audio_player_black.swf?audio_file=http://www.tumblr.com/audio_file/1114138840/tumblr_l8oait77Rh1qcy7fu&amp;color=FFFFFF" height="27" width="207" quality="best" wmode="opaque"&gt;&lt;/embed&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;strong&gt;Requiem For A Dream&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This was one of the most popular pages on my old blogsite, I had made a rip of this audio track off a popular Wagenwerks video.  I have no idea who created this mix so if you know, please send me a message and I’ll update accordingly.  Feel free to download it &lt;a href="http://files.mikegabriel.net/download/requiem-for-a-dream.mp3" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1114138840</link><guid>http://blog.mikegabriel.net/post/1114138840</guid><pubDate>Mon, 13 Sep 2010 00:40:00 -0600</pubDate></item><item><title>SKDubs.com - Green Cabrio Rollby</title><description>&lt;iframe src="http://player.vimeo.com/video/14904011?portrait=0" width="400" height="225" frameborder="0"&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;SKDubs.com - Green Cabrio Rollby&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1111788342</link><guid>http://blog.mikegabriel.net/post/1111788342</guid><pubDate>Sun, 12 Sep 2010 16:13:00 -0600</pubDate></item><item><title>R-Fest 2010</title><description>&lt;iframe width="400" height="245" src="http://www.youtube.com/embed/LwoS9U89IKA?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=LwoS9U89IKA" target="_blank"&gt;R-Fest 2010&lt;/a&gt;&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1079565492</link><guid>http://blog.mikegabriel.net/post/1079565492</guid><pubDate>Mon, 06 Sep 2010 23:23:24 -0600</pubDate></item><item><title>Microsoft Support Article: Computer Randomly Plays Classical Music</title><description>&lt;a href="http://support.microsoft.com/?kbid=261186"&gt;Microsoft Support Article: Computer Randomly Plays Classical Music&lt;/a&gt;</description><link>http://blog.mikegabriel.net/post/1076611154</link><guid>http://blog.mikegabriel.net/post/1076611154</guid><pubDate>Mon, 06 Sep 2010 12:23:04 -0600</pubDate></item><item><title>Prairie Locator - Saskatchewan Legal Land Description GPS Converter &amp; Locator</title><description>&lt;a href="http://www.prairielocator.com"&gt;Prairie Locator - Saskatchewan Legal Land Description GPS Converter &amp; Locator&lt;/a&gt;: &lt;p&gt;A web-based application that I developed last year to convert Saskatchewan Land Locations to GPS Coordinates.  I spent the last few hours redoing it from the ground up, complete rewrite for a even more user friendly experience.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1019295880</link><guid>http://blog.mikegabriel.net/post/1019295880</guid><pubDate>Fri, 27 Aug 2010 05:19:01 -0600</pubDate></item><item><title>The homescreen on my iPhone 3GS.</title><description>&lt;img src="http://28.media.tumblr.com/tumblr_l7qfh09lQ51qcy7fuo1_400.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;The homescreen on my iPhone 3GS.&lt;/p&gt;</description><link>http://blog.mikegabriel.net/post/1011290190</link><guid>http://blog.mikegabriel.net/post/1011290190</guid><pubDate>Wed, 25 Aug 2010 17:48:36 -0600</pubDate></item></channel></rss>

