<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;A0cDQXw4cSp7ImA9WhBSGEU.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925</id><updated>2013-02-26T09:31:10.239-05:00</updated><category term="CANDY" /><category term="Website Management" /><category term="Contest Results" /><category term="RFC" /><category term="Games" /><category term="Package Management System" /><category term="Linux" /><category term="Operating Systems" /><category term="You Guys" /><category term="Biology" /><category term="Review" /><category term="Contests" /><category term="Question" /><category term="Kernel" /><category term="YouTube" /><category term="Book" /><category term="Science" /><category term="Products" /><category term="Microkernel" /><category term="Problem" /><category term="Programming" /><category term="Computer" /><title>The Brain Boy Blog</title><subtitle type="html">The smartiest blog around.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://brainboyblogger.blogspot.com/" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>19</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/BrainBoyBlogger" /><feedburner:info uri="brainboyblogger" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CkcHRnwyeyp7ImA9WhZREEk.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-2924405262479233524</id><published>2011-04-01T15:05:00.001-04:00</published><updated>2011-04-05T17:47:17.293-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-04-05T17:47:17.293-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="CANDY" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Package Management System" /><category scheme="http://www.blogger.com/atom/ns#" term="Products" /><category scheme="http://www.blogger.com/atom/ns#" term="RFC" /><title>RFC: Package Management System</title><content type="html">A package management system is a program that manages archives of software to be automatically installed on your system. PMSes automate installation and deinstallation, and often also support automatic downloading of dependencies, listing of software from repositories, and in some cases compiling software for you.&lt;br /&gt;
&lt;br /&gt;
PMSes are most commonly found in free and open source UNIX-like operating systems, such as the various GNU/Linux distributions and free BSDs. There are also a few for Mac OS X, but very few, if any, can be found for Windows.&lt;br /&gt;
&lt;br /&gt;
I will not be going too far into&amp;nbsp;the details of package management&amp;nbsp;in this article, because that is not its point. This article is about a package manager that &lt;strong&gt;I&lt;/strong&gt; am developing. Code name (and possibly normal name in the future): &lt;code&gt;CANDY&lt;/code&gt;.&lt;br /&gt;
&lt;br /&gt;
For more information on PMSes, please visit &lt;a href="http://en.wikipedia.org/wiki/Package_management_system"&gt;Wikipedia&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
I am developing a package management systems inspired by the Slackware and MacPorts package management systems. It will be able to install two types of packages: Source and Binary packages (as with the RPM Package Manager). Source packages will function similarly to MacPorts Portfiles and RPM Specfiles. They will contain instructions on fetching, verifying, extracting, installing, and then later uninstalling software.&lt;br /&gt;
&lt;h2&gt;Source Package Format #1&lt;/h2&gt;Each package will get its own directory. In this directory, there will be a series of files:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;code&gt;static.yml&lt;/code&gt;: This file will contain static (non-scripted) information about the package, such as metadata (title, description, etc.) and dependencies.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;features.lst&lt;/code&gt;: (Produced by Candy, deleted if &lt;code&gt;--dont-save-features&lt;/code&gt; is specified.) See below: Compile-Time Features.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;fetch.sh&lt;/code&gt;: This file is a Bourne Shell script that will download and verify (via WHIRLPOOL, SHA512, and RMD160 checksums) the source code. This script should &lt;strong&gt;not&lt;/strong&gt; re-download archives unless the checksums do not match. If the downloaded archive still does not match, then it should exit with code &lt;code&gt;1&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;build.sh&lt;/code&gt;: This file will compile and install the files. It will compile the files to install to locations that are specified by Candy's configuration file, but will actually install the files into a temporary directory via a &lt;code&gt;DESTROOT&lt;/code&gt; (i.e. &lt;code&gt;make install DESTROOT=/tmp/blah&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;&lt;code&gt;preinstall.sh&lt;/code&gt;: (Optional) this file will be executed before files are installed into the root directory.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;postinstall.sh&lt;/code&gt;: (Optional) this file will be executed after files are installed into the root directory.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;predeinstall.sh&lt;/code&gt;: (Optional) this file will be executed before files are uninstalled.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;postdeinstall.sh&lt;/code&gt;: (Optional) this file will be executed after files are uninstalled.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;patches/*.patch&lt;/code&gt;: (Optional) patch files to be applied to the source archive post-extraction.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;source/&lt;/code&gt;: Unextracted sources. This will be produced by &lt;code&gt;fetch.sh&lt;/code&gt;. This directory will be deletable with the &lt;code&gt;clean&lt;/code&gt; command.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;source-archive.*&lt;/code&gt;: May be an archive or a directory checked out with a version control system. If it was a VCS checkout, &lt;code&gt;source/&lt;/code&gt; will be a symbolic link, and the directory should have the &lt;code&gt;.vcs&lt;/code&gt; extension. This will be produced by &lt;code&gt;fetch.sh&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;During any form of build procedure, &lt;code&gt;build.sh&lt;/code&gt; will be called. However, there are two things that may happen after &lt;code&gt;build.sh&lt;/code&gt; executes, depending on the command specified to Candy. The two commands are: &lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;code&gt;install&lt;/code&gt;: This command will run &lt;code&gt;preinstall.sh&lt;/code&gt;, move the files into the root directory, and then run &lt;code&gt;postinstall.sh&lt;/code&gt;. The &lt;code&gt;predeinstall.sh&lt;/code&gt; and &lt;code&gt;postdeinstall.sh&lt;/code&gt; files will be saved for whenever the program gets deinstalled.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;build-binary&lt;/code&gt;: This command will create an archive from the temporary files which will also include the pre- and post-scripts. This package is faster to install, does not require any development utilities in most cases, but is not configurable and less portable.&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;Source Package Format #2&lt;/h2&gt;Another format that will be supported is an archive that contains the files &lt;code&gt;static.yml&lt;/code&gt;, &lt;code&gt;build.sh&lt;/code&gt;, &lt;code&gt;preinstall.sh&lt;/code&gt;, &lt;code&gt;postinstall.sh&lt;/code&gt;, &lt;code&gt;predeinstall.sh&lt;/code&gt;, and &lt;code&gt;postdeinstall.sh&lt;/code&gt; (all files but &lt;code&gt;fetch.sh&lt;/code&gt; and &lt;code&gt;features.lst&lt;/code&gt;). Along with these files will be the downloaded source files. This is more similar to RPM, while the previous format is more similar to MacPorts.  &lt;br /&gt;
&lt;h2&gt;Binary Package Format&lt;/h2&gt;Yet another format that will be supported is an archive that contains the files &lt;code&gt;static.yml&lt;/code&gt;, &lt;code&gt;features.lst&lt;/code&gt;, &lt;code&gt;preinstall.sh&lt;/code&gt;, &lt;code&gt;postinstall.sh&lt;/code&gt;, &lt;code&gt;predeinstall.sh&lt;/code&gt;, and &lt;code&gt;postdeinstall.sh&lt;/code&gt; (all files but &lt;code&gt;fetch.sh&lt;/code&gt; and &lt;code&gt;build.sh&lt;/code&gt;). It will also contain the built program binaries (produced by &lt;code&gt;build.sh&lt;/code&gt;) which will be extracted into the root directory.  &lt;br /&gt;
&lt;h2&gt;Compile-Time Features&lt;/h2&gt;Like MacPorts and Portage, Candy will support Compile-Time Features (in Portage talk, USE flags). They can be enabled with &lt;code&gt;-f&lt;/code&gt; and disabled with &lt;code&gt;-F&lt;/code&gt;, and all features are enabled by default. &lt;code&gt;static.yml&lt;/code&gt; will contain summaries/descriptions of these features, and information about which features are enabled/disabled will be saved in &lt;code&gt;features.lst&lt;/code&gt;. The various scripts will use &lt;code&gt;features.lst&lt;/code&gt;, a list of enabled features separated by newlines, to determine which features to include.&lt;br /&gt;
&lt;br /&gt;
Initially, I was planning to have &lt;code&gt;static.yml&lt;/code&gt; truncated in Binary Package Format, but I decided that it was useful for users to have information about which features were enabled/disabled by the binary package author.  &lt;br /&gt;
&lt;h2&gt;Dialogs&lt;/h2&gt;Packages will be passed the variable &lt;code&gt;$DIALOG&lt;/code&gt;, which will evaluate to a program compatible with &lt;code&gt;dialog&lt;/code&gt; which will vary between the original program or a graphical replica.&lt;br /&gt;
&lt;h2&gt;Amendment 1: File Selection and Multi-Package Output&lt;/h2&gt;This is an amendment to the previous section. It was added after the original article was written but before the article was published. I found that it would cause inconsistencies in the article to edit this in, so I decided to add it in this section. Further amendments will be posted in separate posts and linked to from here.&lt;br /&gt;
&lt;br /&gt;
In the original design specified in this document, all of the files installed into a temporary directory are installed or archived in Source Package Format #2 or Binary Package Format. This amendment changes this: &lt;code&gt;static.yml&lt;/code&gt; will contain globs (a.k.a. wildcards) specifying which files in the temporary directory are to be installed or archived (where &lt;code&gt;/**/*&lt;/code&gt; would specify all files recursively). All files are excluded by default, since certain files such as the GNU Info &lt;code&gt;dir&lt;/code&gt; file should be excluded.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the globs may be specified to specific Binary Packages, meaning that although both Source Packages will see them all as one tree, multiple Binary Packages may be generated. By standard, architecture-specific files, non-architecture-specific files, documentation, and development files (headers and static libraries) will be in separate packages. All of them will share the same package root name, but have the following mechanism for distinguishing them (by standard):&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;code&gt;packagerootname&lt;/code&gt;: Architecture-specific files.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;packagerootname-share&lt;/code&gt;: Non-architecture-specific files (will be stored in just &lt;code&gt;packagerootname&lt;/code&gt; if there are no architecture-specific files.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;packagerootname-doc&lt;/code&gt;: Documentation files (man pages will be stored in &lt;code&gt;packagerootname-share&lt;/code&gt; or &lt;code&gt;packagerootname&lt;/code&gt; if there are no non-architecture-specific files).&lt;/li&gt;
&lt;li&gt;&lt;code&gt;packagerootname-devel&lt;/code&gt;: Development header files.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;packagerootname-static&lt;/code&gt;: Static object files (if it is a library, that is).&lt;/li&gt;
&lt;/ul&gt;Furthermore, while I am describing conventions, libraries will be prefixed with &lt;code&gt;lib&lt;/code&gt;.&lt;br /&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;As you can see I have a lot of plans for this program, and I hope you have become interested in them. The RFC in the title of this post stands for &lt;strong&gt;R&lt;/strong&gt;equest &lt;strong&gt;F&lt;/strong&gt;or &lt;strong&gt;C&lt;/strong&gt;omments, which means that I want &lt;strong&gt;you&lt;/strong&gt; to tell me what you think. I am interested in knowing what others think of my ideas, and since this is really, &lt;emph&gt;really&lt;/emph&gt; early in development, Candy can be subjected to radical changes (although I would prefer to avoid them).&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fF0sc_L1Euw:gJl4JBFTEeA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fF0sc_L1Euw:gJl4JBFTEeA:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fF0sc_L1Euw:gJl4JBFTEeA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fF0sc_L1Euw:gJl4JBFTEeA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fF0sc_L1Euw:gJl4JBFTEeA:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fF0sc_L1Euw:gJl4JBFTEeA:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fF0sc_L1Euw:gJl4JBFTEeA:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/fF0sc_L1Euw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/2924405262479233524/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2011/04/rfc-package-management-system.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/2924405262479233524?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/2924405262479233524?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/fF0sc_L1Euw/rfc-package-management-system.html" title="RFC: Package Management System" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2011/04/rfc-package-management-system.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUIER3w4fSp7ImA9Wx5bE0o.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-7463076994916435112</id><published>2010-10-29T13:31:00.000-04:00</published><updated>2010-10-29T13:31:46.235-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-29T13:31:46.235-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Problem" /><category scheme="http://www.blogger.com/atom/ns#" term="Operating Systems" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Linux" /><title>How to Retrieve Files from a Broken Fedora Linux System</title><content type="html">Not too long ago I installed the &lt;a href="http://www.fedoraproject.org/"&gt;Fedora Core&lt;/a&gt; 13 &lt;a href="http://www.gnu.org/"&gt;GNU&lt;/a&gt;/&lt;a href="http://www.kernel.org/"&gt;Linux&lt;/a&gt; operating system onto my computer. A month in, I turned it on and it would not boot. It would get to the point in the loading screen when the loading bar was complete then it would just stop. I waited for half an hour, hoping that it was just trying to resolve some sort of issue, but no such luck. The day before I had been installing and uninstalling a lot of software, and apparently, I ended up corrupting the operating system. I could not retrieve my files.&lt;br /&gt;
&lt;br /&gt;
Generally, you use a Linux system's &lt;a href="http://en.wikipedia.org/wiki/Live_CD"&gt;Live CD&lt;/a&gt; to retrieve files and even repair a broken system; however, I had lost Fedora's Live CD. So instead, I used &lt;a href="http://www.ubuntu.com/"&gt;Ubuntu&lt;/a&gt; Linux 10.04's Live CD, which I found in my collection of Live CDs. I inserted the disk, rebooted the computer, and came upon the Live CD's instance of the &lt;a href="http://www.gnome.org/"&gt;GNOME&lt;/a&gt; desktop environment. The hard drive was listed as a readable entity, but when I clicked on it, I got an error message saying that the disk could not be read (a very indescript message, yes).&lt;br /&gt;
&lt;br /&gt;
I fumbled through my disks and found a fairly old &lt;a href="http://www.opensuse.org/"&gt;openSUSE&lt;/a&gt; 11.2 Live CD. I was really excited, because openSUSE has an automated system repair program on it. It was sure to figure out what was wrong. Well, &lt;b&gt;wrong&lt;/b&gt;. It could not read the disk, and it seems that means it cannot help at all. How disappointing.&lt;br /&gt;
&lt;br /&gt;
Searching through the disks &lt;i&gt;again&lt;/i&gt;, I came upon an Arch Linux Live CD (yes, I have a lot of Live CDs). I booted it up and came upon the infamous command-line. I tried to mount the hard drive with &lt;code&gt;mkdir /mnt/hd; mount /dev/sda3 /mnt/hd&lt;/code&gt;, and it said it could not recognize the filesystem.&lt;br /&gt;
&lt;br /&gt;
I finally knuckled down and burnt another Fedora Live CD, and guess what? I was able to read off the hard drive no problems at all! I was able to retrieve my files. What did Fedora do to make it so that no other Linux could read its filesystem? &lt;b&gt;What?&lt;/b&gt; I still do not know, but I do know that openSUSE never had that problem, so I installed that instead.&lt;br /&gt;
&lt;br /&gt;
The moral of the story is that if you want to retrieve your files from a Linux, you should probably use that distribution's Live CD.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AO1g-AMM9-I:Jyjq5BwuEyQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AO1g-AMM9-I:Jyjq5BwuEyQ:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AO1g-AMM9-I:Jyjq5BwuEyQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AO1g-AMM9-I:Jyjq5BwuEyQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AO1g-AMM9-I:Jyjq5BwuEyQ:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AO1g-AMM9-I:Jyjq5BwuEyQ:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AO1g-AMM9-I:Jyjq5BwuEyQ:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/AO1g-AMM9-I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/7463076994916435112/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/10/how-to-retrieve-files-from-broken.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7463076994916435112?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7463076994916435112?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/AO1g-AMM9-I/how-to-retrieve-files-from-broken.html" title="How to Retrieve Files from a Broken Fedora Linux System" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>1</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/10/how-to-retrieve-files-from-broken.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcNRH0zcSp7ImA9Wx5XEU4.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-7402758368012099471</id><published>2010-09-06T18:50:00.001-04:00</published><updated>2010-09-10T11:21:35.389-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-09-10T11:21:35.389-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Programming" /><category scheme="http://www.blogger.com/atom/ns#" term="Operating Systems" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Kernel" /><category scheme="http://www.blogger.com/atom/ns#" term="Microkernel" /><title>Microkernels: The Next Generation of Operating System Kernels</title><content type="html">Microkernels are epic.&amp;nbsp; Why?&amp;nbsp; Because they hold the possibility to run multiple operating systems simultaneously, among other things.&lt;br /&gt;
&lt;br /&gt;
The most popular kernel design family today is the Monolithic kernel design.&amp;nbsp; Monolithic kernels have huge number of features integrated into the kernel.&amp;nbsp; These features include user multiplexing, executable loading, drivers, and filesystems.&lt;br /&gt;
&lt;br /&gt;
This design has two fatal flaws:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;When any of these services fail, the entire kernel fails, and everything is lost.&lt;/li&gt;
&lt;li&gt;Only one implementation of certain features, such as user multiplexing, may be implemented at a time, since the kernel's built-in features will get in the way.&lt;/li&gt;
&lt;/ol&gt;Microkernels solve both of these problems.&amp;nbsp; Here is how.&lt;br /&gt;
&lt;br /&gt;
Microkernels aim to implement the minimal requirements of a kernel and to move as much as possible into the user space, as in processes that you would see in a task manager.&amp;nbsp; These processes are known as "servers".&amp;nbsp; They provide the operating system with user multiplexing, executable loading, drivers, filesystems, and all of the other features most programmers expect from the kernel.&amp;nbsp; This has a few major advantages over the Monolithic kernel design.&lt;br /&gt;
&lt;br /&gt;
For one thing, each server is its own process separate from the kernel, if a server crashes, the kernel remains functional and can even restart the server, thus massively decreasing the chances of error.&amp;nbsp; Along with this, each server has the least privilege possible, meaning that, for instance, a driver server is unable to accidentally delete files.&lt;br /&gt;
&lt;br /&gt;
The increased modularity of the operating system is often much easier to manage, because each server may be assigned to a different programmer task force, may be coded in a different programming language, or even compiled into a different executable file format.&lt;br /&gt;
&lt;br /&gt;
Each server may be interchanged with other servers, should a different server be more efficient or secure for your purposes.&amp;nbsp; In some cases you may even have two servers providing the same function (such as executable loading) at the same time, allowing the individual processes to decide which server they would like to use.&lt;br /&gt;
&lt;br /&gt;
In some operating systems, you must rebuild the operating system in order to add new device drivers, filesystems, etc.&amp;nbsp; Microkernels simply need you to run new servers.&amp;nbsp; (This is not nearly as much of a problem now with Hybrid Kernels, in which much functionality remains in the kernel but it may be extended with user space programs.&amp;nbsp; In both Microkernels and Hybrid Kernels, a computer restart may be required depending on the operating system.)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Issues with the Microkernel Design&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Microkernel design has one major issue--efficiency.&amp;nbsp; In order for a Microkernel to function, processes must communicate with each other through the kernel, as opposed to directly with the kernel.&amp;nbsp; For instance, a text editor must communicate with a filesystem server in order to load a file.&lt;br /&gt;
&lt;br /&gt;
This entails "bouncing" your message from the kernel to another process.&amp;nbsp; This is a method of &lt;i&gt;inter-process communication&lt;/i&gt;, or IPC.&amp;nbsp; In first generation Microkernels like &lt;a href="http://www.cs.cmu.edu/afs/cs/project/mach/public/www/mach.html"&gt;Mach&lt;/a&gt;, the message would have to be copied from the sending process to the kernel, then copied again to the receiving process.&amp;nbsp; This turns out to be considerably less efficient then directly communicating with the kernel.&lt;br /&gt;
&lt;br /&gt;
This inefficiency was not good at all.&amp;nbsp; While IPC took 400μs (microseconds) to send the average message, it took Monolithic kernels less than 1μs.&amp;nbsp; This issue led to noticeably slower operating systems and a dying design philosophy.&lt;br /&gt;
&lt;br /&gt;
Furthermore, the fact that the servers are their own processes means that you must switch contexts more often, which also causes noticeable slowdown. &lt;br /&gt;
&lt;br /&gt;
However, there is now a &lt;b&gt;second generation&lt;/b&gt; of Microkernels that now run 400 times faster then the first generation Microkernels.&amp;nbsp; They have done this through various optimizations, and are just as fast, if not faster, than most Monolithic kernels.&lt;br /&gt;
&lt;br /&gt;
Each kernel takes a different approach to this.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.l4hq.org/"&gt;&lt;b&gt;L4&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The L4 microkernel implements the philosophy that Microkernels are inherently non-portable between processors and must take advantage of every optimization the processor has to offer.&lt;br /&gt;
&lt;br /&gt;
L4, unlike Mach, only copies the message once, initially sharing memory with the sender then copying it to the receiver, leading to a two-fold speed improvement.&amp;nbsp; Another thing L4 does is when messages are small enough, it uses the processor registers (small but EXTREMELY quick-to-access memory zones), leading to a considerable amount of speed improvement.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;In total, L4 only takes ~1.4μs to send the average IPC message.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://pdos.csail.mit.edu/exo/"&gt;&lt;b&gt;MIT Exokernel&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
MIT's Exokernel has a different approach.&amp;nbsp; Its philosophy is that the kernel's purpose is only to section out resources to the processes, and that is it, letting the processes manage memory how they see fit and to talk to the hardware directly, reminiscent of DOS.&amp;nbsp; This is contrary to most kernels, which try to abstract the hardware in a portable manner.&lt;br /&gt;
&lt;br /&gt;
This philosophy is inspired by another philosophy; the program knows better than the operating system.&amp;nbsp; The kernel is general.&amp;nbsp; The program is specific.&lt;br /&gt;
&lt;br /&gt;
Essentially, this means that Exokernel will simply say "this part of memory is yours and this part of memory is yours, and you get to talk to the computer screen and you get to talk to the speakers".&amp;nbsp; Thus, the functionality of the operating system is implemented in libraries that abstract the hardware, however if the abstractions are unsuitable the program may simply bypass the operating system and talk directly through the kernel to the hardware, as long as it has acquired permission to do so.&lt;br /&gt;
&lt;br /&gt;
Processes may also upload code to the Exokernel to help it decide what to do with the information it receives, which can be used, for example, in network package filtering.&amp;nbsp; The code uploaded is in a type-safe programming language that can quickly be dynamically compiled and sandboxed to prevent any harm to the kernel.&amp;nbsp; This can also be used to move intensive operations to the kernel so that the processor does not have to switch context as often.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;In total, Exokernel only takes ~1.3μs to send the average IPC message.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www-spin.cs.washington.edu/"&gt;&lt;b&gt;SPIN&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
SPIN takes a radically different approach from the entire IPC concept itself (though it still supports IPC, as most kernels of all forms do).&amp;nbsp; It allows programs to upload code to be executed directly in the kernel.&amp;nbsp; This leads to massive speed improvement. Since SPIN sandboxes the code, and the code is uploaded in the type-safe Modula-3 programming language, it retains the ability to continue running upon failure of the uploaded code.&lt;br /&gt;
&lt;br /&gt;
One major advantage of this is that code executed by the kernel itself is much more efficient, since processes communicate directly with the kernel to access the uploaded code and context switches occur a lot less.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;In total, SPIN takes 400μs to send the average IPC message (due to roots in Mach), but its alternative method of extension theoretically removes this issue.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
Now, for the part you have all been waiting for...&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;The Ability to Run Multiple Operating Systems Simultaneously&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
This is the greatest ability that Microkernels have.&amp;nbsp; Because there is nothing getting in the way of implementing alternative user multiplexers, executable loaders, etc., one is fully capable of implementing two operating systems on the same Microkernel and having them run at the same time.&lt;br /&gt;
&lt;br /&gt;
For instance, you could have a UNIX-like server series in which you have a UNIX-like user multiplexer, UNIX-like executable loader, etc., allowing any program that runs on UNIX-like systems to run fully.&amp;nbsp; Then you could also have a BeOS-like server series, implementing a BeOS-like user multiplexer, and a BeOS-like executable loader, and have it run programs that run on BeOS-like systems, and both servers may run simultaneously.&amp;nbsp; This means that you could have both UNIX and BeOS programs running on the same computer without use of an emulator!&lt;br /&gt;
&lt;br /&gt;
This feature is why I am personally interested in Microkernels.&amp;nbsp; For a long time I have wanted to run Windows-only Notepad++ using UNIX-only GNOME.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Have you ever wanted to use two programs from different operating systems at the same time?&amp;nbsp; What are they?&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;Resources:&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;a href="http://pdos.csail.mit.edu/exo/"&gt;http://pdos.csail.mit.edu/exo/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;a href="http://www.cs.cornell.edu/home/ulfar/ukernel/ukernel.html"&gt;http://www.cs.cornell.edu/home/ulfar/ukernel/ukernel.html&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;a href="http://en.wikipedia.org/w/index.php?title=L4_microkernel_family&amp;amp;oldid=383231412"&gt;http://en.wikipedia.org/w/index.php?title=L4_microkernel_family&amp;amp;oldid=383231412&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;a href="http://en.wikipedia.org/w/index.php?title=Exokernel&amp;amp;oldid=379188198"&gt;http://en.wikipedia.org/w/index.php?title=Exokernel&amp;amp;oldid=379188198&lt;/a&gt;&lt;/span&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=L5oW6k6O_Xg:A7nbMP14xr4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=L5oW6k6O_Xg:A7nbMP14xr4:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=L5oW6k6O_Xg:A7nbMP14xr4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=L5oW6k6O_Xg:A7nbMP14xr4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=L5oW6k6O_Xg:A7nbMP14xr4:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=L5oW6k6O_Xg:A7nbMP14xr4:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=L5oW6k6O_Xg:A7nbMP14xr4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/L5oW6k6O_Xg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/7402758368012099471/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/09/microkernels-next-generation-of.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7402758368012099471?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7402758368012099471?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/L5oW6k6O_Xg/microkernels-next-generation-of.html" title="Microkernels: The Next Generation of Operating System Kernels" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>2</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/09/microkernels-next-generation-of.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkQARng8eSp7ImA9WxFQGEo.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-8750463945351321968</id><published>2010-05-14T16:52:00.000-04:00</published><updated>2010-05-14T16:52:27.671-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-14T16:52:27.671-04:00</app:edited><title>No Sub for a Sub!</title><content type="html">I would like to state here that I do not do the sub for a sub. &amp;nbsp;I will only subscribe to a channel if I like it.&lt;br /&gt;
&lt;br /&gt;
Continuing on this though, don't send me YouTube PMs saying that you will subscribe to me if I subscribe to you. &amp;nbsp;You may send a "check out my channel" message, but a sub4sub request is not acceptable.&lt;br /&gt;
&lt;br /&gt;
If you are wondering why I post this today, it is because of this message:&lt;br /&gt;
From: PetesMobileChannel&lt;br /&gt;
Title: okay.&lt;br /&gt;
Attached Video: "Prank Call to Consolidated Credit&amp;nbsp;Counseling"&lt;br /&gt;
Content:&lt;br /&gt;
hiiiiiii i will sub u if u sub me. please sub me&lt;br /&gt;
&lt;br /&gt;
Of course, researching this user led me to find one of his/her channels is called Hemi Jeep. &amp;nbsp;Same person.&lt;br /&gt;
&lt;br /&gt;
I have blocked this person and reported the messages as spam, and I shall do this to all other sub4subbers.&lt;br /&gt;
&lt;br /&gt;
Thank you and good night.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AciI8i6GlrI:NLcMrivsEwk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AciI8i6GlrI:NLcMrivsEwk:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AciI8i6GlrI:NLcMrivsEwk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AciI8i6GlrI:NLcMrivsEwk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AciI8i6GlrI:NLcMrivsEwk:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=AciI8i6GlrI:NLcMrivsEwk:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=AciI8i6GlrI:NLcMrivsEwk:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/AciI8i6GlrI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/8750463945351321968/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/05/no-sub-for-sub.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/8750463945351321968?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/8750463945351321968?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/AciI8i6GlrI/no-sub-for-sub.html" title="No Sub for a Sub!" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>1</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/05/no-sub-for-sub.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4DRH4_fCp7ImA9WxFQFk0.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-2505594753668087777</id><published>2010-05-11T14:52:00.000-04:00</published><updated>2010-05-11T14:52:55.044-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-11T14:52:55.044-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Games" /><title>Alex the Alligator 4</title><content type="html">Alex the Alligator 4 is an open-source computer game very similar in style to the old GameBoy games.  In its four-color, pixellated glory, Alex 4 is a fun game to play on your free time.  It has 12 levels and, if you collect all of the cherries and stars from every level, a bonus game in which you guide a space ship through space to find Alex.&lt;br /&gt;
&lt;br /&gt;
The story is simple.  It starts out with Alex and his girlfriend, Lola (both alligators), hanging out with each other in the forest.  After a little conversing, a helicopter owned by ACME, Inc. flies over and kidnaps Lola, planning to turn her into a pair of shoes!&lt;br /&gt;
&lt;br /&gt;
After eating human after human in the 12 tedious levels, beating two bosses on the way, Alex finally frees his girlfriend, Lola, from her imprisonment after defeating the Ground Pounder (similar to the Bowser from Super Mario Brothers 3).&lt;br /&gt;
&lt;br /&gt;
They are happy to see each other, but a few seconds of fun and Alex gets abducted by aliens!  Lola climbs into her spaceship and flies away, ending the game with a nice "The End?".&lt;br /&gt;
&lt;br /&gt;
The bonus game consists of Lola flying through the tedious void of space in search of Alex. &amp;nbsp;At the end you fight the alien spaceship. &amp;nbsp;Once you beat it, the level restarts with all of your power-ups retained.&lt;br /&gt;
&lt;br /&gt;
You can also created, edit, submit, and download Alex 4 custom maps. &amp;nbsp;The levels that I have personally tried out, however, have not gone near the quality of the official levels.&lt;br /&gt;
&lt;br /&gt;
It's a fun game and I recommend it. &amp;nbsp;It can be downloaded at: &lt;a href="http://allegator.sourceforge.net/" target="_blank"&gt;http://allegator.sourceforge.net/&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
For a let's play series that I made, see&amp;nbsp;&lt;a href="http://www.youtube.com/watch?v=R43Qobp1qAY" target="_blank"&gt;the first video at YouTube&lt;/a&gt;.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dq9KNA9KMPI:yycjOPseHvY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dq9KNA9KMPI:yycjOPseHvY:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dq9KNA9KMPI:yycjOPseHvY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dq9KNA9KMPI:yycjOPseHvY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dq9KNA9KMPI:yycjOPseHvY:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dq9KNA9KMPI:yycjOPseHvY:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dq9KNA9KMPI:yycjOPseHvY:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/dq9KNA9KMPI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/2505594753668087777/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/05/alex-alligator-4.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/2505594753668087777?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/2505594753668087777?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/dq9KNA9KMPI/alex-alligator-4.html" title="Alex the Alligator 4" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/05/alex-alligator-4.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEAGQn06eCp7ImA9WxFQFkQ.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-7296246532430872537</id><published>2010-05-11T12:40:00.001-04:00</published><updated>2010-05-12T15:32:03.310-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-12T15:32:03.310-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Website Management" /><title>FeedBurner</title><content type="html">Let me start this out with EVERY WEBMASTER IN THE ENTIRE UNIVERSE NEEDS TO USE FEEDBURNER!!!&lt;br /&gt;
&lt;br /&gt;
Ahem, let me explain this a little better.&lt;br /&gt;
&lt;br /&gt;
FeedBurner is a server that was bought two years ago by Google. &amp;nbsp;It pulls feeds that your website provides and improves them, after which you can redirect your feed links to FeedBurner. &amp;nbsp;Such improvements include tracking subscribers, adding links to feed readers, feed&amp;nbsp;compatibility&amp;nbsp;cleanup, and&amp;nbsp;monetization (adding advertisements).&lt;br /&gt;
&lt;br /&gt;
You can track many things, such as how many users view your feed, how many subscribe, what services they use, what browsers they use, and (if enabled) how many click on the links back to your website. &amp;nbsp;The only problem with tracking clicks back to your website is that you must enable FeedBurner to redirect the links through it so that it can track page hits.&lt;br /&gt;
&lt;br /&gt;
Theres an entire tab for optimizations you can enable, including optimization for compatability, optimization for podcasts, optimization for interactivity, etc. &amp;nbsp;They are all highly configurable and really useful. &amp;nbsp;For instance, I use the FeedFlare optimizer to add "share this" links to websites such as Google Buzz and Facebook.&lt;br /&gt;
&lt;br /&gt;
There is also a publicity tab with features such as a headline animation generator, a tool to automatically notify the different feed reading services when a change happens, and a tool to post summaries of new posts to &lt;a href="http://twitter.com/" target="_blank"&gt;Twitter&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
This service also registers your feed with them. &amp;nbsp;For instance, my Brain Boy Blogger feed can be accessed from&amp;nbsp;&lt;a href="http://feeds.feedburner.com/BrainBoyBlogger" target="_blank"&gt;http://feeds.feedburner.com/BrainBoyBlogger&lt;/a&gt;. &amp;nbsp;This gives your website major publicity, as FeedBurner has a large number of users.&lt;br /&gt;
&lt;br /&gt;
Overnight both of my blogs got two feed subscribers, and after a couple days I have ten for the Brain&lt;br /&gt;
Boy Blog and two for &lt;a href="http://haikuonyou.blogspot.com/" target="_blank"&gt;Haiku On You&lt;/a&gt;. &amp;nbsp;As you can see, creating a FeedBurner feed can&amp;nbsp;drastically&amp;nbsp;increase the viewers of your website.&lt;br /&gt;
&lt;br /&gt;
If you would like to get started with FeedBurner, go to &lt;a href="http://feedburner.google.com/" target="_blank"&gt;http://feedburner.google.com/&lt;/a&gt;.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=-hqu0m8IieE:197Ekajv2vs:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=-hqu0m8IieE:197Ekajv2vs:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=-hqu0m8IieE:197Ekajv2vs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=-hqu0m8IieE:197Ekajv2vs:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=-hqu0m8IieE:197Ekajv2vs:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=-hqu0m8IieE:197Ekajv2vs:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=-hqu0m8IieE:197Ekajv2vs:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/-hqu0m8IieE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/7296246532430872537/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/05/feedburner.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7296246532430872537?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7296246532430872537?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/-hqu0m8IieE/feedburner.html" title="FeedBurner" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/05/feedburner.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEACQnw8fyp7ImA9WxFQFkQ.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-4147427455549276764</id><published>2010-05-10T17:43:00.001-04:00</published><updated>2010-05-12T15:32:43.277-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-12T15:32:43.277-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="YouTube" /><category scheme="http://www.blogger.com/atom/ns#" term="Question" /><category scheme="http://www.blogger.com/atom/ns#" term="You Guys" /><title>Weird YouTube Message</title><content type="html">Sender: HemiJeep19Responds&lt;br /&gt;
Title: funny funny funny!!! lol&lt;br /&gt;
Content:&lt;br /&gt;
&lt;br /&gt;
hahaha you like Ray William Johnson too??? yeah hes 1 of my favorites... what did you think of my videos? were they funny 2 u? subscribe if u liked them, i'll be making more... oh by the way my name is pete, but people call me hemi, whats your name???&lt;br /&gt;
&lt;hr /&gt;Questions:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Who the #### is Ray William Johnson? &amp;nbsp;I've never mentioned that name before, so why would this guy think I like him? &amp;nbsp;Did I reference something that this guy made?&lt;/li&gt;
&lt;li&gt;I thought I made it known that I didn't like sharing personal information, including my name. &amp;nbsp;I should probably post this in my About Me zone.&lt;/li&gt;
&lt;li&gt;as a message, do u agree it would be worthwhilez to use propersh writting, i.e. begginning sentenses with capital letterz, using "you" instead of "u", spelling corectlly, and writing only one question mark??? (for this one i'm just joking around)&lt;/li&gt;
&lt;li&gt;Is it just me or does this seem like spam to get me to view this guys channel?&lt;/li&gt;
&lt;/ol&gt;&lt;div&gt;Readers, please give me something to work with. &amp;nbsp;This message just seems like random spam to me. &amp;nbsp;I need reassurance.&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=ruxBCZh0y6A:bFzvXCcbc8o:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=ruxBCZh0y6A:bFzvXCcbc8o:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=ruxBCZh0y6A:bFzvXCcbc8o:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=ruxBCZh0y6A:bFzvXCcbc8o:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=ruxBCZh0y6A:bFzvXCcbc8o:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=ruxBCZh0y6A:bFzvXCcbc8o:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=ruxBCZh0y6A:bFzvXCcbc8o:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/ruxBCZh0y6A" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/4147427455549276764/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/05/weird-youtube-message.html#comment-form" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/4147427455549276764?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/4147427455549276764?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/ruxBCZh0y6A/weird-youtube-message.html" title="Weird YouTube Message" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>3</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/05/weird-youtube-message.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkEAQnw9fip7ImA9WxFSEkg.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-9042593637296246696</id><published>2010-04-14T11:24:00.000-04:00</published><updated>2010-04-14T11:24:03.266-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-14T11:24:03.266-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Problem" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Games" /><title>Michael J. Hardy: Evil Maniac Among Software Developers</title><content type="html">It didn't take long for Michael to become one of the most famous people among open source software developers. &amp;nbsp;Although he claims to be innocent, much evidence shows otherwise.&lt;br /&gt;
&lt;br /&gt;
Michael is known for providing much software, some provided as open source, some provided as&amp;nbsp;commercial&amp;nbsp;pay for, and crediting himself as the major developer for this software. &amp;nbsp;Well...&lt;br /&gt;
&lt;br /&gt;
Michael has not created any of the software that he provides. &amp;nbsp;It is all free open source GPL software that has been created by other people. &amp;nbsp;Michael, is a rip-off artist.&lt;br /&gt;
&lt;br /&gt;
Some of the software he has ripped off includes &lt;a href="http://www.doomworld.com/" target="_blank"&gt;Doomworld&lt;/a&gt; and &lt;a href="http://www.secretmaryo.org/" target="_blank"&gt;Secret Maryo Chronicles&lt;/a&gt;. &amp;nbsp;He has made an undetermined but seemingly high amount of money from these rip-offs.&lt;br /&gt;
&lt;br /&gt;
He has claimed that he is innocent, and that he thought the GPL provided him the ability to credit himself with the software. &amp;nbsp;Although the GPL &lt;i&gt;does&lt;/i&gt; give him the ability to sell the software, he must always provide the source code (which he does not always do) and he must not take credit for it (which he never does).&lt;br /&gt;
&lt;br /&gt;
He has recently launched a compaign where he has been trying to buy the rights to the software. &amp;nbsp;An example is &lt;a href="http://www.secretmaryo.org/" target="_blank"&gt;Secret Maryo Chronicles&lt;/a&gt;. &amp;nbsp;You can find the forum topic &lt;a href="http://www.secretmaryo.org/phpBB3/viewtopic.php?f=1&amp;amp;t=3576" target="_blank"&gt;here&lt;/a&gt;&amp;nbsp;containing an e-mail claiming to be somebody else to the lead developer and a link to Michael's &lt;a href="http://www.hardycreations.com/chronicles/" target="_blank"&gt;website claiming to already own SMC&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Multiple lawsuits are being planned against Michael, so he should probably watch his steps. &amp;nbsp;Breaking software licensing, copyrights, and trademarks is a large legal offense, especially if it has been done multiple times. &amp;nbsp;The fact that the websites still claim rights to the software will not do well in the court room.&lt;br /&gt;
&lt;br /&gt;
Check back here for more information about the Michael J. Hardy case.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=KKPf9ZOkDuQ:qCMSfz3H9m4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=KKPf9ZOkDuQ:qCMSfz3H9m4:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=KKPf9ZOkDuQ:qCMSfz3H9m4:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=KKPf9ZOkDuQ:qCMSfz3H9m4:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=KKPf9ZOkDuQ:qCMSfz3H9m4:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=KKPf9ZOkDuQ:qCMSfz3H9m4:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=KKPf9ZOkDuQ:qCMSfz3H9m4:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/KKPf9ZOkDuQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/9042593637296246696/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/04/michael-j-hardy-evil-maniac-among.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/9042593637296246696?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/9042593637296246696?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/KKPf9ZOkDuQ/michael-j-hardy-evil-maniac-among.html" title="Michael J. Hardy: Evil Maniac Among Software Developers" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>1</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/04/michael-j-hardy-evil-maniac-among.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEIHSX45eip7ImA9WxFSEE8.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-6718541876207175348</id><published>2010-04-11T17:48:00.001-04:00</published><updated>2010-04-11T17:48:58.022-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-11T17:48:58.022-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Games" /><category scheme="http://www.blogger.com/atom/ns#" term="Contests" /><category scheme="http://www.blogger.com/atom/ns#" term="Contest Results" /><title>Winners of Luiji's Frustration</title><content type="html">Here are the winners for Luiji's Frustration!&lt;br /&gt;
&lt;table border="1" style="width: 100%;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;th&gt;Submission Date&lt;/th&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Website/E-Mail&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Feb 16, 2010&lt;/td&gt;&lt;td&gt;Crabmaster&lt;/td&gt;&lt;td&gt;http://secretmaryo.org/&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;Feb 17, 2010&lt;/td&gt;&lt;td&gt;mlthmp&lt;/td&gt;&lt;td&gt;-&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;That's right, only two people beat it!  Trust me, there were many more contestants, all of whom supposedly had to cheat to get past the final stretch.&lt;br /&gt;
&lt;br /&gt;
Thanks for playing!&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=NNdbzK2qCFs:KuJoZVwnCac:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=NNdbzK2qCFs:KuJoZVwnCac:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=NNdbzK2qCFs:KuJoZVwnCac:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=NNdbzK2qCFs:KuJoZVwnCac:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=NNdbzK2qCFs:KuJoZVwnCac:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=NNdbzK2qCFs:KuJoZVwnCac:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=NNdbzK2qCFs:KuJoZVwnCac:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/NNdbzK2qCFs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/6718541876207175348/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/04/winners-of-luijis-frustration.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/6718541876207175348?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/6718541876207175348?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/NNdbzK2qCFs/winners-of-luijis-frustration.html" title="Winners of Luiji's Frustration" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><thr:total>1</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/04/winners-of-luijis-frustration.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkAAQHc_eyp7ImA9WxFTGU4.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-7271054996288745029</id><published>2010-03-04T17:53:00.003-05:00</published><updated>2010-04-10T16:19:01.943-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-10T16:19:01.943-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Programming" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><title>Why Scripting Languages are Problematic and Freeze is Awesome</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_TLzOP3XpV3M/S8DdIl_cLVI/AAAAAAAAAD4/qJtqDtQSgbM/s1600/text-x-script-128x128.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_TLzOP3XpV3M/S8DdIl_cLVI/AAAAAAAAAD4/qJtqDtQSgbM/s320/text-x-script-128x128.png" /&gt;&lt;/a&gt;&lt;/div&gt;Scripting languages are program source codes that do not get compiled before running, and are instead ran through an interpretation program such as Python, Perl, or Ruby. &amp;nbsp;This removes the requirement for compilation while producing minimal speed limitations. &amp;nbsp;However, as I have done more and more script programming, I have noticed some major problems with the system.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1: Process name system breaks.&lt;/b&gt;&lt;br /&gt;
If you start up your process manager, you will see a list of processes by name. &amp;nbsp;The process name is based on its program name. &amp;nbsp;You can acquire processes by name on many operating systems, which is quite useful. &amp;nbsp;You can use it to list how many instances of your text editor are currently running, kill all processes of a certain name, but most of all it helps you figure out which process you have to kill in order to stop a broken program. &amp;nbsp;Scripting languages all go through a single interpretation process, therefore all Python programs are listed under the name "python", and all Perl scripts under "perl". &amp;nbsp;This&amp;nbsp;defeats&amp;nbsp;some of the main purposes of having a process manager.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2: One program with all permissions.&lt;/b&gt;&lt;br /&gt;
The best way to explain this is using a Windows example. &amp;nbsp;Servers require you to give them firewall permissions. &amp;nbsp;If you have a python-oriented server, then you have to give python.exe proper permissions. &amp;nbsp;By doing this, you give &lt;i&gt;all&lt;/i&gt; python programs such permissions. &amp;nbsp;This opens up many security holes, since any program now has the ability to serve outside sources with data, a feature usually utilized by viruses.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3: Open-source is forced upon you.&lt;/b&gt;&lt;br /&gt;
Scripting languages cannot be compiled, therefore their source is often shown. &amp;nbsp;Closed-source applications become obsolete. &amp;nbsp;This is bad, since other companies can see your coding style if they purchase your software. &amp;nbsp;A certain exception is python, which allows you to compile .pyc files and&amp;nbsp;distribute&amp;nbsp;them. &amp;nbsp;However, this removes certain abilities such as the ability to insert a shebang header for Un*x systems to figure out what interpreter is used for your program.&lt;br /&gt;
&lt;br /&gt;
All of these problems can be extremely bad. &amp;nbsp;They can all, however, be fixed if the constructors of the programs put some extra features into their scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;A separate process manager for each interpreter that enables you to see the script name or some way to list the script name in the main process manager.&lt;/li&gt;
&lt;li&gt;An internal permissions system based on scripts that way you can give the interpreter all permissions and simply limit that of the scripts.&lt;/li&gt;
&lt;li&gt;For all scripting languages to produce some sort of compiled format like Python's .pyc file.&lt;/li&gt;
&lt;/ol&gt;&lt;div&gt;All of these solutions require the interpreters to change, and it will be awhile before these ideas get implemented by any of them. &amp;nbsp;Of course, there are ways to fix these problems currently using external programs. &amp;nbsp;An example for Python is &lt;a href="http://sourceforge.net/projects/cx-freeze/" target="_blank"&gt;Freeze&lt;/a&gt;.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Freeze is a program used to create .pyc files and embed them into an executable program, using the Python/C library to interpret the document. &amp;nbsp;The process gets its own name in the process manager, the single executable gets different permissions instead of a single interpreter, and the .pyc file cannot be easily decompiled and the decompiled version is not exactly like the original source, especially if you enable optimizations.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;There are such programs for many of the other interpreters, so it is all a matter of finding one that you like for your scripting language.&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fvKczNhyBzY:bA5y6oxl3bg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fvKczNhyBzY:bA5y6oxl3bg:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fvKczNhyBzY:bA5y6oxl3bg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fvKczNhyBzY:bA5y6oxl3bg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fvKczNhyBzY:bA5y6oxl3bg:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=fvKczNhyBzY:bA5y6oxl3bg:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=fvKczNhyBzY:bA5y6oxl3bg:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/fvKczNhyBzY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/7271054996288745029/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/03/why-scripting-languages-are-problematic.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7271054996288745029?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/7271054996288745029?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/fvKczNhyBzY/why-scripting-languages-are-problematic.html" title="Why Scripting Languages are Problematic and Freeze is Awesome" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_TLzOP3XpV3M/S8DdIl_cLVI/AAAAAAAAAD4/qJtqDtQSgbM/s72-c/text-x-script-128x128.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/03/why-scripting-languages-are-problematic.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0YNSXk8eyp7ImA9WxBUFEo.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-3815078173902474272</id><published>2010-03-01T14:10:00.028-05:00</published><updated>2010-03-01T15:26:38.773-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-01T15:26:38.773-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Linux" /><title>Why I Use Linux and So Should You</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TLzOP3XpV3M/S4whirHscKI/AAAAAAAAAAM/zh4tRtA1Vio/s1600-h/Tux.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 150px; height: 178px;" src="http://1.bp.blogspot.com/_TLzOP3XpV3M/S4whirHscKI/AAAAAAAAAAM/zh4tRtA1Vio/s320/Tux.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5443762929158353058" /&gt;&lt;/a&gt;Many people think that Linux is hard to use, slow, plain, and sometimes even scary.  A couple years ago, that was completely true.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Today, Linux is an extremely advanced operating system that is easy to use for average users, yet has much to offer developers.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Linux is a Unix-based kernel on top of which many modern operating systems have been built, such as Ubuntu, openSUSE, and Fedora.  Therefore, all of these operating systems follow the Unix idea of "modularity".&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The idea of modularity is that an operating system should not be one large program that you have to stick with, but instead a series of smaller programs linked together likes organs in the human body.  The only difference is that these programs can be easily switched out for one another, enabling high configurability.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;An example of this system is the desktop.  Other operating systems such as Windows and Macintosh force their idea of a good desktop onto you.  Linux lets you choose which desktop you want, and most of these desktops let you choose how they function.  You can install Gnome, KDE, Xfce, or whatever other desktop you want.  You can even install them side by side and choose which one you can choose from!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Don't want a desktop?  With a little configuration you can work with nothing more then a console!  What do you think of that?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Linux also has a super secure user-oriented architecture.  It defines many different users that do not show up on your log-in screen.  These users have very different abilities when it comes to modifying your computer.  For example, a game program installs under the user group "Games" and gains the ability to modify only your home directory and your global games settings directory for a computer-wide high scores system.  Want a program to have all the permissions of the system?  Just give it root user permissions.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Still feel insecure?  Install the free Clam Anti-Virus Library and easily integrate it into your operating system.  There are Clam file-systems that auto-check all of the files and Clam file manager extensions which let you right-click and press "Scan for Viruses".&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;One of the best features of Linux is its standard concept of a "Software Repository".  A "Software Repository" is an online source that has software checked by the same companies that gave you your Linux distribution.  "Software Managers" list all of this software in a searchable, categorized view.  All you have to do is press "Install" and you have safe software at your disposal.  Hate the software?  Press the "Uninstall" button and it will be removed without error.  Easy, right?&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;People say Linux desktop environments are plain and lame, which means they have never used Gnome with Compiz Fusion.  This combination enables fully configurable window decorations more beautiful then that of even Macintosh, you can even make it look like a Macintosh.  You can enable a 3-D environment called "Desktop Cube", which takes Gnome's multiple workspace system and turns it into a 3-D cube, cylinder, or sphere.  Sounds like they stole it from Macintosh?  Macintosh stole it from Linux!  You can see YouTube videos of that go back years before that of Macintosh.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;What's a workspace?  Another great idea that Linux uses all of the time.  It has multiple desktop views which can contain different sets of windows that you switch back and forth between by using a desktop switcher or the desktop cube.  Want a window to be on all workspaces at all times?  Most desktop systems support that, too.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Linux also has some of the best driver support.  There are drivers all over the internet for it, a lot of which are in the Software Repositories I mentioned.  There is support from mice to electronic flutes, and QWERTY keyboards to AZERTY keyboards.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;One of the best features of Linux is that it works on many, many platforms.  Intel, AMD, PSP, XBOX, and even phones chip-sets.  Almost all chip-sets are supported by Linux.  Windows and Macintosh cannot compare.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Linux doesn't limit you because the company wants to make more money, it gives you the ability to do anything.  You can modify the kernel, you can switch the desktop environment, you can tear it down and build it back up again.  The possibilities are limitless.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;What's the best thing about Linux?  It's free!  You can even get its source code and modify it. Literally millions of people from all over the world are making sure Linux is squeaky-clean.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;There are so many great things about Linux, can you name some good ones?&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-size: x-small;"&gt;Tux the Penguin, Linux's mascot, was created by lewing@isc.tamu.edu on The GIMP.&lt;/span&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=IuWtVqE2t_k:bxwZv9ozcjo:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=IuWtVqE2t_k:bxwZv9ozcjo:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=IuWtVqE2t_k:bxwZv9ozcjo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=IuWtVqE2t_k:bxwZv9ozcjo:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=IuWtVqE2t_k:bxwZv9ozcjo:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=IuWtVqE2t_k:bxwZv9ozcjo:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=IuWtVqE2t_k:bxwZv9ozcjo:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/IuWtVqE2t_k" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/3815078173902474272/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/03/why-i-use-linux-and-so-should-you.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/3815078173902474272?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/3815078173902474272?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/IuWtVqE2t_k/why-i-use-linux-and-so-should-you.html" title="Why I Use Linux and So Should You" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_TLzOP3XpV3M/S4whirHscKI/AAAAAAAAAAM/zh4tRtA1Vio/s72-c/Tux.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/03/why-i-use-linux-and-so-should-you.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MGRH09fyp7ImA9WxFTGU4.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-4678900121781338294</id><published>2010-02-16T18:53:00.004-05:00</published><updated>2010-04-10T16:30:25.367-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-10T16:30:25.367-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Games" /><category scheme="http://www.blogger.com/atom/ns#" term="Contests" /><title>Luiji's Frustration Contest!</title><content type="html">Go to &lt;a href="http://www.secretmaryo.org/phpBB3/viewtopic.php?f=21&amp;amp;t=3284" target="_blank"&gt;http://www.secretmaryo.org/phpBB3/viewtopic.php?f=21&amp;amp;t=3284&lt;/a&gt; in order to join my contest, and get a chance to have your name and website mentioned on my blog!&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_TLzOP3XpV3M/S8DftIinoTI/AAAAAAAAAEA/Uk3HXBdxoTg/s1600/Screenshot.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S8DftIinoTI/AAAAAAAAAEA/Uk3HXBdxoTg/s320/Screenshot.png" /&gt;&lt;/a&gt;Private message me secretmaryo.org a screencast of you beating the level without cheating (saving counts as cheating in this contest), then I will include your name and website on my "Winners" list on both my blog &lt;i&gt;and&lt;/i&gt; my next level!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;It's that easy!  Not!  This level is insanely hard.  One mistake, and your dead.  Don't be afraid, it's possible!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Have fun!&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=Mnye8PpDAZU:HjLujbweDV8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=Mnye8PpDAZU:HjLujbweDV8:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=Mnye8PpDAZU:HjLujbweDV8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=Mnye8PpDAZU:HjLujbweDV8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=Mnye8PpDAZU:HjLujbweDV8:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=Mnye8PpDAZU:HjLujbweDV8:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=Mnye8PpDAZU:HjLujbweDV8:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/Mnye8PpDAZU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/4678900121781338294/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/02/luijis-frustration-contest.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/4678900121781338294?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/4678900121781338294?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/Mnye8PpDAZU/luijis-frustration-contest.html" title="Luiji's Frustration Contest!" /><author><name>Brain Boy</name><uri>http://www.blogger.com/profile/01119314691109729544</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S4wn6ItfewI/AAAAAAAAABA/xc_XdDGc9o0/S220/einstein.png" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_TLzOP3XpV3M/S8DftIinoTI/AAAAAAAAAEA/Uk3HXBdxoTg/s72-c/Screenshot.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/02/luijis-frustration-contest.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkcGRn07cCp7ImA9WxBQF0o.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-5930221401104199003</id><published>2010-01-17T19:20:00.001-05:00</published><updated>2010-01-17T19:20:27.308-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-17T19:20:27.308-05:00</app:edited><title>I Finally Have a YouTube Account</title><content type="html">I finally decided to create a YouTube account titled Luiji99. &amp;nbsp;You can visit my channel at&amp;nbsp;&lt;a href="http://www.youtube.com/user/Luiji99" target="_blank"&gt;http://www.youtube.com/user/Luiji99&lt;/a&gt;. &amp;nbsp;My first video is a commercial-like demo of Secret Maryo Chronicles (see &lt;a href="http://brainboyblogger.blogspot.com/2009/12/secret-maryo-chronicles.html"&gt;my blog post&lt;/a&gt;).&lt;br /&gt;
&lt;br /&gt;
Theres only one video up as of this post. &amp;nbsp;I am going to edit the Secret Maryo Chronicles blog post and insert the video.&lt;br /&gt;
&lt;br /&gt;
Hopefully I will get some really good stuff online!&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VstHqcuIJzs:2rc0PPw41Xg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VstHqcuIJzs:2rc0PPw41Xg:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VstHqcuIJzs:2rc0PPw41Xg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VstHqcuIJzs:2rc0PPw41Xg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VstHqcuIJzs:2rc0PPw41Xg:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VstHqcuIJzs:2rc0PPw41Xg:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VstHqcuIJzs:2rc0PPw41Xg:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/VstHqcuIJzs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/5930221401104199003/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/01/i-finally-have-youtube-account.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/5930221401104199003?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/5930221401104199003?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/VstHqcuIJzs/i-finally-have-youtube-account.html" title="I Finally Have a YouTube Account" /><author><name>Brain Boy</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/01/i-finally-have-youtube-account.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0EGQ387eip7ImA9WxFTGU4.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-6750300661889804922</id><published>2010-01-13T19:59:00.002-05:00</published><updated>2010-04-10T16:33:42.102-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-10T16:33:42.102-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><title>Google Chrome</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_TLzOP3XpV3M/S8DgmkfJRGI/AAAAAAAAAEI/5FukQ9QFa0Q/s1600/Screenshot.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_TLzOP3XpV3M/S8DgmkfJRGI/AAAAAAAAAEI/5FukQ9QFa0Q/s320/Screenshot.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;Google Chrome is a web browser by Google Inc. &amp;nbsp;It is fast and simple, and works on Windows, Mac, and Linux. &amp;nbsp;It implements a great multi-processing scheme so that when a tab crashes, the web browser just says "Oops! &amp;nbsp;The web page crashed!" and the rest of your browser remains in tact. &amp;nbsp;The tabs integrate into the top bar and the windows can be styled to themes from the computer default to a stylish green window with little black vines covering the top.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;One of my personal favorite features is that if you have two Chrome windows open, you can drag a tab from one window into the other window. &amp;nbsp;In all of the other tabbed web browsers I have used (Firefox, Internet Explorer, and some others) I have had to copy and paste the URL to the other windows then reload the page.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;It has all of the good features of Internet Explorer and Firefox, such as&amp;nbsp;full-screen&amp;nbsp;mode, spell-checking, an advanced new tabs page.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;The downside to Google Chrome is that it is not fully compatable with all web pages. &amp;nbsp;Sometimes I will run in to weird little quirks on the web pages, such as collapsable menus that fail to hide. &amp;nbsp;These are rare enough to ignore.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;Now I have Google Chrome on all of my computers and it is awesome. &amp;nbsp;It makes my life on the web much easier. I highly recommend it.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;Google Chrome is free and you can learn more at&amp;nbsp;&lt;a href="http://www.google.com/chrome" target="_blank"&gt;http://www.google.com/chrome&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=QY9ZjeE_VPI:h9ryY8dGaIk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=QY9ZjeE_VPI:h9ryY8dGaIk:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=QY9ZjeE_VPI:h9ryY8dGaIk:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=QY9ZjeE_VPI:h9ryY8dGaIk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=QY9ZjeE_VPI:h9ryY8dGaIk:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=QY9ZjeE_VPI:h9ryY8dGaIk:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=QY9ZjeE_VPI:h9ryY8dGaIk:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/QY9ZjeE_VPI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/6750300661889804922/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2010/01/google-chrome.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/6750300661889804922?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/6750300661889804922?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/QY9ZjeE_VPI/google-chrome.html" title="Google Chrome" /><author><name>Brain Boy</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_TLzOP3XpV3M/S8DgmkfJRGI/AAAAAAAAAEI/5FukQ9QFa0Q/s72-c/Screenshot.png" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2010/01/google-chrome.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUAHQHs7fSp7ImA9WxBTGE4.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-6177368293581164374</id><published>2009-12-14T18:33:00.001-05:00</published><updated>2009-12-14T18:35:31.505-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-14T18:35:31.505-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Science" /><category scheme="http://www.blogger.com/atom/ns#" term="Biology" /><title>Domains in the Taxonomy Mnemonic</title><content type="html">There is a useful mnemonic that many people use to remember the Order of Classification.&amp;nbsp; It is "King Philip of Germany decided to walk to America.&amp;nbsp; What do you think happened?"&amp;nbsp; The helpful part is the answer.&amp;nbsp; &lt;b&gt;K&lt;/b&gt;ing &lt;b&gt;P&lt;/b&gt;hilip &lt;b&gt;C&lt;/b&gt;ame &lt;b&gt;O&lt;/b&gt;ver &lt;b&gt;F&lt;/b&gt;rom &lt;b&gt;G&lt;/b&gt;ermany &lt;b&gt;S&lt;/b&gt;oaked.&amp;nbsp; This translates as &lt;b&gt;K&lt;/b&gt;ingdom &lt;b&gt;P&lt;/b&gt;hylum &lt;b&gt;C&lt;/b&gt;lass &lt;b&gt;O&lt;/b&gt;rder &lt;b&gt;F&lt;/b&gt;amily &lt;b&gt;G&lt;/b&gt;enus &lt;b&gt;S&lt;/b&gt;pecies.&lt;br /&gt;
&lt;br /&gt;
Recently, a level above Kingdom has been added called Domain.&amp;nbsp; So far I have not been able to find an alternative mnemonic, so I created my own addition.&amp;nbsp; The answer is now &lt;i&gt;&lt;b&gt;D&lt;/b&gt;umb&lt;/i&gt; King Philip Came Over From Germany Soaked.&amp;nbsp; Dumb for Domain.&lt;br /&gt;
&lt;br /&gt;
Note that I am not insulating King Philip, that was just a joke.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=WuryVkxF3HY:U-7xWGUz2f0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=WuryVkxF3HY:U-7xWGUz2f0:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=WuryVkxF3HY:U-7xWGUz2f0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=WuryVkxF3HY:U-7xWGUz2f0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=WuryVkxF3HY:U-7xWGUz2f0:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=WuryVkxF3HY:U-7xWGUz2f0:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=WuryVkxF3HY:U-7xWGUz2f0:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/WuryVkxF3HY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/6177368293581164374/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2009/12/domains-in-taxonomy-mnemonic.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/6177368293581164374?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/6177368293581164374?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/WuryVkxF3HY/domains-in-taxonomy-mnemonic.html" title="Domains in the Taxonomy Mnemonic" /><author><name>Brain Boy</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2009/12/domains-in-taxonomy-mnemonic.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEcARX89eip7ImA9WxFTGU4.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-3649962711767479120</id><published>2009-12-13T15:21:00.012-05:00</published><updated>2010-04-10T16:40:44.162-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-10T16:40:44.162-04:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><title>Agave Color Scheme Designer</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_TLzOP3XpV3M/S8DiPviuY-I/AAAAAAAAAEQ/haPcA8qWcBE/s1600/Screenshot.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_TLzOP3XpV3M/S8DiPviuY-I/AAAAAAAAAEQ/haPcA8qWcBE/s320/Screenshot.png" /&gt;&lt;/a&gt;&lt;/div&gt;Recently I discovered a useful tool called Agave, a color scheme designer.&amp;nbsp; All you have to do is set the color and scheme type and it will generate a color scheme in a split-second.&amp;nbsp; I find it to be much simpler then calculating the scheme myself.&lt;br /&gt;
&lt;br /&gt;
The scheme types it supports are:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&amp;nbsp;Complements&lt;/li&gt;
&lt;li&gt;&amp;nbsp;Split-Complements&lt;/li&gt;
&lt;li&gt;&amp;nbsp;Triads&lt;/li&gt;
&lt;li&gt;&amp;nbsp;Tetrads&lt;/li&gt;
&lt;li&gt;&amp;nbsp;Analogous&lt;/li&gt;
&lt;li&gt;&amp;nbsp;Monochromatic&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
People who have taken art 101 may get confused using this program, as it uses the Red &lt;b&gt;Green&lt;/b&gt; Blue color wheel as supposed to the Red &lt;b&gt;Yellow&lt;/b&gt; Blue color wheel.&lt;br /&gt;
&lt;br /&gt;
Agave has a randomization button to create random color selection based on your scheme type and darken, lighten, saturate, and desaturated buttons to help you modify your base color without opening up the color dialog. &lt;br /&gt;
&lt;br /&gt;
It also has some features like the back and forward buttons that navigate your history of color schemes along with a favorites system so that you do not have to write down your color schemes into a text file.&lt;br /&gt;
&lt;br /&gt;
You can export your favorites to a &lt;a href="http://www.gimp.org/" target="_blank"&gt;GIMP&lt;/a&gt; color palette file.&amp;nbsp; This is useful because it simplifies the application of color schemes onto an image.&lt;br /&gt;
&lt;br /&gt;
An alternative is to right click on the outputted colors and click "Copy", then going to the GIMP, opening up either the foreground or background color selection dialogs, and pasting the color into the "HTML notation" box.&amp;nbsp; Note that when copying the color it puts a "#" followed by a hexadecimal color value representing the copied color.&lt;br /&gt;
&lt;br /&gt;
You can download Agave at "&lt;a href="http://home.gna.org/colorscheme/" target="_blank"&gt;http://home.gna.org/colorscheme/&lt;/a&gt;".&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VlKFE46dhF8:fmDr2BRBH4s:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VlKFE46dhF8:fmDr2BRBH4s:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VlKFE46dhF8:fmDr2BRBH4s:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VlKFE46dhF8:fmDr2BRBH4s:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VlKFE46dhF8:fmDr2BRBH4s:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=VlKFE46dhF8:fmDr2BRBH4s:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=VlKFE46dhF8:fmDr2BRBH4s:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/VlKFE46dhF8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/3649962711767479120/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2009/12/agave-color-scheme-designer.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/3649962711767479120?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/3649962711767479120?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/VlKFE46dhF8/agave-color-scheme-designer.html" title="Agave Color Scheme Designer" /><author><name>Brain Boy</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_TLzOP3XpV3M/S8DiPviuY-I/AAAAAAAAAEQ/haPcA8qWcBE/s72-c/Screenshot.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2009/12/agave-color-scheme-designer.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYEQXk-eip7ImA9WxBQF0o.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-8891013102377714721</id><published>2009-12-05T16:01:00.006-05:00</published><updated>2010-01-17T19:21:40.752-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-17T19:21:40.752-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><category scheme="http://www.blogger.com/atom/ns#" term="Games" /><title>Secret Maryo Chronicles</title><content type="html">A while back I installed a game called "Secret Maryo Chronicles" (SMC).&amp;nbsp; Of all the side-scrollers in the Ubuntu respository, SMC has the best graphics, music, and overall fun capacity.&lt;br /&gt;
&lt;br /&gt;
The latest version is v1.9, although the repository is limited to v1.8.&amp;nbsp; I beat all of the levels in v1.7 in a month.&amp;nbsp; A month afterwards when I upgraded I played it again and&amp;nbsp;beat it in two weeks.&lt;br /&gt;
&lt;br /&gt;
It is very addictive, and unlike other Mario tributes it is&amp;nbsp;more original.&amp;nbsp; For instance, the character Maryo is a much younger character that does not seem to be a plumber.&amp;nbsp; Another example is how they changed the Goomba character to something called a Furball.&lt;br /&gt;
&lt;br /&gt;
It does not have everything that the Mario series has.&amp;nbsp; It lacks, for example, a working war whistle.&amp;nbsp; From what I understand, in the Mario series the war whistle is used to give Mario the ability to fly.&amp;nbsp; Maryo has the ability to fly, but only when you enter SMC's debug mode and configure the debug options.&amp;nbsp; This massively slows down the program.&lt;br /&gt;
&lt;br /&gt;
Nonetheless, SMC is almost as good as Super Mario Brothers.&amp;nbsp; I cannot wait until v1.9 gets added to the repository.&lt;br /&gt;
&lt;br /&gt;
The SMC website can be found at: &lt;a href="http://www.secretmaryo.org/" target="_blank"&gt;http://www.secretmaryo.org/&lt;/a&gt;&lt;br /&gt;
Or you could use the Ubuntu command-line call "apt-get install smc smc-music".&lt;br /&gt;
SMC works on all sorts of operating systems, such as Linux, Windows, Mac OS X, and BSD.&lt;br /&gt;
&lt;br /&gt;
Here is a little demo video I made:&lt;br /&gt;
&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/m90e1OrXn7Q&amp;hl=en_US&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/m90e1OrXn7Q&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=7-_AtjNpgb0:_ZrIiHarQi8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=7-_AtjNpgb0:_ZrIiHarQi8:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=7-_AtjNpgb0:_ZrIiHarQi8:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=7-_AtjNpgb0:_ZrIiHarQi8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=7-_AtjNpgb0:_ZrIiHarQi8:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=7-_AtjNpgb0:_ZrIiHarQi8:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=7-_AtjNpgb0:_ZrIiHarQi8:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/7-_AtjNpgb0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/8891013102377714721/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2009/12/secret-maryo-chronicles.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/8891013102377714721?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/8891013102377714721?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/7-_AtjNpgb0/secret-maryo-chronicles.html" title="Secret Maryo Chronicles" /><author><name>Brain Boy</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2009/12/secret-maryo-chronicles.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4CQHY7fSp7ImA9WxBTEk0.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-120890237413549817</id><published>2009-12-05T06:18:00.007-05:00</published><updated>2009-12-07T11:39:21.805-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-07T11:39:21.805-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Book" /><title>Warriors Book Series</title><content type="html">The first three or four books in the series were wonderful.&amp;nbsp; It had cats going to war, what more do you need?&amp;nbsp; Plot, of course, which the series also had.&amp;nbsp; I loved it.&amp;nbsp; Emphasis on the -ed.&lt;br /&gt;
&lt;br /&gt;
By the fifth book, "A Dangerous Path", I lost interest.&amp;nbsp; It turned from a gory childrens book to the lamest war drama ever written.&amp;nbsp; Bluestar (the leading cat of the main character's clan) gave up on StarClan (the clan that the cats believes lives in the sky), and then the book went down the drain from there.&amp;nbsp; It got to the point in which I started thinking "just kill Bluestar off already".&amp;nbsp; I already knew eventually Fireheart (the main character) would eventually become the leader.&amp;nbsp; I just could not get passed the drama.&amp;nbsp; It was just too lame.&lt;br /&gt;
&lt;br /&gt;
I mean, Bluestar just kept on lying lonely in her room, snapping at people and started frivolous wars.&amp;nbsp; She was insane but everybody kept on following their stupid code that told them to never doubt their leader.&amp;nbsp; Who the heck came up with that in the first place?!&lt;br /&gt;
&lt;br /&gt;
Anyway, I do not recommend this book unless you like drama.&amp;nbsp; If you like drama, you will love this book the whole way through.&amp;nbsp; Tell me how it ends, if you have gotten all the way through.&amp;nbsp; Actually, I do not care.&amp;nbsp; The book sucks and it lost my interest entirely.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dx-_mG8CDOg:dhYQTSTPdAc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dx-_mG8CDOg:dhYQTSTPdAc:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dx-_mG8CDOg:dhYQTSTPdAc:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dx-_mG8CDOg:dhYQTSTPdAc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dx-_mG8CDOg:dhYQTSTPdAc:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=dx-_mG8CDOg:dhYQTSTPdAc:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=dx-_mG8CDOg:dhYQTSTPdAc:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/dx-_mG8CDOg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/120890237413549817/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2009/12/warriors-book-series.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/120890237413549817?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/120890237413549817?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/dx-_mG8CDOg/warriors-book-series.html" title="Warriors Book Series" /><author><name>Brain Boy</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2009/12/warriors-book-series.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk4ASXw4fip7ImA9WxBTEk0.&quot;"><id>tag:blogger.com,1999:blog-6845122193053173925.post-8711510398138711288</id><published>2009-12-05T05:14:00.006-05:00</published><updated>2009-12-07T11:55:48.236-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-07T11:55:48.236-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Problem" /><category scheme="http://www.blogger.com/atom/ns#" term="Computer" /><title>Ubuntu/XTux is a Bad Mix</title><content type="html">I love Linux. I love Ubuntu. I wanted to try XTux. I hate XTux. I think Ubuntu's package management system is susceptible to massive error. I am angry.&lt;br /&gt;
&lt;br /&gt;
Today I was browsing through the Synaptic Package Manager on the Ubuntu Linux Distrobution when I stumbled upon a game known as "XTux".&amp;nbsp; I was suspicious at first, as it required a server and client system where you start the server on your localhost and hook the client up. It was from the Ubuntu repository, though, so it was supposedly as non-viral as Ubuntu itself.&lt;br /&gt;
&lt;br /&gt;
I played it a little, and I decided to uninstall it. Guess what happened? It could not uninstall.&lt;br /&gt;
&lt;br /&gt;
I got the following error:&lt;br /&gt;
dpkg: error processing xtux-client (--remove)&lt;br /&gt;
dpkg: error processing xtux-server (--remove)&lt;br /&gt;
sub-process installed post-removal script returned error status 1&lt;br /&gt;
&lt;br /&gt;
Something like that.&amp;nbsp; It wrote a lot of other stuff that meant the same thing, too.&lt;br /&gt;
I tried restarting my computer. Then I tried reinstalling the program then uninstalling it, which gave me a little more progress. I finally knuckled down and used Google. The Ubuntu community posted a page at "&lt;a href="https://bugs.launchpad.net/ubuntu/+source/xtux/+bug/454115" target="_blank"&gt;https://bugs.launchpad.net/ubuntu/+source/xtux/+bug/454115&lt;/a&gt;" exactly about this error.&lt;br /&gt;
&lt;br /&gt;
As it turns out, the way to do it was to:&lt;br /&gt;
&lt;br /&gt;
1) Reinstall the program so that all of the corruption is overwritten.&lt;br /&gt;
2) Start up the terminal and execute the following code:&lt;br /&gt;
&lt;br /&gt;
$ sudo mkdir -p /etc/ggz/games /etc/ggz/rooms&lt;br /&gt;
$ sudo apt-get purge xtux-server&lt;br /&gt;
$ sudo mkdir -p /etc/ggz/clients&lt;br /&gt;
$ sudo apt-get purge xtux-client xtux-levels xtux-common&lt;br /&gt;
&lt;br /&gt;
3) And then the programs were gone.&lt;br /&gt;
&lt;br /&gt;
Thank you very much, Oliver Treichel, for your post that helped me with the most frustrating problem I encountered this month.&lt;br /&gt;
&lt;br /&gt;
After some thinking, I realized that Ubuntu does not have the best package management system. It has shell scripts for post installation and post uninstallation. If these scripts fail, there is no way to tell Ubuntu to just uninstall them. These scripts should not exist. Sure, they allow installed applications to configure the computer by doing stuff like setting up SQLite databases and configuring its own code, but it also enables hideous errors to occur.&lt;br /&gt;
&lt;br /&gt;
The problem with XTux's post-uninstallation script is that it wanted to remove directories that did not even exist. /etc/ggz was not a directory. It probably was on the programmer's system, but not on mine, nor many other user's, for that matter.&lt;br /&gt;
&lt;br /&gt;
I personally think that post-installation code should occur when you first start up the program and that programs should be built without the need for post-uninstallation scripts. Its just inane and frustrating for users like me. I am a program developer, and it took me 15 minutes to half an hour to find a solution to this mess. I cannot imagine the pain a normal user would have had to face. They might even have to pay someone to fix the issue, or they might give up on uninstalling the annoying game that required an unneeded client-server system that they promptly call XTux.&lt;br /&gt;
&lt;br /&gt;
I just hope that by the next version of Ubuntu coming in 2010 will have this bug fixed. Until then, my frustration continues.&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=JTLyfpsk_T8:TcyIIHPo7Ek:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=JTLyfpsk_T8:TcyIIHPo7Ek:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=JTLyfpsk_T8:TcyIIHPo7Ek:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=JTLyfpsk_T8:TcyIIHPo7Ek:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=JTLyfpsk_T8:TcyIIHPo7Ek:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:-BTjWOF_DHI"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?i=JTLyfpsk_T8:TcyIIHPo7Ek:-BTjWOF_DHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/BrainBoyBlogger?a=JTLyfpsk_T8:TcyIIHPo7Ek:63t7Ie-LG7Y"&gt;&lt;img src="http://feeds.feedburner.com/~ff/BrainBoyBlogger?d=63t7Ie-LG7Y" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/BrainBoyBlogger/~4/JTLyfpsk_T8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://brainboyblogger.blogspot.com/feeds/8711510398138711288/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://brainboyblogger.blogspot.com/2009/12/ubuntuxtux-is-bad-mix.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/8711510398138711288?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/6845122193053173925/posts/default/8711510398138711288?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/BrainBoyBlogger/~3/JTLyfpsk_T8/ubuntuxtux-is-bad-mix.html" title="Ubuntu/XTux is a Bad Mix" /><author><name>Brain Boy</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://brainboyblogger.blogspot.com/2009/12/ubuntuxtux-is-bad-mix.html</feedburner:origLink></entry></feed>
