<?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 on: Investigating the nabaztag</title>
	<atom:link href="http://www.nata2.org/2006/02/27/investigating-the-nabaztag/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nata2.org/2006/02/27/investigating-the-nabaztag/</link>
	<description>Harper Reed: Software, PHP, MySQL, XMPP, Hacking, Baphomet</description>
	<lastBuildDate>Fri, 12 Feb 2010 09:02:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: purplet</title>
		<link>http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-185</link>
		<dc:creator>purplet</dc:creator>
		<pubDate>Thu, 30 Mar 2006 11:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-185</guid>
		<description>you can enter the wep key following these instructions http://www.nabaztag.com/vl/aide/101.pdf</description>
		<content:encoded><![CDATA[<p>you can enter the wep key following these instructions <a href="http://www.nabaztag.com/vl/aide/101.pdf" rel="nofollow">http://www.nabaztag.com/vl/aide/101.pdf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Landry</title>
		<link>http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-181</link>
		<dc:creator>Landry</dc:creator>
		<pubDate>Thu, 23 Mar 2006 16:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-181</guid>
		<description>On http://nabaztag.free.fr you&#039;ll find informations, links about api, php developments and samples to play with yours Nabaztag.</description>
		<content:encoded><![CDATA[<p>On <a href="http://nabaztag.free.fr" rel="nofollow">http://nabaztag.free.fr</a> you&#8217;ll find informations, links about api, php developments and samples to play with yours Nabaztag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Smith</title>
		<link>http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-175</link>
		<dc:creator>Joe Smith</dc:creator>
		<pubDate>Mon, 13 Mar 2006 22:38:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-175</guid>
		<description>The instructions posted on the Nabaztag website (In English) are terrible! From what I can make out, you have to have a broadcasting SSID, plus use channel 11 of your wireless router. But what about WEP encryption? The FAQ&#039;s say it is supported, but it isn&#039;t mentioned in their on-line &quot;documentation&quot;. If this thing will ever make it in America, the company needs to hire a tech writer who knows English!</description>
		<content:encoded><![CDATA[<p>The instructions posted on the Nabaztag website (In English) are terrible! From what I can make out, you have to have a broadcasting SSID, plus use channel 11 of your wireless router. But what about WEP encryption? The FAQ&#8217;s say it is supported, but it isn&#8217;t mentioned in their on-line &#8220;documentation&#8221;. If this thing will ever make it in America, the company needs to hire a tech writer who knows English!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Horloge Parlante</title>
		<link>http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-160</link>
		<dc:creator>Horloge Parlante</dc:creator>
		<pubDate>Sun, 05 Mar 2006 15:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-160</guid>
		<description>My favourite part of the Nabaztag API is the fact that you can get the current position of your rabbit&#039;s ears -- whether they were turned to that position by you manually, or by a command from the nabaztag.com website.

Just use this URL:
http://www.nabaztag.com/vl/FR/api.jsp?sn=YOUR_SERIAL&amp;token=YOUR_TOKEN&amp;ears=ok

(Replacing YOUR_SERIAL and YOUR_TOKEN with your rabbit&#039;s unique values.)

Then you should get html output like this (it&#039;s in French if you set your Rabbit to speak French):

Here the position of the ears:
					Left position = 14
					Right position = 15

It&#039;s easy to scrape those two values from the output in PHP using preg_match_all like this:

$subject = file_get_contents(&quot;http://www.nabaztag.com/vl/FR/api.jsp?sn=YOUR_SERIAL&amp;token=YOUR_TOKEN&amp;ears=ok&quot;);

preg_match_all(&quot;/[0-9]+/&quot;, $subject, $ears);

// Latest ear position reported by API
$posright = $ears[0][0];
$posleft = $ears[0][1];</description>
		<content:encoded><![CDATA[<p>My favourite part of the Nabaztag API is the fact that you can get the current position of your rabbit&#8217;s ears &#8212; whether they were turned to that position by you manually, or by a command from the nabaztag.com website.</p>
<p>Just use this URL:<br />
<a href="http://www.nabaztag.com/vl/FR/api.jsp?sn=YOUR_SERIAL&amp;token=YOUR_TOKEN&amp;ears=ok" rel="nofollow">http://www.nabaztag.com/vl/FR/api.jsp?sn=YOUR_SERIAL&amp;token=YOUR_TOKEN&amp;ears=ok</a></p>
<p>(Replacing YOUR_SERIAL and YOUR_TOKEN with your rabbit&#8217;s unique values.)</p>
<p>Then you should get html output like this (it&#8217;s in French if you set your Rabbit to speak French):</p>
<p>Here the position of the ears:<br />
					Left position = 14<br />
					Right position = 15</p>
<p>It&#8217;s easy to scrape those two values from the output in PHP using preg_match_all like this:</p>
<p>$subject = file_get_contents(&#8220;http://www.nabaztag.com/vl/FR/api.jsp?sn=YOUR_SERIAL&amp;token=YOUR_TOKEN&amp;ears=ok&#8221;);</p>
<p>preg_match_all(&#8220;/[0-9]+/&#8221;, $subject, $ears);</p>
<p>// Latest ear position reported by API<br />
$posright = $ears[0][0];<br />
$posleft = $ears[0][1];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boxeschesser</title>
		<link>http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-151</link>
		<dc:creator>boxeschesser</dc:creator>
		<pubDate>Tue, 28 Feb 2006 19:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-151</guid>
		<description>Hello

In case you haven&#039;t found better photo&#039;s yet, here are some more: http://pokie.dyndns.org/photos.php?album=nabaztag&amp;page=1
There&#039;s also a bit on sourceforge:
http://nabaztools.sourceforge.net/</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>In case you haven&#8217;t found better photo&#8217;s yet, here are some more: <a href="http://pokie.dyndns.org/photos.php?album=nabaztag&amp;page=1" rel="nofollow">http://pokie.dyndns.org/photos.php?album=nabaztag&amp;page=1</a><br />
There&#8217;s also a bit on sourceforge:<br />
<a href="http://nabaztools.sourceforge.net/" rel="nofollow">http://nabaztools.sourceforge.net/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moo</title>
		<link>http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-150</link>
		<dc:creator>moo</dc:creator>
		<pubDate>Tue, 28 Feb 2006 10:19:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.nata2.org/2006/02/27/investigating-the-nabaztag/#comment-150</guid>
		<description>could you post the printings on the various chips the device has. Doesn&#039;t come out on the photos. That would help to get an idea what the ingredients are and how high the hackvalue is.</description>
		<content:encoded><![CDATA[<p>could you post the printings on the various chips the device has. Doesn&#8217;t come out on the photos. That would help to get an idea what the ingredients are and how high the hackvalue is.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
