<?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"
	>
<channel>
	<title>Comments for Situated Interactions</title>
	<atom:link href="http://situated.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://situated.wordpress.com</link>
	<description>Try PD, you'll like it!</description>
	<pubDate>Fri, 04 Jul 2008 16:24:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Simple Solution to getting Mote Datafeeds using CrossBow Netbridge by xtreme2k2</title>
		<link>http://situated.wordpress.com/2008/05/29/simple-solution-to-getting-mote-datafeeds-using-crossbow-netbridge/#comment-37</link>
		<dc:creator>xtreme2k2</dc:creator>
		<pubDate>Sat, 21 Jun 2008 18:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=128#comment-37</guid>
		<description>I was merely pointing it out.

Thanks for the script and details I was looking for something similar to this!</description>
		<content:encoded><![CDATA[<p>I was merely pointing it out.</p>
<p>Thanks for the script and details I was looking for something similar to this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Solution to getting Mote Datafeeds using CrossBow Netbridge by Ben</title>
		<link>http://situated.wordpress.com/2008/05/29/simple-solution-to-getting-mote-datafeeds-using-crossbow-netbridge/#comment-36</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 21 Jun 2008 17:24:26 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=128#comment-36</guid>
		<description>Thanks Ryan,
  I readily admit to spending nearly as much time as I should have reading the manual.</description>
		<content:encoded><![CDATA[<p>Thanks Ryan,<br />
  I readily admit to spending nearly as much time as I should have reading the manual.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Solution to getting Mote Datafeeds using CrossBow Netbridge by xtreme2k2</title>
		<link>http://situated.wordpress.com/2008/05/29/simple-solution-to-getting-mote-datafeeds-using-crossbow-netbridge/#comment-35</link>
		<dc:creator>xtreme2k2</dc:creator>
		<pubDate>Sat, 21 Jun 2008 16:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=128#comment-35</guid>
		<description>The battery value is not actually fluctuating between 438 and 2.859, rather 438 is how it is presented initially as an unsigned integer, and 2.859 is that unsigned integer value converted into engineering units.

Heres the conversion:

1252.352/438 = 2.859

Check out section 7 in the xserve user manual for more info.</description>
		<content:encoded><![CDATA[<p>The battery value is not actually fluctuating between 438 and 2.859, rather 438 is how it is presented initially as an unsigned integer, and 2.859 is that unsigned integer value converted into engineering units.</p>
<p>Heres the conversion:</p>
<p>1252.352/438 = 2.859</p>
<p>Check out section 7 in the xserve user manual for more info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Situated PHP API by Coolapps PHP API on blog &#171; Situated Interactions</title>
		<link>http://situated.wordpress.com/situated-php-api/#comment-29</link>
		<dc:creator>Coolapps PHP API on blog &#171; Situated Interactions</dc:creator>
		<pubDate>Thu, 17 Apr 2008 03:38:58 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?page_id=114#comment-29</guid>
		<description>[...] http://situated.wordpress.com/situated-php-api/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://situated.wordpress.com/situated-php-api/" rel="nofollow">http://situated.wordpress.com/situated-php-api/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Post your apps to the Michiposter by kmouly</title>
		<link>http://situated.wordpress.com/2008/03/18/post-your-apps-to-the-michiposter/#comment-21</link>
		<dc:creator>kmouly</dc:creator>
		<pubDate>Thu, 20 Mar 2008 21:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/2008/03/18/post-your-apps-to-the-michiposter/#comment-21</guid>
		<description>I would, if Michiposter lets me login. It is not letting me either login nor sign-up a new account.

May be they have banned all users from our project!!</description>
		<content:encoded><![CDATA[<p>I would, if Michiposter lets me login. It is not letting me either login nor sign-up a new account.</p>
<p>May be they have banned all users from our project!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLRPC in Ruby: How? by Ben</title>
		<link>http://situated.wordpress.com/2008/03/08/xmlrpc-in-ruby-how/#comment-19</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 09 Mar 2008 16:04:57 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=66#comment-19</guid>
		<description>Ok, So you are a little bit confused, there is actually two things going on.

The URL method david is talking about is not XMLRPC, it's RESTful JSON.  Something I called the JSON POST method.  To get data from that URL in ruby you can do

[code]
require 'open-uri'
require 'json'

res = JSON.parse(open('http://.com:60091/get_context?data=%7B%22x%22:20,%22y%22:20,% 22z%22:20%7D').read)
[/code]

That might not be the right syntax for the json module.

Ok, now to do it the XMLRPC method do:

[code]
require ‘xmlrpc/client’
require ‘pp’
server = XMLRPC::Client.new2(’http://.com:6009′)
4 @resp = server.call("get_context",{'x' =&#62;20,'y'=&#62;20,'z'=&#62;20}’)
5 pp @resp
That's it.</description>
		<content:encoded><![CDATA[<p>Ok, So you are a little bit confused, there is actually two things going on.</p>
<p>The URL method david is talking about is not XMLRPC, it&#8217;s RESTful JSON.  Something I called the JSON POST method.  To get data from that URL in ruby you can do</p>
<p>[code]<br />
require &#8216;open-uri&#8217;<br />
require &#8216;json&#8217;</p>
<p>res = JSON.parse(open(&#8217;http://.com:60091/get_context?data=%7B%22x%22:20,%22y%22:20,% 22z%22:20%7D&#8217;).read)<br />
[/code]</p>
<p>That might not be the right syntax for the json module.</p>
<p>Ok, now to do it the XMLRPC method do:</p>
<p>[code]<br />
require ‘xmlrpc/client’<br />
require ‘pp’<br />
server = XMLRPC::Client.new2(’http://.com:6009′)<br />
4 @resp = server.call(&#8221;get_context&#8221;,{&#8217;x&#8217; =&gt;20,&#8217;y'=&gt;20,&#8217;z'=&gt;20}’)<br />
5 pp @resp<br />
That&#8217;s it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remember to SVN add&#8230; by Ben</title>
		<link>http://situated.wordpress.com/2008/03/09/remember-to-svn-add/#comment-18</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 09 Mar 2008 16:00:38 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/2008/03/09/remember-to-svn-add/#comment-18</guid>
		<description>Wow.. cool, I had no idea.  Of course that's not the best plan with python, as python creates all these .pyc files (compiled python files) that shouldn't be added to SVN.</description>
		<content:encoded><![CDATA[<p>Wow.. cool, I had no idea.  Of course that&#8217;s not the best plan with python, as python creates all these .pyc files (compiled python files) that shouldn&#8217;t be added to SVN.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remember to SVN add&#8230; by hungtruong</title>
		<link>http://situated.wordpress.com/2008/03/09/remember-to-svn-add/#comment-17</link>
		<dc:creator>hungtruong</dc:creator>
		<pubDate>Sun, 09 Mar 2008 15:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/2008/03/09/remember-to-svn-add/#comment-17</guid>
		<description>From the command line you can do a 
'svn add * --force'
And I think it adds all new files recursively. I'm not sure if that's a gross misuse of force or what, but it works.</description>
		<content:encoded><![CDATA[<p>From the command line you can do a<br />
&#8217;svn add * &#8211;force&#8217;<br />
And I think it adds all new files recursively. I&#8217;m not sure if that&#8217;s a gross misuse of force or what, but it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Attention Meter Snag&#8230; by Ben</title>
		<link>http://situated.wordpress.com/2008/02/26/attention-meter-snag/#comment-14</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 01 Mar 2008 19:42:03 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=58#comment-14</guid>
		<description>Perry are you using the version that is in SVN -- keep track of the modifications you make, as I have a version that hooks into SSAPP, the new name for my python based sensor aggregation framework.</description>
		<content:encoded><![CDATA[<p>Perry are you using the version that is in SVN &#8212; keep track of the modifications you make, as I have a version that hooks into SSAPP, the new name for my python based sensor aggregation framework.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on YourNews: Presence Generated NewsMap by dkhutch</title>
		<link>http://situated.wordpress.com/2008/02/04/yournews-presence-generated-newsmap/#comment-12</link>
		<dc:creator>dkhutch</dc:creator>
		<pubDate>Tue, 19 Feb 2008 00:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://situated.wordpress.com/?p=20#comment-12</guid>
		<description>There was no direct reference in that paper. I removed the references in the proposal to eliminate the confusion.</description>
		<content:encoded><![CDATA[<p>There was no direct reference in that paper. I removed the references in the proposal to eliminate the confusion.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
