<?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 on: Using twitter and twibble for mobile tracking</title>
	<atom:link href="http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/feed/" rel="self" type="application/rss+xml" />
	<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/</link>
	<description>Alex' blog</description>
	<pubDate>Fri, 21 Nov 2008 09:52:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Pauly</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36449</link>
		<dc:creator>Pauly</dc:creator>
		<pubDate>Sun, 16 Nov 2008 09:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36449</guid>
		<description>Thank you!!!</description>
		<content:encoded><![CDATA[<p>Thank you!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36441</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 16 Nov 2008 07:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36441</guid>
		<description>Ok, try this: http://en.wikipedia.org/wiki/Basic_access_authentication
It explains how basic authentication works and how the header fields look like.</description>
		<content:encoded><![CDATA[<p>Ok, try this: <a href="http://en.wikipedia.org/wiki/Basic_access_authentication" rel="nofollow">http://en.wikipedia.org/wiki/Basic_access_authentication</a><br />
It explains how basic authentication works and how the header fields look like.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pauly</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36330</link>
		<dc:creator>Pauly</dc:creator>
		<pubDate>Sat, 15 Nov 2008 11:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36330</guid>
		<description>Thank you very much for your answer!!!
I understood what you show me, but i don't know now  what is the form of  value in the
 MDM.send('Authorization: Basic \r\n', 0) ?
How i must to write the    value, what is his form?
 Is something like this:  =  , it is in this form?
Or i put directly in that sentence = and the instruction is  like this form: MDM.send('Authorization: Basic \r\n', 0) ? 
I don' speak very good english, but i hope you will understand what i want to ask you. 
Thanks!</description>
		<content:encoded><![CDATA[<p>Thank you very much for your answer!!!<br />
I understood what you show me, but i don&#8217;t know now  what is the form of  value in the<br />
 MDM.send(&#8217;Authorization: Basic \r\n&#8217;, 0) ?<br />
How i must to write the    value, what is his form?<br />
 Is something like this:  =  , it is in this form?<br />
Or i put directly in that sentence = and the instruction is  like this form: MDM.send(&#8217;Authorization: Basic \r\n&#8217;, 0) ?<br />
I don&#8217; speak very good english, but i hope you will understand what i want to ask you.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36320</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 15 Nov 2008 09:47:12 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36320</guid>
		<description>Hi Pauly,

try this:

import base64
user='alex'
password='secret'
base64string = base64.encodestring('%s:%s' % (user, password))

Cheers,
Alex</description>
		<content:encoded><![CDATA[<p>Hi Pauly,</p>
<p>try this:</p>
<p>import base64<br />
user=&#8217;alex&#8217;<br />
password=&#8217;secret&#8217;<br />
base64string = base64.encodestring(&#8217;%s:%s&#8217; % (user, password))</p>
<p>Cheers,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pauly</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36141</link>
		<dc:creator>Pauly</dc:creator>
		<pubDate>Fri, 14 Nov 2008 10:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-36141</guid>
		<description>Hello Alex!
Thank you for your answer! 
Your program is a good example for me and i want to understand it very good, because i want to make something similarly, i want to send data to a server via GPRS (in fact a database). But before i want to test your program and i want to see how is working.
What is the format of the  user and password? 
Is something like this:  
MDM.send('Authorization: Basic \r\n', 0)  ? It is in this format? How is made the base64 encode in program? I read about this in the documentation of python.   I'm new in python and i want to learn new things about this language and for that i need your help. 
Thanks!</description>
		<content:encoded><![CDATA[<p>Hello Alex!<br />
Thank you for your answer!<br />
Your program is a good example for me and i want to understand it very good, because i want to make something similarly, i want to send data to a server via GPRS (in fact a database). But before i want to test your program and i want to see how is working.<br />
What is the format of the  user and password?<br />
Is something like this:<br />
MDM.send(&#8217;Authorization: Basic \r\n&#8217;, 0)  ? It is in this format? How is made the base64 encode in program? I read about this in the documentation of python.   I&#8217;m new in python and i want to learn new things about this language and for that i need your help.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-33856</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 23 Oct 2008 21:20:51 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-33856</guid>
		<description>Yes, it's the user and password, base64 encoded.</description>
		<content:encoded><![CDATA[<p>Yes, it&#8217;s the user and password, base64 encoded.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pauly</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-33786</link>
		<dc:creator>Pauly</dc:creator>
		<pubDate>Thu, 23 Oct 2008 11:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-33786</guid>
		<description>What represent the auth value? is the password for authentification on twitter.com? I don't understant what represent "auth". Can anyone help me? Thank you very much!</description>
		<content:encoded><![CDATA[<p>What represent the auth value? is the password for authentification on twitter.com? I don&#8217;t understant what represent &#8220;auth&#8221;. Can anyone help me? Thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henda Maulana Yusuf</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-11739</link>
		<dc:creator>Henda Maulana Yusuf</dc:creator>
		<pubDate>Mon, 28 Apr 2008 14:47:28 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-11739</guid>
		<description>hello alex...big thanks for the C code....i'm studying it right now...were u use the win avr for programming??can u send the "make file" for me......the last question..if im planning to build a delphi program to receive the data from the GPS by PC..then the delphi programm will automatically send the GPS data to the google earth..so i dont need to send the data to google earth by myself...can u give some advice about how to connect with the google earth...
big thanks Alex...keep fightin</description>
		<content:encoded><![CDATA[<p>hello alex&#8230;big thanks for the C code&#8230;.i&#8217;m studying it right now&#8230;were u use the win avr for programming??can u send the &#8220;make file&#8221; for me&#8230;&#8230;the last question..if im planning to build a delphi program to receive the data from the GPS by PC..then the delphi programm will automatically send the GPS data to the google earth..so i dont need to send the data to google earth by myself&#8230;can u give some advice about how to connect with the google earth&#8230;<br />
big thanks Alex&#8230;keep fightin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-11608</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 26 Apr 2008 16:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-11608</guid>
		<description>Hi Henda,
for the c code, please have a look at 
http://tinkerlog.com/2007/08/08/firmware-for-the-gps-tracking-device/
Cheers,
Alex</description>
		<content:encoded><![CDATA[<p>Hi Henda,<br />
for the c code, please have a look at<br />
<a href="http://tinkerlog.com/2007/08/08/firmware-for-the-gps-tracking-device/" rel="nofollow">http://tinkerlog.com/2007/08/08/firmware-for-the-gps-tracking-device/</a><br />
Cheers,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henda</title>
		<link>http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-11597</link>
		<dc:creator>Henda</dc:creator>
		<pubDate>Sat, 26 Apr 2008 14:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://tinkerlog.com/2007/09/23/using-twitter-and-twibble-for-mobile-tracking/#comment-11597</guid>
		<description>hi..alex..im henda from indonesia....i really impressed with your project...now i'm doing the same project like you..i'm using the ATMega 8535 for the uController n using the SIM508 GSM/GPRS+GPS modul for the GPS receiver...my problems are : the GPS connector is too small so i cant build the PCB...i have another GPS modul but still I'm stuck in the C program...it will pleasant for me if you e-mail?send me the C code for atmega8 interfaced to your GPS module/your project...coz my deadline is 2 weeks again....big thanx Alex</description>
		<content:encoded><![CDATA[<p>hi..alex..im henda from indonesia&#8230;.i really impressed with your project&#8230;now i&#8217;m doing the same project like you..i&#8217;m using the ATMega 8535 for the uController n using the SIM508 GSM/GPRS+GPS modul for the GPS receiver&#8230;my problems are : the GPS connector is too small so i cant build the PCB&#8230;i have another GPS modul but still I&#8217;m stuck in the C program&#8230;it will pleasant for me if you e-mail?send me the C code for atmega8 interfaced to your GPS module/your project&#8230;coz my deadline is 2 weeks again&#8230;.big thanx Alex</p>
]]></content:encoded>
	</item>
</channel>
</rss>
