<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MakeUseOf &#187; chat bots</title>
	<atom:link href="http://www.makeuseof.com/tags/chat-bots/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 22:31:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Make A Chat Bot For Your Site Or Business</title>
		<link>http://www.makeuseof.com/tag/chat-bot-site-business/</link>
		<comments>http://www.makeuseof.com/tag/chat-bot-site-business/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 18:01:39 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[chat tips]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webmaster tools]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98011</guid>
		<description><![CDATA[The difficulty with connecting with so many people across the world is time zones. You may want to be available to interact with your readership or to do business with potential clients, but at some point, you have to sleep. Enter the chat bot. A chat bot can serve as your front desk "digital secretary" when you aren’t available to accept IM requests.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/android.png?323f2c" alt="how to make a chat bot" />One of the great things about owning a website and being an online writer is the opportunity to connect with so many people across the world.</p>
<p>Unfortunately, there is one difficulty with connecting with so many people across the world &#8211; time zones. You may want to be available to interact with your readership or to do business with potential clients, but at some point, you have to sleep.</p>
<p>Enter the chat bot. A chat bot can serve as your front desk digital secretary when you aren&#8217;t available to accept IM requests. The intelligence of this digital &#8220;secretary&#8221; really only comes down to how well you&#8217;re able to program the dialogue into your chat bot.</p>
<p>MUO has previously covered <a href="http://www.makeuseof.com/dir/chitterim-google-talk-twitter-client/">ChitterIM</a>, which is essentially a chat bot that accepts IM commands from you in order to interact with Twitter. This is just one example of how a chat bot can automatically perform tasks for your site or your business, but in this article I&#8217;m going to show you the basic steps to make your own chat bot for your own site or business.</p>
<h2>How to Make a Chat Bot</h2>
<p>By far, the best available tool for doing this is IMified. We&#8217;ve briefly covered <a href="http://www.makeuseof.com/dir/imified/">IMified</a> in the directory, and <a href="http://www.makeuseof.com/tag/turn-your-im-program-into-a-productivity-tool-using-imified/">Mark covered</a> how to use the prebuilt IMified bot to use a whole list of premade applications that the folks at IMified already offer.</p>
<p>However, you can also create your own customized chat bot by signing up for a new account, and then clicking on the <em>&#8220;Create a New Bot&#8221;</em> button on the right menu.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/newbot1.png?323f2c" alt="how to make a chat bot" width="272" height="230" /></p>
<p>Setting up your own customized chat bot is as simple as creating an ID for your bot, and defining the URL where your bot&#8217;s chat code will reside. In my case, I&#8217;m storing the PHP code for the bot programming on my own website, so I&#8217;ve provided the path to that PHP file.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/newbot2.png?323f2c" alt="make a chat bot" width="443" height="613" /></p>
<p>When you&#8217;re done, you&#8217;ll receive a long &#8220;Bot Key&#8221; that you can use when you get more deeply into integrating your bot into various services, such as programming your own Twitter features. However, for now we&#8217;re going to focus on creating that basic PHP file where you can program your bot to interact with your users.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/newbot3.png?323f2c" alt="make a chat bot" width="560" height="567" /></p>
<p>To show how this basically works, I&#8217;m going to explain how the basic PHP file offered by IMified works. Here&#8217;s what the basic interaction code looks like.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'step'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">case</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">:</span>
<span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Hi, I'm the TSW Support bot, do you already know what service you want?&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">case</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">:</span>
<span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;You've requested service &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'value1'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;, is that correct?&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">case</span> <span style="color: #cc66cc;">3</span><span style="color: #339933;">:</span>
<span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Thank you for requesting service &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'value1'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;br&gt;&lt;br&gt;You said &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'value2'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; that you know.&lt;reset&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>If you step through this sample code you&#8217;ll see just how simple it is. The IMified bot lets you take the conversation through several &#8220;steps&#8221;, and you can force navigation. You can allow the user to type something and continue to the next step by doing nothing and just ending that section with &#8220;break;&#8221;. If you end your echo with a &#8220;&#8221;, it&#8217;ll reset the bot (and the conversation) back to the start. Your bot will forget everything that was recently said.</p>
<p>IMified also lets you use a &#8220;goto&#8221; command to go to a specific step in the conversation, and will force the conversation one step back (I&#8217;ll show you how this works below).</p>
<p>But first, here&#8217;s what the bot conversation will look like. The bot is called &#8220;tswdesk&#8221;.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/newbot5.png?323f2c" alt="make a chat bot" width="417" height="231" /></p>
<p>Of course, you&#8217;re going to want your chat bot to be a little more intelligent (and interesting) than this simple example. However, since you are controlling the conversation using PHP code, just think of the possibilities. Based on the conversation, you could perform different services for your readers or your clients. Send out an email, log &#8220;feedback&#8221; test to a file, or provide the user with requested information. The possibilities are really unlimited.</p>
<p>Here&#8217;s a sample PHP bot code where you can provide the visitor with the option to select from a menu of &#8220;services&#8221; that your bot offers.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'step'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">case</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">:</span>
<span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Hi, I'm the TSW Support bot, do you already know what service you want?&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">case</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">:</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'msg'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;yes&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Cool, go ahead and type your request.&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'msg'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;no&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Here are our service commands:&lt;br&gt;&lt;br&gt;1-Subscribe to newsletter&lt;br&gt;2-Request to talk to editor&lt;br&gt;3-Submit Feedback&lt;br&gt;4-Subscribe to RSS Feed&lt;br&gt;5-Request a phone call&lt;br&gt;&lt;br&gt;Please type your request:&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;I don't understand your answer, try again. &lt;error&gt;&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">case</span> <span style="color: #cc66cc;">3</span><span style="color: #339933;">:</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'msg'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;1&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Thank you. I've subscribed you to our newsletter using your IM email account. Have a nice day.&lt;reset&gt;&quot;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'msg'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;2&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Thank you. I've let our editor know that you would like to speak with him. Have a nice day.&lt;reset&gt;&quot;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'msg'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;3&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Thank you. Please type your feedback now.&quot;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'msg'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;4&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Thank you. Add our RSS url to your Reader to subscribe: http://www.topsecretwriters.com/rss. Have a nice day.&lt;reset&gt;&quot;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_REQUEST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'msg'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;5&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Thank you. You've requested a phone call. Please type your phone number.&quot;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>  
&nbsp;
<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">case</span> <span style="color: #cc66cc;">4</span><span style="color: #339933;">:</span>
<span style="color: #009900;">&#123;</span>
   <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Thank you. Your information has been submitted. Have a nice day.&lt;reset&gt;&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #b1b100;">break</span><span style="color: #339933;">;</span> 
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Now that there&#8217;s a bit more logic and information in the background code, you can see how much more intelligent the bot will appear to users, as shown in the conversation below.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/newbot71.png?323f2c" alt="how to make a chat bot" width="429" height="377" /></p>
<p>Now, carrying out some of these tasks may be as simple as writing to a logfile or sending out an email to the editor using PHP, but if you want to have your bot serve you by accepting Twitter commands or issuing alerts to all chat &#8220;friends&#8221;, it will require using some of the IMified APIs. That&#8217;s outside the scope of this article, but we&#8217;ll get to those cool features in an upcoming article.</p>
<p>Have you ever used IMified to customize your own bot, or have you used any other similar service? Share your chat bot experiences and insights in the comments section below.</p>
<p><small>Image Credit: <a href="http://image.shutterstock.com/display_pic_with_logo/316570/316570,1312322828,1/stock-photo-android-reveals-internal-technology-of-their-electrical-circuit-82124479.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/chat-bot-site-business/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>5 Google Talk Chatbots That Are Still Useful</title>
		<link>http://www.makeuseof.com/tag/google-talk-chatbots/</link>
		<comments>http://www.makeuseof.com/tag/google-talk-chatbots/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 22:31:19 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[chat client]]></category>
		<category><![CDATA[google talk]]></category>
		<category><![CDATA[instant messaging]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98020</guid>
		<description><![CDATA[Recently, I started exploring the potential of using bots on my website to interact with my visitors. After accomplishing that task, I thought that it might be worthwhile to explore what other bots still exist out there that might have some useful features. Most people have their chat client always open and sitting off to the side or at the bottom of the screen, so why not put that chat client to use while it's open?]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/robothelp.png?323f2c" alt="google talk chat bots" />As the years have gone by and I&#8217;ve got a bit older, the Internet has turned from a place of leisure and fun into one of work and business. I really have little time to spare when I&#8217;m sitting at the computer. Taking 5 to 10 minutes to check Facebook is an extravagance. The same goes for sending and receiving information. If I can ever find a way to speed up the process of getting news, posting updates and keeping track of things, I&#8217;ll jump on it.</p>
<p>Recently, I started exploring the potential of using bots on my website to interact with my visitors. After accomplishing that task, I thought that it might be worthwhile to explore what other bots still exist out there that might have some useful features. Most people have their chat client always open and sitting off to the side or at the bottom of the screen, so why not put that chat client to use while it&#8217;s open?</p>
<h2>The Ebb &amp; Flow Of Chatbots</h2>
<p>If you&#8217;ve ever started using chatbots even just a few years ago, you&#8217;ve probably noticed that a vast majority of them have fallen by the wayside. All sorts of bots that used to let you do things like search different search engines, get task reminders or get RSS feeds via IM are now no longer active. These days, it&#8217;s pretty difficult to find a service that offers up RSS feeds via IM.</p>
<p>That seems to be the case for Gtalk bots, but not so much Twitter. Kyle wrote about <a href="http://www.makeuseof.com/tag/10-bots-to-help-you-get-the-most-from-twitter/">10 Twitter bots</a> here at MUO back in 2008, and those Twitter bots are mostly all still active. But in my opinion, having access to information in Google Talk is really useful, and thankfully there are still some really good Gtalk bots out there.</p>
<h3>ExclaimBot</h3>
<p>If you just want to make quick updates to your Twitter profile, then ExclaimBot is the way to go. It&#8217;s actually spelled &#8220;<a href="http://excla.im/">excla.im</a>&#8220;.</p>
<p>What I like about this Bot is its simplicity. You visit the site, provide authorization for it to post to your Twitter account, and you&#8217;re done. Just add <em>exclaimbot@appspot.com</em> to your friends list in Google Talk, and everything you send that user will get posted to your Twitter account instantly.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot1.png?323f2c" alt="google talk chat bots" width="356" height="212" /></p>
<p>The only drawback is that you won&#8217;t be able to automatically shorten URL links, but using some external service like <a href="http://www.makeuseof.com/tag/bitlycom-shortens-urls-offers-wide-variety-free-tools/">Bitly</a>, that&#8217;s not a problem.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot2.png?323f2c" alt="google chat bot" width="316" height="129" /></p>
<p>Now you don&#8217;t have to open a new browser or any desktop client to post a quick Twitter update, just type it up in Gtalk, hit enter and you&#8217;re done. Another good service for this, by the way, is <a href="http://www.makeuseof.com/dir/chitterim-google-talk-twitter-client/">ChitterIM</a>. Either service works just as well.</p>
<h3>Google Guru</h3>
<p>If you&#8217;re looking for an all-around useful bot that does a whole list of tasks, you can&#8217;t go wrong by adding <em>guru@googlelabs.com</em> to your buddy list. Send the command &#8220;<em>weather boston, ma</em>&#8220;, and you&#8217;ll get the current weather conditions, as well as a quick forecast for that area. Send it &#8220;<em>define ironic</em>&#8221; and you&#8217;ll receive a definition of the word. Type &#8220;<em>web Android</em>&#8221; and you&#8217;ll get a Wikipedia blurb of the term as well as a mobile link to full search engine results.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot3.png?323f2c" alt="google chat bot" width="427" height="514" /></p>
<p>There&#8217;s just a short list of commands available &#8211; score, weather, define and translate &#8211; plus you can type in math calculations and the guru will solve it for you.</p>
<h3>Get RSS Feeds With Push-Bot</h3>
<p>After hunting around for hours to find a Gtalk bot that would serve up RSS feeds via IM, I was really excited to discover that Push-Bot is still available. Most of the popular ones written about at sites like Lifehacker and Labnol are no longer active, so I was getting very disappointed before discovering <a href="http://push-bot.appspot.com/">Push-Bot</a>.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot5b.png?323f2c" alt="google chat bot" width="431" height="288" /></p>
<p>Using the service is ridiculously easy. Type <em>/subscribe</em> or<em> /unsubscribe</em> followed by the URL to add or remove a feed from your list. Use <em>/list-subscriptions</em> to see all of the feeds that you&#8217;ve subscribed to. Whenever one of your feeds updates, you&#8217;ll get a message in Gtalk from Push-Bot with the update and a link. This is my favorite Gtalk bot.</p>
<h3>Xpenser For Tracking Business Expenses</h3>
<p>At this point in my life, I have to track several areas of expenses. When I&#8217;m off to training for my day job, I need to keep track of all costs so that I can fill out an expense report. For my online business, I need to track all expenses for tax purposes. In either case, Xpenser gives me the convenience that I need to record those expenses right from my phone using Gtalk. This is my second favorite Gtalk bot.</p>
<p>First, you&#8217;ll need to sign up for an <a href="http://xpenser.com/">Xpenser</a> account where all of your entries will get logged.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot7.png?323f2c" alt="chatbots google talk " width="572" height="643" /></p>
<p>After that, add <em>xpenserbot@gmail.com</em> to your buddy list. All you have to do is send it the expense, the amount, and ending notes. The bot will fill out that record for you on your expense report in your Xpenser account.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot8.png?323f2c" alt="chatbots google talk " width="428" height="254" /></p>
<p>You can log in later to see all of the entries you&#8217;ve made while you were away from your computer.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot9.png?323f2c" alt="chatbots google talk " width="553" height="452" /></p>
<p>This is easily the fastest and most convenient way to log expenses right away before you forget. Firing off a one-line instant message is even easier than most of the mobile apps available today that will do expense tracking for you.</p>
<h3>Take Quick Notes With MayaFile</h3>
<p>If your memory is anything like mine, then the mayafile Gtalk bot will be a lifesaver for you too. Using it couldn&#8217;t be any easier. Just add <em>talk@mayafile.com</em> to your buddy list, and then use the command <em>&#8220;store &lt;note&gt;&#8221;</em> to store the message you want to remember later.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/chatbot10.png?323f2c" alt="google talk chat bots" width="429" height="468" /></p>
<p>Then, just type &#8220;<em>find</em>&#8221; to see all of your notes, or use &#8220;<em>find</em> <em>&lt;keyword&gt;</em>&#8221; to retrieve a specific note or notes using a keyword search. It&#8217;s like having a memory in your Gtalk client.</p>
<p>Have you ever used any of these IM bots? Do you know of any others that work well in Gtalk? Share your thoughts and insights in the comments section below!</p>
<p><small>Image Credit: <a href="http://image.shutterstock.com/display_pic_with_logo/331132/331132,1261328906,5/stock-photo-funny-robot-stay-with-laptop-43165897.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/google-talk-chatbots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create a Google Talk Chatroom with Partychapp</title>
		<link>http://www.makeuseof.com/tag/how-to-create-a-google-talk-chatroom-with-partychapp/</link>
		<comments>http://www.makeuseof.com/tag/how-to-create-a-google-talk-chatroom-with-partychapp/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 21:30:50 +0000</pubDate>
		<dc:creator>Jorge Sierra</dc:creator>
				<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[chat client]]></category>
		<category><![CDATA[google talk]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=30956</guid>
		<description><![CDATA[Google Talk is a great tool for instant communication, but one thing it lacks is chat rooms. Chat rooms are a great way for a group of friends or colleagues to chat together online, but unfortunately, Google Talk lacks support for chat rooms. Partychapp is a chat bot that takes care of this problem, and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/12/partychat-logo.png?323f2c" align=left style="margin-right:20px" vspace=5><a href="http://www.google.com/talk/">Google Talk</a> is a great tool for instant communication, but one thing it lacks is <strong>chat rooms</strong>. Chat rooms are a great way for a group of friends or colleagues to chat together online, but unfortunately, Google Talk lacks support for chat rooms. <a href="http://partychapp.appspot.com/index.jsp">Partychapp</a> is a chat bot that takes care of this problem, and creates a pseudo chatroom for you and your friends.</p>
<p>Partychapp is a bot that relays a conversation to all of those that are connected to it. In addition to relaying the chat to all of your friends, it has some fun features built into it as well. There are two ways to set up your own Google Talk chat room with Partychapp.</p>
<p><span id="more-30956"></span></p>
<h3>Set Up a Chatroom with Your Web Browser</h3>
<p>You can set up a chatroom directly from your browser if you <a href="https://www.google.com/accounts/ServiceLogin?service=ah&#038;continue=http://partychapp.appspot.com/_ah/login%3Fcontinue%3Dhttp://partychapp.appspot.com/index.jsp&#038;ltmpl=gm&#038;ahname=PartychApp&#038;sig=31721fdad64b439faec361aecfa27fa9">log into Partychapp with your Google Account</a>.  Once you log in with your account, you&#8217;ll be taken back to the Partychapp web page, but you&#8217;ll see a button that says <strong>Create a new room</strong>.  Click on the button, and you&#8217;ll get a simple form to create your new chat room.</p>
<p align="center"><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/12/form-to-create-partychapp-chatroom.png?323f2c" alt="google talk chat room"></p>
<p>The form is self-explanatory.  Just pick the name for your chat room, decide whether or not you want it to be public or private, enter the email address of anyone you would like to invite to the room, and click <strong>Create!</strong></p>
<p>When you sign into Google Talk, you will receive a chat request from the bot (it will be <em>yourchatroomname@partychapp.appspotchat.com</em>, where <em>yourchatroomname</em> is the name of your chat room).  Accept the chat request, and start chatting away with the bot.  As others accept the request from the bot, they will say everything you say to the bot.</p>
<h3>Set Up a Chatroom By Chatting With The Bot</h3>
<p>If you don&#8217;t feel like logging into Partychapp with your Google Account and creating the channel through the web form, you can set up a new chat room by just chatting directly with the bot.  Just add <em>yourchatroomname@partychapp.appspotchat.com</em> to your buddy list and start chatting with the bot.  Simple enough.  You can invite others by sending the command <strong>/invite yourfriendsemail@gmail.com</strong>.</p>
<p>Here&#8217;s what Partychapp looks like in action:</p>
<p align="center"><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/12/partychapp-screenshot.png?323f2c" alt="gtalk chat room"></p>
<h3>Fun with the Partychapp Bot</h3>
<p>Not only does Partychapp provide you with a chat bot, but the bot has many commands that provide some additional functionality. To see a list of all the commands, just type <strong>/help</strong> and you&#8217;ll get a list of commands.  The output from <strong>/help</strong> looks like this:</p>
<pre>List of commands:
* /leave - leave the room
* /list - show members of room
* /help - shows this
* /alias name - rename yourself to 'name'
* /score target - see the score of 'target' in plusplusbot
* /reasons target - see why target's score was changed
* /me - describe what you're doing in the third person
* /invite email1@foo.com, email2@bar.com ... - Invite a list of email addresses to this room
* /inviteonly - Set the room to invite-only
* /kick - Remove a user or invitation from this room
* /status - show what room you're in
* /summon <alias> - summons a person in the room by sending them an email.
* /undo - undo the pluspluses and minusminuses from your last message
* /debug [sequenceIds|clear] - if you don't know what this does, you probably shouldn't use it
* /stats - return system stats
* /graph-score <target1> <target2> ... - prints a link to a graph of the changes to up to three targets' scores.
* /snooze (20s|45m|1h|2d) - snooze for a specified amount of time in seconds, minutes, hours, or days.
* search and replace handler - use s/foo/bar to replace foo with bar
* plusplusbot: handles ++'s and &#8722;&#8722;'s
* Message echo@ to hear yourself talk
* Found a bug? Let us know: http://code.google.com/p/partychapp/issues/entry
* Follow us for announcements at http://twitter.com/partychat</pre>
<p>If you&#8217;re wondering what&#8217;s up with the slashes in the commands, it&#8217;s borrowed from the command syntax for <a href="http://en.wikipedia.org/wiki/Internet_Relay_Chat">IRC</a>.  IRC is an old-school Internet chat system that has been around since 1988.  Even today, IRC remains a popular form of instant communication online.</p>
<p>Probably the first command you&#8217;ll want to use is <strong>/alias</strong>.  Just type <strong>/alias YourAlias</strong> to change your name as others will see it.  You can use the <strong>/invite</strong> command I mentioned earlier to invite your buddies into the chatroom.  The <strong>/inviteonly</strong> command toggles the chat room from invite-only to public.</p>
<p>If you&#8217;re wondering what plusplusbot is, works very much the same as <a href="http://plusplusbot.com/">plusplusbot on Twitter</a>.  If you like something, you add a <strong>++</strong> after it and if you dislike something, you add a <strong>&#8722;&#8722;</strong> after it.  For example, if you type <strong>Partychapp++</strong>, the bot responds with <em>[YourAlias] Partychapp++ [woot! now at 1]</em>.  If you type <strong>Partychapp++</strong>, the bot responds with <em>[YourAlias] Partychapp&#8722;&#8722; [ouch! now at 0]</em>.</p>
<p>You can see the score for any word with the <strong>/score</strong> command.  In this case, /score Partychapp, you get <em>Partychapp: 0</em>.  You can also provide reasons along with your ++/&#8722;&#8722; commands.  For example, if you type <strong>[YourAlias] Partychapp++ because it&#8217;s cool</strong>, you get <em>[YourAlias] Partychapp++[woot! now at 1] because it&#8217;s cool</em>.  You can then list all the reasons for scores if you type <strong>/reasons Partychapp++</strong>.  In this case, the output looks like:</p>
<pre>Partychapp: 1
increment by youremail@gmail.com (Partychapp++)
decrement by youremail@gmail.com (Partychapp&#8722;&#8722;)
increment by youremail@gmail.com (Partychapp++ because it's cool)</pre>
<p>Another cool feature the bot has is search and replace.  To search and replace, you type <strong>s/foo/bar</strong> to replace foo with bar.  For instance, if you type on one line <strong>Partychatt</strong> and the next line you type <strong>s/tt/pp</strong> the bot responds <em>YourAlias meant Partychapp</em>.</p>
<p>What&#8217;s really cool (if you&#8217;re a geek like me) is that the search/replace uses <a href="http://www.regular-expressions.info/">regular expressions</a>.  Regular expressions, although cryptic and difficult to master, provide an extremely powerful mechanism for the programmatic processing and manipulation of text.  There are several unix utilities that make use of regular expressions, as well as many programming and scripting languages (Perl, PHP, Java, JavaScript, PCRE, Python, and Ruby to name a few).</p>
<p align="center"><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/12/partychapp-plusplusbot-and-search-replace.png?323f2c"></p>
<p>Partychapp is a great way to set up chat rooms with your friends.  If you want to try it out, I&#8217;ve set one up called <em>makeuseof</em>.  Just add <em>makeuseof@partychapp.appspotchat.com</em> to your Google Talk buddy list and start chatting away.  If I&#8217;m logged into Google Talk, you just might run into me there.</p>
<p><em><strong>Note</strong>: If you&#8217;re concerned about sharing your Gmail address with those that are already in the MakeUseOf chat room I&#8217;ve set up, <strong>do not use the bot</strong>.  Your Gmail address will be announced when you enter the bot.</em></p>
<p>So what do you think of Partychapp in lieu of Google Talk&#8217;s missing chat rooms?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-create-a-google-talk-chatroom-with-partychapp/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Search Google, Yahoo, Bing &amp; Twitter From Your IM Program</title>
		<link>http://www.makeuseof.com/tag/search-google-yahoo-bing-twitter-from-your-im-program/</link>
		<comments>http://www.makeuseof.com/tag/search-google-yahoo-bing-twitter-from-your-im-program/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 22:01:27 +0000</pubDate>
		<dc:creator>Mark O'Neill</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[search tips]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[twitter search]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=24442</guid>
		<description><![CDATA[Here&#8217;s an interesting tool for all of you who like to use your IM (chat) programs for everything.  Now you can use chat bots to search Google, Yahoo, Bing and Twitter &#8211; without having to go to the sites. Although this seems to work fine (and I used it all day today for searches), you [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/09/searchbotcorner.png?323f2c" alt="searchbotcorner" vspace="5" align="left" />Here&#8217;s an interesting tool for all of you who like to use your IM (chat) programs for everything.  Now you can <a href="http://www.techbangalore.com/sbot-perform-google-yahoo-bing-twitter-search-right-from-your-im/">use chat bots to search</a> Google, Yahoo, Bing and Twitter &#8211; without having to go to the sites.</p>
<p>Although this seems to work fine (and I used it all day today for searches), you seem to be limited to the first four search results only.  So this wouldn&#8217;t be something that you could use for <em>deep searching</em>.   But if you are looking for the correct URL of a website, the Wikipedia entry for something, basically anything that would &#8211; in theory &#8211; show up in the first few results, then you could use these bots instead.   No different from Google&#8217;s &#8220;<em>Are You Feeling Lucky?</em>&#8220;.</p>
<p>The bots are for Google Talk, Yahoo Messenger and Windows Live Messenger (so no AIM love it seems).   But a lot of people now have a Google account so the lack of AIM shouldn&#8217;t be a hindrance.</p>
<p>Just add the following chat bot depending on what service you use :</p>
<p><span id="more-24442"></span><br />
<strong>Google Talk</strong> &#8220;“ sbot@bot.im<br />
<strong>Yahoo Messenger</strong> &#8220;“ searchbot@ymail.com<br />
<strong>Windows Live Messenger</strong> &#8211; searchbot@live.com</p>
<p>As soon as you&#8217;ve added the account to your contact list, it should go online virtually right away and then you can start searching.</p>
<p>Searching is very straight forward.   If you want to search Twitter, just type <strong>t</strong> and then your search term.   So :</p>
<p><strong>t makeuseof.com</strong></p>
<p>and this will give you :</p>
<p style="text-align: center;"><img class="aligncenter" style="border:1px solid black" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/09/searchbot1.png?323f2c" alt="searchbot1" width="335" height="428" /></p>
<p>I think for Twitter, 4 results is not really enough.  You need probably at least 10-15 to give you a better overview. 4 is just too random.</p>
<p>For Google, type <strong>g</strong> followed by your search term.   For Bing, precede your search query with <strong>b</strong> and can you guess what it is for Yahoo?   Yep, you guessed it! <strong> y</strong>.   I know, it&#8217;s tough to follow but I&#8217;ll try and not get too far ahead, OK? <img src="http://main.makeuseoflimited.netdna-cdn.com/wp-includes/images/smilies/icon_wink.gif?323f2c" alt=';-)' class='wp-smiley' /> </p>
<p>So searching Google for MakeUseOf :</p>
<p style="text-align: center;"><img class="aligncenter" style="border:1px solid black" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/09/searchbot2.png?323f2c" alt="searchbot2" width="348" height="316" /></p>
<p>And you get pretty much the same results with Yahoo and Bing.</p>
<p>There&#8217;s not much more you can say about it &#8211; it&#8217;s just a no frills search function for your IM program which will give you the first four results for any given search query.  I am personally finding it very useful because if I am in a Firefox tab and I don&#8217;t want to break the writing flow by opening up a new tab for Google, I can just quickly open up my Pidgin program with a keyboard shortcut and quickly type a quick search into one of these bots.</p>
<p>I look up all my dictionary definitions using Google using the <em>define</em> search parameter and I thought for a moment that I could use this bot to make all my dictionary lookups without having to open the browser.   THAT would have been REALLY useful. But the <em>define</em> parameter doesn&#8217;t work with this bot.   Strange.  I hope the bot writers can fix this little glitch.</p>
<p>Make the <em>define</em> parameter work so you can do dictionary searches and increase the number of search results to between 10-15 and these bots will become even extremely more useful.   What do you think?  What else could they add to make these bots even better?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/search-google-yahoo-bing-twitter-from-your-im-program/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Ask &amp; Answer the Web&#8217;s Questions with Aardvark [Free Invites!]</title>
		<link>http://www.makeuseof.com/tag/ask-answer-the-webs-questions-with-aardvark/</link>
		<comments>http://www.makeuseof.com/tag/ask-answer-the-webs-questions-with-aardvark/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 13:00:15 +0000</pubDate>
		<dc:creator>David Pierce</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[Q&A websites]]></category>
		<category><![CDATA[tech support]]></category>
		<category><![CDATA[wisdom of crowds]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=14401</guid>
		<description><![CDATA[I&#8217;m a big fan of applications that tap into something I already use, and make it better, more useful, and more fun. In this case, I&#8217;ve discovered a new service that taps into your instant messenger, your social networks, and your areas of expertise all at once. It&#8217;s called Aardvark, and is a brand-new application [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/routing-diagram.png?323f2c" border="0" alt="" vspace="5" align="left" />I&#8217;m a big fan of applications that tap into something I already use, and make it better, more useful, and more fun. In this case, I&#8217;ve discovered a new service that taps into your <a href="http://www.makeuseof.com/tags/instant-messaging/">instant messenger</a>, your <a href="http://www.makeuseof.com/tags/social-networks/">social networks</a>, and your areas of expertise all at once.</p>
<p>It&#8217;s called <a href="http://vark.com/">Aardvark</a>, and is a brand-new application that just came out of the <a href="http://sxsw.com/interactive/" target="_blank">SXSW conference</a> this year.</p>
<p>The site was in private beta for a while, then was invite-only. Recently, it&#8217;s become publicly available and is now open for questions. It&#8217;s available to anyone who logs in through Facebook Connect (If you have a <a href="http://www.makeuseof.com/tags/facebook/">Facebook</a> account already, you&#8217;re all set. If not, Facebook accounts are free to everyone!). The Facebook implications of Aardvark are pretty impressive, but even logging in with Facebook is a great tool. If you haven&#8217;t had the privilege of owning a Facebook account, read on &#8212; we have <strong>exclusive invites</strong> and we&#8217;re giving them out to MakeUseOf readers!</p>
<p>Signing up for Aardvark is simple, as is getting it running &#8220;“ just add some information about where you are, the IM client and username of your choice (as long as it&#8217;s Google Talk, AIM, or Live Messenger &#8220;“ for now), and the types of questions you&#8217;d like to answer for other people. You can also use the service by email, but I&#8217;m going to focus on IM because it&#8217;s <em>so much cooler</em>.<br />
<span id="more-14401"></span></p>
<p>Once you&#8217;re set up, Aardvark lives in your IM window, and anytime you want to ask a question, just IM Aardvark with your question. Aardvark parses the question to figure out what it&#8217;s about &#8220;“ which it does a remarkably good job with &#8220;“ and then sends it to someone who it thinks is able to answer your question. You&#8217;ll get an answer back quickly, and be able to have a brief chat with the person who answered your question.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/varkprofile.png?323f2c" border="0" alt="" /></p>
<p>From the other side (the answerer), Aardvark is even more ingenious. When you sign up, you choose how often you want Aardvark to ask you questions; I chose &#8220;a couple of times a day.&#8221; When that time comes up, Aardvark sends you an IM saying &#8220;So-and-so has a question about &#8216;Some Topic You Can Answer.&#8217;&#8221;</p>
<p>You can respond one of a few ways &#8211; &#8220;Sure&#8221; to see and answer the question, &#8220;face&#8221; to pass it on to a <a href="http://www.facebook.com">Facebook</a> friend who might be able to answer, or &#8220;pass&#8221; to just make the question go away. If you pass, you can then mute a given topic to not get any more questions based on that topic.</p>
<p>The cool thing about Aardvark is that the questions are limitless. For instance, I&#8217;m listed as able to answer questions about New York City, where I live. I periodically get a question like, &#8220;Where should I go for dinner near Union Square?&#8221;, and I&#8217;m able to offer a recommendation. The questions I get rarely require factual answers, and that&#8217;s one of the fun things about Aardvark &#8220;“ it&#8217;s a great way to find out what other people are into that I might like as well.</p>
<p>One of Aardvark&#8217;s sample questions is, &#8220;Where&#8217;s the best place to buy running shoes in San Francisco?&#8221; It&#8217;s this kind of question, one that Google wouldn&#8217;t know but an actual local person might, that gives Aardvark awesome potential. Instead of services like <a href="http://www.makeuseof.com/tag/chacha-search-human-guides/">ChaCha</a>, which essentially just replaces a Google search when you can&#8217;t do one yourself, Aardvark goes beyond the capabilities, and sets you up with an expert in their field &#8220;“ even if that field is running shoes in San Francisco.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/03/varkchat.gif?323f2c" border="0" alt="varkchat" /></p>
<p>As you use Aardvark more, you get a sense of people who are able to answer certain questions for you &#8220;“ maybe you have a friend in Utah who you trust to answer such questions. You create these connections, and Aardvark uses them to narrow down your respondents even more, to try and get you the best possible answer. From the get-go though, Aardvark&#8217;s always done a good job of finding me the right person to answer my question.</p>
<p>Once you set it up, it&#8217;s incredibly simple to use. It&#8217;s unobtrusive, and lives right in your IM window; nothing to install or download, or remember to run. There was a lot of buzz around <a href="http://vark.com/">Aardvark</a> as SXSW got underway, and a few minutes using the app makes it easy to see why.</p>
<p>As a MakeUseOf reader, you can now sign up to Aardark without using your Facebook account. Just hit <a href="http://vark.com/s/_juc">this link</a> and sign up! It&#8217;s now open for questions, but there are only <strong>300 invites</strong> so grab one quickly!</p>
<p>Is there anything else like this out there? Can <a href="http://www.makeuseof.com/tags/twitter/">Twitter</a> do this better? What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/ask-answer-the-webs-questions-with-aardvark/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Translation For MSN: Auto Translates Messages While Chatting</title>
		<link>http://www.makeuseof.com/tag/how-to-auto-translate-foreign-languages-in-msn/</link>
		<comments>http://www.makeuseof.com/tag/how-to-auto-translate-foreign-languages-in-msn/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 21:00:18 +0000</pubDate>
		<dc:creator>Mahendra Palsule</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[msn]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=18501</guid>
		<description><![CDATA[If you&#8217;re marketing a product or a service, there&#8217;s no better way to connect with users than speaking their language. Also, in this age of web freelancing and social networking, we are likely to have non-English speaking contacts. As Saikat described before, you can try to learn the lingo using LiveMocha. You can also use [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/01introducingtbot.png?323f2c" align="left" alt="translation for msn" />If you&#8217;re marketing a product or a service, there&#8217;s no better way to connect with users than speaking their language. Also, in this age of web freelancing and social networking, we are likely to have non-English speaking contacts. As Saikat described before, you can try to learn the lingo using <a href="http://www.makeuseof.com/tag/livemocha-smell-the-coffee-and-learn-the-lingo/">LiveMocha</a>. You can also use any of the <a href="http://www.makeuseof.com/tag/online-machine-translation-services-is-there-a-good-one/">Top 4 Online Translation Services</a> that Maria reviewed, when you want to translate published content. But what about real-time translation?</p>
<p>At the outset, let me confess that machine translation usually sucks. You&#8217;re much better off with human translators any day. But what do you do for real-time chat? Till now, one had to use a different IM client like <a href="http://www.makeuseof.com/dir/meglobe-im-chat-online-14-languages/">MeGlobe</a>, to chat in a foreign language. Now, you can use <a href="http://blogs.msdn.com/translation/archive/2008/09/02/windows-live-messenger-translation-bot-now-available.aspx">Microsoft&#8217;s TBot</a>. <strong>No installation required</strong>!</p>
<p>Microsoft has an impressive array of <a href="http://www.microsofttranslator.com/Tools/">translation tools</a> for users, webmasters, and developers, like <a href="http://www.makeuseof.com/dir/translator-online-translator-microsoft/">Live Translator</a>, but the release of Windows Live Messenger Translation bot (TBot) last year is still not widely known. Using TBot, you can chat with others in up to 13 foreign languages, or even chat with TBot itself to practice learning a foreign language. What&#8217;s more, you do not actually need to use Windows Live Messenger. You can use any <a href="http://www.makeuseof.com/tags/instant-messaging/">IM client you like</a>, as long as it supports the <a href="http://www.makeuseof.com/tags/msn/">MSN</a> protocol. Let&#8217;s see how you can use TBot in 3 easy steps to chat in a foreign language.<br />
<span id="more-18501"></span></p>
<h3>Step #1: Add TBot to your Contacts</h3>
<p>To get started, you will first need to add TBot to your contact list.</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Add Contact Menu" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/02aaddcontact-menu.png?323f2c" border="0" alt="Add Contact Menu" width="442" height="286" /></p>
<p>From the Live Messenger toolbar, select the <em>&#8220;˜Add a contact&#8217;</em> option as shown above, and add <em>&#8220;˜mtbot@hotmail.com&#8217;</em> as the contact address.</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Add TBot Contact" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/addtbotcontact.png?323f2c" border="0" alt="Add TBot Contact" width="498" height="437" /></p>
<p>Click <em>&#8220;˜Send Invitation&#8217;</em> on the next screen to add TBot to your contact list. There is no need for any personal message. You should now see &#8220;˜<em>Translator&#8217;</em> as one of your available contacts as shown below:</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Translator In Contacts" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/02btranslatorincontacts.png?323f2c" border="0" alt="Translator In Contacts" width="292" height="380" /></p>
<p>That&#8217;s it. You are all set!</p>
<h3>Step #2: Invite TBot to a Conversation</h3>
<p>When you want TBot&#8217;s translation services to help in a conversation, click the &#8220;˜<em>Invite&#8217;</em> menu in the conversation window.</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Invite Menu" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/03invitemenu.png?323f2c" border="0" alt="Invite Menu" width="576" height="199" /></p>
<p>From the contact list that appears, select <em>&#8220;˜Translator (Available, Agent)&#8217;</em>.</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Invite TBot" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/04invitetbot.png?323f2c" border="0" alt="Invite TBot" width="450" height="364" /></p>
<p>TBot enters the conversation and asks you to select the target language.</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Invited TBot" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/05invitedtbot.png?323f2c" border="0" alt="Invited TBot" width="510" height="344" /></p>
<p>I chose Russian as an example, and typed &#8220;˜<em>12&#8242;</em>:</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Select Target Language" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/06selectedtargetlanguagemessenger.png?323f2c" border="0" alt="Select Target Language" width="451" height="111" /></p>
<p>To check out the list of TBot&#8217;s commands, you can enter <em>&#8220;˜TBot ?&#8217;</em>:</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="TBot Help" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/08tbothelp.png?323f2c" border="0" alt="TBot Help" width="360" height="236" /></p>
<h3>Step #3: Chat in a Foreign Language</h3>
<p>For the sake of this post, to imitate two people chatting, I used two different IM clients &#8211; Windows Live Messenger and <a href="http://www.makeuseof.com/tags/pidgin/">Pidgin</a>. Let us suppose I&#8217;m <em>English Dude</em> with Live Messenger, chatting with <em>Russian Gal</em> who is averse to installing any Microsoft software and thus uses Pidgin on Linux. <em>Russian Gal</em> uses the <em>&#8220;˜TBot change&#8217;</em> command to select Russian as her <em>Source Language:</em></p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Select Target Language" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/07selectedtargetrussian-in-pidgin.png?323f2c" border="0" alt="Select Target Language" width="464" height="527" /></p>
<p>With TBot all set to translate at both ends, both of them now chat. This is what <em>English Dude</em> sees in his Live Messenger:</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="TBot in Live Messenger" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/10mahendra-with-russiangal-in-livemessenger.png?323f2c" border="0" alt="TBot in Live Messenger" width="412" height="334" /></p>
<p>While <em>Russian Gal</em> sees the following in her Pidgin client:</p>
<p align="center"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="TBot in Pidgin" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/06/11mahendra-with-russiangal-in-pidgin.png?323f2c" border="0" alt="TBot in Pidgin" width="502" height="464" /></p>
<p>As you can see, <em>English Dude</em> and <em>Russian Gal</em> are having an engaging conversation with the help of real-time translation by TBot.</p>
<p>TBot has his <a href="http://wltbot.spaces.live.com/default.aspx">own profile</a> in Windows Live Spaces, where you will also find a mini-FAQ. If you&#8217;re traveling in a foreign country, add TBot to Windows Live Messenger on your Windows Mobile device to get a free Translation Assistant with you!</p>
<p>Have you tried any other real-time translation software? How was your experience with TBot? Do let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-auto-translate-foreign-languages-in-msn/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Turn Your IM Program Into A Productivity Tool Using Imified</title>
		<link>http://www.makeuseof.com/tag/turn-your-im-program-into-a-productivity-tool-using-imified/</link>
		<comments>http://www.makeuseof.com/tag/turn-your-im-program-into-a-productivity-tool-using-imified/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 22:01:25 +0000</pubDate>
		<dc:creator>Mark O'Neill</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[delicious]]></category>
		<category><![CDATA[google talk]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[msn]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=6178</guid>
		<description><![CDATA[Most people would associate an Instant Messaging (IM) program with chatting idly to friends all day long but in actual fact a lot of companies have been developing chat bots which enable you to use your IM program to make you more productive. The best one (in my opinion) is Imified. I use it on a daily [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/10/imifiedlogomain.jpg?323f2c" border="0" alt="" align="left" />Most people would associate an Instant Messaging (IM) program with chatting idly to friends all day long but in actual fact a lot of companies have been developing chat bots which enable you to use your IM program to make you more productive. The best one (in my opinion) is <a href="http://www.imified.com/bot.htm">Imified</a>. I use it on a daily basis and I can&#8217;t say enough good things about it. I&#8217;d like to show you today some of the things it can do to help you.</p>
<p>Imified basically allows you to connect with online services using your chat program. Whether you are a user of Google Talk, AIM, Windows Live or Jabber, information from these online services is securely passed back and forth, allowing you to do everything from your desktop. This can be anything from updating your Twitter stream to checking an IP address. One thing is for certain. Imified is going to be the most valuable friend on your IM contact list.</p>
<p>So the first step to setting up Imified is to get the bot onto your contact list. This is extremely simple. All you have to do is pick your chat service, take the associated email address and add it to your contact list :</p>
<ul>
<strong>AIM</strong>: IMified</p>
<p><strong>MSN (Windows Live Messenger) </strong>: imified@imified.com</p>
<p><strong>Google Talk</strong>: imified@imified.com</p>
<p><strong>Jabber</strong>: imified@imified.com
</ul>
<p>Once it is on your contact list, send the Imified bot a message to wake it up. It should then be approved and brought online either right away or after a short period.</p>
<p>The first thing you will get is an activation link to the Imified website and a very small menu, one of which will say &#8220;My Account&#8221;. Ignore that for the moment. First, click on the activation link as this will activate your account and get you into the Imified website.</p>
<p>Once you are in, you will see 3 pages of widgets which you can add to your IM client :</p>
<p style="text-align: center;"><img class="size-full wp-image-6179 aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/10/imified1.jpg?323f2c" alt="" /></p>
<p>All you need to do is just go through the lists, choose the ones you want and add them to your IM client.</p>
<p>How do you add them? It&#8217;s very easy. See those green plus signs in the top left hand corner of each widget? Just click on the green plus sign for the widget you want to install. That opens it up. You&#8217;ll be asked to give it a preferred name and depending on the app, you may also be asked for a username and password. Then click &#8220;enter&#8221; and suddenly your IM program will update!</p>
<p>It&#8217;s a bit hard to explain here. It&#8217;s one of those things where it&#8217;s easier if you just do it.</p>
<p>OK now this is basically what my Imified menu looks like on Google Talk. I&#8217;m sure I&#8217;ll add more later but right now, I&#8217;ve confined myself to these five apps.</p>
<p style="text-align: center;"><img class="size-full wp-image-6180 aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/10/imifiedmenu.jpg?323f2c" alt="" /></p>
<p>If at any time I want to access my Imified account, all I have to do is hit &#8220;6&#8243; and Imified will create an unique URL for me to get into the website.</p>
<p>Let&#8217;s take a look at some of the things on my menu to demonstrate how useful Imified is :</p>
<h2>NetLookup :</h2>
<p>By using certain commands, you can find out all kinds of information about a domain.</p>
<ul>
<strong>ping ********.com</strong> &#8211; Pings the given hostname five times and outputs  results.<br />
<strong>traceroute ********.com</strong> &#8211; Outputs a traceroute (orig. in Munich, Germany) to the given domain.<br />
<strong>alexa *******.com</strong> &#8211; Prints <a href="http://www.alexa.com">Alexa</a> info about the given domain name.<br />
<strong>whois ********.com</strong> &#8211; Looks up information about  the domain name in the <a href="http://www.whois.com">WHOIS</a> database.<br />
<strong>enum +1-604-958-1212</strong> &#8211; Looks up ENUM  entries for a phone number at multiple ENUM registries.</ul>
<p style="text-align: center;"><img class="size-full wp-image-6267 aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/10/imified_ping.jpg?323f2c" alt="" /></p>
<h2>Post to Delicious</h2>
<p>We all know about <a href="http://www.delicious.com">Delicious</a>, the bookmarking site. Well, using Imified, you can send bookmarks straight to Delicious. You can even add descriptions and tags.   There&#8217;s a slight delay before the bookmark gets added to your profile though so don&#8217;t expect an instantaneous addition. But it DOES work!</p>
<p style="text-align: center;"><img class="size-full wp-image-6265 aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/10/imified_post2delicious.jpg?323f2c" alt="" /></p>
<h2>Post to Twitter / Jaiku</h2>
<p>I&#8217;ll lump these two together since <a href="http://www.twitter.com">Twitter</a> and <a href="http://www.jaiku.com">Jaiku</a> are essentially both microblogging services and do the same thing.</p>
<p style="text-align: center;"><img class="size-full wp-image-6266 aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/10/imified_updatetwitter.jpg?323f2c" alt="" /></p>
<p>No delay with this one! My Twitter feed is updated instantly!</p>
<p>There are LOTS of widgets you can add to your Imified bot which can help you do things faster.   Which ones do you like?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/turn-your-im-program-into-a-productivity-tool-using-imified/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>10 Bots to Help You Get the Most From Twitter</title>
		<link>http://www.makeuseof.com/tag/10-bots-to-help-you-get-the-most-from-twitter/</link>
		<comments>http://www.makeuseof.com/tag/10-bots-to-help-you-get-the-most-from-twitter/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 18:04:20 +0000</pubDate>
		<dc:creator>Kyle Judkins</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[google calendar]]></category>
		<category><![CDATA[timer]]></category>
		<category><![CDATA[to-do]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=4333</guid>
		<description><![CDATA[Twitter is a great tool that helps you keep in touch and meet a wide variety of new people. Since its release there have been people who think Twitter is worth your time and some who think it&#8217;s a waste of time. I&#8217;m one of the ones that have found Twitter to be extremely useful [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/twitter-logo-thumb.png?323f2c" border="0" alt="twitter logo" width="185" height="54" align="left" /> <a href="http://twitter.com/">Twitter</a> is a great tool that helps you keep in touch and meet a wide variety of new people.  Since its release there have been people who think Twitter is worth your time and some who think it&#8217;s a waste of time.</p>
<p>I&#8217;m one of the ones that have found Twitter to be extremely useful but if you haven&#8217;t found that, here are ten Twitter bots guaranteed to help you change your mind :</p>
<h2><a href="https://twitter.com/msnbc_breaking" target="_blank">MSNBC Breaking</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/msnbc-logo-thumb.png?323f2c" border="0" alt="msnbc logo" width="75" height="74" align="left" /> This bot will provide you with the most current news and happenings around the world.  There are a few other news bots out there like <a href="http://twitter.com/cnnbrk" target="_blank">CNN Breaking News</a> and <a href="https://twitter.com/BreakingNewsOn" target="_blank">BreakingNewsOn</a>, but those bots just provide you with the headline and no link. I don&#8217;t find a lot of value out of them if I can&#8217;t go directly to the story.  That is why I think the MSNBC news bot is the best.</p>
<h2><a href="http://twitter.com/espn" target="_blank">ESPN Headlines</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/espn-logo-thumb.png?323f2c" border="0" alt="espn logo" width="75" height="70" align="left" /> The ESPN Headlines bot is much like the breaking news bot above, but it is completely sports driven.  As a sports fan, I like to be updated throughout the day.  This bot also gives you the courtesy of providing a link to the story.  Before this bot was added to my Twitter, I would check ESPN.com repeatedly throughout the day in order to stay current with any sports updates.</p>
<h2><a href="http://twitter.com/woot" target="_blank">Woot</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/woot-logo-thumb.png?323f2c" border="0" alt="woot logo" width="75" height="76" align="left" /> If you are unfamiliar with <a href="http://www.woot.com/" target="_blank">Woot!</a>, it is time that you discovered this great site.  Woot! is an online shopping website that sells mostly electronics, but what makes it different is that they have the Woot of the Day every day.  There is always a great deal on something different everyday.  If you keep up with it, you can really find some nice things on the cheap.</p>
<h2><a href="http://twitter.com/forecast" target="_blank">Weather Forecast</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/weather-logo-thumb.png?323f2c" border="0" alt="weather logo" width="75" height="76" align="left" /> This bot does exactly what you think it does.</p>
<p>Just direct message it with your location, and it will return you the weather forecast you were looking for.</p>
<h2><a href="http://twitter.com/s" target="_blank">Sandy</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/sandy-logo-thumb.png?323f2c" border="0" alt="sandy logo" width="75" height="74" align="left" /> Have you ever wanted a personal assistant that would keep you updated with all of your important events? Well, you can have that now with Sandy.  But if you wanted a real assistant, you are going to have to wait or shell out the cash.  All you have to do is direct message Sandy the reminders you want later, and she will make sure you hear about it at the right time.</p>
<h2><a href="http://twitter.com/stock" target="_blank">Stock Quotes</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/stock-logo-thumb.png?323f2c" border="0" alt="stock logo" width="75" height="74" align="left" /> If you compulsively check your stock quotes like I check my Google Analytics, you are going to need this easy to use stock bot.</p>
<p>Just direct message this bot with the stock symbol to get the latest quote for that company.</p>
<h2><a href="http://twitter.com/timer" target="_blank">Timer</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/timer-logo-thumb.png?323f2c" border="0" alt="timer logo" width="75" height="79" align="left" /> I lose track of time frequently when I&#8217;m online or blogging away.</p>
<p>This timer bot lets you set an alarm clock in Twitter to make sure you stay on top your regular and get those other things like paying bills, laundry or cleaning done as well. Pretty cool.</p>
<h2><a href="http://twitter.com/gcal/" target="_blank">Twitter GCal</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/gcal-logo-thumb.png?323f2c" border="0" alt="gcal logo" width="75" height="75" align="left" /> Plans can change quickly or come up quickly.  Twitter GCal allows you to add events to your Google Calendar by just direct messaging this bot.</p>
<p>Some instructions are needed to fully explain how to use this bot, but they can be found at <a href="http://twittercal.com/" target="_blank">TwitterCal</a>.</p>
<h2><a href="http://twitter.com/tipr" target="_blank">Tipr</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/tipr-logo-thumb.png?323f2c" border="0" alt="tipr logo" width="75" height="76" align="left" /> Tipr will help out all of the math challenged folks out there (myself included). </p>
<p>It calculates the tip amount for your bill, so you can make sure that you leave the right amount. </p>
<h2><a href="http://twitter.com/rtm" target="_blank">Remember The Milk</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/08/rtm-logo-thumb.png?323f2c" border="0" alt="rtm logo" width="75" height="73" align="left" /> Remember the Milk is a great online to do list and task manager.</p>
<p>You can update your tasks or to do lists or even get reminders sent straight from this Twitter bot.</p>
<p><H2>MakeUseOf</h2>
<p>Finally, make sure to subscribe and <a href="http://twitter.com/MakeUseOf">follow MakeUseOf updates</a> on Twitter.</p>
<p>This is a great list, but in no way is it a complete list of all the bots on Twitter.  Let me know all of the bots everyone else uses in the comments!</p>
<p><em>(By) Kyle Judkins is a 24 year old marketer and part-time tech blogger.  He is the author of <a href="http://www.lostintechnology.com/">LostInTechnology</a> where he talks about some basic technology tips and tricks that everyone can use.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/10-bots-to-help-you-get-the-most-from-twitter/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Smarterchild as Your Virtual Personal Assistant</title>
		<link>http://www.makeuseof.com/tag/smarterchild-as-your-virtual-personal-assistant/</link>
		<comments>http://www.makeuseof.com/tag/smarterchild-as-your-virtual-personal-assistant/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 02:33:37 +0000</pubDate>
		<dc:creator>Karl L. Gechlik</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[AIM]]></category>
		<category><![CDATA[assistant]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[chat bots]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[office worker]]></category>
		<category><![CDATA[Q&A websites]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/tag/smarterchild-as-your-virtual-personal-assistant/</guid>
		<description><![CDATA[By Karl L. Gechlik I have made a new friend &#8211; well actually I am becoming reacquainted with an old friend. Have you heard of Smarterchild? Smarterchild is an AimBot, an automated assistant that can be added to your instant messenger contacts. It can help you remember things, lookup headlines, find out about local movies, [...]]]></description>
			<content:encoded><![CDATA[<div align="right">By <a href="http://www.asktheadmin.com/">Karl L. Gechlik</a></div>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/12/aimbot-smart-child.jpg?323f2c" align="left"> I have made a new friend &#8211; well actually I am becoming reacquainted with an old friend. Have you heard of <a href="http://smarterchild.colloquis.com/index.pl">Smarterchild</a>? Smarterchild is an <a href="http://gallery.aim.com/browse/bots">AimBot</a>, an automated assistant that can be added to your instant messenger contacts. It can help you remember things, lookup headlines, find out about local movies, and so on. Now that AIM has been integrated into Gmail this might be a great combination for making SmarterChild into your virtual Personal Assistant. </p>
<div align ="left"><img border="0" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2007/12/smarterchild-aimbot.jpg?323f2c" alt="Aimbot" /></div>
<p>Smarterchild can not only shoot the breeze with you it can grab data for you, remind you to do things and be a smart ass. So from anywhere you are connected via AIM you can add SmarterChild to your buddy list and but him to work. The first time you connect to SmarterChild he will ask you a few questions and then you are ready to roll. Math, Definitions and a news aggregator? Oh and so much more. Sure you could use Google or Yahoo for searching but this is so much more fun&#8230; Check out our conversations with SmarterChild.</p>
<ul>
<small></p>
<p>KarlGeeZBT (6:59:30 AM): Hello There Again SmarterChild<br />
SmarterChild (6:59:31 AM): Hi again, Admin!Let&#8217;s talk!</p>
<p>KarlGeeZBT (7:00:42 AM): basic help<br />
KarlGeeZBT (7:00:59 PM): order me a pizza<br />
SmarterChild (7:01:00 PM): I know about pizza! It&#8217;s a food!>>> If you need to know the capital of South Dakota for some crazy reason &#8211; ask me.</p>
<p>KarlGeeZBT (7:01:19 PM): hmm how about get me a beer<br />
SmarterChild (7:01:19 PM): I don&#8217;t know.<br />
KarlGeeZBT (7:02:21 PM): what do you mean you dont know son<br />
SmarterChild (7:02:21 PM): What do I mean I don&#8217;t know son? I&#8217;m not sure.<br />
KarlGeeZBT (7:02:29 PM): a wise guy eh<br />
SmarterChild (7:02:31 PM): 1 wise guy what?<br />
KarlGeeZBT (7:02:44 PM): never mimd<br />
SmarterChild (7:02:48 PM): No prob.>>> I bet you don&#8217;t know the capital of Suriname. Ask me.</p>
<p>KarlGeeZBT (7:11:32 PM): I love AskTheAdmin.com<br />
SmarterChild (7:11:37 PM): I know about love. It&#8217;s hard to describe what love is.>>> What are your friends thinking? Type pollmaker and crunch the numbers.</p>
<p>KarlGeeZBT (7:13:04 PM): Hello<br />
SmarterChild (7:13:05 PM): Nice to see you again, Admin. What would you like to do?<br />
KarlGeeZBT (7:13:12 PM): Set reminder<br />
SmarterChild (7:13:13 PM): That right?<br />
KarlGeeZBT (7:13:25 PM): help<br />
SmarterChild (7:13:26 PM): OK, please tell me what you&#8217;re trying to do.<br />
KarlGeeZBT (7:13:32 PM): reminder<br />
SmarterChild (7:13:32 PM): What would you like me to remind you about?<br />
KarlGeeZBT (7:13:38 PM): Call the wife<br />
SmarterChild (7:13:39 PM): When would you like me to remind you about call the wife? (Type a time, date and time, number of minutes or number of hours.)<br />
KarlGeeZBT (7:13:50 PM): 7:14pm 12/22/2007<br />
SmarterChild (7:13:53 PM): No problem. I&#8217;ll remind you about call the wife at 7:14:00 pm ET.<br />
KarlGeeZBT (7:13:59 PM): awesome</p>
<p>SmarterChild (7:14:00 PM): -)>>> Ask me for info such as news, sports and movies!<br />
KarlGeeZBT (7:14:03 PM): movies<br />
SmarterChild (7:14:03 PM): Movies playing in or near Brooklyn, NY (11235) on Saturday, December 22nd:<br />
1 National Treasure: Book of Secrets [PG]<br />
2 I Am Legend [PG13]<br />
3 Alvin and the Chipmunks [PG]<br />
4 The Golden Compass [PG13]<br />
5 Walk Hard: The Dewey Cox Story [R]<br />
6 Charlie Wilson&#8217;s War [R]</p>
<p>Type more for the next set of results.<br />
>>> Type nhl standings and I&#8217;ll show you who&#8217;s hot in hockey.</p>
<p>SmarterChild (7:14:09 PM): Hey, don&#8217;t forget about call the wife.</p>
<p>KarlGeeZBT (7:14:12 PM): nhl standings<br />
SmarterChild (7:14:12 PM): Select the standings you&#8217;d like to see:<br />
1 Atlantic Division<br />
2 Northeast Division<br />
3 Southeast Division<br />
4 Central Division<br />
5 Northwest Division<br />
6 Pacific Division<br />
7 Eastern Conference<br />
8 Western Conference<br />
9 Full NHL Standings</p>
<p>KarlGeeZBT (7:14:29 PM): weather<br />
SmarterChild (7:14:30 PM): Current weather conditions for Brooklyn, NY:<br />
Currently: 40 F<br />
Condition: Overcast<br />
Wind Chill: 33 F<br />
Dewpoint: 33<br />
Humidity: 77 %<br />
Visibility: 10 mi<br />
Wind: ENE/10 mph</p>
<p>To get the forecast for Brooklyn, NY, just type forecast.</p>
<p>KarlGeeZBT (7:14:45 PM): find me a pizza restauraunt<br />
SmarterChild (7:14:50 PM): I&#8217;m sorry, I couldn&#8217;t find any Web search results for &#8220;me a pizza restauraunt.&#8221;>>> Type poll archive to take polls you missed or view updated results.<br />
KarlGeeZBT (7:15:03 PM): get me a pizza<br />
SmarterChild (7:15:05 PM): I know about pizza! It&#8217;s a food!</p>
<p>KarlGeeZBT (7:15:37 PM): what is 137 times 379<br />
SmarterChild (7:15:41 PM): 137 * 379 = 51,923>>> Type word scrambles and we can really mix it up.<br />
KarlGeeZBT (7:16:02 PM): what is pi<br />
SmarterChild (7:16:03 PM): Which of the following do you mean?<br />
1 Look up &#8220;pi&#8221; in the encyclopedia<br />
2 Look up &#8220;pi&#8221; in the dictionary<br />
KarlGeeZBT (7:16:08 PM): pi =<br />
SmarterChild (7:16:09 PM): Who&#8217;s Pi?<br />
KarlGeeZBT (7:16:20 PM): how many ounces in a pound<br />
SmarterChild (7:16:22 PM): One pound is 16 ounces. (1 lb = 16 oz)>>> Remember, you can always see what my newest features are by typing what&#8217;s new.<br />
KarlGeeZBT (7:16:28 PM): how many grams in a pound<br />
SmarterChild (7:16:28 PM): One pound is 453.59237 grams. (1 lb = 453.59237 g)>>> Type calculator help to see a list of sample calculations I can perform.</p>
<p>KarlGeeZBT (7:16:51 PM): go get me a pizza<br />
SmarterChild (7:16:51 PM): I&#8217;ll do nothing of the sort.<br />
KarlGeeZBT (7:17:00 PM): what good are you<br />
SmarterChild (7:17:01 PM): That&#8217;s crazy. I don&#8217;t know, Admin&#8221;¦>>> Wanna change my font and colors? Type colors now!</p>
<p>KarlGeeZBT (7:17:29 PM): basic help<br />
SmarterChild (7:17:31 PM): OK. Basically, you make requests and I answer. Try it! Here are examples of basic requests you can make:<br />
1 What is my horoscope for today?<br />
2 Leave a message for (username).<br />
3 What movies are playing today?<br />
4 I want the top headlines.<br />
5 What is the definition of &#8220;romance&#8221;?</p>
<p>Next time you want to see this, just type basic help.<br />
Type more for more basic help. To see shortcuts you can use, type shortcuts.</p>
<p>KarlGeeZBT (7:17:38 PM): 4<br />
SmarterChild (7:17:39 PM): Headline news provided by Reuters, © 2007.<br />
1 Clinton targets women voters, rivals bicker (12/22/07 06:17 PM)<br />
2 Turkish planes bomb Kurds in northern Iraq (12/22/07 04:21 PM)</p>
<p>Type more to see the next set of stories.>>> I&#8217;m a hoops fan. Type nba to see what I know.</p>
<p>KarlGeeZBT (7:18:36 PM): what is the capital of new york<br />
SmarterChild (7:18:41 PM): The capital of New York is Albany. Do you want more information about New York?<br />
KarlGeeZBT (7:20:03 PM): nah son I&#8217;m out<br />
SmarterChild (7:20:04 PM): OK.<br />
</small>
</ul>
<p>Are you ready to start? Add &#8220;SmarterChild&#8221; to your buddy list and give him a friendly Hey &#8211; how you doin?.</p>
<p>So as you can see this free service works and can give you a chuckle while you use it. But just like my real personal assistant &#8211; they have a smart mouth and talk back. </p>
<p>Do you use Aim Bots? What are you favorite? Do you use other similar services? Let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/smarterchild-as-your-virtual-personal-assistant/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/35 queries in 0.046 seconds using apc
Object Caching 726/802 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 23:27:08 -->
