<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Revolver's Notepad</title>
	<atom:link href="http://cosinepi.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cosinepi.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 06 Dec 2011 00:17:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cosinepi.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Revolver's Notepad</title>
		<link>http://cosinepi.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cosinepi.wordpress.com/osd.xml" title="The Revolver&#039;s Notepad" />
	<atom:link rel='hub' href='http://cosinepi.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Using Uppaal for trace interpretation</title>
		<link>http://cosinepi.wordpress.com/2011/10/26/using-uppaal-for-trace-interpretation/</link>
		<comments>http://cosinepi.wordpress.com/2011/10/26/using-uppaal-for-trace-interpretation/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 00:04:00 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[MacOSX]]></category>
		<category><![CDATA[Model Checking]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uppaal]]></category>

		<guid isPermaLink="false">http://cosinepi.wordpress.com/?p=206</guid>
		<description><![CDATA[Uppaal is a model checking tool for timed automata. When a counterexample is generated by Uppaal, or when a random / manual trace is present in the Simulator, it is able to save the trace in Uppaal&#8217;s .xtr format. However, this format is human-unreadable. This article records the steps to compile and use the tracer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=206&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.uppaal.com" target="_blank">Uppaal</a> is a model checking tool for timed automata. When a counterexample is generated by Uppaal, or when a random / manual trace is present in the Simulator, it is able to save the trace in Uppaal&#8217;s <code>.xtr</code> format. However, this format is human-unreadable. This article records the steps to compile and use the tracer utility for showing Uppaal traces outside of the GUI. Assuming we are working under the Ubuntu 11.04 environment.</p>
<h3>Installing Necessary Packages</h3>
<p>The <code>libboost-dev</code> and <code>libxml2-dev</code> packages are needed by the <a href="http://people.cs.aau.dk/~behrmann/utap/" target="_blank">Uppaal Timed Automata Parser Library</a>.<br />
<pre class="brush: bash;">
sudo apt-get install libboost-dev libxml2-dev
</pre></p>
<h3>Compiling the UTAP library</h3>
<p>The installation is a simple process as usual.<br />
<pre class="brush: bash;">
./configure
make
make check
sudo make install
</pre></p>
<p>For some reasons, however, there are errors when compiling the code. Essentially there are three groups of things to fix. </p>
<ol>
<li><code>#include</code>s in the source sometimes include <code>string</code>, which should be modified to <code>string.h</code> for some functions like <code>strcmp</code>, and <code>strncpy</code> to work.</li>
<li>There are missing <code>#include</code>s so that certain functions do not work. E.g., the <code>for_each</code> function is in the <code>algorithm</code> package of Boost but not properly included.</li>
<li>Some type definitions are not found, such as <code>int32_t</code>. Changing this to <code>int</code> works fine for the moment.
</ol>
<p>Once these are fixed, the installation process went through smoothly.</p>
<h3>Using the <code>tracer</code> Utility</h3>
<p>The tracer utility takes a Uppaal intermediate format and a saved <code>.xtr</code> file as the only two inputs. To get the Uppaal intermediate format for a model in the <code>.xml</code> format, one should use<br />
<pre class="brush: bash;">
UPPAAL_COMPILE_ONLY=1 verifyta model.xml - &gt; model.if
</pre><br />
The dash here is a placeholder for the query file, which is not necessary for intermediate format generation but helps pass syntax check by <code>verifyta</code>.</p>
<p>With the generated intermediate format, one can reconstruct the trace is a readable format.<br />
<pre class="brush: bash;">
tracer model.if trace.xtr
</pre></p>
<p>Also, one can use the <code>pretty</code> utility to pretty-print a Uppaal model in a C-like format.<br />
<pre class="brush: bash;">
pretty model.xml
</pre></p>
<h3>Update: Compiling the UTAP library under MacOSX</h3>
<p>Under Mac OS X, the boost library is not by default available (if it is  installed separately, with <a href="http://www.macports.org/" title="MacPorts" target="_blank">MacPorts</a> for example). If this is the case, it is necessary to add options to <code>./configure</code> as follows.<br />
<pre class="brush: bash;">
./configure LDFLAGS=-L/opt/local/lib CXXFLAGS=-I/opt/local/include
</pre></p>
<h3>Update: Issues with <code>aclocal.m4</code></h3>
<p>For some unknown reasons the <code>aclocal.m4</code> file changes quite a bit; it even changes from plain text to binary files. This makes the compiling process fail. Just replace it with the pristine version that comes with the <code>libutap</code> library and the compiling should be fine.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/206/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=206&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2011/10/26/using-uppaal-for-trace-interpretation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Downloading and configuring Java Pathfinder</title>
		<link>http://cosinepi.wordpress.com/2011/10/10/downloading-and-configuring-java-pathfinder/</link>
		<comments>http://cosinepi.wordpress.com/2011/10/10/downloading-and-configuring-java-pathfinder/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 20:45:54 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Model Checking]]></category>
		<category><![CDATA[Program Analysis]]></category>
		<category><![CDATA[Symbolic Execution]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">https://cosinepi.wordpress.com/?p=181</guid>
		<description><![CDATA[Downloading and Installing First install Mercurial. Then grab the source for jpf-core and jpf-symbc packages. They are the main files for Java Pathfinder. Site Configuration Create a site configuration file with the name ~/.jpf/site.properties. Building Java Pathfinder Installing the Eclipse plugin Use Eclipse 3.5+ and Java 1.6+, and this update site link: http://babelfish.arc.nasa.gov/trac/jpf/raw-attachment/wiki/install/eclipse-plugin/update/ To find [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=181&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Downloading and Installing</h3>
<p>First install Mercurial.<br />
<pre class="brush: bash;">
sudo apt-get install mercurial
</pre></p>
<p>Then grab the source for <code>jpf-core</code> and <code>jpf-symbc</code> packages. They are the main files for Java Pathfinder.<br />
<pre class="brush: bash;">
hg clone http://babelfish.arc.nasa.gov/hg/jpf/jpf-core
hg clone http://babelfish.arc.nasa.gov/hg/jpf/jpf-symbc
</pre></p>
<h3>Site Configuration</h3>
<p>Create a site configuration file with the name <code>~/.jpf/site.properties</code>.<br />
<pre class="brush: bash;">
# JPF site configuration

jpf-core = ${user.home}/Software/jpf/jpf-core

# numeric extension
jpf-numeric = ${user.home}/Software/jpf/jpf-numeric

# symbolic extension
jpf-symbc = ${user.home}/Software/jpf/jpf-symbc

extensions=${jpf-core},${jpf-numeric},${jpf-symbc}

#... and all your other installed projects
</pre></p>
<h3>Building Java Pathfinder</h3>
<p><pre class="brush: bash;">
cd jpf-core
bin/ant test
cd ../jpf-symbc
bin/ant test
cd ../jpf-numeric
bin/ant test
</pre></p>
<h3>Installing the Eclipse plugin</h3>
<p>Use Eclipse 3.5+ and Java 1.6+, and this update site link: <code>http://babelfish.arc.nasa.gov/trac/jpf/raw-attachment/wiki/install/eclipse-plugin/update/</code><br />
To find out that it is properly installed, see in the preference window if there is a page for Java Pathfinder.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=181&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2011/10/10/downloading-and-configuring-java-pathfinder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Tips on customizing Windows 7 (to be continued)</title>
		<link>http://cosinepi.wordpress.com/2011/08/20/tips-on-customizing-windows-7-to-be-continued/</link>
		<comments>http://cosinepi.wordpress.com/2011/08/20/tips-on-customizing-windows-7-to-be-continued/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 21:48:45 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://cosinepi.wordpress.com/2011/08/20/tips-on-customizing-windows-7-to-be-continued/</guid>
		<description><![CDATA[Change Windows Explorer to Open My Computer Instead of Libraries Folder in Windows 7<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=175&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.mydigitallife.info/trick-to-open-computer-or-documents-as-default-instead-of-libraries-folder-with-windows-explorer-on-windows-7/" target="_blank">Change Windows Explorer to Open My Computer Instead of Libraries Folder in Windows 7</a> </li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=175&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2011/08/20/tips-on-customizing-windows-7-to-be-continued/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuring a Windows machine with necessary installations</title>
		<link>http://cosinepi.wordpress.com/2011/06/30/configuring-a-windows-machine-with-necessary-installations/</link>
		<comments>http://cosinepi.wordpress.com/2011/06/30/configuring-a-windows-machine-with-necessary-installations/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 22:32:07 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://cosinepi.wordpress.com/2011/06/30/configuring-a-windows-machine-with-necessary-installations/</guid>
		<description><![CDATA[Here is a list of software to install on a new Windows machine. Google Chrome Firefox (See a list of extensions here) CTeX Emacs Aspell GnuWin32 SecureCRT FileZilla 7-Zip Foxit Reader Java SDK Eclipse (See a list of plugins here) TortoiseSVN Python Skype Dropbox VirtualBox Notepad++ Semantic Endpoint Protection Microsoft Visual Studio Uppaal Freemind JabRef [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=168&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a list of software to install on a new Windows machine.</p>
<ul>
<li><a href="http://www.google.com/chrome/eula.html?hl=en">Google Chrome</a> </li>
<li><a href="http://www.mozilla.com/en-US/firefox/fx/">Firefox</a> (See a list of extensions <a href="https://cosinepi.wordpress.com/2011/05/06/must-have-firefox-extensions/">here</a>) </li>
<li><a href="http://www.ctex.org/CTeXDownload">CTeX</a> </li>
<li>Emacs </li>
<li><a href="http://aspell.net/win32/">Aspell</a> </li>
<li><a href="http://sourceforge.net/projects/getgnuwin32/">GnuWin32</a> </li>
<li><a href="http://www.upenn.edu/computing/product/specs/securecrt.html">SecureCRT</a> </li>
<li><a href="http://www.upenn.edu/computing/product/specs/filezilla.html">FileZilla</a> </li>
<li><a href="http://www.7-zip.org/">7-Zip</a> </li>
<li><a href="http://www.foxitsoftware.com/products/reader/">Foxit Reader</a> </li>
<li><a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Java SDK</a> </li>
<li><a href="http://www.eclipse.org/downloads/">Eclipse</a> (See a list of plugins <a href="https://cosinepi.wordpress.com/2009/09/23/eclipse-plugins-updating/">here</a>) </li>
<li><a href="http://tortoisesvn.net/downloads.html">TortoiseSVN</a> </li>
<li><a href="http://www.python.org/getit/">Python</a> </li>
<li><a href="http://www.skype.com/intl/en-us/get-skype/">Skype</a> </li>
<li><a href="http://www.dropbox.com/">Dropbox</a> </li>
<li><a href="http://www.virtualbox.org/wiki/Downloads" target="_blank">VirtualBox</a></li>
<li><a href="http://notepad-plus-plus.org/download" target="_blank">Notepad++</a></li>
<li><a href="http://www.upenn.edu/computing/product/specs/sav-form.html">Semantic Endpoint Protection</a> </li>
<li><a href="http://msdn07.e-academy.com/elms/Storefront/Home.aspx?campus=upenn_eng">Microsoft Visual Studio</a> </li>
<li><a href="http://www.uppaal.org/">Uppaal</a> </li>
<li><a href="http://freemind.sourceforge.net/wiki/index.php/Download">Freemind</a> </li>
<li><a href="http://jabref.sourceforge.net/download.php">JabRef</a></li>
<li>Fonts: Liberation, Ubuntu, BitStream</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/168/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=168&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2011/06/30/configuring-a-windows-machine-with-necessary-installations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Must-have firefox extensions</title>
		<link>http://cosinepi.wordpress.com/2011/05/06/must-have-firefox-extensions/</link>
		<comments>http://cosinepi.wordpress.com/2011/05/06/must-have-firefox-extensions/#comments</comments>
		<pubDate>Sat, 07 May 2011 03:41:50 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://cosinepi.wordpress.com/?p=165</guid>
		<description><![CDATA[Here is a list of Firefox extensions that I cannot live without. Download Status Bar Adblock Plus Flagfox ActiveInbox for Gmail Colorful Tabs LeechBlock Additionally, here are some more useful ones. I am not sure they are updated often to come up with Firefox 5 now. BBDict CHM Reader Delicious Bookmarks Firebug FireGestures FireShot Google [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=165&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a list of Firefox extensions that I cannot live without.</p>
<ul>
<li>Download Status Bar </li>
<li>Adblock Plus </li>
<li>Flagfox </li>
<li>ActiveInbox for Gmail </li>
<li>Colorful Tabs </li>
<li>LeechBlock </li>
</ul>
<p>Additionally, here are some more useful ones. I am not sure they are updated often to come up with Firefox 5 now.</p>
<ul>
<li>BBDict</li>
<li>CHM Reader</li>
<li>Delicious Bookmarks</li>
<li>Firebug</li>
<li>FireGestures</li>
<li>FireShot</li>
<li>Google Notebook</li>
<li>Greasemonkey</li>
<li>IE Tab</li>
<li>Speed Dial</li>
<li>Tab Mix Plus</li>
<li>Web Developer</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=165&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2011/05/06/must-have-firefox-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Emacs configurations &#8212; AucTeX</title>
		<link>http://cosinepi.wordpress.com/2010/09/10/emacs-configurations-auctex/</link>
		<comments>http://cosinepi.wordpress.com/2010/09/10/emacs-configurations-auctex/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 21:45:19 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cosinepi.wordpress.com/?p=157</guid>
		<description><![CDATA[Here is the setting for working with Emacs and AucTeX under MS Windows.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=157&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is the setting for working with Emacs and AucTeX under MS Windows.</p>
<p><pre class="brush: plain;">
;;; auctex
;; (add-to-list 'load-path &quot;~/.emacs.d/site-lisp/auctex-11.85&quot;)
(load &quot;auctex.el&quot; nil t t)
(require 'latex)
(require 'tex-site)
(require 'tex-mik)

;; Set the default PDF reader to SumatraPDF. The executable should be in PATH
(setq TeX-view-style (quote ((&quot;^epsf$&quot; &quot;SumatraPDF.exe %f&quot;) (&quot;.&quot; &quot;yap -1 %dS %d&quot;))))

(setq TeX-output-view-style 
      (quote 
       ((&quot;^dvi$&quot; &quot;^pstricks$\\|^pst-\\|^psfrag$&quot; &quot;dvips %d -o &amp;&amp; start %f&quot;) 
        (&quot;^dvi$&quot; &quot;.&quot; &quot;yap -1 %dS %d&quot;) 
        (&quot;^pdf$&quot; &quot;.&quot; &quot;SumatraPDF.exe -reuse-instance %o&quot;) 
        (&quot;^html?$&quot; &quot;.&quot; &quot;start %o&quot;))))

;; Some helpful settings
(setq TeX-auto-untabify t)
(setq TeX-auto-save t)
(setq TeX-parse-self t)
(setq-default TeX-master nil)
(setq TeX-electric-escape t)
(setq-default TeX-PDF-mode t)

(add-to-list 'LaTeX-indent-environment-list '(&quot;tikzpicture&quot;))
(add-to-list 'LaTeX-verbatim-environments &quot;comment&quot;)

;; Start RefTeX
(add-hook 'LaTeX-mode-hook 'turn-on-reftex)
(add-hook 'latex-mode-hook 'turn-on-reftex)
(setq reftex-plug-into-AUCTeX t)


</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=157&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2010/09/10/emacs-configurations-auctex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Compiling Maude 2.5 under Ubuntu 10.04</title>
		<link>http://cosinepi.wordpress.com/2010/07/06/compiling-maude-2-5-under-ubuntu-10-04/</link>
		<comments>http://cosinepi.wordpress.com/2010/07/06/compiling-maude-2-5-under-ubuntu-10-04/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 20:43:01 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cosinepi.wordpress.com/?p=134</guid>
		<description><![CDATA[To compile Maude, a few prior packages need to be installed. build-essential and related utilities GNU gmp First grab the package from its site here. Untar and install. The whole process may take a while. GNU libsigsegv Tecla Download from here and do the usual stuff. BuDDy Same stuff for BuDDy from SourceForge. Maude Now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=134&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To compile Maude, a few prior packages need to be installed. </p>
<h3>build-essential and related utilities</h3>
<p><pre class="brush: bash;">
dpkg -l build-essential
sudo apt-get install build-essential bison flex libncurses5-dev
</pre></p>
<h3>GNU gmp</h3>
<p>First grab the package from its site <a href="http://gmplib.org/">here</a>. Untar and install.<br />
<pre class="brush: bash;">
wget ftp://ftp.gmplib.org/pub/gmp-5.0.1/gmp-5.0.1.tar.bz2
tar xvf gmp-5.0.1.tar.bz2
cd gmp-5.0.1/
./configure --enable-cxx --disable-shared
make check
make
sudo make install
</pre><br />
The whole process may take a while.</p>
<h3>GNU libsigsegv</h3>
<p><pre class="brush: bash;">
sudo apt-get install libsigsegv0 libsigsegv-dev
</pre></p>
<h3>Tecla</h3>
<p>Download from <a href="http://www.astro.caltech.edu/~mcs/tecla/">here</a> and do the usual stuff.<br />
<pre class="brush: bash;">
wget http://www.astro.caltech.edu/~mcs/tecla/libtecla.tar.gz
tar xvf libtecla.tar.gz
cd libtecla/
./configure CFLAGS=&quot;-O2 -D_POSIX_C_SOURCE=1&quot;
make TARGETS=normal TARGET_LIBS=static
sudo make install
</pre></p>
<h3>BuDDy</h3>
<p>Same stuff for BuDDy from <a href="http://sourceforge.net/projects/buddy/">SourceForge</a>.<br />
<pre class="brush: bash;">
wget &quot;http://sourceforge.net/projects/buddy/files/buddy/BuDDy 2.4/buddy-2.4.tar.gz/download&quot;
tar xvf buddy-2.4.tar.gz
cd buddy-2.4/
./configure --disable-shared
make
sudo make install
</pre></p>
<h3>Maude</h3>
<p>Now it is possible to build Maude from scratch. The steps are similar, but just remember to use the libraries that we just compiled, rather than the ones that (possibly) come by default.<br />
<pre class="brush: bash;">
wget http://maude.cs.uiuc.edu/download/current/Maude-2.5.tar.gz
tar xvf Maude-2.5.tar.gz
cd Maude-2.5.tar.gz/
mkdir Build
cd Build/
../configure GMP_LIBS=&quot;/usr/local/lib/libgmpxx.a /usr/local/lib/libgmp.a&quot;
make
make check
sudo make install
</pre><br />
The <code>make</code> step may take a while, just be patient. </p>
<h3>Setting up Emacs Maude mode</h3>
<p>After compiling and installing Maude, it may be helpful to set up Emacs so that experiment with Maude is easier. First download the Emacs Maude mode from <a href="http://sourceforge.net/projects/maude-mode/">SourceForge</a>. Put it in your load path, and then add the following to a file <code>maude.el</code> under <code>.emacs.d</code> folder <a href="http://cosinepi.wordpress.com/2009/11/13/emacs-configurations-basics/">so that it is loaded by Emacs</a>.<br />
<pre class="brush: plain;">
(autoload 'maude-mode &quot;maude-mode&quot; &quot;MAUDE mode&quot; nil t)
(setq auto-mode-alist
      (append
       (list (cons &quot;\\.maude$&quot;  'maude-mode)
		     (cons &quot;\\.fm$&quot;     'maude-mode))
       auto-mode-alist))
(setq maude-command &quot;/usr/local/maude/maude.linux&quot;)
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=134&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2010/07/06/compiling-maude-2-5-under-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Defining SSH host aliases for shorter command line typing</title>
		<link>http://cosinepi.wordpress.com/2010/06/21/defining-ssh-host-aliases-for-shorter-command-line-typing/</link>
		<comments>http://cosinepi.wordpress.com/2010/06/21/defining-ssh-host-aliases-for-shorter-command-line-typing/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 07:42:34 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Eniac]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://cosinepi.wordpress.com/?p=129</guid>
		<description><![CDATA[Add to (or create) the file ~/.ssh/config the following lines can define alias for ssh hosts.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=129&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Add to (or create) the file <code>~/.ssh/config</code> the following lines can define alias for ssh hosts.<br />
<pre class="brush: plain;">
Host alias
  HostName the.real.host.name
  User yourid
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=129&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2010/06/21/defining-ssh-host-aliases-for-shorter-command-line-typing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up Apache 2 server on Ubuntu 10.04</title>
		<link>http://cosinepi.wordpress.com/2010/06/20/setting-up-apache-2-server-on-ubuntu-10-04/</link>
		<comments>http://cosinepi.wordpress.com/2010/06/20/setting-up-apache-2-server-on-ubuntu-10-04/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 03:53:17 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Webdev]]></category>

		<guid isPermaLink="false">http://cosinepi.wordpress.com/?p=126</guid>
		<description><![CDATA[This post is from the official page, tailored for personal use. The basic steps are here. Copy the default site settings file /etc/apache2/sites-available/default to a new one at the same place, say testsite. Edit the file with new information. Change the DocumentRoot and the Directory settings. Disable the default one and enable the new one: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=126&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post is from the <a href="https://help.ubuntu.com/community/ApacheMySQLPHP">official page</a>, tailored for personal use. The basic steps are here.</p>
<ol>
<li>Copy the default site settings file <code>/etc/apache2/sites-available/default</code> to a new one at the same place, say <code>testsite</code>.</li>
<li>Edit the file with new information. Change the <code>DocumentRoot</code> and the <code>Directory</code> settings.</li>
<li>Disable the default one and enable the new one: <code>sudo a2dissite default &amp;&amp; sudo a2ensite testsite</code></li>
<li>Restart Apache 2: <code>sudo apache2ctl restart</code></li>
<li>And the <code>index.html</code> or <code>index.php</code> files are good to go.</li>
</ol>
<p>Now it&#8217;s a time to use your imagination for a new site.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=126&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2010/06/20/setting-up-apache-2-server-on-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharing files between Ubuntu machines</title>
		<link>http://cosinepi.wordpress.com/2010/03/25/sharing-files-between-ubuntu-machine/</link>
		<comments>http://cosinepi.wordpress.com/2010/03/25/sharing-files-between-ubuntu-machine/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 02:14:14 +0000</pubDate>
		<dc:creator>Vincent</dc:creator>
				<category><![CDATA[Quick References]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://cosinepi.wordpress.com/?p=119</guid>
		<description><![CDATA[Recently I need to reinstall one of my machines so that backing up is a problem. My removable disk is old and unreliable, and the large amount of files cannot fit into any online storage systems (including school Eniac account). The simplest possible solution is to use SSH. Use ifconfig on the host machine to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=119&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently I need to reinstall one of my machines so that backing up is a problem. My removable disk is old and unreliable, and the large amount of files cannot fit into any online storage systems (including school Eniac account). The simplest possible solution is to use SSH. </p>
<ol>
<li>Use <code>ifconfig</code> on the host machine to figure out its ip address.</li>
<li>On client machine, use the normal Connect to Server&#8230; option to connect. The parameters are straightforward.
</ol>
<p>That&#8217;s it! Enjoy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cosinepi.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cosinepi.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cosinepi.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cosinepi.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/cosinepi.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/cosinepi.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/cosinepi.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/cosinepi.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cosinepi.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cosinepi.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cosinepi.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cosinepi.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cosinepi.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cosinepi.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cosinepi.wordpress.com&amp;blog=7280338&amp;post=119&amp;subd=cosinepi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://cosinepi.wordpress.com/2010/03/25/sharing-files-between-ubuntu-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66cde682c30668d9336ce6435cfd138d?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">V</media:title>
		</media:content>
	</item>
	</channel>
</rss>
