<?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 MrBalky Heavy Industries</title>
	<atom:link href="http://www.mrbalky.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mrbalky.com</link>
	<description>Fat free with endorphins, anti-oxidants, bioflavonoids, creatine, glucosamine and caffeine!</description>
	<lastBuildDate>Tue, 20 Jul 2010 20:49:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Foo&#8230; by piconna</title>
		<link>http://www.mrbalky.com/fooooooooooooo/comment-page-1/#comment-305</link>
		<dc:creator>piconna</dc:creator>
		<pubDate>Tue, 20 Jul 2010 20:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/fooooooooooooo/#comment-305</guid>
		<description>eh. odd post.  but i found some of these quoes in a song. where are they from?</description>
		<content:encoded><![CDATA[<p>eh. odd post.  but i found some of these quoes in a song. where are they from?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weather station &#8211; one last thing by Rando</title>
		<link>http://www.mrbalky.com/2010/05/09/weather-station-one-last-thing/comment-page-1/#comment-303</link>
		<dc:creator>Rando</dc:creator>
		<pubDate>Mon, 19 Jul 2010 21:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/?p=538#comment-303</guid>
		<description>Interesting thread! I was a subcontractor for Davis before working at Vstr/Evo/Dance and worked on hardware and embedded software for one of their first low-power wireless links and associated receiver/display and repeater stations. Part of my compensation was a Davis weather setup that is still working in my backyard, although looking a bit (ironically) weather beaten. The hardware included a serial link, but we never got a requirement to support it in code. The wireless protocol was interesting since it had to deal with unreliable links.

I&#039;ve been thinking of upgrading to one of these fancy new weather stations, but have a sentimental attachment to the boxes with my code running inside.</description>
		<content:encoded><![CDATA[<p>Interesting thread! I was a subcontractor for Davis before working at Vstr/Evo/Dance and worked on hardware and embedded software for one of their first low-power wireless links and associated receiver/display and repeater stations. Part of my compensation was a Davis weather setup that is still working in my backyard, although looking a bit (ironically) weather beaten. The hardware included a serial link, but we never got a requirement to support it in code. The wireless protocol was interesting since it had to deal with unreliable links.</p>
<p>I&#8217;ve been thinking of upgrading to one of these fancy new weather stations, but have a sentimental attachment to the boxes with my code running inside.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Follow my TiVo on Twitter by Michael</title>
		<link>http://www.mrbalky.com/2009/02/24/follow-my-tivo-on-twitter/comment-page-1/#comment-135</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 20 May 2009 19:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/?p=338#comment-135</guid>
		<description>It does point me in the right direction.  Thanks!</description>
		<content:encoded><![CDATA[<p>It does point me in the right direction.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Follow my TiVo on Twitter by mrbalky</title>
		<link>http://www.mrbalky.com/2009/02/24/follow-my-tivo-on-twitter/comment-page-1/#comment-134</link>
		<dc:creator>mrbalky</dc:creator>
		<pubDate>Mon, 18 May 2009 21:06:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/?p=338#comment-134</guid>
		<description>Hi Michael,

There are many ways to set this up.  In my case, I have a server on my home network that polls my TiVos for the now playing list every 1/2 hour (since that&#039;s when programs tend to start).

I am using a Linux server that is always on so updates can always happen.  The update is scheduled through cron.

The server runs a shell script to fetch the now playing list with a command like this:
&lt;code&gt;curl --anyauth --insecure --user tivo:**TiVo MAK** --output tivo_nowplaying.xml &quot;https://**TiVo IP address**/TiVoConnect?Command=QueryContainer&amp;Container=%2FNowPlaying&amp;Recurse=Yes&amp;ItemCount=50&quot;&lt;/code&gt;

Replace **TiVo MAK** and **TiVo IP address** with the values for your tivo.  Both of these should be available through the TiVo menus, but I don&#039;t remember exactly where.  You should be able to find out from the TiVo support site or The Google; just search &quot;tivo mak&quot; and &quot;tivo ip address&quot;.

The shell script then runs:
php tweettivo.php tivotwitterid tivotwitterpw
TweetTivo is here: http://www.mrbalky.com/wp-content/uploads/tweettivophp.txt

You will need the curl application (or maybe wget) to poll your TiVo.  PHP is required to run the actual code. You will also need class_tivo_xml.php to parse the specific TiVo XML, which I found over on the tivo community site long long ago: http://archive2.tivocommunity.com/tivo-vb/printthread.php?t=218365&amp;pp=50

It is definitely possible to do schedule this on a windows machine.  Binaries for curl and php are available, and scheduling would be done via the scheduled tasks section of control panel.

It&#039;s also worth noting that this is an incredibly quick and dirty application, with barely any testing.  It grew out of the script I was already using for the &quot;now playing&quot; page on this site, so it really could all be wrapped up into the same php script.  If you know how to use curl from within php, it&#039;d probably be better to skip the exec.

Sorry; that probably doesn&#039;t help much.  I just threw this together in a few minutes and I&#039;m afraid I don&#039;t have much time for this script anymore.</description>
		<content:encoded><![CDATA[<p>Hi Michael,</p>
<p>There are many ways to set this up.  In my case, I have a server on my home network that polls my TiVos for the now playing list every 1/2 hour (since that&#8217;s when programs tend to start).</p>
<p>I am using a Linux server that is always on so updates can always happen.  The update is scheduled through cron.</p>
<p>The server runs a shell script to fetch the now playing list with a command like this:<br />
<code>curl --anyauth --insecure --user tivo:**TiVo MAK** --output tivo_nowplaying.xml "https://**TiVo IP address**/TiVoConnect?Command=QueryContainer&#038;Container=%2FNowPlaying&#038;Recurse=Yes&#038;ItemCount=50"</code></p>
<p>Replace **TiVo MAK** and **TiVo IP address** with the values for your tivo.  Both of these should be available through the TiVo menus, but I don&#8217;t remember exactly where.  You should be able to find out from the TiVo support site or The Google; just search &#8220;tivo mak&#8221; and &#8220;tivo ip address&#8221;.</p>
<p>The shell script then runs:<br />
php tweettivo.php tivotwitterid tivotwitterpw<br />
TweetTivo is here: <a href="http://www.mrbalky.com/wp-content/uploads/tweettivophp.txt" rel="nofollow">http://www.mrbalky.com/wp-content/uploads/tweettivophp.txt</a></p>
<p>You will need the curl application (or maybe wget) to poll your TiVo.  PHP is required to run the actual code. You will also need class_tivo_xml.php to parse the specific TiVo XML, which I found over on the tivo community site long long ago: <a href="http://archive2.tivocommunity.com/tivo-vb/printthread.php?t=218365&#038;pp=50" rel="nofollow">http://archive2.tivocommunity.com/tivo-vb/printthread.php?t=218365&#038;pp=50</a></p>
<p>It is definitely possible to do schedule this on a windows machine.  Binaries for curl and php are available, and scheduling would be done via the scheduled tasks section of control panel.</p>
<p>It&#8217;s also worth noting that this is an incredibly quick and dirty application, with barely any testing.  It grew out of the script I was already using for the &#8220;now playing&#8221; page on this site, so it really could all be wrapped up into the same php script.  If you know how to use curl from within php, it&#8217;d probably be better to skip the exec.</p>
<p>Sorry; that probably doesn&#8217;t help much.  I just threw this together in a few minutes and I&#8217;m afraid I don&#8217;t have much time for this script anymore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Follow my TiVo on Twitter by Michael</title>
		<link>http://www.mrbalky.com/2009/02/24/follow-my-tivo-on-twitter/comment-page-1/#comment-133</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Mon, 18 May 2009 20:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/?p=338#comment-133</guid>
		<description>Any chance you&#039;d be willing to describe the process in more detail?  I&#039;d love to get this working with my Tivo.  Thanks!</description>
		<content:encoded><![CDATA[<p>Any chance you&#8217;d be willing to describe the process in more detail?  I&#8217;d love to get this working with my Tivo.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TwitPic upload hack by mrbalky</title>
		<link>http://www.mrbalky.com/2009/01/13/twitpic-upload-hack/comment-page-1/#comment-128</link>
		<dc:creator>mrbalky</dc:creator>
		<pubDate>Sat, 14 Feb 2009 01:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/?p=304#comment-128</guid>
		<description>You can put it anywhere you like.  In the above example, it&#039;s ~, which should be c:/cygwin/home/--username--

But you could also put it in a real Windows path, I think, like C:\bin\twitpic.sh, so the shortcut would then be:
C:\cygwin\bin\sh.exe c:/bin/twitpic.sh --userid-- --password--

You might have to experiment a little.  I often find I just have to try a variety of different things with cygwin.</description>
		<content:encoded><![CDATA[<p>You can put it anywhere you like.  In the above example, it&#8217;s ~, which should be c:/cygwin/home/&#8211;username&#8211;</p>
<p>But you could also put it in a real Windows path, I think, like C:\bin\twitpic.sh, so the shortcut would then be:<br />
C:\cygwin\bin\sh.exe c:/bin/twitpic.sh &#8211;userid&#8211; &#8211;password&#8211;</p>
<p>You might have to experiment a little.  I often find I just have to try a variety of different things with cygwin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TwitPic upload hack by abhishek</title>
		<link>http://www.mrbalky.com/2009/01/13/twitpic-upload-hack/comment-page-1/#comment-127</link>
		<dc:creator>abhishek</dc:creator>
		<pubDate>Fri, 13 Feb 2009 13:40:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/?p=304#comment-127</guid>
		<description>It is not working..where we have to place the twitpic.sh file ?</description>
		<content:encoded><![CDATA[<p>It is not working..where we have to place the twitpic.sh file ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What to do when iTunes hoses your USB port by LeaveAreply</title>
		<link>http://www.mrbalky.com/2008/05/02/what-to-do-when-itunes-hoses-your-usb-port/comment-page-1/#comment-97</link>
		<dc:creator>LeaveAreply</dc:creator>
		<pubDate>Fri, 29 Aug 2008 16:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/?p=86#comment-97</guid>
		<description>devcon find *USB* 
- would list all devices with USB in the name.

just like 
devcon find * :  list all devices, and 
devcon help : show help, and
devcon help find : show help about devcon find.

Yast as a tip...</description>
		<content:encoded><![CDATA[<p>devcon find *USB*<br />
- would list all devices with USB in the name.</p>
<p>just like<br />
devcon find * :  list all devices, and<br />
devcon help : show help, and<br />
devcon help find : show help about devcon find.</p>
<p>Yast as a tip&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on So long old pal&#8230; by Todd Vernon</title>
		<link>http://www.mrbalky.com/2008/03/04/so-long-old-pal/comment-page-1/#comment-86</link>
		<dc:creator>Todd Vernon</dc:creator>
		<pubDate>Thu, 06 Mar 2008 15:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrbalky.com/2008/03/04/so-long-old-pal/#comment-86</guid>
		<description>I really don&#039;t think you will miss it that much, considering :-)</description>
		<content:encoded><![CDATA[<p>I really don&#8217;t think you will miss it that much, considering <img src='http://www.mrbalky.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What do you think of this? by Jay</title>
		<link>http://www.mrbalky.com/2007/02/13/what-do-you-think-of-this/comment-page-1/#comment-3</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Wed, 14 Feb 2007 16:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://mrbalky.com/?p=15#comment-3</guid>
		<description>I saw that last week.  Or rather I only got half way through it before I got bored.  It feels kinda like a Rah Rah Rah! motivational speech for people using the internet.</description>
		<content:encoded><![CDATA[<p>I saw that last week.  Or rather I only got half way through it before I got bored.  It feels kinda like a Rah Rah Rah! motivational speech for people using the internet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gettin&#8217; all Web 2.0 on yer ass&#8230; by Todd Vernon</title>
		<link>http://www.mrbalky.com/2006/12/27/gettin-all-web-20-on-yer-ass/comment-page-1/#comment-2</link>
		<dc:creator>Todd Vernon</dc:creator>
		<pubDate>Fri, 29 Dec 2006 17:34:25 +0000</pubDate>
		<guid isPermaLink="false">http://mrbalky.com/?p=5#comment-2</guid>
		<description>nice...</description>
		<content:encoded><![CDATA[<p>nice&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
