<?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>Misterdom's World &#187; Uncategorized</title>
	<atom:link href="http://www.guinard.org/~misterdom/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.guinard.org/~misterdom</link>
	<description>My Computing Logbook</description>
	<lastBuildDate>Fri, 25 Jun 2010 14:12:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Removing Latex Tags in a Word Document</title>
		<link>http://www.guinard.org/~misterdom/2010/06/05/removing-latex-tags-in-a-word-document/</link>
		<comments>http://www.guinard.org/~misterdom/2010/06/05/removing-latex-tags-in-a-word-document/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 14:05:41 +0000</pubDate>
		<dc:creator>misterdom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.guinard.org/~misterdom/?p=143</guid>
		<description><![CDATA[We can use the regexp feature of the find/replace tool in Word.
Search for:
\\code\{(*)\}
Where:

\ is the escape char (thus the \\ for detecting a Latex tag)
* means &#8220;everything&#8221;
( ) creates a logical entity that you can re-use in the replace field.

and replace by:
\1
which refers to the entity we created by using ().

More info on this doc
]]></description>
			<content:encoded><![CDATA[<p>We can use the regexp feature of the find/replace tool in Word.</p>
<p>Search for:</p>
<blockquote><p><code>\\code\{(*)\}</code></p></blockquote>
<p>Where:</p>
<ul>
<li>\ is the escape char (thus the \\ for detecting a Latex tag)</li>
<li>* means &#8220;everything&#8221;</li>
<li>( ) creates a logical entity that you can re-use in the replace field.
</ul>
<p>and replace by:</p>
<blockquote><p><code>\1</code></p></blockquote>
<p>which refers to the entity we created by using ().</p>
<p><a href="http://word.mvps.org/FAQs/General/UsingWildcards.htm"><br />
More info on this doc</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.guinard.org/~misterdom/2010/06/05/removing-latex-tags-in-a-word-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to the Ploggs using Bluetooth on Linux</title>
		<link>http://www.guinard.org/~misterdom/2009/03/18/connecting-to-the-ploggs-using-bt/</link>
		<comments>http://www.guinard.org/~misterdom/2009/03/18/connecting-to-the-ploggs-using-bt/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 18:32:50 +0000</pubDate>
		<dc:creator>misterdom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.guinard.org/~misterdom/?p=73</guid>
		<description><![CDATA[1) Get the BlueZ stack and RFComm and minicom for your Linux distro.
2) Do hcitool scan to scan for Bluetooth devices and get the Bluetooth address of the one you want to connect to, e.g.: 00:80:98:E7:CA:16
3) Do rfcomm connect 0 00:80:98:E7:CA:16 1 which basically creates virtual serial port for your Bluetooth device. The first 0 [...]]]></description>
			<content:encoded><![CDATA[<p>1) Get the BlueZ stack and RFComm and minicom for your Linux distro.</p>
<p>2) Do <code>hcitool scan</code> to scan for Bluetooth devices and get the Bluetooth address of the one you want to connect to, e.g.: 00:80:98:E7:CA:16</p>
<p>3) Do <code>rfcomm connect 0 00:80:98:E7:CA:16 1</code> which basically creates virtual serial port for your Bluetooth device. The first 0 means that you want to bind your Bluetooth device (e.g. Plogg) to the <code>/dev/rfcomm0</code> virtual port. The second argument is the BT address of your device, the third is the BT channel to be used.</p>
<p>4) Connect to the Plogg by launching <code>minicom -s</code>, go to the Serial Port Setup menu item and change the entry Serial Device to point to <code>/dev/rfcomm0</code>, i.e. the virtual port for your Plogg.</p>
<p>5) You can now browse the Plogg&#8217;s functionality in command line. Note that this tutorial should work for other BT devices as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guinard.org/~misterdom/2009/03/18/connecting-to-the-ploggs-using-bt/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
