<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hero Inc. &#187; Linux</title>
	<atom:link href="http://heroinc.org/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://heroinc.org</link>
	<description>where heroes are an everyday occurrence</description>
	<lastBuildDate>Thu, 09 Sep 2010 06:23:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Who&#8217;s Your PollDaddy&#8230;</title>
		<link>http://heroinc.org/2010/08/14/whos-your-polldaddy/</link>
		<comments>http://heroinc.org/2010/08/14/whos-your-polldaddy/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 16:11:59 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[polldaddy]]></category>
		<category><![CDATA[tor]]></category>
		<category><![CDATA[voting]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=1819</guid>
		<description><![CDATA[&#8230;or at least I think how I was able to vote multiple times for a Polldaddy, erm, poll. Quick backstory, a friend of mine was recently in a contest that required a community to vote on the best. Most votes wins the contest. Therefore, of course we wanted to vote as many times as possible [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;or at least I think how I was able to vote multiple times for a <a title="Polldaddy" href="http://polldaddy.com/">Polldaddy</a>, erm, poll.</p>
<p>Quick backstory, a friend of mine was recently in a contest that required a community to vote on the best.  Most votes wins the contest.  Therefore, of course we wanted to vote as many times as possible but the contest was using Polldaddy which allowed only a single vote per day.  That&#8217;s no fun and I assumed there had to be some other way.</p>
<p>My first step was to see how votes were being blocked.  I cleared the <a title="Wiki - Cache" href="http://en.wikipedia.org/wiki/Cache">cache </a>and <a title="Wiki - HTTP Cookies" href="http://en.wikipedia.org/wiki/HTTP_cookie">cookies</a>.  Well that didn&#8217;t work as that would have been just too easy for anyone to do.  Therefore, I began to assume it was IP based as that&#8217;s probably the best way to ensure a single vote for users, but it also prevents say a house of roommates for voting.  It&#8217;s a single vote per household and not the more accurate single vote per person per day.</p>
<p>I setup to research the tools that I would need and came up with the following:</p>
<ul>
<li><a title="Polipo" href="http://www.pps.jussieu.fr/~jch/software/polipo/">polipo</a> &#8211; Polipo is a small web proxy to funnel my requests through.  This was my first time using it.</li>
<li><a title="Firefox Extension - iMacro" href="https://addons.mozilla.org/en-US/firefox/addon/3863/">iMacro for Firefox</a> &#8211; This is an easy tool for scripting tasks within a browser.  I&#8217;ve used in the past to vote daily in contests where I&#8217;m too lazy to navigate to the site myself.</li>
<li><a title="Firefox" href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a> &#8211; If I&#8217;m using iMacro for Firefox, then I have to use Firefox.</li>
<li><a title="Torbutton for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/2275/">Torbutton for Firefox</a> &#8211; This is another Firefox extension that I had not used before.  It allows a browser to use <a title="Tor Project" href="http://www.torproject.org/">Tor</a> for online anonymity.</li>
<li><a title="Wmctrl" href="http://tomas.styblo.name/wmctrl/">wmctrl</a> &#8211; This is a command line tool for interacting with X Window Manager.  You&#8217;ll see how this is used in my bash script below.</li>
<li><a title="Wiki - Bash (Unix Shell)" href="http://en.wikipedia.org/wiki/Bash_(Unix_shell)">Bash</a> &#8211; I am using linux and not the best programmer so I just used what was available to me.  Please no jokes about my terrible scripts.  Everyone&#8217;s learning here.</li>
</ul>
<p>Now that I have the tools, I need to write two scripts.  The first script is the iMacro which is really easy to do.  The second script is the one to integrate the various components.</p>
<p>Upon installing iMacro, open the command window for it within Firefox.  It should open by default after installation.  You will find a record button.  Once pressed, anything you do in the browser will be recorded for playback or &#8220;automated browsing.&#8221;  Here&#8217;s my script for polldaddy:</p>
<pre>VERSION BUILD=6700624 RECORDER=FX
TAB T=1
URL GOTO=http://polldaddy.com/poll/[INSERT POLL ID NUMBER HERE]
TAG POS=1 TYPE=INPUT:RADIO FORM=NAME:formPoll ATTR=ID:[SELECTED VALUE FOR POLL]
TAG POS=1 TYPE=INPUT:BUTTON ATTR=VALUE:Vote!</pre>
<p>Now that the simple script is out of the way, its on to the more &#8220;difficult&#8221; one because my real scripting skills are beginner at best.  But armed with the internet, one can do almost anything.  I needed the bash script to do the following:</p>
<ol>
<li>Start Polipo</li>
<li>Start Firefox</li>
<li>Initiate the iMacro script I wrote above</li>
<li>Close Firefox correctly instead of just killing the process</li>
<li>Kill the Polipo task</li>
</ol>
<p>Well, here&#8217;s what I did with comments to state what each line is doing:</p>
<pre>#!/bin/bash

echo "#####################################";
echo "###     VoteOnPolldaddy Script   ###";
echo "##   created by Benjamin Trice   ###";
echo "###         July 06, 2010        ###";
echo "####################################";
echo;
echo;
echo;

echo "START SCRIPT";
#echo "Clear cahce for polipo";
#gnome-terminal -e "polipo -x";
#echo "Sleep for 2 seconds";
#sleep 2;
echo "Start Polipo";
gnome-terminal -e polipo;
echo "Sleep for 10 seconds";
sleep 10;
echo "Start Firefox";
gnome-terminal -e "firefox http://www.google.com";
echo "Sleep for 5 seconds"
sleep 5;
echo "Start Firefox with iMacro"
gnome-terminal -e "firefox http://run.imacros.net/?m=[INSERT IMACRO NAME].iim";
echo "Sleep for 75 seconds"
sleep 75;
echo "Close Firefox correctly"
wmctrl -c firefox;
sleep 5;
wmctrl -c firefox;
sleep 5;
pkill -f polipo;
echo "END SCRIPT";</pre>
<p>Here&#8217;s a few extra notes about setup.</p>
<ul>
<li>Not sure if it helps or not, but go into Firefox and set the preferences to clear the cookies and cache when Firefox is closed.  This option is why I had to use wmctrl to properly shutdown Firefox.  Killing the process, in my limited testing, seemed to not clear the cache and cookies properly.</li>
<li>Setting up Polipo with Tor and Firefox is simple.  The Tor Project even has a <a title="Tor Project - Running Tor on Linux" href="http://www.torproject.org/docs/tor-doc-unix.html.en">great guide</a> for that.</li>
<li>Setup a cronjob or other automated task launcher to run the bash script every 10 minutes or so.  I ended up using <a title="kAlarm" href="http://www.astrojar.org.uk/kalarm/index.html">kalarm</a> (yes, in Ubuntu) as my cronjob didn&#8217;t seem to run and I was getting aggravated at this point and went the lazy GUI route.  I did have some issues with the script not starting properly, but I attributed that to kAlarm and not the script itself.</li>
</ul>
<p>Now before any potential readers who care about this subject start attacking me, I know this solution isn&#8217;t perfect nor does it vote an infinite number of times.  It seemed to be limited by the IP addresses that Tor masked me as and as Polldaddy learns what anonymous IPs exist they will begin to block them.  My original goal was to figure out how to vote an infinite number of times in a day.  That goal failed but I was able to at least get the 5+ votes in a day that Polldaddy was blocking for myself and roommates.</p>
<p>Anyone have a better solution?</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2010/08/14/whos-your-polldaddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Setup Script</title>
		<link>http://heroinc.org/2010/05/09/ubuntu-setup-script/</link>
		<comments>http://heroinc.org/2010/05/09/ubuntu-setup-script/#comments</comments>
		<pubDate>Sun, 09 May 2010 20:02:18 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[file explorer]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[window buttons]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=1641</guid>
		<description><![CDATA[With the recent release of Ubuntu 10.04 LTS (Lucid Lynx), I found the need to help my transition to the new version of Linux that I currently use at home (desktop and netbook). I have become quite comfortable at making certain transitional changes upon upgrading, but why do I need to spend the time to [...]]]></description>
			<content:encoded><![CDATA[<p>With the recent release of <a href="http://www.ubuntu.com/products/whatisubuntu/1004features">Ubuntu 10.04 LTS (Lucid Lynx)</a>, I found the need to help my transition to the new version of Linux that I currently use at home (desktop and netbook).  I have become quite comfortable at making certain transitional changes upon upgrading, but why do I need to spend the time to fix a manual step that I can automate?</p>
<p>The script was initially created to make two changes:</p>
<ol>
<li>The location bar in the file explorer is defaulted to graphic based, instead of my personal comfort of text based</li>
<li>Ubuntu 10.04&#8242;s movement of the minimize, maximize, and close buttons to the left of the window as opposed to the right</li>
</ol>
<p>The script, found <a href="http://heroinc.org/files/setupMyUbuntu">here</a> (right click, save as), simply runs two simple commands within a terminal.  However, why type these commands (each on a single line) in when you can just run the script?  Like I said, I&#8217;m lazy.</p>
<div class="preSection">
<em>Command 1:  Move Window Buttons To Right</em></p>
<pre>gconftool-2 --set "/apps/metacity/general/button_layout" --type string
  "menu:minimize,maximize,close"</pre>
</div>
<div class="preSection">
<em>Command 2:  Change Window Location Bar To Text, Not Images</em></p>
<pre>gconftool-2 --set "/apps/nautilus/preferences/always_use_location_entry"
  --type bool "True"</pre>
</div>
<p>Hopefully I will update the script later to include a few of the following features:</p>
<ul>
<li>Import a synaptic package list of applications and install them</li>
<li>Modify the splash screen background image</li>
<li>Copy a backed up Home folder</li>
<li>Create separate script to be run before moving to the latest version of Ubuntu to backup the installed applications, bookmarks, and home folders</li>
</ul>
<p>If anyone wants to help out or have suggestions, let me know.</p>
<p>I&#8217;ll try to give a full review of Ubuntu once I spend more time with the OS, but as of right now, its AMAZING.  <a href="http://www.alz.org/index.asp">Purple suits me</a> much more than the old brown did.</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2010/05/09/ubuntu-setup-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Podcasting The Commute</title>
		<link>http://heroinc.org/2010/01/31/podcasting-the-commute/</link>
		<comments>http://heroinc.org/2010/01/31/podcasting-the-commute/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 23:59:50 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Heroes]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Sports]]></category>
		<category><![CDATA[diggnation]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[twit]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=1383</guid>
		<description><![CDATA[Now that I have settled into my new city and been placed on a new project at work, it is time to deal with the commute.  Please understand that this commute is by no means terrible even if it is about an hour and forty minutes each way (morning and afternoon).  The trip is a [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I have settled into my new city and been placed on a new project at work, it is time to deal with the commute.  Please understand that this commute is by no means terrible even if it is about an hour and forty minutes each way (morning and afternoon).  The trip is a straight shot based on the <a title="MUNI" href="www.sfmta.com">MUNI</a> (if it is running correctly that day) and <a title="BART" href="http://www.bart.gov/">BART</a>.  I am able to have a internet connection for about 90-95% of the trip so if I need to do work I have that option.  Some may say the BART is terrible, but I am provided an easy laugh twice a day as I read the &#8220;Committed to Excellence&#8221; Oakland Raiders sign that rests on the stadium.</p>
<p>However, there are those days where I don&#8217;t need to do any work and I can just sit back and enjoy the ride.  Now <a title="Our Life in Ecuador" href="http://allisonjimenez.blogspot.com/">my sister</a> will tell me that I should pick up a book to read.  Well I have picked up a book, which is just a book I started while at the beach this summer but never finished.  It&#8217;s just that I can&#8217;t force myself to read along this trip because I&#8217;m very picky about my reading spots.  That and I&#8217;m of the generation who doesn&#8217;t know what reading is.  We won&#8217;t laugh about that in the future, but we can laugh now.</p>
<p>Anyway, I decided to get back into listening to <a title="Wiki - Podcast" href="http://en.wikipedia.org/wiki/Podcast">podcasts</a> on my <a title="Creative Zen Vision W" href="http://www.amazon.com/Creative-Vision-Widescreen-Multimedia-Player/dp/B000IHBZHC">Creative Zen Vision W</a>, or the <a title="Betamax" href="http://images.google.com/images?q=betamax">Betamax player</a> as it is known on my project team.  I have been away from podcasting in general for several years so I wasn&#8217;t sure what was still out there or what new good ones were available.  Here&#8217;s a quick list of the ones I have found that I have enjoyed so far.</p>
<table>
<tr style="background-color:#008000;color:#FFFFFF;">
<th>Podcast Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href=""><img src="http://bitcast-a.bitgravity.com/revision3/images/shows/diggnation/diggnation_160x160.jpg" alt="DiggNation" height="160px" width="160px"/></a></td>
<td>DiggNation is pretty much where my world of podcasting started out.  DiggNation, hosted by Kevin Rose and Alex Albrecht, discusses the week&#8217;s top stories from the social news site, <a href="www.digg.com">Digg.com</a>. I truly enjoy the way the two hosts play off of each other and the topics can range from tech, news, sports, etc.  It is usually a random assortment of &#8220;news&#8221; selected by those that post to Digg.  I have listened to this podcast since it was first started as just audio.  Now with video, so much more is added to the experience.</td>
</tr>
<tr>
<td><a href="http://www.npr.org/rss/podcast/podcast_detail.php?siteId=4819388"><img src="http://media.npr.org/images/podcasts/thumbnail/npr_newscast_7am_image_75.jpg" alt="NPR 7AM News" height="160px" width="160px"/></a></td>
<td>I&#8217;m not a huge fan of the news, mainly because it is usually so depressing and only certain stories are stressed in the political realm.  NPR&#8217;s 7AM news report provides me a fast and effective update for the day&#8217;s news stories.  The report is offered in the audio clarity that only NPR can offer and usually is not much longer than 5 minutes in length.  Perfect for a quick update.</td>
</tr>
<tr>
<td><a href="http://sports.espn.go.com/espnradio/podcast/archive?id=2406595"><img src="http://a.espncdn.com/i/espnradio/podcast/images/pti_300x300.jpg" alt="PTI" height="160px" width="160px"/></a></td>
<td>Pardon The Interruption has become my true DVR pleasure.  Michael Wilbon and Tony Kornheiser are always entertaining and provide a quick shot of all the latest sports news.  I love watching this show daily but I ran into an issue recently where I didn&#8217;t have time to watch the show each day.  Thanks to the podcast, I don&#8217;t miss a beat.  The audio only version of the show is not as good as the real thing but it is as close as you are going to get if you just don&#8217;t have the time to sit in front of a TV to enjoy.  This one is not a push (<a href="http://en.wikipedia.org/wiki/Pardon_the_Interruption#Segment_3_.28various.29">Wilbon&#8217;s trademark</a>).</td>
</tr>
<tr>
<td><a href="http://twit.tv/twit"<img src="http://twit.tv/files/imagecache/coverart/coverart/twit300.jpg" alt="This Week In Tech" height="160px" width="160px"/></a></td>
<td>If DiggNation was my first podcast, then This Week In Tech is my tied first.  A weekly discussion of the week&#8217;s tech stories is hosted by Leo Laporte.  This is truely a geek&#8217;s show but I still find my chance ot laugh and enjoy another dose of tech talk.</td>
</tr>
<tr>
<td><a href="http://twit.tv/twig"><img src="http://twit.tv/files/imagecache/coverart/coverart/twig200_0.jpg" alt="This Week In Google" height="160px" width="160px"/></a></td>
<td>Provided by the same group that produces This Week In Tech and Security Now, TWIG (as it is known) follows the top stories related to Google or cloud computing.  I&#8217;ve only had a chance to enjoy a single episode, but I did find it interesting enough to give it another shot.  I&#8217;m just wondering if too much Leo Laporte in one week is good for me.</td>
</tr>
<tr>
<td><a href="http://twit.tv/sn"><img src="http://twit.tv/files/imagecache/coverart/coverart/podcast_2_3.jpg" alt="Security Now!" height="160px" width="160px"/></a></td>
<td>Not long after I was listening to TWIT and DiggNation while in college, Security Now! began.  I gave it a listen a few times in order to find out more within the security industry (might need this for work), but I just haven&#8217;t been able to consistently enjoy it.  That basically means I&#8217;ll drop it soon, but for those that are concerned with their computer security, then give the show a chance.  The show does find itself able to explain even the high level security issues so that normal users can understand them and how they could be affected.</td>
</tr>
<tr>
<td><a href="http://revision3.com/appjudgment"><img src="http://bitcast-a.bitgravity.com/revision3/images/shows/appjudgment/appjudgment_160x160.jpg" alt="AppJudgement" height="160px" width="160px"/></a></td>
<td>DiggNation was the first of many shows to come for the <a href="http://revision3.com/">Revision3</a> online network.  For those familiar with the days of TechTV, you&#8217;ll notice many old faces.  AppJudgement provides a simple review of applications or &#8220;apps&#8221; for smartphones.  These reviews are for both iPhone and Android phones.  Since I&#8217;m close to purchasing a smartphone (NOT AN IPHONE), I thought it&#8217;d be a great idea to begin finding some apps that I&#8217;d find useful.  The show runs between 5-10 minutes so it is easy to get in, learn, and get out.</td>
</tr>
<tr>
<td><a href="http://revision3.com/trs"><img src="http://bitcast-a.bitgravity.com/revision3/images/shows/trs/trs_160x160.jpg" alt="The Totally Rad Show" height="160px" width="160px"/></a></td>
<td>With my enjoyment of Alex Albrecht from DiggNation (that&#8217;s too many plugs for that show), I thought I would try his second Revision3 show, The Totally Rad Show.  TRS discusses movies, video games, and comic books.  I tried a single episode and enjoyed it but not sure if I will continue thanks to a few of the other shows below.</td>
</tr>
<tr>
<td><a href="http://revision3.com/coop"><img src="http://bitcast-a.bitgravity.com/revision3/images/shows/coop/coop_160x160.jpg" alt="CO-OP" height="160px" width="160px"/></a></td>
<td>Need a review of current and future video games?  Well, CO-OP is a well produced show that does just that.  My introduction to the show was an older episode that discussed Uncharted 2 and Super Mario Bros. Wii since I had just played both of them recently.  My time to spend playing games is not what it used to be but I might follow this show every now and then if I&#8217;m looking to find a new game to try.</td>
</tr>
<tr>
<td><a href="http://revision3.com/instmsgs"><img src="http://bitcast-a.bitgravity.com/revision3/images/shows/instmsgs/instmsgs_160x160.jpg" alt="InstMsgs" height="160px" width="160px"/></a></td>
<td>InstMsgs had the most interesting concept in that they dramatize all things web.  From instant messages to craigslist ads, they do it all.  I first heard of this show from the first podcast listed above (I can&#8217;t name it again or I might have to start paying fees) and thought &#8220;Why not?&#8221;  Well I jumped on for <a href="http://revision3.com/instmsgs/ruthere">episode 8</a>(Mad Men?) and that&#8217;s about as far as I&#8217;m going to get.  The show was good and interesting but I don&#8217;t know if it is enough for me to keep going with it.  Those who find lolcats funny might want to try <a href="http://revision3.com/instmsgs/instmsgs-10">episode 10</a>.</td>
</tr>
<tr>
<td><a href="http://revision3.com/ifanboy"><img src="http://bitcast-a.bitgravity.com/revision3/images/shows/ifanboy/ifanboy_160x160.jpg" alt="iFanboy" height="160px" width="160px" /></a></td>
<td>A podcast about comics?  I&#8217;m so there!  The discussion is sporadic in the episode (I&#8217;m only one in as of posting), but that&#8217;s the only way to describe comic book stories.  Finding new comics, diving deeper into stories, or providing interviews, this is a great stop to keep up or find out more about the world of comics.</td>
</tr>
<tr>
<td><a href="http://linuxoutlaws.com/"><img src="http://linuxoutlaws.com/files/albumart-mk4.png" alt="The Linux Outlaws" height="160px" width="160px" /></a></td>
<td>Since moving to Linux, I wanted a chance to learn more on a more consistent basis.  When I found Linux Outlaws, I thought that a podcast could be the perfect place if it was done correctly.  Well I&#8217;m only one show in (<a href="http://linuxoutlaws.com/podcast/123">Simple Doesn&#8217;t Equal Shit</a>) and I have a few thoughts.  First, I will not continue with this one if the running time is around 2 hours for each show.  I need shows that are an hour or under to truly enjoy a show during the commute.  Two hours is just way too much for me.  Second, the content is there in this one.  They discuss different flavors/distros, new application updates, and news within the Linux world.  As long as the time is shortened for future episodes, I&#8217;ll continue listening along.</td>
</tr>
</table>
<p>Anyone have any others I should try?  I am interested in checking out others that are not only tech based but I do like what I like.</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2010/01/31/podcasting-the-commute/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A Minty Fresh Jackalope</title>
		<link>http://heroinc.org/2009/08/02/a-minty-fresh-jackalope/</link>
		<comments>http://heroinc.org/2009/08/02/a-minty-fresh-jackalope/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 00:00:32 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=1202</guid>
		<description><![CDATA[It seems like many moons ago I was writing about my latest foray into the world of Linux thanks to my new netbook toy.  Before that I attempted to chronicle my journey into learning about the free OS.  I guess then that it is time for an update on my progress. After enjoying Mandriva for [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like many moons ago I was writing about my <a title="Hero Inc. - My Netbook" href="http://heroinc.org/2009/03/29/my-netbook/">latest foray</a> into the world of Linux thanks to my new netbook toy.  Before that I attempted to chronicle <a title="Hero Inc. - Linux" href="http://heroinc.org/category/linux/">my journey</a> into learning about the free OS.  I guess then that it is time for an update on my progress.</p>
<p>After enjoying <a title="Mandriva" href="http://www2.mandriva.com/">Mandriva</a> for well over a year, I decided it was time for a change.  Still fighting off that which is <a title="Popular Linux?" href="http://www.ubuntu.com/news/eWeek_and_DesktopLinux_declare_Ubuntu_the_Champ">popular</a>, I chose to go with <a title="Linux Mint" href="http://www.linuxmint.com/">Linux Mint</a>.  Built on top of Ubuntu but with a flare for elegance, it seemed like a great choice.  It&#8217;s been about a month since the move to Mint and I&#8217;d say my reaction has been mixed thus far.</p>
<p style="text-align: center;"><a href="http://www.heroinc.org/files/linuxmint.png"><img src="http://www.heroinc.org/files/linuxmint.png" alt="" width="350" height="280" /></a></p>
<p>Linux Mint does offer certain areas of improvement over Mandriva, mainly the user base for help.  I can use either the Ubuntu crowd or Mint specific users.  I&#8217;ve also noticed better performance in my VirtualBox from when it was run on Mandriva.  However, I&#8217;ve also run into the normal &#8220;this didn&#8217;t work out of the box&#8221; items that plague many new installations, such as issues with the video driver that prevent me from utilizing the accelerated graphics card functions.  I certainly don&#8217;t need the cool <a title="Compiz Fusion" href="http://www.youtube.com/watch?v=E4Fbk52Mk1w">visual affects</a>, but they were always nice to have within Mandriva.  I&#8217;m certain I can get them working if I take the time to update with the correct driver, but so far I haven&#8217;t really taken the time.  It also seems that I&#8217;m learning to like <a title="Gnome" href="http://www.gnome.org/">Gnome</a> or not even notice a true <a title="KDE vs Gnome" href="http://itmanagement.earthweb.com/osrc/article.php/3671906">difference with KDE</a>. Gasp!  Don&#8217;t tell the geeks or I&#8217;ll be thrown out, if I haven&#8217;t been already.</p>
<p>I&#8217;ve also noticed an annoying item related to my use of Pidgin.  It seems that when my computer is left alone for a period of time, Pidgin always seems to hog my resources when I try to use it again.  I&#8217;ve googled it but didn&#8217;t find many results.  I even tried to post to a <a title="Linux Mint Forum" href="http://forums.linuxmint.com/viewtopic.php?f=47&amp;t=29380&amp;p=170168&amp;hilit=pidgin#p170168">forum</a>, but you know you have to reply to those.  Oops.</p>
<p>With the OS change, requires a few application changes.  Not many mind you.  The biggest and most important change for me is the media manager application.  Previously with Mandriva I was using <a title="Hero Inc. - Amarok" href="http://heroinc.org/2008/04/13/we-will-amarok-you/">Amarok</a>.  Amarok is still to this day the best music software I have used but I&#8217;m not liking the new path it is heading with the major changes made for <a title="Amarok 2" href="http://amarok.kde.org/en/releases/2.1">version 2</a>.  It was my all inclusive software (music, tagging, media transfer to Creative Zen).  Linux Mint came with <a title="RhythmBox" href="http://projects.gnome.org/rhythmbox/">RhythmBox</a> oob, but it fell short.  I then tried <a title="Songbird" href="http://getsongbird.com/">Songbird</a> (still not understanding the need to combine the media manager with a browser).  So No luck there either.  Now it seems I&#8217;m using a mixture of <a title="Banshee" href="http://banshee-project.org/">Banshee</a> and <a title="Listen" href="http://sourceforge.net/projects/listengnome/">Listen</a>.  These are great for listening to my tunes but not so much for transferring files to my Creative Zen.  I&#8217;ve tried using <a title="Gnomad 2" href="http://gnomad2.sourceforge.net/">Gnomad 2</a> for transferring files, but my artwork is lost and that&#8217;s a kill switch for me.</p>
<p>Now that&#8217;s the desktop.  On to the netbook.</p>
<p>Since my netbook post, I&#8217;ve been using <a title="Eeebuntu Netbook Remix" href="http://www.eeextra.com/reviews/eeebuntu-netbook-remix-on-the-eee-pc.html">eebuntu netbook remix</a>, which was based on Ubuntu 8.10.  It was slick and really tried to utiize the smaller netbook screen and give you ease of navigation.  I loved it and thought I&#8217;d keep it forever, but updates put an end to that.  When I tried to upgrade to the 9.04, I saw an exterme performance drop in the graphical department.  At this point, I realized that I was not really using the netbook remix as it was intended and decided to change by installing Ubuntu 9.04 without the netbook remix addon.</p>
<p>Well, I must say that I&#8217;m impressed.  Everything I need has worked OOB with Ubuntu (wifi works, yay).  I&#8217;ve spent the past day or two customizing it to my somewhat liking.  As you can see, I still need to remove the wonderful gnome footprint start button icon.  Maybe I can get <a title="Him &amp; Her" href="http://bramandsons.com/blog/">Will</a> to make me a simple <a title="Google - Black Adam" href="http://images.google.com/images?q=Black%20Adam">Black Adam</a> lightining icon in reference to my netbook&#8217;s name (blackatom).</p>
<p style="text-align: center;"><a href="http://www.heroinc.org/files/Screenshot-2.png"><img src="http://www.heroinc.org/files/Screenshot-2.png" alt="" width="350" height="205" /></a></p>
<p>With the <a href="http://www.gnome-look.org/content/show.php/hydroxygen_iconset?content=88575">Hydoxygen</a> iconse, a customized <a title="Dust theme" href="https://wiki.ubuntu.com/Artwork/Incoming/DustTheme?action=show&amp;redirect=Artwork%2FIncoming%2FIntrepid%2FDustTheme">Dust</a> theme, and the <a title="AWN" href="https://launchpad.net/awn">AWN</a> dock bar (I found this one to be less process intensive than the <a title="Gnome-Do Docky" href="http://do.davebsd.com/wiki/index.php?title=Docky">Gnome-Do Docky</a> theme), I think I&#8217;m ready to go enjoy my netbook again. I might even come to like Ubuntu enough to put in on my desktop.  Apple lovers, please don&#8217;t begin to tell me my desktop is very similar to Apple&#8217;s setup.  Similarities just mean that something is working for a larger population.</p>
<p>I also tried a live boot of <a title="Moblin" href="http://moblin.org/">Moblin</a>, which was impressive but confusing.  Here&#8217;s hoping they can continue to improve it.</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2009/08/02/a-minty-fresh-jackalope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Netbook</title>
		<link>http://heroinc.org/2009/03/29/my-netbook/</link>
		<comments>http://heroinc.org/2009/03/29/my-netbook/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 19:26:49 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=974</guid>
		<description><![CDATA[There&#8217;s a new member of my computer family. The new bundle of joy arrived on Wednesday afternoon and has amazed all of those that have seen it in person.  That&#8217;s right peeps.  I&#8217;m the proud owner of a netbook. My original intent was not to get a netbook, but to possibly purchase a new mp3 [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a new member of my computer family.  The new bundle of joy arrived on Wednesday afternoon and has amazed all of those that have seen it in person.  That&#8217;s right peeps.  I&#8217;m the proud owner of a <a title="Netbook" href="http://en.wikipedia.org/wiki/Netbook">netbook</a>.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1003" title="netbook" src="http://heroinc.org/wp-content/uploads/2009/04/netbook.jpg" alt="netbook" width="350" height="300" /></p>
<p>My original intent was not to get a netbook, but to possibly purchase a new mp3 player.  However, most of the ones I found were not better than my current Creative Zen Vision W.  I wanted my new player to be able to play music and videos as well as provide the basic ability to surf the web.  After looking at my options, it seemed that a netbook could produce the same results.  Therefore, I purchased the <a title="ASUS Eee PC" href="http://www.amazon.com/gp/product/B001BY97IU">ASUS Eee PC</a>. For those unable to click the previous link, here are the basic stats on it.</p>
<ul>
<li>40GB Solid State Drive (No moving parts and less weight)</li>
<li>1.6 GHz Intel Atom N270 Processor</li>
<li>2 GB RAM (I upgraded during the purchase and installed myself)</li>
<li>6 Cell Battery (long life)</li>
<li>Linux (<a title="Xandros" href="http://en.wikipedia.org/wiki/Xandros">Xandros</a> or <a title="Debian" href="http://en.wikipedia.org/wiki/Debian">Debian</a> variant)</li>
</ul>
<p>Now before we go any farther, this technological wonder needs a name.  For those that are truly unfortunate to know me, understand that I name my pieces of tech based on, what else, but super heroes (Inventory =&gt;  Old Desktop: Lantern1, Old Laptop: <a href="http://en.wikipedia.org/wiki/Gray_Ghost_(Batman)">Gray Ghost</a>, New Desktop: <a href="http://en.wikipedia.org/wiki/Black_Panther_(comics)">Black Panther</a>/Lantern, Media Hard Drive: <a href="http://en.wikipedia.org/wiki/Cerebro">Cerebro</a>).  The netbook&#8217;s name is so perfect that I love to share it.  Based on the color and processor mentioned above, I dub thee Black Atom.  It is a combination name based on both <a title="Black Adam" href="http://en.wikipedia.org/wiki/Black_Adam">Black Adam</a> and <a title="The Atom" href="http://en.wikipedia.org/wiki/Atom_(comics)">The Atom</a>.  Bring on the geek jokes.</p>
<p>For those living in fear of Linux because you heard it is &#8220;difficult,&#8221; then this netbook is perfect for you.  Out of the box and fully charged, Black Atom runs like a charm.  It comes with all of the necessary software already installed and configured for your daily use, such as a browser (Firefox), Office Suite (StarOffice), Music Player (Amarok), Instant Messenger (Pidgin and Skype with web cam ability), Photo Organizer (Picasa) and Video Player (Kaffeine).  The interface is trimmed to not pose as a full desktop.  Some people may hate that, but I think for those non-techies it is perfect for what a netbook is used to do and it gives those techies the perfect ability to make the needed changes through back channels.</p>
<p style="text-align: center;"><img src="http://images.amazon.com/images/G/01/electronics/detail-page/eee-pc-screen-web.jpg" alt="ASUS Netbook Interface" /></p>
<p>Now on to tweaking Black Atom to my liking (opening the Linux up more for my use, adding my music, installing extra software, etc.).  I will leave you with a <a href="http://www.youtube.com/watch?v=k3IEV1r-hxw">quick video</a> I made of the machine starting up (notice the speed that comes with a solid state drive) and walking through the interface.</p>
<p>For future reference, here are a few great links that are helping me make Black Atom into the machine I want it to be.</p>
<ul>
<li><a href="http://wiki.eeeuser.com/howto:beginners_guide">Tweaking for Beginners</a></li>
<li><a title="Icons for Eee PC" href="http://icones.eee-pc.fr/">Icons, Icons, and More Icons</a> (In French)</li>
<li><a href="http://phorolinux.com/installing-filezilla-301-on-ubuntu-feisty-fawn.html">Install Filezilla</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2009/03/29/my-netbook/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Linux Pot Luck v2.0</title>
		<link>http://heroinc.org/2009/03/23/linux-pot-luck-v20/</link>
		<comments>http://heroinc.org/2009/03/23/linux-pot-luck-v20/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 00:56:25 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=821</guid>
		<description><![CDATA[I&#8217;m still doing the Linux thing at home and will be doing it in a mobile way soon (more to come later), but I figured I&#8217;d park my latest information concerning Linux for those interested as well as my own personal journal of my linux journey (A Penguin And Me Lives!). At least this way [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still doing the Linux thing at home and will be doing it in a mobile way soon (<a href="http://www.google.com/search?q=netbook">more to come later</a>), but I figured I&#8217;d park my latest information concerning Linux for those interested as well as my own personal journal of my linux journey (A Penguin And Me Lives!).  At least this way if I screw it all up in the future, I&#8217;ll remember what to go back and do.</p>
<ul>
<li><em>Databases</em> &#8211; Due to work at my job and other online related work, I&#8217;ve come to join the simplest most powerful tool I know, the <a href="http://en.wikipedia.org/wiki/Database">database</a>.  In my eyes a database should be created for anything and everything.  It can be as disposable as a piece of paper but as powerful as the information contained within it.  It holds my music habits as well as posts for this site.  At work if I get frustrated by the more powerful Excel commands, I&#8217;ll offer to throw everything into a quick database to run queries against.  I&#8217;m lazy and don&#8217;t feel like giving more of my mind to Microsoft at the moment.
<p>Overall, I&#8217;ve found that the best GUI tool available, for me at least, is <a href="http://www.minq.se/products/dbvis/">DBVisualizer</a>.  It works on Windows for those interested and is free.  Yay, free.  Most repositories should have it available for quick install.  I did encounter an issue when trying to start the program initially after the install.  It would fail every time.  Thanks to the internet, yet again, I found that I needed to modify the &#8220;my.cnf&#8221; file and comment out the &#8220;skip-networking&#8221; line.  With that simple change, I was up and running with ease.</li>
<li><em>Application List</em> &#8211; From the beginning of my work installing Linux at home, I&#8217;ve kept a application list document that helps me keep track of what I use daily and what I need to install to keep everything running smoothly.  This <a href="http://heroinc.org/files/Linux_Application_List.csv">application list</a> is not distro specific.
<p>I&#8217;ll continue to update it as I go for those, other than me, who are interested.</li>
<li><em>Amarok Scripts</em> &#8211; In a previous <a href="http://heroinc.org/2008/10/26/scripting-my-life/">post</a>, I mentioned writing a simple script to turn <a href="http://amarok.kde.org/">Amarok</a> into my own personal alarm clock.  Maybe I should have saved time and performed more research because someone built it before me and a billion times better.  I feel so small now.  <a href="http://www.kde-apps.org/content/show.php/weekalarm?content=23160">WeekAlarm</a> has a better interface than my script (mine had none) and the configuration parameters make it much easier to setup and control.
<p>I even found a good Amarok script that works with my IM client, Pidgin (see below).</li>
<li><em>Pidgin Plugins</em> &#8211; There are many different IM clients available (Google Talk, Skype, MSN, Yahoo, etc.) and I&#8217;m certain many people have accounts on all of them.  Having 4 applications open that perform the same task is just annoying in my eyes.  That&#8217;s why I use <a href="http://www.pidgin.im/">Pidgin</a>.  Not only does it work across multiple clients, but it is extensible in the same way that FireFox and Amarok are, via scripts or plugins.  As mentioned above, I have a Pidgin plugin, called <a href="http://code.google.com/p/musictracker/">MusicTracker</a>, that will update my IM status with whatever is currently playing from Amarok.  Since music is huge to me, this is kind of nice and easy for me to share.  However, the best plugin for Pidgin is one that comes by default.  This plugin, Text Replacement, is my biggest tool in my ultimate goal of scripting my life away.  Out of the box, it helps with the general everyday corrections that one commonly needs while sending messages online.  By adding on top of that, you can basically turn four letter word into a complete sentence that you type 20 times a day.  As an example, I use Pidgin at work and have the following text replacement scenarios setup (Text:What To Replace Text With).
<p>ATL:Atlanta, SFO:San Francisco, LAX:Los Angeles, FWD:Forward, FWDD:Forwarded, PLS:Please,HA3:Ha ha ha.</p>
<p>I usually add a few more each day because I can&#8217;t stand typing all of these out every time.  It may be my OCD taking over but I&#8217;d say it helps to speed up my typing.</li>
</ul>
<p>Oh yeah, for those also interested, <a href="http://maps.google.co.uk/maps?f=q&#038;ie=UTF8&#038;layer=c&#038;cbll=51.463944,-0.215446&#038;panoid=aTUlkjN4ZDh_2sWaOxjDPg&#038;cbp=12,96.223121611225,,0,27.20000000000002&#038;ll=51.46386,-0.215499&#038;spn=0,359.980688&#038;z=16">Waldo</a> has been found.</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2009/03/23/linux-pot-luck-v20/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scripting My Life</title>
		<link>http://heroinc.org/2008/10/26/scripting-my-life/</link>
		<comments>http://heroinc.org/2008/10/26/scripting-my-life/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 14:25:57 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=399</guid>
		<description><![CDATA[One of the great abilities of being a computer dork with limited programming training is the knowledge that one can make his/her life even better if he/she can script away the repetitive tasks of the day. In a previous post, I talked about the iMacro plugin for FireFox. Well, I&#8217;ve taken my life a step [...]]]></description>
			<content:encoded><![CDATA[<p>One of the great abilities of being a computer dork with limited programming training is the knowledge that one can make his/her life even better if he/she can script away the repetitive tasks of the day.  In a previous post, I talked about the iMacro plugin for FireFox.  Well, I&#8217;ve taken my life a step further by trying to create a few homemade scripts via <a title="BASH Wiki" href="http://en.wikipedia.org/wiki/Bash">BASH</a>.</p>
<p>Before people start to respond, yes I know I am a dork.  I realize that working on building scripts like these on a Saturday is not someone else&#8217;s idea of fun, but I enjoyed it and that&#8217;s all that matters.</p>
<ul>
<li><a title="Open Terminal As Root Script" href="http://www.kde-look.org/content/show.php/Open+Terminal+Here+As+Root?content=19311">Open Terminal Here As Root</a> &#8211; This script was sparked due to my dislike for having to navigate to specific folders via the command line.  Most linux/computer users will say I&#8217;m lazy and I&#8217;d have to agree with them.  I have a similar function on my work Windows environment thanks to the <a title="XP Power Toys" href="http://www.microsoft.com/windowsxp/Downloads/powertoys/Xppowertoys.mspx">Microsoft Power Toys</a> and I&#8217;ve always found it to be quite helpful and much faster for certain tasks.  I was planning to build this script for Linux (hoping it wouldn&#8217;t be too difficult to create), but <a title="Open Terminal As Root Script" href="http://www.kde-look.org/content/show.php/Open+Terminal+Here+As+Root?content=19311">someone</a> had already beaten me to it and posted it on <a title="KDE Look" href="http://www.kde-look.org/">kde-look.org</a>.  After downloading the file, I placed it in my home/$user/.kde/share/apps/konqueror/servicemenus in order for me to run the script through my system explorer (Konqueror).</li>
<li><a title="Get Team Trivia Answer Script" href="http://heroinc.org/wp-content/uploads/2008/10/gettriviaanswer">Get Team Trivia Answer</a> &#8211; As many of you may know, I quite frequently go to trivia with friends.  In Atlanta, there are many Team Trivia locations.  At these locations one question&#8217;s answer is always printed in advance on the team website.  Many times we forget to look at the answer.  This script uses several basic utilities to check the site, see if today has an answer, and if does, then the answer should be emailed to me.  For not knowing much about bash scripting, this one took me longer than I wanted it to take.  Part of the issue was this was the first script I wrote and I had to setup <a title="Sendmail" href="http://www.sendmail.org/">sendmail</a> on my system to work <a title="Sendmail with Gmail" href="http://www.linuxha.com/other/sendmail/gmail.html">with Gmail</a>.  As I write this, the script has just run and according to my email, today&#8217;s trivia Answer is <strong>McJob</strong>.</li>
<li><a title="Amarok Alarm Clock" href="http://heroinc.org/wp-content/uploads/2008/10/amarokalarmclock">Amarok Alarm Clock</a> &#8211; Often times I enjoy waking up to Amarok playing music.  However, I often have forgotten to reset the volume level so that my music isn&#8217;t turned up to 11 and I have to jump out of bed due to the noise.  I&#8217;d rather wake up gradually.  The Amarok Alarm Clock script starts amarok and then gradually increases the volume until it is at 100%.  I even haded an extra check to turn off amarok after 15 minutes at full power.  My roommate has often times complained that I forget to turn off amarok when I leave for the weekend or I am away for week due to work.  This was very simple and easy to build thanks to Amarok&#8217;s wonderful <a title="Amarok API" href="http://amarok.kde.org/wiki/DCOP_Functions">API</a>.</li>
<li><a title="URPMI Unlock" href="http://heroinc.org/wp-content/uploads/2008/10/urpmireleaselock">URPMI Unlock</a> &#8211; URPMI is the command-line package management tool used by the <a href="http://www.mandriva.com/">Mandriva Linux</a> distribution<strong>. </strong>There have been a few times when I try to update/download new packages for my system that I receive an error stating that urpmi is currently locked.  This script, which I did not build and found on a <a title="Linux Forum - unlock urpmi?" href="http://www.linuxforums.org/forum/mandriva-linux-help/98906-unlock-urpmi.html">forum</a>, will unlock urpmi.  It&#8217;s as simple as that.</li>
</ul>
<p>To automate these scripts to run each day, I use kAlarm which I mentioned in a <a title="Hero Inc. - KAlarm" href="http://heroinc.org/2008/08/10/kalarm/">previous post</a>.  The same funcationality could be performed as a cron job, but like I said above, I&#8217;m lazy.</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2008/10/26/scripting-my-life/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux Pot Luck v1.0</title>
		<link>http://heroinc.org/2008/09/29/linux-pot-luck-v10/</link>
		<comments>http://heroinc.org/2008/09/29/linux-pot-luck-v10/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 03:31:41 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=204</guid>
		<description><![CDATA[It&#8217;s been quite a while since I have posted anything concerning my computer and with the new purchase I made a few weeks ago, maybe I should share a pot luck of computer related news. After two years of threatening, I finally broke down and purchased a new computer. I was mainly looking for something [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a while since I have posted anything concerning my computer and with the new purchase I made a few weeks ago, maybe I should share a pot luck of computer related news.</p>
<ul>
<li>After two years of threatening, I finally broke down and purchased a <a href="http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01374050&amp;lc=en&amp;dlc=en&amp;cc=ca&amp;lang=en&amp;product=3686674">new computer</a>.  I was mainly looking for something that was better than my old Dell, which by this point is about 6 years old.  The new machine, dubbed <a href="http://en.wikipedia.org/wiki/Black_Panther_(comics)">Black Panther</a>, is running Mandriva Spring 2008 and is turning out much better than I had hoped it would.</li>
<li>The new computer was minus a few extra PCI slots so I had to purchase a new wireless device.  I went with the <a href="http://www.linksys.com/servlet/Satellite?c=L_Product_C2&amp;childpagename=US%2FLayout&amp;pagename=Linksys%2FCommon%2FVisitorWrapper&amp;cid=1134691790190">Linksys Compact Wireless &#8211; G USB Adapter</a>.  I had read on a forum before purchasing that it worked well with Linux distrobutions.  The forum was right and the Compact G worked out of the box with Mandriva.</li>
<li>With the new install, I was missing many commercial and non-commercial components that I would need to return my new machine to the way I had my old Linux desktop setup.  One of the key items was the <a href="http://download.videolan.org/pub/libdvdcss/">libdvdcss</a> library which allows me to burn the DVDs I have purchased in order to watch my movies on the road.  Of course, with libdvdcss, I would need <a href="http://rpm.pbone.net/index.php3/stat/4/idpl/6729477/com/transcode-1.0.5-4plf2008.1.i586.rpm.html">transcode</a> so that K3B could correctly rip and encode the files.  I think I might be getting better at this search online for linux answers thing.</li>
<li><a href="http://www.youtube.com/watch?v=E4Fbk52Mk1w">Compiz Fusion</a> running on a faster system is simply a must.  It provides the great visuals that all of those Mac fanboys rave about.  I personally love the <a href="http://www.youtube.com/watch?v=IBaNaiZlnLo">cube</a> and <a href="http://www.youtube.com/watch?v=Ff9Sm-7fC6E">ring</a> effects.  The beauty of it all is that it is FREE!!!!</li>
<li>Once my system was up and running I wanted to setup Amarok with MySQL instead of SQLite since I had heard of the amazing speed one would gain with the change.  However, when I tried to install MySQL via the RPM in Mandriva I encountered a problem every time.  It seemed my root MySQL account was already given a default password and I didn&#8217;t know it.  I tried numerous installs but received the same issue.  After a few searches, I came to discover that the MySQL RPM for release candidate 2008.1 release candidate 1 contained an issue if the computer was labeled &#8220;localhost&#8221;.  I read up on the <a href="https://qa.mandriva.com/show_bug.cgi?id=38398#c5">bug</a> and followed the wonderful instructions of one Oden Eriksson and my problem was solved rather quickly.  First stop MySQL and Amarok, next stop <a href="http://www.mythtv.org/">MythTV</a>.</li>
<li>I found a great <a href="http://showmedo.com/">website</a> when I was searching for how to <a href="http://fosswire.com/2008/03/17/video-screen-capture-in-linux-with-recordmydesktop/">record my desktop</a>.  The website has many web videos that show you how to do different things.  I was even fortunate to see one about <a href="http://www.asterisk.org/">asterisk</a> which I was looking to work with at work in a few days.</li>
</ul>
<p>I think I got a little link happy in this post but I did warn from the start that it was going to be a pot luck of sorts.</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2008/09/29/linux-pot-luck-v10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>kAlarm</title>
		<link>http://heroinc.org/2008/08/10/kalarm/</link>
		<comments>http://heroinc.org/2008/08/10/kalarm/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 14:53:33 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=99</guid>
		<description><![CDATA[kAlarm to me is the app I was searching for months to find when I was using Windows. I always wanted an &#8220;alarm clock&#8221; application that could launch my windows media player. However, when I did search, I only found applications that didn&#8217;t truly work or required money I was not willing to spend. kAlarm [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pim.kde.org/components/kalarm.php">kAlarm</a> to me is the app I was searching for months to find when I was using Windows.  I always wanted an &#8220;alarm clock&#8221; application that could launch my windows media player.  However, when I did search, I only found applications that didn&#8217;t truly work or required money I was not willing to spend.  kAlarm does everything I want and maybe some more that I don&#8217;t even know about.</p>
<p style="text-align: center;"><img class="alignnone" title="kAlarm" src="http://pim.kde.org/img/screenshots/kalarm.png" alt="" width="579" height="371" /></p>
<p>kAlarm can be found as part of the <a href="http://pim.kde.org/">kdepim</a> package, which will provide your KDE environment with many other mini applications design around personal information management (PIM).  Since I use Thunderbird, most of the other PIM applications are not for me, but kAlarm is it hook, line and sinker.  kAlarm is super easy to setup and repeat just like a normal alarm.  It can be set to launch a note, script, file, command, or even email.  I did write a simple Amarok script to launch my favorite &#8220;alarm clock&#8221; playlist, but now I just have it run the amarok command to begin playing.  Either way works the same.  I&#8217;ll probably try to write a new Amarok script to increase the volume as it plays over a period of time.  This way I can keep the music soft when I fall asleep and increase the volume as the alarm clock goes off.</p>
<p>I did accidentally remove this application for a week or more and waking up in the morning was just not the same and not as easy to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2008/08/10/kalarm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tux and I Part Ways</title>
		<link>http://heroinc.org/2008/07/24/tux-and-i-part-ways/</link>
		<comments>http://heroinc.org/2008/07/24/tux-and-i-part-ways/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 10:56:12 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://heroinc.org/?p=77</guid>
		<description><![CDATA[Today I bid farewell to A Penguin and Me. I&#8217;m not departing Linux from my home PC. I&#8217;m just parting ways with my separate website. I was finding that I was having less time to post specifically about Linux on A Penguin and Me. My original intent was to have others post along side of [...]]]></description>
			<content:encoded><![CDATA[<p>Today I bid farewell to <a title="A Penguin and Me - Google Cache" href="http://209.85.215.104/search?q=cache:iyWcbNI76FcJ:apenguinandme.com/+apenguinandme.com&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;gl=us&amp;client=firefox-a">A Penguin and Me</a>.  I&#8217;m not departing Linux from my home PC.  I&#8217;m just parting ways with my separate website.  I was finding that I was having less time to post specifically about Linux on A Penguin and Me.  My original intent was to have others post along side of me, but alas, that did not happen either.  Therefore, with my friend&#8217;s (<a href="http://mustachioed.net/blog">Will</a>) passing advice, I decided to hang up A Penguin and Me.</p>
<p>I still plan to post about my adventures with Linux, but all of the posts will appear on this website and not A Penguin and Me.  All traffic directed to that site will be forwarded to the <a title="Hero Inc. - Linux" href="http://heroinc.org/category/linux/">Linux category</a> page of Hero Inc.  I&#8217;ve already moved over all posts from APAM.  It was fun while it lasted.  Mainly fun because I really liked that WordPress theme.</p>
<p style="text-align: center;"><a href="http://heroinc.org/wp-content/uploads/2008/07/snapshot4.jpg"><img class="size-medium wp-image-82 aligncenter" title="A Penguin and Me" src="http://heroinc.org/wp-content/uploads/2008/07/snapshot4-300x60.jpg" alt="A Penguin and Me Logo" width="300" height="60" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://heroinc.org/2008/07/24/tux-and-i-part-ways/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
