<?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>Lost Whisper &#187; TwiRp</title>
	<atom:link href="http://lost-whisper.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://lost-whisper.com</link>
	<description>Yet another whisper lost.</description>
	<lastBuildDate>Wed, 16 Jun 2010 23:23:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>MongoDB and PHP on Webfaction</title>
		<link>http://lost-whisper.com/2010/06/16/mongodb-and-php-on-webfaction/</link>
		<comments>http://lost-whisper.com/2010/06/16/mongodb-and-php-on-webfaction/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 23:20:45 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[webfaction]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=447</guid>
		<description><![CDATA[So, this summer I decided I was going to try to learn some new things and update myself to some of the newer stuff out there. So PHP 5 added a whole slew of new features to PHP, but I&#8217;ve been stuck in PHP 4, so I figured I&#8217;d learn some of that.  I&#8217;ve also [...]]]></description>
			<content:encoded><![CDATA[<p>So, this summer I decided I was going to try to learn some new things and update myself to some of the newer stuff out there.</p>
<p>So PHP 5 added a whole slew of new features to PHP, but I&#8217;ve been stuck in PHP 4, so I figured I&#8217;d learn some of that.  I&#8217;ve also been stuck to relational databases (and that&#8217;s usually what they teach at school), but I&#8217;ve started to see some of the sites I know and love switching to non-relational databases.  So that was also something I wanted to learn how to work with.</p>
<p>I went online to search, and the three major contenders seem to be <a href="http://cassandra.apache.org/">Cassandra</a>, <a href="http://couchdb.apache.org/">CouchDB</a>, and <a href="http://www.mongodb.org/">MongoDB</a>.  I decided to go with MongoDB since it seemed like the easiest to use and setup, and I liked the idea of document-oriented storage.  CouchDB can be ran on <a href="http://www.webfaction.com?affiliate=emokid">webFaction</a> as well, but I&#8217;m not too sure about Cassandra (I&#8217;m guessing you can with effort).</p>
<p>So here&#8217;s my guide on getting it setup and ready to run.</p>
<p><span id="more-447"></span></p>
<p>So installing <a href="http://www.mongodb.org">MongoDB</a> on <a href="http://www.webfaction.com?affiliate=emokid">Webfaction</a>:</p>
<ol>
<li>Create a new custom application listening on port called mongodb</li>
<li>Create it and take note of the port</li>
<li>Login to your account via SSH</li>
<li>Switch to the directory of the mongodb app you just created<br />
<em>cd ~/webapps/mongodb</em></li>
<li>Download the latest version of the 32-bit version of MongoDB (1.4.3 as of writing)<br />
<em>wget http://downloads.mongodb.org/linux/mongodb-linux-i686-1.4.3.tgz</em></li>
<li>Extract the files from the archive<br />
<em>tar -xf mongodb-linux-i686-1.4.3.tgz</em></li>
<li>Create a data directory for your MongoDB installation<br />
<em>mkdir data</em></li>
<li><em> </em>Start up MongoDB<br />
<em>/home/[user]/webapps/mongodb/mongodb-linux-i686-1.4.3/bin/mongod &#8210;&#8210;dbpath /home/[user]/webapps/mongodb/data/ &#8210;&#8210;port [port]</em></li>
</ol>
<p>Doing that will launch MongoDB in the terminal.  To have MongoDB run as a background process and restart should it quit can be done with a few scripts.  My way isn&#8217;t probably the most elegant way to do it.  If mongoDB doesn&#8217;t exit cleanly, then you have to delete the lock, run repair, and restart the daemon, so there are 3 parts to my way and a dummy file, but you can probably easily merge it all into one file (I&#8217;m just too interested in playing with PHP and MongoDB to do so yet).</p>
<p>This is <strong>mongo.sh</strong>, it checks if the mongo daemon (mongod) is running, and it calls the appropriate action.</p>
<p style="padding-left: 30px;">
<div id="_mcePaste" style="padding-left: 30px;"><em>#!/bin/bash</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em># check if mongod is running</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em>ps -u [user] | grep -v grep | grep mongod</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em># if not found &#8211; equals to 1, start it</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em>if [ $? -eq 1 ]</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em>then</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em>/home/[user]/webapps/mongodb/startmongo.sh</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em>else</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em>/home/[user]/webapps/mongodb/runningmongo.sh</em></div>
<div id="_mcePaste" style="padding-left: 30px;"><em>fi</em></div>
<p>This is <strong>startmongo.sh</strong>, there&#8217;s a dummy file called &#8220;isnt_running.txt&#8221;  If it exists when startmongo.sh is ran, that means that mongod didn&#8217;t exit cleanly.  If it didn&#8217;t exit cleanly, we have to delete mongod.lock and run repair on the database.  Otherwise, we just try to start up mongod.</p>
<p style="padding-left: 30px;"><em>#!/usr/bin/env php<br />
&lt;?php<br />
// Check if MongoDB did not exit cleanly<br />
if(file_exists(&#8220;/home/[user]/webapps/mongodb/isnt_running.txt&#8221;)){<br />
unlink(&#8220;/home/[user]/webapps/mongodb/data/mongod.lock&#8221;);<br />
exec(&#8220;/home/[user]/webapps/mongodb/mongodb-1.4.3/bin/mongod &#8210;&#8210;dbpath /home/[user]/webapps/mongodb/data &#8210;&#8210;port [port] &#8210;&#8210;auth &#8210;&#8210;repair&#8221;);<br />
exec(&#8220;nohup /home/[user]/webapps/mongodb/mongodb-1.4.3/bin/mongod &#8210;&#8210;dbpath /home/[user]/webapps/mongodb/data &#8210;&#8210;port [port] &#8210;&#8210;auth&#8221;);<br />
}else{<br />
exec(&#8220;nohup /home/[user]/webapps/mongodb/mongodb-1.4.3/bin/mongod &#8210;&#8210;dbpath /home/emokid/webapps/mongodb/data &#8210;&#8210;port [port] &#8210;&#8210;auth&#8221;);<br />
$fp = fopen(&#8220;/home/[user]/webapps/mongodb/isnt_running.txt&#8221;, &#8220;w+&#8221;);<br />
fwrite($fp, &#8220;Starting up&#8221;);<br />
fclose($fp);<br />
}<br />
?&gt;</em></p>
<p>This is <strong>runningmongo.sh</strong>, it just deletes our dummy file letting us know that mongod is running.</p>
<p style="padding-left: 30px;"><em>#!/usr/bin/env php<br />
&lt;?php<br />
// Check if MongoDB did not exit cleanly<br />
if(file_exists(&#8220;/home/emokid/webapps/mongodb/isnt_running.txt&#8221;)){<br />
unlink(&#8220;/home/emokid/webapps/mongodb/isnt_running.txt&#8221;);<br />
}<br />
?&gt;</em></p>
<p>I just add mongo.sh to the crontab.  Mine runs every 20 minutes, but you can make it run sooner because if it does run every 20 minutes, that mean that the database could be down for 40 minutes.  Make sure to change [user] and [port] to your username and the port number you were given.</p>
<p><strong>crontab</strong></p>
<p style="padding-left: 30px;"><em>*/20 * * * * /home/[user]/webapps/mongodb/mongo.sh &gt; /dev/null 2&gt;&amp;1</em></p>
<h2>The PHP Stack</h2>
<p>In order to run PHP with the mongo drivers, you need your own installation of Apache and PHP.  WebFaction makes this somewhat easy to do.</p>
<ol>
<li>Create a new custom application listening on port and call it phpstack</li>
<li>Take note of the port.</li>
<li>SSH onto the server and go to the phpstack webapp directory<br />
<em>cd ~/webapps/phpstack</em></li>
<li>Download the PHPStack setup script (this is the one for PHP 5.3.1).<br />
<em>wget http://wiki.webfaction.com/attachment/wiki/MiscellaneousFiles/build_php_worker_531.sh?format=raw</em></li>
<li><em> </em> Rename the script to build_php_worker_531.sh<br />
<em>mv build_php_worker_531.sh\?format\=raw build_php_worker_531.sh</em></li>
<li><em> </em>Make sure the script is executable.<br />
<em>chmod +x build_php_worker_531.sh</em></li>
<li><em></em>Run the install script and specify the path to the phpstack, and the port number<br />
<em>./build_php_worker_531.sh /home/[user]/webapps/phpstack [port]</em></li>
<li>We have to install <a href="http://pear.php.net/">Pear</a> twice in order to get <a href="http://pecl.php.net/">PECL</a>.
<ol>
<li>Download the go-pear.php installer script<br />
<em>wget http://pear.php.net/go-pear </em></li>
<li>Rename it to go-pear.php<br />
<em>mv go-pear go-pear.php</em></li>
<li><em></em>Run it with the php_fcgi version of php<br />
<em>/home/[user]/webapps/phpstack/php_fcgi/bin/php go-pear.php</em></li>
<li><em></em>When it asks you about the paths, set $prefix to:<br />
<em>/home/[user]/webapps/phpstack/php_fcgi</em></li>
<li>Then run the installer.  Repeat the process for <em>php_rawcgi</em></li>
<li><em></em>For each installation (php_fcgi and php_rawcgi) run<br />
<em>/home/[user]/webapps/phpstack/php_fcgi/bin/pecl install mongo</em></li>
<li>Then in each php.ini (php_fcgi/lib/php.ini and php_rawcgi/lib/php.ini) add<br />
<em>extension=&#8221;mongo.so&#8221;</em></li>
</ol>
</li>
</ol>
<p>To keep things easy, you can place all of your website stuff inside of the phpstack/htdocs, or you can edit the httpd.conf to point towards one of your other webapps.</p>
<p>Now you might want to <a href="http://www.mongodb.org/display/DOCS/Security+and+Authentication">secure your MongoDB a bit</a>, and read up on <a href="http://php.net/manual/en/book.mongo.php">how to use it with PHP</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/06/16/mongodb-and-php-on-webfaction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jem is my hero</title>
		<link>http://lost-whisper.com/2010/06/12/jem-is-my-hero/</link>
		<comments>http://lost-whisper.com/2010/06/12/jem-is-my-hero/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 21:38:36 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[boobs]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=442</guid>
		<description><![CDATA[For those of you who don&#8217;t already know, Jem is a blogger/programmer/breast feeding activist/a lot of other stuff. I already stalk her on twitter and subscribe to her blog.  Lately, some big issue came up about breast feeding in public.  I for one support a mother&#8217;s decision to feed their child when the child is hungry, [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who don&#8217;t already know, <a href="http://www.jemjabella.co.uk/">Jem</a> is a blogger/programmer/breast feeding activist/a lot of other stuff.</p>
<p>I already stalk her on twitter and subscribe to her blog.  Lately, some big issue came up about <a href="http://www.jemjabella.co.uk/blog/you-are-a-fucking-twat">breast feeding in public</a>.  I for one support a mother&#8217;s decision to feed their child when the child is hungry, whether it be breast feeding, bottle, injections, or whatever.  Breast feeding in public is probably the most loving thing you could do for your child, so take a picture and show it too them when he or she is older because when your child grows up, they&#8217;ll probably appreciate it.</p>
<p>In the argument, <a href="http://www.jemjabella.co.uk/blog/i-got-trolled">someone</a> was arguing that Jem was a bully.  What a shocker.  Jem has her &#8220;pants&#8221; award (last one given out in January 2009)&#8230;  She rants and raves about everything, but she does it in a way that grabs you and hooks you into reading.  She&#8217;s actually quite entertaining, but back on topic!</p>
<p>People kept bringing up &#8220;Freedom of Speech&#8221; and &#8220;Cyber Bullying.&#8221;</p>
<p>Jem is in the UK, and those &#8220;targeted&#8221; were in the USA.  I&#8217;m not too sure about UK laws, but there&#8217;s not a lot of Federal laws in relation to cyber bullying (at the moment).  Currently, if Jem threatened to kill, kidnap, or injure someone, then she&#8217;d be in violation of USA Federal laws.  If she were to commit slander or libel on someone, then she would also be in violation of the laws (and I think the UK has a similar law about online content and Internet Service Providers about it?).</p>
<p>In terms of harassment online, several states have laws against it (not too sure how that plays out internationally), but there is currently a <a href="http://www.youtube.com/watch?v=_TI8xqLl_-w">bill trying to become a law</a>.  <a href="http://thomas.loc.gov/cgi-bin/query/z?c111:H.R.1966:">H.R. 1966</a> makes it if you harass or intimidate someone online, then you can face some jail time or a fine.  I understand the point of the law, but I personally think it&#8217;s too vague as it is.  An online argument would get you fined or jailed, but a verbal argument wouldn&#8217;t?</p>
<p>So Jem currently has nothing to really worry about.</p>
<p>Some of the other people have something to worry about.  Freedom of Speech does not cover inciting riots or acts of violence.  So be careful, because this could be considered illegal soon.</p>
<p><a href="http://twitter.com/AngelsInFire/status/15463296049"><img class="alignnone size-medium wp-image-443" src="http://lost-whisper.com/wp-content/uploads/2010/06/ss-300x168.jpg" alt="" width="300" height="168" /></a></p>
<p>The target (not jemjabella above) of the alleged attack was complaining about how she would respond and keep getting more and more replies.  Lesson 1 in keeping web site visitors and traffic, maintain good communication.  If you want people to shut up, don&#8217;t reply.  If you want attention and conversation, keep on replying and writing about it.  Jem provides a wonderful example of this.  Jem has written 4 blogs posts around the topic of breast feeding and she has over 116 comments on those blog posts.  That&#8217;s good communication.  Jem is my hero.</p>
<p>Don&#8217;t start thinking I condone or encourage cyber bullying, I don&#8217;t.  Jem is defending her right to breast feed her child in public to someone who publicly voiced their opinion on the issue.  (Facebook and Twitter are public by the way, I mean, if the privacy settings let it be seen).  If you&#8217;re going to voice your opinion, prepare for the backlash from the masses.  Hope for the best, expect the worst.</p>
<p>So who do I think was right in this whole argument thing?  No one really.  I just think it&#8217;s something fun and interesting to read.  If you can&#8217;t handle the arguments or criticism, then turn off the computer.</p>
<p>As for breast feeding in public, go for it.  Don&#8217;t flaunt your stuff, but if the baby needs food, the baby needs food.</p>
<p>In other news, my mom raised twins, and I know she breast fed them.  I&#8217;m wondering how that worked out in public when both were hungry&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/06/12/jem-is-my-hero/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Junior Year is Done!</title>
		<link>http://lost-whisper.com/2010/05/13/junior-year-is-done/</link>
		<comments>http://lost-whisper.com/2010/05/13/junior-year-is-done/#comments</comments>
		<pubDate>Thu, 13 May 2010 13:38:10 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=437</guid>
		<description><![CDATA[So my junior year is done and over with.  One more year to go before I graduate with a B.S. in C.S. This semester was fun and challenging.  I took the hardest math class offered for undergrads and passed (I won&#8217;t say with what though).  My GPA for the semester was a 3.5.  I made [...]]]></description>
			<content:encoded><![CDATA[<p>So my junior year is done and over with.  One more year to go before I graduate with a B.S. in C.S. <img src='http://lost-whisper.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>This semester was fun and challenging.  I took the hardest math class offered for undergrads and passed (I won&#8217;t say with what though).  My GPA for the semester was a 3.5.  I made a ton of new friends, did some fun new and exciting things, and had a blast all along the way.</p>
<p>Some of my highlights from this semester:</p>
<ul>
<li>Did the Spring play, &#8220;While the Lights Were Out&#8221;</li>
<li>Participated in &#8220;Humans vs. Zombies&#8221; which is a massive game of tag</li>
<li>Made a tons of new friends</li>
<li>Got a Nikon FG SLR (which takes <a href="http://photos.km-w.net">awesome photos</a>)</li>
</ul>
<p>And yeah&#8230;</p>
<p>Enough about the good stuff though, the semester was great overall, but this summer was supposed to be more productive, but it won&#8217;t be due to some people who lack communication skills.</p>
<p>I originally wanted to dual major in Computer Science and Mathematical Sciences.  So I filled out the form and turned it in.  At the end of the semester, I was told they lost the form.  I was also told that courses they said I was exempt from, I wasn&#8217;t exempt from.  So I signed up to take summer courses.  I called the school I was going to take summer courses at and asked if they offered the courses I needed to take for the summer.  They said they did, I went online to register, but the courses weren&#8217;t listed.  So I called back, and this is how the conversation went down</p>
<blockquote><p>Me: Hello, I called earlier and was told you offered Biology and History for the summer?<br />
Them: Yes, we do offer Biology and History for the summer.<br />
Me: Well, I checked online and they aren&#8217;t available for me to register for.<br />
Them: Oh!  That&#8217;s because we aren&#8217;t offering them <em>this</em> summer.</p></blockquote>
<p>If someone calls to ask about courses for the summer, which summer would they refer to?  I guess they technically weren&#8217;t lying, but in the first conversation it was something like &#8220;Do you offer History and Biology for the summer?&#8221;, &#8220;Yes&#8221;, &#8220;Is it too late to register for summer courses&#8221;, &#8220;No, please fill out the form online&#8221;, &#8220;Alright, thanks.&#8221;  They didn&#8217;t say the courses weren&#8217;t being offered <em>this</em> summer then&#8230;</p>
<p>So next semester, I need to argue to get exempt from a few courses, and then I need to convince some people that I can handle 21 credits a semester if I still want to dual major.  I might just switch it to a minor and see if that works out.</p>
<p>So how did your guys&#8217; schooling go this year?</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/05/13/junior-year-is-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nikon FG</title>
		<link>http://lost-whisper.com/2010/04/18/nikon-fg/</link>
		<comments>http://lost-whisper.com/2010/04/18/nikon-fg/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 03:52:57 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Artwork]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[fg]]></category>
		<category><![CDATA[nikon]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=435</guid>
		<description><![CDATA[So, someone gave me a Nikon FG. It&#8217;s a pretty cool camera; I&#8217;m liking it a lot so far. I&#8217;m running into a, well not an issue, but a hurtle or something like that.  I really want to learn how to use it and take good photos, but I&#8217;m hearing and reading the strangest things. [...]]]></description>
			<content:encoded><![CDATA[<p>So, someone gave me a Nikon FG.  It&#8217;s a pretty cool camera; I&#8217;m liking it a lot so far.</p>
<p>I&#8217;m running into a, well not an issue, but a hurtle or something like that.  I really want to learn how to use it and take good photos, but I&#8217;m hearing and reading the strangest things.  People compare film brands.  I understand comparing them for which one&#8217;s better, but I&#8217;ve been told that Kodak is good for pictures of people, while Fujifilm is good for landscapes and other things.  Off brand films might be Fujifilm, or some random brand.</p>
<p>I&#8217;ve also looked at filters.  There&#8217;s far too many.  I understand the ones for different lighting, and some people say to use them in unintended environments for cool effects.  Somewhat easy for me to understand.</p>
<p>The main thing I have issues grasping is how people know what settings to use on the camera.  I&#8217;m guessing it comes with experience.  I love film cameras, but when I don&#8217;t have the experience, sometimes I wish I could see the results instantly instead of taking a number of shots and waiting for a surprise from the photo lab.  But it&#8217;s all fun none-the-less.  The main confusing part is the f-stop or aperture setting.  I understand it changes how much light the lens lets in, but it still bewilders me.</p>
<p>Anyways, I bought some film to play around with, and hopefully I can get a hang of it and take the camera off of automagic mode.  There&#8217;s supposed to be a photo center that offers lessons, but they specialize in digital cameras, and I&#8217;ve been told they aren&#8217;t cheap&#8230;  So I&#8217;m hoping to go the experience route <img src='http://lost-whisper.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Anyways, I&#8217;ve started a new photo blog which will hopefully be kept alive.  You can see it at <a href="http://photos.km-w.net">photos.km-w.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/04/18/nikon-fg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Word Processing on a Mac, a Rant</title>
		<link>http://lost-whisper.com/2010/04/08/word-processing-on-a-mac-a-rant/</link>
		<comments>http://lost-whisper.com/2010/04/08/word-processing-on-a-mac-a-rant/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 04:36:06 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=430</guid>
		<description><![CDATA[Word Processing is quite frustrating for me lately.  I tend to work on several different types of documents, and as most of you know, I believe that certain tools are better for different jobs/tasks. I do love finding a program that I say, &#8220;Oh, I can do all of my needs in this one application.&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Word Processing is quite frustrating for me lately.  I tend to work on several different types of documents, and as most of you know, I believe that certain tools are better for different jobs/tasks.</p>
<p>I do love finding a program that I say, &#8220;Oh, I can do all of my needs in this one application.&#8221;  It&#8217;s awesome because I feel less bloated in a way.  Take for instance, VMWare Fusion and Parallels Desktop 5.  They both do the same thing, but VMWare Fusion has (in my opinion) a better Unity mode than Parallels&#8217; Coherence.  But Parallels has better support for OpenGL and 3D Graphics on their virtual machines, but VMWare feels more stable with the features it provides.  So, what do I do?  I have both (and use the both evenly just to let you know).</p>
<p>Anyways, back on topic.</p>
<p>Word processing has always been an issue for me on a Mac.  Windows keeps it simpler, somewhat.</p>
<p><span id="more-430"></span></p>
<h2>Word Processing on Windows</h2>
<p>In terms of user interface and design, I think that there are 3 main holders of power in Word Processing on Windows.  There&#8217;s <a href="http://office.microsoft.com/en-us/word/default.aspx">Microsoft Word</a>, <a href="http://www.corel.com/servlet/Satellite/us/en/Product/1151523326841#tabview=tab4">Corel WordPerfect</a>, and <a href="http://symphony.lotus.com/software/lotus/symphony/home.nsf/home">IBM Lotus Symphony</a>.  Sure that are some more out there, like <a href="http://www.openoffice.org/">OpenOffice.org</a> and <a href="http://abisource.com/">AbiWord</a>, but they follow the trend, and don&#8217;t try to set trends.  You may argue that IBM Lotus Symphony itself is based upon OpenOffice.org, but the user interface of Symphony sets it apart.  Symphony has it&#8217;s own look and feel, not something like &#8220;Hey, use us, we look just like the expensive stuff.&#8221;  I think OpenOffice.org and AbiWord are great projects and very useful, but they don&#8217;t really try to stand out among the crowd.</p>
<p>All of them pretty much have the features I need, it&#8217;s just the interface or pricing.</p>
<p>I love the interface of IBM Lotus Symphony.  The only problem right now is how bulky it is.  I can&#8217;t use it because of how slow and clunky it feels.  If it were snappier, it&#8217;d be my word processor of choice, but right now, I just keep my eye on it hoping for speed improvements.</p>
<p>Corel WordPerfect is a great tool.  I know people who refuse to use anything else.  I could never really get into it.  I&#8217;m looking at it now, and I like what I see, but now I&#8217;m on Mac, so I don&#8217;t see a point in buying it.</p>
<p>Microsoft Word is pretty much the standard.  I personally don&#8217;t like the &#8220;ribbon.&#8221;</p>
<p>On Windows, I currently use AbiWord or OpenOffice.org (the build from Go-Oo).  Sure I bash them for following, but they&#8217;re reliable and useful.  I also don&#8217;t use Windows very much, so I just need something cheap to open up documents when I am on Windows.</p>
<h2>Word Processing on a Mac</h2>
<p>On a Mac, you get the same basic choices that Windows has, <a href="http://www.microsoft.com/mac/products/Office2008/default.mspx">MS Word</a>, <a href="http://www.openoffice.org/">OpenOffice.org</a> (or <a href="http://www.neooffice.org/neojava/en/index.php">NeoOffice</a>), and <a href="http://symphony.lotus.com">IBM Lotus Symphony</a>.  You also get a load of other choices like <a href="http://www.nisus.com/">Nisus Writer</a>, <a href="http://www.redlers.com/mellel.html">Mellel</a>, <a href="http://www.bean-osx.com/Bean.html">Bean</a>, <a href="http://www.marinersoftware.com/sitepage.php?page=12">Mariner Write</a>, <a href="http://www.apple.com/iwork/pages/">iWork&#8217;s Pages</a>, <a href="http://pagehand.com/">Pagehand</a>, and much more (not to mention things like <a href="http://www.literatureandlatte.com/scrivener.html">Scrivener</a> or <a href="http://www.hogbaysoftware.com/products/writeroom">WriteRoom</a>).</p>
<p>MS Word is still the standard for most people.</p>
<p>OpenOffice, NeoOffice, and all the other derivatives still aim to provide the same feature set of MS Word.  I really hate the user interface on the Mac because it doesn&#8217;t flow.  Even though it no longer requires X11, it still looks like a Windows MS Word 97 clone.</p>
<p>IBM Lotus Symphony looks the same as it does on Windows.  I still love the user interface, but it&#8217;s still bulky and slow to run.</p>
<p>PageHand is a relatively new player in the Mac OS X Word Processing game.  I really like what it has so far, but it still has a long way to go.  I really need footnotes, headers, footers, and some other things that PageHand currently doesn&#8217;t provide.  I want to buy it, but I&#8217;m reluctant (although buying it would probably aid in development and get me the features I need).  Another one of my concerns, yet also my likes is it saves to the PDF format.  The actual markup is a comment in the PDF (I believe), which makes me concerned about necessary file size when sharing the document (but I can always Print-&gt;PDF I guess).</p>
<p>Mariner Write feels really old.  It&#8217;s still updated, but there&#8217;s times when I believe, that a meeting should be called, and an update to the modern age should happen.  Sure it&#8217;s friendly, but it feels like it&#8217;s designed for old people.  Not sure how to describe it, but I feel like I lose control in the wrong direction with it.</p>
<p>iWork&#8217;s Pages, on the other hand, makes me feel like I lose control in the right direction.  I really like Pages, but I don&#8217;t see me using it in my day to day writing.  I enjoy the interface, I enjoy the features, but when it comes down to some of the parts of the document I need to edit for classes, Pages needs a few more steps than what I want to take.  Mainly for custom footers and headers on every page, easy foot notes, and some other things (although I&#8217;m probably doing things wrong because I&#8217;ve been told it&#8217;s actually easy to do in Pages).</p>
<p>Mellel is a word processor that I keep looking at, trying, and finding myself hating for tampering with.  It&#8217;s a great tool, but the learning curve is too steep for me to make the jump.  I&#8217;d like to learn to use it, but I can&#8217;t find the time nor patience to do so.</p>
<p>Bean is a free minimal word processor.  It has the basic features most people need.  I think it&#8217;s okay for basic word processing, and it&#8217;s fast as can be, but it lacks the power I need.</p>
<p>Nisus Writer Pro is what I currently use.  I love the interface and the features, but it&#8217;s still a bit rough around the edges in comparison to some of the other things out there.  I rarely use images in my documents, but when I do, I always question why I&#8217;m trying to do it in Nisus.  Other than that, foot notes, headers, footers, and a lot of other things are easily.</p>
<p>I really like Nisus Writer, PageHand, and Symphony because the most common things I need to do are easily and readily accessible.  MS Word, OpenOffice, and some others have floating windows and a bunch of other things to customize regularly accessed or regularly changed  parts of a document creating too much clutter (in my opinion).  The person working on PageHand probably read my mind or something because they way it handles typography is simply beautiful to me.  I love the way it works.  I wouldn&#8217;t have bought Nisus Writer Pro if Symphony worked well enough for daily use on my computer (sorry Nisus).  Symphony is great project, but I think they need to work on making it more usable (or tolerable?).</p>
<p>My main issue with word processing on the Mac is that there are so many choices, and each choice handles things in its own way, which is both a blessing and a curse.  On Windows, it&#8217;s more of choose the one that opens the right file formats, or which one works nicely with your wallet.  On Mac, the concern is how do you, as the user, want your word processor to work with you (or how do you want to work with the word processor).</p>
<p>I think there are many great things coming out in the future.  OpenOffice is working on a new user interface (at least for Impress?), MS Office 2010 is supposed to come out soon, and PageHand is still relatively young and growing.  I haven&#8217;t heard that many rumors about an iWork &#8217;10 (other than there probably won&#8217;t be one).</p>
<p>Anyways, what do you use for word processing and why?</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/04/08/word-processing-on-a-mac-a-rant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Life&#8230; it could be better&#8230;</title>
		<link>http://lost-whisper.com/2010/03/29/life-it-could-be-better/</link>
		<comments>http://lost-whisper.com/2010/03/29/life-it-could-be-better/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 17:13:32 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[school]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=428</guid>
		<description><![CDATA[So in good or epic news! I start taking courses for my Master&#8217;s next year, and I finish my Bachelor&#8217;s at the same time.  I got into an elective I think will be interesting (World Folklore).  All of my classes fit in, and I can sleep in next semester (YAY!). In other news, school has [...]]]></description>
			<content:encoded><![CDATA[<p>So in good or epic news!</p>
<p>I start taking courses for my Master&#8217;s next year, and I finish my Bachelor&#8217;s at the same time.  I got into an elective I think will be interesting (World Folklore).  All of my classes fit in, and I can sleep in next semester (YAY!).</p>
<p>In other news, school has been draining the life out of me.</p>
<p>The Play was a success, and now that it&#8217;s over, there&#8217;s a lot of work to catch up on.</p>
<p>The play was awesome.  I played &#8220;Pierre Pourri,&#8221; the &#8220;International Playboy,&#8221; which doesn&#8217;t fit my image at all.  It was odd having to play the roll.  I&#8217;m not one to touch, let alone touch other people.  So it was awkward, but people seemed to like it none the less.</p>
<p>In terms of work.  I have two programming assignments to catch up on, an essay or two, and a lot of studying that needs to be done.</p>
<p>The good news is there&#8217;s only 5 weeks left in the semester.  The bad news is there&#8217;s only 5 weeks left in the semester.</p>
<p>Hopefully I can pull through with flying colors&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/03/29/life-it-could-be-better/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I bought the MacHeist nanoBundle&#8230;</title>
		<link>http://lost-whisper.com/2010/03/07/i-bought-the-macheist-nanobundle/</link>
		<comments>http://lost-whisper.com/2010/03/07/i-bought-the-macheist-nanobundle/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 00:17:04 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[macheist]]></category>
		<category><![CDATA[programs]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=418</guid>
		<description><![CDATA[So, I bought the MacHeist nanoBundle.  It&#8217;s reasonably priced. I mostly bought it for CoverScout, Flow, and Tales of Monkey Island. CoverScout CoverScout is really cool, but I&#8217;m annoyed at the SongGenie integration thing&#8230;  I don&#8217;t want to buy SongGenie.  It should check if it&#8217;s installed and then decide whether or not to use it. [...]]]></description>
			<content:encoded><![CDATA[<p>So, I bought the <a href="http://www.macheist.com/">MacHeis</a>t nanoBundle.  It&#8217;s reasonably priced.</p>
<p>I mostly bought it for <a href="http://www.equinux.com/us/products/coverscout/index.html">CoverScout</a>, <a href="http://extendmac.com/flow/">Flow</a>, and <a href="http://www.telltalegames.com/monkeyisland">Tales of Monkey Island</a>.</p>
<h2>CoverScout</h2>
<p>CoverScout is really cool, but I&#8217;m annoyed at the SongGenie integration thing&#8230;  I don&#8217;t want to buy SongGenie.  It should check if it&#8217;s installed and then decide whether or not to use it.  It also installs SongGenie by default (then tells you you have to pay for it after a trail).</p>
<p>Other than that, it&#8217;s pretty awesome.  It usually finds the cover I&#8217;m looking for instantly.  If it&#8217;s not directly on Amazon or Google images, you can launch a web browser, search for the image, and set it by clicking &#8220;Apply&#8221; from the web browser.  Pretty nifty.  It&#8217;s better than my previous way of searching through iTunes for albums with no covers, then passing the song name to a dashboard widget which would search amazon and yeah&#8230;  This ways a lot faster, nicer, and easier.</p>
<p><a href="http://lost-whisper.com/wp-content/uploads/2010/03/coverscout.png" rel="lightbox[418]"><img class="alignnone size-full wp-image-419" title="CoverScout" src="http://lost-whisper.com/wp-content/uploads/2010/03/coverscout_s.png" alt="CoverScout" width="250" height="190" /></a></p>
<h2>Flow</h2>
<p>Flow is another FTP/SFTP/AmazonS3 client.  It looks and feels awesome.  I&#8217;ll admit that there are many similar clients out there, and many of them also boast the same features.  One main feature Flow has that other don&#8217;t is an internal editor.  Other&#8217;s (ForkLift, Fetch, etc.) allow you to open files in an external editor, but for some of the smaller edits, it&#8217;s sometimes useful not to have to launch a separate application.</p>
<p>How does Flow go beyond the competition?  Pretty much just in the user interface.  It&#8217;s beautiful.  Transmit feels a bit outdated.  Fetch is awesome, but there&#8217;s small things that irk me (mainly presentations of transfers, and I swear it&#8217;s not at fast, but it&#8217;s probably just me).  Forklift is also good, but there are tiny visual elements to Forklift that offset me.</p>
<p>In all honesty, I already own Fetch and Forklift and probably would have never bought Flow if it weren&#8217;t for the nanoBundle.  It&#8217;s beautiful, but it won&#8217;t cause me to go &#8220;Oh, I already own an FTP app, but Flow is just to beautiful not to buy.&#8221;  But now I&#8217;m using Flow, mainly because I feel that a nice interface will increase my spirits helping to produce better results&#8230;</p>
<p><a href="http://lost-whisper.com/wp-content/uploads/2010/03/flow.png" rel="lightbox[418]"><img class="alignnone size-medium wp-image-425" title="Flow" src="http://lost-whisper.com/wp-content/uploads/2010/03/flow-300x199.png" alt="Flow" width="300" height="199" /></a></p>
<h2>Tales of Monkey Island</h2>
<p>For those of you who don&#8217;t know me, &#8220;The Secret of Monkey Island&#8221; is about the only computer game I play.  Tales of Monkey Island being on the nanoBundle sold me.  That&#8217;s pretty much why I bought it.  I don&#8217;t like spending more than $20 on a game, so a $20 bundle with a game I was itching to get had me sold.</p>
<p>No screenshot yet because I haven&#8217;t played it (downloading it now).  I love the original game, and I&#8217;m hoping that Tales of Monkey Island is just as fun.</p>
<h2>The other apps&#8230;</h2>
<p>So there are a bunch of other apps you get as well.  I can see myself using <a href="http://thelittleappfactory.com/ripit/">RipIt</a>, but I don&#8217;t normally watch movies, so it may just sit there&#8230;  <a href="http://www.marinersoftware.com/sitepage.php?page=85">MacJournal</a> feels a little bulky.  I&#8217;ve never been a fan of journal desktop clients, especially big and bulky ones&#8230;  I might use <a href="http://conceitedsoftware.com/products/clips">Clips</a>.  Never really tried a clipboard manager or anything like that because it was never part of my workflow.  <a href="http://www.realmacsoftware.com/rapidweaver/">RapidWeaver</a> hasn&#8217;t been unlocked yet.  I might use it, doubtable, but still possible.  I&#8217;ve never been a fan of WYSIWYG or template editors, but recently I&#8217;ve been caught in a &#8220;quick make a page for _____&#8221; and would have preferred a faster method, but I&#8217;m currently looking at <a href="http://www.theescapers.com/flux/index.html">Flux</a> for something like that (as it has more freedom than RapidWeaver).  For everything else, I use <a href="http://macrabbit.com/espresso/">Espresso</a> or <a href="http://macromates.com/">Textmate</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/03/07/i-bought-the-macheist-nanobundle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DVCS Hosting</title>
		<link>http://lost-whisper.com/2010/02/01/dvcs-hosting/</link>
		<comments>http://lost-whisper.com/2010/02/01/dvcs-hosting/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 18:52:17 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[bazaar]]></category>
		<category><![CDATA[bzr]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[hg]]></category>
		<category><![CDATA[mercurial]]></category>
		<category><![CDATA[Public]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=414</guid>
		<description><![CDATA[So I&#8217;ve been looking at different hosts for version control whatnot.  I would host it myself, but I prefer to put it in the hands of another, that way if things go wrong, I can blame someone else. I&#8217;m all for learning something new like Git, Hg, or Bzr.  When looking, I sortof eliminated Bzr [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been looking at different hosts for version control whatnot.  I would host it myself, but I prefer to put it in the hands of another, that way if things go wrong, I can blame someone else.</p>
<p>I&#8217;m all for learning something new like Git, Hg, or Bzr.  When looking, I sortof eliminated Bzr from the list.  There&#8217;s only one main host for it, and I&#8217;ve just heard bad things about it (yup, I listen to the rumors).</p>
<p>So here&#8217;s basically what I was looking for.</p>
<ul>
<li>Public and Private Repositories</li>
<li>Have collaborators on projects</li>
<li>Reasonable priced</li>
<li>Eye candy (sadly)&#8230;</li>
</ul>
<p>So I&#8217;ve been looking around and saw <a href="http://github.com">GitHub</a>, <a href="http://bitbucket.org">BitBucket</a>, <a href="http://codaset.com">Codaset</a>, and <a href="http://codebasehq.com">Codebase</a>.  I won&#8217;t really go into a feature by feature comparison, just point out what I like and don&#8217;t like.</p>
<h2>GitHub</h2>
<p>This is probably the most popular at the moment.  It&#8217;s known for it&#8217;s awesome Git hosting, being fast, reliable, and feature rich.</p>
<p>My favorite part of GitHub is the interface.  It&#8217;s nice on the eyes, easy to navigate, and makes it fun.  The downside is the features of the plans.  Public repo&#8217;s allow you to have as many collaborators as you want.  For Private Repositories, it&#8217;s based on your plan.</p>
<p>I usually only have 2-3 private repositories at a time, but the number of people I work with fluctuate.  The smallest plan (which provides much more space than I need), only provides 1 private collaborator.  Normally, it&#8217;s me and 2-3 other people (per project).  I don&#8217;t really want to pay that much more just to have more people collaborating on a project.</p>
<p>So GitHub is great, but needs to be more flexible in the number of collaborators.</p>
<h2>BitBucket</h2>
<p>BitBucket is pretty awesome.  It does Hg hosting.</p>
<p>It&#8217;s not as pretty as GitHub, in my opinion, but it does provide a great set of features.  What I really wish for is that the Source tab would display the readme file.  Other than that, it&#8217;s okay.  Could use a few minor changes to make it friendly and lovable, but good as it is.</p>
<p>My main nit-to-pick is how the project pages look.  Not that big of a nit-to-pick, but I like my eye candy <img src='http://lost-whisper.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  .  Other than that, it has a lot of the features I want.  I can have my private repositories, and have as many collaborators as I want.</p>
<p>I&#8217;ve heard rumors about uptime issues they previously had, but nothing recent.  I do wish the blog were updated more because (like I said earlier) it needs a more welcoming feel to it.</p>
<h2>Codebase</h2>
<p>Codebase supposedly hosts Git, Hg, and Svn.</p>
<p>I like what features it has listed.  My main issue is that the site isn&#8217;t well documented.  It has good instructions for using Git and setting stuff up, but there&#8217;s nothing much about the other features.  In terms of cost, it&#8217;s reasonably priced.  Good number of people you can have collaborating and everything, but it&#8217;s too costly for what I&#8217;ll be doing.</p>
<p>Codebase seems more like something for a small group or company.  So it&#8217;s really cool, but it aims to be in an area that&#8217;s not aligned with mine&#8230;</p>
<h2>Codaset</h2>
<p>Codaset is another Git host.  I think it&#8217;s kindof new&#8230;</p>
<p>It&#8217;s kindof like GitHub, but I think Codaset is more social.  Codaset provides a lot of what I want, but right now it doesn&#8217;t have a price setup.  The developer is still debating and setting up how to pay for it.</p>
<p>I love the features of Codaset, but my main nit-to-pick is how they&#8217;re setting up pricing.  It&#8217;s a great idea (don&#8217;t get me wrong), but I prefer a flat fee.  They haven&#8217;t implemented it yet, so I&#8217;ll see if I like it later on, but it&#8217;s sortof leaving me with my current setup of host personal stuff on GitHub and group projects on BitBucket.</p>
<p>Pay as you go is good, but I&#8217;m concerned about the implementation.</p>
<h2>In Conclusion&#8230;</h2>
<p>What do you currently use for your projects and why?  Do you work with people?</p>
<p>As I stated, I currently use both GitHub and BitBucket.  I might move it all to Codaset once I see it up and running with payments and all.  So yeah&#8230;  Thoughts, comments, suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2010/02/01/dvcs-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back Home!</title>
		<link>http://lost-whisper.com/2009/12/15/back-home/</link>
		<comments>http://lost-whisper.com/2009/12/15/back-home/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:53:32 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[parallels]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=412</guid>
		<description><![CDATA[I&#8217;m back home in Maryland now.  Fall semester is finally over. I&#8217;m hoping to take a break from everything, but there&#8217;s a lot to do to prepare for next semester. So yeah&#8230; Final grades came out today.  I&#8217;m proud of myself.  I&#8217;m hoping to raise my GPA up a little more to be in my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back home in Maryland now.  Fall semester is finally over.</p>
<p>I&#8217;m hoping to take a break from everything, but there&#8217;s a lot to do to prepare for next semester.</p>
<p>So yeah&#8230;</p>
<p>Final grades came out today.  I&#8217;m proud of myself.  I&#8217;m hoping to raise my GPA up a little more to be in my happy zone, but it&#8217;s sitting at a safe level right now.</p>
<p>Still working on a poem for the Transformations Project.  I was told it good right now, but I still feel like it&#8217;s missing something.</p>
<p>As for videos comparing VMWare Fusion to Parallels, VMWare Fusion just published an update that was supposed to fix a lot of stuff.<br />
I couldn&#8217;t get Team Fortress 2 to run well under Fusion (it kept glitching), but it ran fine under Parallels.  The new update (3.0.1) is supposed to offer a big boost in speed and whatnot.</p>
<p>The more I compare Parallels to VMWare, Parallels seems much better.  The only issue I run into is that Parallels will crash more often, although I&#8217;m guessing it&#8217;s the same reason why it seems better.</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2009/12/15/back-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apparently Buying Stuff is &#8220;Retro&#8221;</title>
		<link>http://lost-whisper.com/2009/11/30/apparently-buying-stuff-is-retro/</link>
		<comments>http://lost-whisper.com/2009/11/30/apparently-buying-stuff-is-retro/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 01:16:39 +0000</pubDate>
		<dc:creator>TwiRp</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[debate]]></category>
		<category><![CDATA[digital media]]></category>

		<guid isPermaLink="false">http://lost-whisper.com/?p=410</guid>
		<description><![CDATA[So I was told that buying music and programs is &#8220;retro.&#8221;  I asked several others for their thoughts, and many actually agreed. The was mostly a discussion of purchasing music online, but we also talked about applications and programs.  Most of the people I talked to felt it was fine to download music illegally.  Most [...]]]></description>
			<content:encoded><![CDATA[<p>So I was told that buying music and programs is &#8220;retro.&#8221;  I asked several others for their thoughts, and many actually agreed.</p>
<p>The was mostly a discussion of purchasing music online, but we also talked about applications and programs.  Most of the people I talked to felt it was fine to download music illegally.  Most said <em>you should</em> purchase applications, with a few saying alternative methods should be used.</p>
<p>I personally believe you should buy the music, movies, or applications.  I know that some of the stuff is expensive (and I&#8217;ll agree that some applications are over priced), but most of the time, the pricing is reasonable.</p>
<p>The main argument about music was a bit odd.  You can have 7,000 to 40,000 songs depending on your iPod (not including the suffle).  Songs normally cost anywhere from $0.69 to $1.29.  So assuming you&#8217;re luck enough to buy all of you music at $0.69, then you spend at least $4,000 (all prices in USD).  Larger iPods could go up to ~$30,000 to fill.  If you&#8217;re caught downloading music illegally, apparently most of the time, it&#8217;s a $3,000 &#8211; $10,000 fine.  So they were arguing that if you do get caught, it can be cheaper than filling up your iPod (but some get charged millions).</p>
<p>Some other arguments were that there are other crimes that are much worse that have a lower fine (don&#8217;t know how that&#8217;s an argument).  Apparently if you&#8217;re caught shoplifting a CD, it&#8217;s a lot cheaper.  I argued you don&#8217;t get as good quality <img src='http://lost-whisper.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  when you rip the CD&#8230;  That was a joke&#8230; Anyways, I found <a href="http://gapersblock.com/mechanics/2009/08/17/seven-crimes-to-consider-befor/">this blog post</a> analyzing some different crimes in Illinois that are cheaper than illegal downloading.  Instead of struggling to make ends meet though, you&#8217;ll be given a free room and meals in prison.  I&#8217;m not sure about you, but free food has me sold.</p>
<p>Some of the more sound arguments were that if it&#8217;s not made available to a person, then illegal downloading could be fine.  I still disagreed, but I do understand.  If a dead band you liked isn&#8217;t signed anymore and published an album on a vinyl record independently (and the songs weren&#8217;t sold on CD or anything else), there&#8217;s no way you&#8217;d find that in a store or an online store (you might, but chances are slim).  I wouldn&#8217;t say &#8220;Go and download it.&#8221;  I&#8217;d first say check eBay or check some pawn shops or something.  I&#8217;d advise not to download it illegally, but I wouldn&#8217;t be calling the music police if they did.</p>
<p>Anyways, in looking at some previous cases, it&#8217;s really odd.  One woman downloads 24 songs and pays $1.9 million (although she was just being tried for 24 songs when there were over 1,000?).  Another guy downloads 30 songs and pays $640,000.  I&#8217;m guessing it varies by song?  I&#8217;m wondering if the RIAA would take it easy on you if you logged all the people you shared music with or downloaded music from and gave that to them (not that people should try to find out).</p>
<p>So yeah, I do know this post is late on the whole &#8220;OMG RIAA is suing people!&#8221;  But the conversation just came up recently.  So what are your thoughts or feelings on the debate?  Apparently a lot of my friends disapprove of Obama now because he supports the whole RIAA fining up to $150,000 per song.  I didn&#8217;t vote (so I don&#8217;t think I can argue so-and-so would have been better because I didn&#8217;t voice my opinion at the election), but I do think the punishment is a bit high.  A song is usually at most $1.29, so I think the fine shouldn&#8217;t be 116279 times that.  $150 for downloading a song is punishment enough (I think), but then I agree that people distributing the music should pay more (but it should be proven that they distributed to # number of people, so they pay $150 * # of people or something like that up to a certain amount).</p>
]]></content:encoded>
			<wfw:commentRss>http://lost-whisper.com/2009/11/30/apparently-buying-stuff-is-retro/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
