<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Angelo's Notepad</title>
	
	<link>http://angelo.bitfreedom.com</link>
	<description>Cogito ergo sum.</description>
	<pubDate>Sun, 02 Nov 2008 00:46:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<geo:lat>38.96146</geo:lat><geo:long>-76.920564</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/bitfreedom/angelo" type="application/rss+xml" /><feedburner:emailServiceId>1208913</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>CD/DVD Filesystem Snapshot</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/371272045/fs-snapshot</link>
		<comments>http://angelo.bitfreedom.com/fs-snapshot#comments</comments>
		<pubDate>Thu, 21 Aug 2008 21:04:13 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/backups</guid>
		<description>This will work with other filesystems, not just ext2, so you may want to choose a filesystem that is similar to what you currently run (if you care).  The idea is that instead of creating an ISO image that is very flexible (can be read by Windows), you create a filesystem image and burn [...]</description>
			<content:encoded><![CDATA[<p>This will work with other filesystems, not just ext2, so you may want to choose a filesystem that is similar to what you currently run (if you care).  The idea is that instead of creating an ISO image that is very flexible (can be read by Windows), you create a filesystem image and burn it to disc.  The advantage of this is that you can preserve filesystem properties such as permissions, ownership, etc.  The disadvantage is that the straightforward approach (everything on one disk) only gives you about 4.5 G of space to work with (depending on the media size).</p>
<p><span id="more-45"></span></p>
<p>(1) Create a 2 GB image:</p>
<pre>sudo dd if=/dev/zero of=snapshot.img bs=1024k count=2000 &amp;</pre>
<p>You can create a larger image size if you need it, and your burnable media can handle it.</p>
<p>(2) Format it using ext2</p>
<pre>sudo mke2fs -m 0 -q -F -b 2048 snapshot.img 1&gt;&amp;2</pre>
<p>Honestly, I can&#8217;t remember why I was redirecting output to stderr.  Maybe I had a good reason for that.  But suffice it to say, you simply want to use the file you created to make a file system.  For example, instead of the above, you can use something like `mkfs -t xfs snapshot.img`</p>
<p>(3) Mount the image</p>
<pre>sudo mount -t ext2 -o loop snapshot.img /mnt/snapshot</pre>
<p>For the mount, you want to make sure to use whatever filesystem type you created the image with.</p>
<p>(4) Copy the data, preserving information</p>
<pre>sudo rsync -avH --numeric-ids --progress --stats --delete --exclude /proc/ \
--exclude /sys/ --exclude /tmp/ --exclude /var/run/ --exclude /var/tmp/ \
--exclude /mnt/snapshot/ / /mnt/snapshot/</pre>
<p>This is an example of copying the entire system (if it&#8217;s small enough to fit).  In this example, you want to make sure you exclude the mount point for the snapshot, because otherwise you&#8217;ll have a recursive rsync that will go on forever.  It&#8217;s definitely good to make sure you exclude /proc/ and /sys/ too.  You could exclude /dev/ since today&#8217;s Linux just regenerates it on boot anyway.  (If you were porting to other hardware you may want to do this to be &#8220;safe&#8221; but usually it&#8217;s safer to just keep a copy of it.)  &#8211;progress and &#8211;stats are extraneous options, and if you&#8217;re a neat freak, you can use &#8211;delete-excluded too to make sure those directories are cleared out in case you accidentally copied things over.</p>
<p>(5) Unmount and burn using cdrecord</p>
<pre>sudo umount /mnt/snapshot
sudo cdrecord -v -eject dev=/dev/cdrom snapshot.img</pre>
<p>You can alternatively use any burning software to apply the image directly to burnable media.</p>
<p>Now keep in mind, that when you want to mount this CD/DVD you will need to mount it by hand, as root, using the filesystem type you burned it with.  It&#8217;s a good idea to write the fs type on the CD along with whatever else you&#8217;re going to call it so you know how to mount it later.</p>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=Ikc5Gl"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=Ikc5Gl" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=RESM0K"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=RESM0K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=1KhPbk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=1KhPbk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=NQNFTk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=NQNFTk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=guGfYk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=guGfYk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/371272045" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/fs-snapshot/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Ffs-snapshot</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/fs-snapshot</feedburner:origLink></item>
		<item>
		<title>Making a Bootable Linux CD</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/363212756/making-bootable-linux-cd</link>
		<comments>http://angelo.bitfreedom.com/making-bootable-linux-cd#comments</comments>
		<pubDate>Tue, 12 Aug 2008 19:33:42 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/?p=108</guid>
		<description>This is an example of customizing Mandriva 2008.0
First copy the contents of the CD to a directory
auto-boot/
&amp;#124;-- VERSION
`-- isolinux
&amp;#124;-- alt0
&amp;#124;   &amp;#124;-- all.rdz
&amp;#124;   `-- vmlinuz
&amp;#124;-- boot.cat
&amp;#124;-- custom.msg
&amp;#124;-- isolinux.bin
&amp;#124;-- isolinux.cfg
&amp;#124;-- memtest
`-- target.msg
To change default auto configuration file, edit:
isolinux/isolinux.cfg

To produce a custom boot CD:
mkisofs -R -J -o auto-boot.iso -b isolinux/isolinux.bin -c isolinux/boot.cat \
-no-emul-boot -boot-load-size [...]</description>
			<content:encoded><![CDATA[<p>This is an example of customizing Mandriva 2008.0</p>
<p>First copy the contents of the CD to a directory</p>
<pre>auto-boot/
|-- VERSION
`-- isolinux
|-- alt0
|   |-- all.rdz
|   `-- vmlinuz
|-- boot.cat
|-- custom.msg
|-- isolinux.bin
|-- isolinux.cfg
|-- memtest
`-- target.msg</pre>
<p>To change default auto configuration file, edit:<br />
isolinux/isolinux.cfg</p>
<p><span id="more-108"></span></p>
<p>To produce a custom boot CD:</p>
<pre>mkisofs -R -J -o auto-boot.iso -b isolinux/isolinux.bin -c isolinux/boot.cat \
-no-emul-boot -boot-load-size 4 -boot-info-table ./auto-boot/</pre>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=UeHR3e"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=UeHR3e" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=RlKE1K"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=RlKE1K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=J2xi8k"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=J2xi8k" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=pD0Huk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=pD0Huk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=LyBVik"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=LyBVik" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/363212756" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/making-bootable-linux-cd/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Fmaking-bootable-linux-cd</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/making-bootable-linux-cd</feedburner:origLink></item>
		<item>
		<title>Windows Hosts File</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/361314394/windows-hosts-file</link>
		<comments>http://angelo.bitfreedom.com/windows-hosts-file#comments</comments>
		<pubDate>Sun, 10 Aug 2008 19:58:07 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/?p=15</guid>
		<description>Did you know that Windows also has equivalent to /etc/hosts where you can set IP addresses for domain names?  It&amp;#8217;s a plain text file in the same format, and it&amp;#8217;s typically found in one of these two places:

 C:\winnt\system32\drivers\etc\hosts
 C:\windows\system32\drivers\etc\hosts


Notice how they kept the etc/ directory?  Hmmmmm</description>
			<content:encoded><![CDATA[<p>Did you know that Windows also has equivalent to /etc/hosts where you can set IP addresses for domain names?  It&#8217;s a plain text file in the same format, and it&#8217;s typically found in one of these two places:</p>
<ul>
<li> C:\winnt\system32\drivers\etc\hosts</li>
<li> C:\windows\system32\drivers\etc\hosts</li>
</ul>
<p><span id="more-15"></span></p>
<p>Notice how they kept the etc/ directory?  Hmmmmm <img src='http://angelo.bitfreedom.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=KppuV6"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=KppuV6" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=DPsJuK"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=DPsJuK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=uYJmMk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=uYJmMk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=MdvR9k"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=MdvR9k" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=BbFMFk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=BbFMFk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/361314394" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/windows-hosts-file/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Fwindows-hosts-file</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/windows-hosts-file</feedburner:origLink></item>
		<item>
		<title>Install OpenOffice.org for a Single User</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/359667878/install-openofficeorg-tarball</link>
		<comments>http://angelo.bitfreedom.com/install-openofficeorg-tarball#comments</comments>
		<pubDate>Fri, 08 Aug 2008 18:48:27 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/?p=109</guid>
		<description>OpenOffice.org distributes their binaries as rpms.  That&amp;#8217;s great for a majority of the people who can install them, but in a couple of situations I&amp;#8217;ve found myself wanting to use the most updated version but didn&amp;#8217;t have root access to do the install of the package properly.
Here is how I installed it for my [...]</description>
			<content:encoded><![CDATA[<p>OpenOffice.org distributes their binaries as rpms.  That&#8217;s great for a majority of the people who can install them, but in a couple of situations I&#8217;ve found myself wanting to use the most updated version but didn&#8217;t have root access to do the install of the package properly.</p>
<p>Here is how I installed it for my own user.  You will need the cpio utilities installed including &#8216;cpio&#8217; and &#8216;rpm2cpio&#8217; which are installed on many rpm based systems.<span id="more-109"></span></p>
<ol>
<li>Download the gzipped rpm files from OpenOffice.org</li>
<li>Unpack:
<pre>tar xzvf OOo_2.2.0_LinuxIntel_install_wJRE_en-US.tar.gz</pre>
</li>
<li>You should now have a directory similar to  OOF680_m14_native_packed-1_en-US.9134/<br />
cd to the RPMs directory inside this new directory and unpack the RPM files locally:</p>
<pre>ls *.rpm | while read file; do rpm2cpio $file | cpio -idmv; done</pre>
</li>
<li>You should see the files from the RPMs created, e.g.
<pre>./etc
./etc/.java
./etc/.java/.systemPrefs
./etc/.java/.systemPrefs/.system.lock
./etc/.java/.systemPrefs/.systemRootModFile
./etc/init.d/jexec
...
opt/openoffice.org2.2/share/xslt/export/xhtml/header.xsl
opt/openoffice.org2.2/share/xslt/export/xhtml/master_chapter_numbering.xsl
opt/openoffice.org2.2/share/xslt/export/xhtml/master_document.xsl
opt/openoffice.org2.2/share/xslt/export/xhtml/master_refs_workaround.xsl
opt/openoffice.org2.2/share/xslt/export/xhtml/master_usability_links.xsl
opt/openoffice.org2.2/share/xslt/export/xhtml/ooo2xhtml.xsl
opt/openoffice.org2.2/share/xslt/export/xhtml/table.xsl</pre>
</li>
<li>I like to keep all of my personal packages in a single directory.  Usually I make a directory in my home called pkg/ which I will move openoffice to.  So first, move the openoffice directory under opt/ that was created above to ~/pkg/:
<pre>mv opt/openoffice.org2.2/ ~/pkg/</pre>
</li>
<li>I also like to use symlinks for my current most updated version of a software:
<pre>cd ~/pkg/
ln -s openoffice.org2.2/ openoffice.org</pre>
</li>
<li>Then I create some scripts in my ~/bin/ directory that I include in my path environment.  The first one is openoffice.org itself.  I create an executable file called ~/bin/openoffice.org that looks like this:
<pre>#!/bin/bash
exec ~/pkg/openoffice.org/program/soffice "$@"</pre>
</li>
<li>It&#8217;s also nice to create one for the openoffice.org printer administration gui.  I create an executable script called ~/bin/openoffice.org-printeradmin that looks like this:
<pre>#!/bin/bash
exec ~/pkg/openoffice.org2.1/program/spadmin</pre>
</li>
</ol>
<p>Now, if you have ~/bin/ in your PATH environment you should be able to load files using openoffice.org &lt;filename&gt;</p>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=aag0Jq"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=aag0Jq" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=94wOPK"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=94wOPK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=Xr0gNk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=Xr0gNk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=MPwJIk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=MPwJIk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=kCJ3Zk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=kCJ3Zk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/359667878" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/install-openofficeorg-tarball/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Finstall-openofficeorg-tarball</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/install-openofficeorg-tarball</feedburner:origLink></item>
		<item>
		<title>To Thine Own Self Be True</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/358661666/thine-true</link>
		<comments>http://angelo.bitfreedom.com/thine-true#comments</comments>
		<pubDate>Thu, 07 Aug 2008 18:42:24 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/?p=107</guid>
		<description>&amp;#8220;This above all: to thine own self be true,
And it must follow, as the night the day,
Thou canst not then be false to any man.&amp;#8221;
Shakespeare
&amp;#8220;The only obligation which I have a right to assume is to do at any time what I think right.&amp;#8221;
Henry David Thoreau
A philosophy that not only should you do what you [...]</description>
			<content:encoded><![CDATA[<p>&#8220;This above all: to thine own self be true,<br />
And it must follow, as the night the day,<br />
Thou canst not then be false to any man.&#8221;<br />
Shakespeare</p>
<p>&#8220;The only obligation which I have a right to assume is to do at any time what I think right.&#8221;<br />
Henry David Thoreau</p>
<p>A philosophy that not only should you do what you believe is right, but more deeply that you cannot be anything else but who you are.  If you try to be someone or something else, if you try to live by a code in which you don&#8217;t really believe, you will have internal conflict until you accept your Way.</p>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=PUfhLZ"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=PUfhLZ" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=RBg05K"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=RBg05K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=xWXUYk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=xWXUYk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=hWUaOk"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=hWUaOk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=sYaA0k"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=sYaA0k" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/358661666" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/thine-true/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Fthine-true</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/thine-true</feedburner:origLink></item>
		<item>
		<title>Once you have their money, you never give it back</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/272344526/money-give</link>
		<comments>http://angelo.bitfreedom.com/money-give#comments</comments>
		<pubDate>Thu, 17 Apr 2008 18:24:00 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Society]]></category>

		<category><![CDATA[Star Trek]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/money-give</guid>
		<description>&amp;#8230; that&amp;#8217;s the first Ferengi Rule of Acquisition.
Some years ago, when I heard this I thought about all those rebates I&amp;#8217;ve done.  I&amp;#8217;ve done quite a few, and my experience has been mixed.  I&amp;#8217;m not exactly sure how the decide which people they&amp;#8217;re going to attempt to deny (even with legitimate rebates).  [...]</description>
			<content:encoded><![CDATA[<p>&#8230; that&#8217;s the first Ferengi <a href="http://en.wikipedia.org/wiki/Rules_of_Acquisition">Rule of Acquisition</a>.</p>
<p>Some years ago, when I heard this I thought about all those rebates I&#8217;ve done.  I&#8217;ve done quite a few, and my experience has been mixed.  I&#8217;m not exactly sure how the decide which people they&#8217;re going to attempt to deny (even with legitimate rebates).  I&#8217;m fairly certain that they are not simply careless because the rate at which I&#8217;ve been denied at least the first time has been about 50%.  That&#8217;s way too high to be coincidental considering that it&#8217;s never happened even once through all the other mailings I&#8217;ve done like paying bills where I&#8217;m actually sending them money.</p>
<p><span id="more-4"></span></p>
<p>So yes, I would say that they are following the first Rule of Acquisition:</p>
<blockquote><p>Once you have their money, never give it back.</p></blockquote>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=y9Q0gs"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=y9Q0gs" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=pBAOJJ"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=pBAOJJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=Q7hOoj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=Q7hOoj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=87CjXj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=87CjXj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=XUsX4j"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=XUsX4j" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/272344526" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/money-give/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Fmoney-give</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/money-give</feedburner:origLink></item>
		<item>
		<title>Birthday</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/259458173/birthday</link>
		<comments>http://angelo.bitfreedom.com/birthday#comments</comments>
		<pubDate>Fri, 28 Mar 2008 06:11:16 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/birthday</guid>
		<description>I got up this morning to drive to the hotel Melisa was staying at in Gaithersburg.  It was a beautiful day, not too hot but still sunny.  I decided to stop by to bring her something for breakfast.  I stopped by a french bakery to pick up a few breads and some [...]</description>
			<content:encoded><![CDATA[<p>I got up this morning to drive to the hotel Melisa was staying at in Gaithersburg.  It was a beautiful day, not too hot but still sunny.  I decided to stop by to bring her something for breakfast.  I stopped by a french bakery to pick up a few breads and some breakfast cheese.</p>
<p align="left"><img src="http://angelo.bitfreedom.com/files/2008/03/waswg_phototour18.jpg" alt="Rio Hotel" align="left" hspace="5" vspace="5" />I entered the hotel in the quiet residential area.  I knocked on her room door and waited for her to come.  I smiled when I saw her beautiful face.  Melisa was happy to see me and surprised that I brought her breakfast.  We lazily stayed in her hotel room and relaxed as we shared our breakfast.  From her window of the hotel room we could see the lake that was next to the shopping and entertainment area near the hotel.</p>
<p><span id="more-100"></span></p>
<p>After breakfast when we were ready, we went downstairs and walked to the shopping area nearby.  The day was still beautiful and comfortable, and it was a nice walk, as we proceeded to walk on the trail around the lake opposite of the more busy areas.  We held hands as we walked through the geese that had gathered from the lake stretching across the trail.  When we got to the other side of the lake, we went to the shopping areas nearby.  We got some ice cream and walked around the different stores.  In particular, I think Melisa enjoyed going into the bookstore.</p>
<p>After a while, we decided to have a late lunch.  We went back and we drove to get sushi.  The place was almost empty because it was after lunch.  The sushi there is always good, fresh, and cut well.  In addition to sushi I ordered a fried tofu with fish flakes, because I wanted Melisa to try it.  When we were sitting there, I thought about how easy it is to get along with her and how lucky I am.</p>
<p>In the afternoon we decided to go back to the hotel and rest.  While at the hotel, we looked at the movie schedule for the theater near the hotel, and also the one near the steakhouse that I was planning on taking her for lunch.  I think the one near the hotel is a much nicer theater, so I decided we should go there, but it would mean that we need to eat dinner first.  So Melisa took a nap.</p>
<p>We had to drive a little way to get to the steakhouse.  It is a western, kind of cowboy, style place.  It was nice to show Melisa some kind of native food here.  I think she really liked it, but didn&#8217;t expect that we ate so much.  The steaks are so big compared to what she is used to.  &#8220;Maybe tomorrow we can order salad from a place near the hotel,&#8221; I told her.</p>
<p><img src="http://angelo.bitfreedom.com/files/2008/03/waswg_phototour23.jpg" alt="Rio" align="right" hspace="5" vspace="5" />When we left the restaurant, the night was cool and comfortable with the smell of rain in the air.  We drove back to the hotel area for a movie.  The movie was nice, but I really cared more about being with her.  It was just good to have her here, and I was happy that this was a special day.  I really hope she was having fun.</p>
<p>After the movie, we took a walk around the lake again that night.  This time we walked more slowly, and we enjoyed our time together.  As it grew darker, we could see the stars appear.  On the far side of the lake from the buildings, we sat on one of the benches around the path.  I gave Melisa a hug, and sat close to her.  I could tell we were both feeling something.  After a little bit I kissed her, and whispered, &#8220;it&#8217;s not illegal here&#8221;&#8211;about something only she would understand.</p>
<p>After that, we went back up to the hotel room.  I could tell Melisa was tired.  I gave her a little massage as she relaxed and watched some TV.  We spent a little time together, and before I left, I made sure to tell her &#8220;happy birthday.&#8221;</p>
<p><strong>* shaking Melisa to wake her up *</strong></p>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=IZFTGQ"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=IZFTGQ" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=weJs6J"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=weJs6J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=yHgBGj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=yHgBGj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=l5naqj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=l5naqj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=eM7hUj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=eM7hUj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/259458173" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/birthday/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Fbirthday</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/birthday</feedburner:origLink></item>
		<item>
		<title>XO Laptop Review</title>
		<link>http://feeds.feedburner.com/~r/bitfreedom/angelo/~3/201070121/xo-laptop-review</link>
		<comments>http://angelo.bitfreedom.com/xo-laptop-review#comments</comments>
		<pubDate>Sun, 16 Dec 2007 00:58:06 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://angelo.bitfreedom.com/xo-laptop-review</guid>
		<description>I got my XO laptop from laptopgiving.org today.  I plugged it in and waited the whole day, but I think it was already charged.  There&amp;#8217;s no way to tell if it&amp;#8217;s done charging or not (I think).
It&amp;#8217;s interesting.  The keyboard is exceedingly small, and the keys are like those flexible keyboards.  [...]</description>
			<content:encoded><![CDATA[<p>I got my XO laptop from <a href="http://laptopgiving.org">laptopgiving.org</a> today.  I plugged it in and waited the whole day, but I think it was already charged.  There&#8217;s no way to tell if it&#8217;s done charging or not (I think).</p>
<p>It&#8217;s interesting.  The keyboard is exceedingly small, and the keys are like those <a href="http://www.amazon.com/gp/product/B000BHB5YW?ie=UTF8&amp;tag=angesnote-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B000BHB5YW">flexible keyboards</a>.  But I guess it wasn&#8217;t meant to teach typing skills.  Also it has a touchpad mouse with two mouse buttons:  X and O (of course).  It has 3 USB ports, a headphone jack, a microphone jack, a rotating screen, built-in speakers, a built-in microphone, and what appears to be a built-in camera.</p>
<p><span id="more-92"></span></p>
<p>I posted some pictures on Picasa:</p>
<table>
<tr>
<td align="center"><a href="http://picasaweb.google.com/angelo.bertolli/XO"><img src="http://lh5.google.com/angelo.bertolli/R2TMFmALHvE/AAAAAAAAATM/9Hla5lxOI6s/s160-c/XO.jpg" height="160" width="160" /></a></td>
</tr>
<tr>
<td><a href="http://picasaweb.google.com/angelo.bertolli/XO">XO</a></td>
</tr>
</table>
<p>I managed to surf the net with it a little bit and investigate:</p>
<ul>
<li> Memory is just under 256 MB</li>
<li>1 GB disk space</li>
<li>Fedora release 7 (Moonshine)</li>
<li>processor Geode AMD  430 MHz w/ 128K cache</li>
</ul>
<p>The final word on this review:  this laptop is great for kids.</p>
<p><strong> Updates</strong></p>
<p>I&#8217;ve been getting questions about it, so I&#8217;ll answer them as they come in.</p>
<ul>
<li><strong>Is the display black and white?</strong>  It does support color, but it seems to have a lot of black/white/gray as a base color.</li>
</ul>

<p><a href="http://feeds.feedburner.com/~a/bitfreedom/angelo?a=9DoK8E"><img src="http://feeds.feedburner.com/~a/bitfreedom/angelo?i=9DoK8E" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=4UniQJ"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=4UniQJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=LmN5Cj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=LmN5Cj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=3sHBbj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=3sHBbj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/bitfreedom/angelo?a=n8eLJj"><img src="http://feeds.feedburner.com/~f/bitfreedom/angelo?i=n8eLJj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/bitfreedom/angelo/~4/201070121" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://angelo.bitfreedom.com/xo-laptop-review/feed</wfw:commentRss>
		<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=bitfreedom/angelo&amp;itemurl=http%3A%2F%2Fangelo.bitfreedom.com%2Fxo-laptop-review</feedburner:awareness><feedburner:origLink>http://angelo.bitfreedom.com/xo-laptop-review</feedburner:origLink></item>
	<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetFeedData?uri=bitfreedom/angelo</feedburner:awareness></channel>
</rss>
