<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Brett Hutley&#039;s Blog</title>
	<atom:link href="http://bretthutley.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://bretthutley.com</link>
	<description>Home on the Digital Range</description>
	<lastBuildDate>Sun, 05 May 2013 07:40:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on How to get Maplin&#8217;s USB Microscope working on a Mac by phil</title>
		<link>http://bretthutley.com/2010/09/19/usb-microscope-mac/comment-page-1/#comment-98770</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Sun, 05 May 2013 07:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.bretthutley.com/?p=293#comment-98770</guid>
		<description><![CDATA[Hi, Yeah the stand is a bit loose, i just pulled the halves apart and well sanded the space between them and it clamps up good. Photo booth worked in reverse, so is so useless for this purpose, I have Macam as the generic driver for my webcams but a program called Cam Twist is working well, as is MicroCapture 2M (1.0) dunno if it&#039;s because of Macam or not but it works, right side up and all.]]></description>
		<content:encoded><![CDATA[<p>Hi, Yeah the stand is a bit loose, i just pulled the halves apart and well sanded the space between them and it clamps up good. Photo booth worked in reverse, so is so useless for this purpose, I have Macam as the generic driver for my webcams but a program called Cam Twist is working well, as is MicroCapture 2M (1.0) dunno if it&#8217;s because of Macam or not but it works, right side up and all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Technological Unemployment Problem by Khannea Suntzu</title>
		<link>http://bretthutley.com/2013/05/03/the-technological-unemployment-problem/comment-page-1/#comment-98764</link>
		<dc:creator>Khannea Suntzu</dc:creator>
		<pubDate>Sat, 04 May 2013 16:04:37 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=480#comment-98764</guid>
		<description><![CDATA[Simplified and condensed analysis. Now try and make your views applicable to the millions laid off in the fast food industries. Quick let&#039;s all augment these people so they&#039;ll become &quot;productive&quot; again.

I am not holding my breath. This will end very badly.]]></description>
		<content:encoded><![CDATA[<p>Simplified and condensed analysis. Now try and make your views applicable to the millions laid off in the fast food industries. Quick let&#8217;s all augment these people so they&#8217;ll become &#8220;productive&#8221; again.</p>
<p>I am not holding my breath. This will end very badly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Restarting Fitbit on the Mac by Ben</title>
		<link>http://bretthutley.com/2012/11/04/restarting-fitbit-on-the-mac/comment-page-1/#comment-98119</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 15 Mar 2013 16:45:12 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=455#comment-98119</guid>
		<description><![CDATA[Thanks for this! Was pulling my hair out trying to figure out what was wrong since the FitBit software has no GUI. Simple solution is usually the best.

I did try changing the launchd settings for fitbitd using Lingon, enabling the always-keep-this-running option. We&#039;ll see if that offers a more permanent fix. So far so good, but it&#039;s only been a few hours.]]></description>
		<content:encoded><![CDATA[<p>Thanks for this! Was pulling my hair out trying to figure out what was wrong since the FitBit software has no GUI. Simple solution is usually the best.</p>
<p>I did try changing the launchd settings for fitbitd using Lingon, enabling the always-keep-this-running option. We&#8217;ll see if that offers a more permanent fix. So far so good, but it&#8217;s only been a few hours.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Opening a header file in Emacs by Joonhwan</title>
		<link>http://bretthutley.com/programming/emacs/opening-a-cobjective-cc-header-file-in-emacs/comment-page-1/#comment-97958</link>
		<dc:creator>Joonhwan</dc:creator>
		<pubDate>Mon, 04 Mar 2013 11:19:56 +0000</pubDate>
		<guid isPermaLink="false">http://hutley.net/brett/opening-a-cobjective-cc-header-file-in-emacs/#comment-97958</guid>
		<description><![CDATA[I have an idea that can improve your ones.

please refer following snippet

;; *.h objc file criteria
;; - if there are a pair of *.h/*.m
;; - if the directory contains xcodeproj
;; - if the directory contains xib
(defun my/h-file-looks-like-objc()
  ;; (message (concat &quot;file path : &quot; (buffer-file-name)))
  (let* ((file-path (buffer-file-name))
		 (file-ext (or (and (stringp file-path) (downcase (file-name-extension file-path)))
					   &quot;&quot;))
		 )
	(and (string= file-ext &quot;h&quot;)
		 (or (file-exists-p (concat (file-name-sans-extension file-path) &quot;.m&quot;))
			 (directory-files (file-name-directory file-path) t (regexp-opt &#039;(&quot;\.xib&quot; &quot;\.xcodeproj&quot;)))))
  )
  )
(add-to-list &#039;magic-mode-alist &#039;(my/h-file-looks-like-objc . objc-mode))
(add-to-list &#039;auto-mode-alist &#039;(&quot;\\.\\(m\\)?$&quot; . objc-mode) nil)]]></description>
		<content:encoded><![CDATA[<p>I have an idea that can improve your ones.</p>
<p>please refer following snippet</p>
<p>;; *.h objc file criteria<br />
;; &#8211; if there are a pair of *.h/*.m<br />
;; &#8211; if the directory contains xcodeproj<br />
;; &#8211; if the directory contains xib<br />
(defun my/h-file-looks-like-objc()<br />
  ;; (message (concat &#8220;file path : &#8221; (buffer-file-name)))<br />
  (let* ((file-path (buffer-file-name))<br />
		 (file-ext (or (and (stringp file-path) (downcase (file-name-extension file-path)))<br />
					   &#8220;&#8221;))<br />
		 )<br />
	(and (string= file-ext &#8220;h&#8221;)<br />
		 (or (file-exists-p (concat (file-name-sans-extension file-path) &#8220;.m&#8221;))<br />
			 (directory-files (file-name-directory file-path) t (regexp-opt &#8216;(&#8220;\.xib&#8221; &#8220;\.xcodeproj&#8221;)))))<br />
  )<br />
  )<br />
(add-to-list &#8216;magic-mode-alist &#8216;(my/h-file-looks-like-objc . objc-mode))<br />
(add-to-list &#8216;auto-mode-alist &#8216;(&#8220;\\.\\(m\\)?$&#8221; . objc-mode) nil)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking the EZ430 Chronos Watch on the Mac by Lukas</title>
		<link>http://bretthutley.com/2012/01/23/hacking-the-ez430-chronos-watch-on-the-mac/comment-page-1/#comment-97849</link>
		<dc:creator>Lukas</dc:creator>
		<pubDate>Tue, 26 Feb 2013 16:50:55 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=438#comment-97849</guid>
		<description><![CDATA[Hi really nice stuff!!! working great on mountain lion (xdotool doesn&#039;t... and i had to change the comport to usbmodemfa131) Thanks and keep up the good work!!!]]></description>
		<content:encoded><![CDATA[<p>Hi really nice stuff!!! working great on mountain lion (xdotool doesn&#8217;t&#8230; and i had to change the comport to usbmodemfa131) Thanks and keep up the good work!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Restarting Fitbit on the Mac by Seth</title>
		<link>http://bretthutley.com/2012/11/04/restarting-fitbit-on-the-mac/comment-page-1/#comment-97424</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Tue, 05 Feb 2013 03:37:01 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=455#comment-97424</guid>
		<description><![CDATA[Bless you. I should&#039;ve searched for this answer months ago. 

Worked like a charm!]]></description>
		<content:encoded><![CDATA[<p>Bless you. I should&#8217;ve searched for this answer months ago. </p>
<p>Worked like a charm!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting iTunes to recognise tracks as belonging to one Album by Inaki</title>
		<link>http://bretthutley.com/2011/11/27/getting-itunes-to-recognise-tracks-as-belonging-to-one-album/comment-page-1/#comment-97399</link>
		<dc:creator>Inaki</dc:creator>
		<pubDate>Sun, 03 Feb 2013 15:20:04 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=400#comment-97399</guid>
		<description><![CDATA[Thank you, this was very helpful and informative! :)
Godspeed to you kind Sir]]></description>
		<content:encoded><![CDATA[<p>Thank you, this was very helpful and informative! <img src='http://bretthutley.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Godspeed to you kind Sir</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking the EZ430 Chronos Watch on the Mac by Christopher Konopka</title>
		<link>http://bretthutley.com/2012/01/23/hacking-the-ez430-chronos-watch-on-the-mac/comment-page-1/#comment-96055</link>
		<dc:creator>Christopher Konopka</dc:creator>
		<pubDate>Thu, 06 Dec 2012 04:05:48 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=438#comment-96055</guid>
		<description><![CDATA[Howdy! Thank you for posting your research on this watch, I am very grateful for your work. I was a little confused though and was wondering if you could possibly write the step by step process you took to hack the watch? You were clear above but I am a novice in the programming world and it was rather challenging for me.]]></description>
		<content:encoded><![CDATA[<p>Howdy! Thank you for posting your research on this watch, I am very grateful for your work. I was a little confused though and was wondering if you could possibly write the step by step process you took to hack the watch? You were clear above but I am a novice in the programming world and it was rather challenging for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Evolving Media Setup by Dennis</title>
		<link>http://bretthutley.com/2012/10/05/my-evolving-media-setup/comment-page-1/#comment-95436</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Sat, 06 Oct 2012 17:48:58 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=447#comment-95436</guid>
		<description><![CDATA[God forbid your internet connection breaks down for an extended period. Of course, if it does, you can always come round to mine  :-P]]></description>
		<content:encoded><![CDATA[<p>God forbid your internet connection breaks down for an extended period. Of course, if it does, you can always come round to mine  <img src='http://bretthutley.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking the EZ430 Chronos Watch on the Mac by brett</title>
		<link>http://bretthutley.com/2012/01/23/hacking-the-ez430-chronos-watch-on-the-mac/comment-page-1/#comment-95430</link>
		<dc:creator>brett</dc:creator>
		<pubDate>Fri, 05 Oct 2012 15:46:09 +0000</pubDate>
		<guid isPermaLink="false">https://bretthutley.com/?p=438#comment-95430</guid>
		<description><![CDATA[The Chronos Control Center code is written in TCL/TK. You should be able to run it on your Air without too much trouble. You need to make sure that TCL/TK is installed. I&#039;ve got a link to my Github project which has my modified Chronos Control Center which should work fine on an Air.]]></description>
		<content:encoded><![CDATA[<p>The Chronos Control Center code is written in TCL/TK. You should be able to run it on your Air without too much trouble. You need to make sure that TCL/TK is installed. I&#8217;ve got a link to my Github project which has my modified Chronos Control Center which should work fine on an Air.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
