<?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>Harv&#039;s World</title>
	<atom:link href="http://harvsworld.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://harvsworld.com</link>
	<description>Please pardon the mess. I am still under construction.</description>
	<lastBuildDate>Tue, 10 Apr 2012 13:56:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>jQuery&#8217;s on() function, not what I expected</title>
		<link>http://harvsworld.com/2012/04/jquerys-on-function-not-what-i-expected/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquerys-on-function-not-what-i-expected</link>
		<comments>http://harvsworld.com/2012/04/jquerys-on-function-not-what-i-expected/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 04:28:07 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://harvsworld.com/?p=1418</guid>
		<description><![CDATA[I hope I&#8217;m not dating myself too much here&#8230; I am used to using jQuery&#8217;s .live() function whenever I needed an action performed on an element that wasn&#8217;t initially in the DOM. Say for example, I have a page and &#8230; <a href="http://harvsworld.com/2012/04/jquerys-on-function-not-what-i-expected/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I hope I&#8217;m not dating myself too much here&#8230; I am used to using jQuery&#8217;s <a title="jQuery .live() function" href="http://api.jquery.com/live/" target="_blank"><span class="code">.live()</span></a> function whenever I needed an action performed on an element that wasn&#8217;t initially in the DOM.</p>
<p>Say for example, I have a page and on that page is a button that loads a modal window (you get a pop-up box and the rest of the screen greys out). The content of the modal window is new (ajax loaded from the server) and it has a button to (for example) save, exit, OK, etc. I would use <span class="code">.live()</span> in that scenario so that the jQuery action associated with the newly formed button would run.</p>
<p>Well, I needed that bit of functionality yesterday and went to pull up the documentation to refresh my memory on it&#8217;s usage. And lo and behold it&#8217;s been deprecated! Not only is there a newer function (as of 1.4.3+) to use instead ( <a title="jQuery .delegate() function" href="http://api.jquery.com/delegate/" target="_blank"><span class="code">.delegate()</span></a> ), but there&#8217;s a newer update (as of 1.7+) to *that* which is called <a title="jQuery .on() function" href="http://api.jquery.com/on/" target="_blank"><span class="code">.on()</span></a>. Damn it. Sometimes this stuff moves just too fast.</p>
<p>Anyway, I read up on it a little (not much to read out there) and I tried to implement it. I got caught up on a snag and figured I&#8217;d mention to see if I am the only dunce, or if I found something moderately intriguing. I figure the former, but hope for the latter.</p>
<p>Here is a sample of the code I was trying to run:</p>
<pre>&lt;div class='linkholder'&gt;
     &lt;a href='somepage.php' class='jquerydosomething' id='12345'&gt;click me&lt;/a&gt;
&lt;/div&gt;</pre>
<p>My jquery code looked like this:</p>
<pre>function dosomething (event) {
      alert('ID is '+event.data.id);
      alert('Action is '+event.data.action);
}
$('a.jquerydosomething').on("click", { id: $(this).id, action: makewidget }, dosomething);</pre>
<p>Simple right? Wrong. The variable &#8220;action&#8221; which I had manually typed in got passed along to the dosomething function nicely and worked as expected. However the id, which I wanted to pass along dynamically, did not work as expected. I was assuming (incorrectly) that &#8220;this&#8221; would refer to the anchor tag. I tried:</p>
<ul>
<li>using <span class="code">$this.id</span> and <span class="code">this.id</span> instead</li>
<li>placing the calls to <span class="code">$(this)</span> or <span class="code">$this</span> or this inside the dosomething function instead of passing it as a variable</li>
</ul>
<p>all trying to get to the reference to the anchor. I don&#8217;t know exactly what was passed, but debugging through Firebug showed a lot of gibberish that looked like the entire DOM of the page.</p>
<p>So how did I fix it?</p>
<p>Well I changed the line with <span class="code">.on()</span> to the following and moved the calls to &#8220;this&#8221; inside my dosomething function in the form of <span class="code">this.id</span>:</p>
<pre>$('.linkholder').on("click", ".jquerydosomething", { id: $(this).id, action: makewidget }, dosomething);</pre>
<p>So if I were to make an educated guess about what&#8217;s going on here&#8230; and really I would say it&#8217;s more just a &#8220;guess&#8221; period. It seems as though the <span class="code">.on()</span> function has a reference to all the objects on the left of the dot as &#8220;this&#8221; (in this case, it would be all references to anything with a class of &#8220;.linkholder&#8221;). UNLESS you have a selector specified in the set of parameters (.jquerydosomething in this case) which it will then return the the object(s?) with matching selectors that have the triggered event (&#8220;click&#8221; in this case).</p>
<p>I suppose my question would be aren&#8217;t those two rather redundant? I would imagine the way I wrote it the first time it would only return the object that matched the selector (&#8220;a.jquerydosomething&#8221;) that had the triggered event. I suppose I could just write <span class="code">$.on(&#8220;click&#8221;, &#8220;.jquerydosomething&#8221;, dosomething)</span> but I wonder if having the initial selector (.linkholder in this case, but I could just as easily use the &#8220;a&#8221; tag&#8230; maybe) gives a performance boost since the internal selector doesn&#8217;t have to scour the entire DOM looking for a match.</p>
<p>If anyone has any insight on what I may be missing, or indeed, the proper terminology when referencing the selectors (inside function vs outside/left of the dot) I&#8217;d greatly appreciate it. While I&#8217;ve got it working the way I want, improvement is always welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2012/04/jquerys-on-function-not-what-i-expected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mass Effect 3 Demo Brief Overview</title>
		<link>http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mass-effect-3-demo-brief-overview</link>
		<comments>http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 02:17:06 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Harv's News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bioware]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[mass effect 3]]></category>
		<category><![CDATA[shepard]]></category>

		<guid isPermaLink="false">http://harvsworld.com/?p=1385</guid>
		<description><![CDATA[Wow. This game is going to be uh-maze-zing. The demo (available HERE) doesn&#8217;t last too long, and there is no saving your progress. So you&#8217;ve pretty much got to run straight through it. It starts with Shepard on Earth and &#8230; <a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wow. This game is going to be <strong>uh-maze-zing</strong>.</p>
<p>The demo (available <a href="http://masseffect.bioware.com/about/demo/">HERE</a>) doesn&#8217;t last too long, and there is no saving your progress. So you&#8217;ve pretty much got to run straight through it. It starts with Shepard on Earth and the council calls for him when they get wind of the Reapers coming to Earth&#8230; now.</p>
<div id="attachment_1399" class="wp-caption aligncenter" style="width: 650px"><a href="http://harvsworld.com/wp-content/uploads/2012/02/mass-effect_screenshot-034-o.jpg"><img class="size-large wp-image-1399" title="mass-effect_screenshot-034-o" src="http://harvsworld.com/wp-content/uploads/2012/02/mass-effect_screenshot-034-o-1024x576.jpg" alt="" width="640" height="360" /></a><p class="wp-caption-text">Mass Effect 3 launches on March 6, 2012. Demo available for PC, Xbox, and PS3. Screenshot courtesy of Bioware @ masseffect.com</p></div>
<p><span id="more-1385"></span></p>
<p><a href="http://youtu.be/79_7FD6cmF0">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_1-start.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/79_7FD6cmF0/2.jpg" alt="" /></a></span></p>
<p><a href="http://youtu.be/LcMZ7agMnFY">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_2-hallway.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/LcMZ7agMnFY/2.jpg" alt="" /></a></span></p>
<p>I haven&#8217;t even finished ME2 yet, so I don&#8217;t know the meaning of the awkward glances between Ashley and Shepard. If you play as the female Shepard, you still get the same looks.</p>
<p><a href="http://youtu.be/slW5Rg8M9PI">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_3-awkward.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/slW5Rg8M9PI/2.jpg" alt="" /></a></span></p>
<p>The &#8220;ish&#8221; has hit the proverbial fan. A little conversation leads up to the Reapers landing and demolishing everything in sight. Your job in the first part of the demo (and presumably the full game when it drops) is to reach the Normandy and get off planet to go get help.</p>
<p><a href="http://youtu.be/Nxw3xrvrDLQ">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_4-kablooey.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/Nxw3xrvrDLQ/2.jpg" alt="" /></a></span></p>
<p><a href="http://youtu.be/G2rBu_6mSrQ">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_5-takethis.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/G2rBu_6mSrQ/2.jpg" alt="" /></a></span></p>
<p>A look at the melee attack, both in a charged version (blade comes out) and just thumping the husks on the head with you pistol. Then a little in-game cinematic.</p>
<p><a href="http://youtu.be/W8bYpmRHgMQ">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_6-melee.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/W8bYpmRHgMQ/2.jpg" alt="" /></a></span></p>
<p>I believe the destruction of the dreadnaught is caused by your forward progress. I think the first time I ran through this I watched the two of them battle it out for a minute before moving on. I&#8217;m not sure how long they&#8217;d slug it out if you stood just before the trigger point indefinitely. Making a mental note to try that&#8230;.</p>
<p><a href="http://youtu.be/62JAeYSxO5E">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_7-kablooey2.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/62JAeYSxO5E/2.jpg" alt="" /></a></span></p>
<p>The second part of the demo puts you further into the game on a mission to go get Wrex laid, er, find him a Krogan female so they can&#8230; talk? The Krogram female, for some reason, is in a force-fielded container that they have to escort up several levels to the roof so Wrex can pick her up.</p>
<p><a href="http://youtu.be/5vBYFxKrfRI">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_8-Wrex.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/5vBYFxKrfRI/2.jpg" alt="" /></a></span></p>
<p><a href="http://youtu.be/ZvdURFnOQwM">Youtube link for mobile</a>, <a href="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_9-turret.mp4">Download original MP4</a></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/"><img src="http://img.youtube.com/vi/ZvdURFnOQwM/2.jpg" alt="" /></a></span></p>
<p>There&#8217;s more to be seen, but this is all I captured. There are full walkthroughs available on Youtube, check those out if you want to see the whole demo without actually playing it. I would, however, highly recommend you take the time to download it.</p>
<p>A few notes. As usual for this franchise, most cut-scenes are done using the in-game graphics engine. So if you&#8217;ve never seen a Mass Effect game before, those scenes are not pre-rendered movies. Nope they are actually what the game looks like *all* the time. The demo understandably doesn&#8217;t have many options to tweak for the PC in terms of graphics performance. Basically you can set your resolution and turn on/off shadows and anti-aliasing. Having said that&#8230; the game looks gorgeous. The attached videos I captured using <a href="http://www.fraps.com/" target="_blank">FRAPS</a> at 60fps using my monitors native resolution of 1680&#215;1050 (60fps seems to be locked for the game).</p>
<p>Gameplay seems very solid. I didn&#8217;t like the new semi-automatic assault rifle in the second part of the demo, I&#8217;d prefer a full auto. I did, however LOVE the shotgun. Absolutely brutal at close range and fairly effective at distance.</p>
<p>If you have a save game already on your machine the demo will pick it up and use that as your default player if you choose the &#8220;action&#8221; option when starting. This option doesn&#8217;t give you any dialog choices. The &#8220;role playing&#8221; mode is the normal ME mode, and there is a &#8220;story&#8221; mode which says it has even more dialog and less shooting up (why would you want that?). This is an interesting option if they choose to keep it for the final game.</p>
<p>A pre-final note. I wasn&#8217;t too happy about having to install Origin to get this demo. ME3 will be the only game I ever use Origin for, and it&#8217;s only because I want to see the series through till the end. I made an image of my machine that will get restored the instant I finish playing. I only wish that game developers and publishers would stop making it hard on honest folk who will shell out cash for their game and don&#8217;t want intrusive, borderline spyware on their machines in order to play.</p>
<p>Final Note: The video captures were made on my main desktop with the following specs:</p>
<ul>
<li>CPU: Core i7 2600k &#8211; stock speeds</li>
<li>RAM: 16 GB DDR3</li>
<li>Primary HDD: Corsair Performance 3 128GB SSD</li>
<li>GPU: ATI 6850 1GB</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2012/02/mass-effect-3-demo-brief-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_4-kablooey.mp4" length="25144748" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_3-awkward.mp4" length="24582748" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_2-hallway.mp4" length="27948255" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_1-start.mp4" length="25949403" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_5-takethis.mp4" length="32364321" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_6-melee.mp4" length="40007857" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_7-kablooey2.mp4" length="48206221" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_8-Wrex.mp4" length="16432641" type="video/mp4" />
<enclosure url="http://harvsworld.com/wp-content/uploads/2012/02/MassEffect3Demo_9-turret.mp4" length="26533901" type="video/mp4" />
		</item>
		<item>
		<title>Federal Budget</title>
		<link>http://harvsworld.com/2012/02/federal-budget/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=federal-budget</link>
		<comments>http://harvsworld.com/2012/02/federal-budget/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 14:41:14 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Harv's News]]></category>
		<category><![CDATA[budget]]></category>
		<category><![CDATA[family income]]></category>
		<category><![CDATA[federal]]></category>
		<category><![CDATA[zeroes]]></category>

		<guid isPermaLink="false">http://harvsworld.com/?p=1373</guid>
		<description><![CDATA[The Federal Budget explained in simple English, by removing a few zeroes so it looks like a household budget <a href="http://harvsworld.com/2012/02/federal-budget/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This has been making it&#8217;s way around the internet in various forms, but I figured I&#8217;d post it here for my own reference. And, of course, for anyone else who might be looking&#8230;.</p>
<p>The budget explained in simple English, compared to a household budget.</p>
<div id="attachment_1374" class="wp-caption alignleft" style="width: 610px"><a href="http://harvsworld.com/wp-content/uploads/2012/02/image.jpeg"><img class=" wp-image-1374  " title="image" src="http://harvsworld.com/wp-content/uploads/2012/02/image.jpeg" alt="The budget explained in simple English" width="600" /></a><p class="wp-caption-text">The budget explained in simple English</p></div>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2012/02/federal-budget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011. Good. Ridance.</title>
		<link>http://harvsworld.com/2012/01/2011-good-ridance/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2011-good-ridance</link>
		<comments>http://harvsworld.com/2012/01/2011-good-ridance/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 23:17:19 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[My Life]]></category>

		<guid isPermaLink="false">http://harvsworld.com/?p=1358</guid>
		<description><![CDATA[I have to say that 2011 was probably one of the worst years for me personally. It was stressful enough while I was enduring it, but I figured I&#8217;d take a look back (ever so briefly) and see if it &#8230; <a href="http://harvsworld.com/2012/01/2011-good-ridance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have to say that 2011 was probably one of the worst years for me personally. It was stressful enough while I was enduring it, but I figured I&#8217;d take a look back (ever so briefly) and see if it still looks as crappy in the rear-view mirror&#8230;</p>
<p><span id="more-1358"></span></p>
<p>To start the year, we began prepping to sell our condo in Falls Church. The place was pretty old so we spent quite a lot of sweat, tears, and dollars patching it, cleaning it, and hiding stuff. The stress was from getting the fixes done right, cheaply, and timely. And the constant &#8220;cleaning&#8221; to get the place ready to show and then keeping it that way.</p>
<p>Then the realtor we hired, who up until that point had done a very good job for others we know, decided to forget how spell-check a listing and put in the wrong price for sale. So we dumped her and started all over.</p>
<div id="attachment_1366" class="wp-caption alignright" style="width: 410px"><a href="http://harvsworld.com/wp-content/uploads/2012/01/IMG_7655.jpg"><img class="size-medium wp-image-1366" title="IMG_7655" src="http://harvsworld.com/wp-content/uploads/2012/01/IMG_7655-400x266.jpg" alt="Tigger" width="400" height="266" /></a><p class="wp-caption-text">Tigger aka &quot;Grumpy&quot; a fixture in the house for over 18 years will be sorely missed</p></div>
<p>Then our old cat got a tumor on his face. It was a fast growing inoperable type of cancer. He was only with us for another few months and passed away in the spring after 18 years of keeping my better half company. He was only about 8lbs, but left a huge hole in our hearts as his constant presence ruled the household over the other two cats (10lbs and 20lbs) and the dog (80lbs).</p>
<p>Then our young cat got a tumor on her foot. Coming on the heels of the death of our old cat, my old lady took this very hard. Fortunately, it was operable. The vet said it will probably come back in a few years (due to the type of cancer), as long as you can catch it early you can remove it.</p>
<p>Then came the second attempt to sell our house. The new realtor was a friend of mine. We took the risk that thinks might end up weird if it goes haywire (it did) on the hopes that this person would pay a little more attention than the previous realtor. We got an offer, it wasn&#8217;t what we wanted, but if we wanted to move this year at all and take advantage of the *lowlowlow* interest rates in buying we had to take it. During inspection, the inspector found a LOT of items that needed to be fixed. So onward with negotiations, haggling, arguing over what gets fixed and by whom for how much. At the end of it all, you couldn&#8217;t help but feel a little &#8220;abused&#8221;.</p>
<p>Then stress in buying a house. Every house we looked at that was in good condition, in a decent neighborhood, at a decent price was a bidding war. We lost several. We saw a ton of houses that needed just way too much work.</p>
<p>Then dealing with the mortgage lender. Everything was great up until right at closing. Then they needed more docs, I&#8217;d scramble to provide, they&#8217;d be on schedule, then OOPS I need more docs. Closing was delayed by several days, added stress/pressure as we had a definite date we needed to move out, and we wanted some renovations done at the new place in a now rapidly closing window. At the day of closing we were surprised with an &#8220;oops I forgot to move that decimal over&#8221; which resulted in about 5k more than we were expecting to pay at closing.</p>
<p>Then dealing with the title company. Misspellings everywhere. Signing the docs took forever as we had to initial changes all over the place. They cashed security checks they weren&#8217;t supposed to, they goofed up some titling fees that had to be refunded, they sent checks to the wrong places.</p>
<div id="attachment_1363" class="wp-caption alignright" style="width: 410px"><a href="http://harvsworld.com/wp-content/uploads/2012/01/IMAG0343.jpg"><img class="size-medium wp-image-1363" title="IMAG0343" src="http://harvsworld.com/wp-content/uploads/2012/01/IMAG0343-400x225.jpg" alt="An example of fine craftsmanship" width="400" height="225" /></a><p class="wp-caption-text">Just one example of fine craftsmanship performed by an idiot contractor</p></div>
<p>Then came <strong>THE JACKASS LYING FRAUD CONTRACTOR FROM HELL</strong>. I&#8217;ll keep this short since I will probably write a more detailed post later. This loser looked us in the face and said the renovations would be done in about 5-6 days with multiple different crews working on different aspects of the project. We were getting 2 bathrooms remodeled, deck painted, french door to the deck installed, some carpets, some painting. Along the way he took cheap shortcuts, botched some things, dragged in guys off the street, made a mess, and took FOREVER in doing so. Because of the renovations, we couldn&#8217;t use about half the house for most of the MONTH he was here. Then we spent about another month fixing all the stuff he broke, did poorly, or flat out didn&#8217;t do.</p>
<div id="attachment_1364" class="wp-caption alignleft" style="width: 410px"><a href="http://harvsworld.com/wp-content/uploads/2012/01/IMAG0445.jpg"><img class="size-medium wp-image-1364" title="IMAG0445" src="http://harvsworld.com/wp-content/uploads/2012/01/IMAG0445-400x225.jpg" alt="Did I do that?" width="400" height="225" /></a><p class="wp-caption-text">Teenager: &quot;Did I do that?&quot;</p></div>
<p>Then the teenager decided she would not follow any of the sound advice we&#8217;ve given her about driving and did some combination of a) not paying attention, b) followed another car too closely, c) braked late, d) drove too fast. She rear-ended another hapless teenager and crushed the front 1/4 of her car.</p>
<p>Then we decided to have the new house re-inspected since we&#8217;ve come to find several small things the original home inspector missed and needed to make sure there wasn&#8217;t anything truly grave waiting for us around the corner. Turns out indeed he missed more items so we have to shell out even more coin to fix these things since we can&#8217;t get the original seller to fix now that closing is long gone.</p>
<div id="attachment_1368" class="wp-caption alignleft" style="width: 250px"><a href="http://harvsworld.com/wp-content/uploads/2012/01/IMG_20111224_201645.jpg"><img class=" wp-image-1368 " title="IMG_20111224_201645" src="http://harvsworld.com/wp-content/uploads/2012/01/IMG_20111224_201645-400x300.jpg" alt="He's not acutally that happy to have the cone on" width="240" height="180" /></a><a href="http://harvsworld.com/wp-content/uploads/2012/01/IMAG0485.jpg"><img class=" wp-image-1367 " title="IMAG0485" src="http://harvsworld.com/wp-content/uploads/2012/01/IMAG0485-400x225.jpg" alt="I love it when people pay attention while driving" width="240" height="135" /></a><p class="wp-caption-text">He&#39;s not acutally that happy to have the cone on</p></div>
<p>Then the dog completely tore his Cranial Cruciate Ligament (CCL) while chasing a ball in the backyard. He had to have a surgery called the &#8220;tightrope&#8221; to put a string of nylon through the bones in his leg to hold them together.</p>
<p>Then on the way to surgery for the dog we were rear-ended. We were the 3rd car in a 4 car pileup caused by an uninsured motorist with suspended and revoked MD license and a suspended VA license who took his mom&#8217;s car (Infiniti G35) without permission and decided to ram into the back of a Mercedes SUV at 50mph, pushing it into my 2010 Mazda, which in turn pushed into a 2011 Honda CRV.</p>
<p>And that, my friends, is how I closed out the hopefully forgettable 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2012/01/2011-good-ridance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook forgets Google ain&#8217;t evil</title>
		<link>http://harvsworld.com/2011/05/facebook-forgets-google-aint-evil-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-forgets-google-aint-evil-2</link>
		<comments>http://harvsworld.com/2011/05/facebook-forgets-google-aint-evil-2/#comments</comments>
		<pubDate>Fri, 13 May 2011 15:20:18 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Harv's News]]></category>
		<category><![CDATA[Stupid People]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.harvsworld.com/?p=1346</guid>
		<description><![CDATA[Shame on all of those involved with this. Zuckerburg, Facebook, the PR firm, and anybody else who knew. Kudos to the journalists who saw this for what it was and blew the whistle. <a href="http://harvsworld.com/2011/05/facebook-forgets-google-aint-evil-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Facebook has been steadily approaching the #1 spot on my &#8220;most unwanted&#8221; list. Currently they&#8217;re right behind Apple. Ever since they decided they were going to try and take information I&#8217;ve marked as private and keep trying to make it public so they can make a few bucks they&#8217;ve been quickly climbing the list. I now have to go in every month or so and double-check my privacy settings to see if they&#8217;ve done something &#8220;for my benefit&#8221; that I don&#8217;t want (again).</p>
<p>I find it ironic now that Facebook, who at every turn opts you into anything public without consulting you first, is trying to portray Google as improperly using and broadcasting your personal data.</p>
<p>As I understand it, Google is scraping publicly accessible data from social networks (Facebook, Twitter, etc). The key is in &#8220;publicly&#8221; accessible data. Data anyone can get anyway. They aren&#8217;t getting private content and then making it public (as Facebook likes to do). It&#8217;s already public.</p>
<p>Facebook decided they would try to do the underhanded thing by hiring a really shady PR firm to try and create an alarmist story about this without announcing their relationship. They assumed the media would jump on the sensationalist aspect of the story (instant headlines like Apple&#8217;s recent location bruhaha), but surprisingly&#8230; they didn&#8217;t. When the lie came to light, the shady PR firm then threw Facebook under the bus (karma). Shame on all of those involved with this. Zuckerburg, Facebook, the PR firm, and anybody else who knew. Kudos to the journalists who saw this for what it was and blew the whistle.</p>
<p>Further reading:</p>
<ul>
<li><a href="http://www.engadget.com/2011/05/12/facebook-admits-hiring-pr-firm-to-smear-google/" target="_blank">Facebook admits hiring PR firm to smear Google</a> &#8211; via Engadget</li>
<li><a href="http://techcrunch.com/2011/05/12/karma-is-a-bitch/" target="_blank">Facebook, You’re Going To Need A Better Answer For Your Slimeball Stunt</a> &#8211; TechCrunch (MG Seigler)</li>
<li><a href="http://bits.blogs.nytimes.com/2011/05/12/facebook-seeks-to-downplay-campaign-against-google/?ref=technology" target="_blank">Facebook Seeks to Downplay Campaign Against Google</a> &#8211; NY Times</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2011/05/facebook-forgets-google-aint-evil-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Friday FTW</title>
		<link>http://harvsworld.com/2011/04/friday-ftw/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=friday-ftw</link>
		<comments>http://harvsworld.com/2011/04/friday-ftw/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 16:05:44 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[harry potter]]></category>
		<category><![CDATA[harry potter and the half-blood prince]]></category>
		<category><![CDATA[trailers]]></category>
		<category><![CDATA[transformers]]></category>
		<category><![CDATA[transformers 3]]></category>

		<guid isPermaLink="false">http://www.harvsworld.com/?p=1337</guid>
		<description><![CDATA[Looks like summertime is trying to put springtime down for the count, but springtime ain't going easy. We had a nice few days up in the 80's, now it's back into the 70's for the next few days. I can live with that :) Especially when we've got robots, wizards, mutants, and a bow on hand. <a href="http://harvsworld.com/2011/04/friday-ftw/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Looks like summertime is trying to put springtime down for the count, but springtime ain&#8217;t going easy. We had a nice few days up in the 80&#8242;s, now it&#8217;s back into the 70&#8242;s for the next few days. I can live with that <img src='http://harvsworld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Especially when we&#8217;ve got robots, wizards, mutants, and a bow on hand.</p>
<h3>Transformers 3: Dark of the Moon</h3>
<p>&nbsp;</p>
<div id="attachment_1338" class="wp-caption aligncenter" style="width: 650px"><a href="http://trailers.apple.com/trailers/paramount/transformersdarkofthemoon/gallery/"><img class="size-large wp-image-1338" title="Transformers 3 Images via apple.com" src="http://www.harvsworld.com/wp-content/uploads/2011/04/BB_bb_flat-1024x378.jpg" alt="Transformers 3 Images via apple.com" width="640" height="236" /></a><p class="wp-caption-text">Destruction, Terror, and Mayhem. Transformers 3 Images via apple.com</p></div>
<p>New trailer out today. And boy does it look good. Before watching the trailer, get a little taste of the clips <a href="http://www.hitfix.com/blogs/motion-captured/posts/sneak-peek-transformers-dark-of-the-moon-offers-craziest-robot-action-yet" target="_blank">hitfix</a> was shown a few days ago. Visit <a href="http://trailers.apple.com/trailers/paramount/transformersdarkofthemoon/gallery/" target="_blank">the photo gallery</a> over at Apple.com.  3D? meh. But I <strong>will </strong>see this in IMAX, and if the IMAX happens to be in 3D then so be it.</p>
<p>Ahem. Some lines from the trailer&#8230;</p>
<p>&#8220;Our entire spacerace of the 1960s was in response to an event.&#8221;<br />
&#8220;You&#8217;ve lied to us. You&#8217;ve made a grave mistake.&#8221;<br />
&#8220;From here, the fight will be your own.&#8221;</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-ftw/"><img src="http://img.youtube.com/vi/kHRf01Gjosk/2.jpg" alt="" /></a></span></p>
<p>While the second movie (appropriately, &#8220;number 2&#8243;) was a bit of a miss the one thing that was truly EPIC in that film was the robot vs robot battles. And it sure looks like there will be <em>plenty </em>of that in this movie.</p>
<p>See the X-Men and Harry Potter after the jump&#8230;</p>
<p><span id="more-1337"></span></p>
<h3>X-Men: First Class</h3>
<p>Ain&#8217;t it Cool News has an interesting take on not just this trailer, but the entire upcoming Bryan Singer franchise, assuming they get made of course. <a href="http://www.aintitcool.com/node/49442" target="_blank">Quote from AICN</a> is below, emphasis mine&#8230;</p>
<blockquote><p>Now &#8211; Singer has said he wants the next film to take place in the 70&#8242;s. Then the next to take place in the 80&#8242;s.</p>
<p>What if&#8230;  just <strong>what if&#8230;   they&#8217;re creating a full fledged mutant  film history</strong>.   Re-writing the way things go.   It is with this  opportunity that you can actually build the larger fantasy universe of  the Mutant story.   Does Nixon unleash the Sentinels?   Or will it be  Ford or Carter?   Or will they save that for Reagan, who I absolutely  could imagine building giant mutant hunting robots&#8230;  he did found our  real STAR WARS initiative after all.</p>
<p>This film opens up the  possibility of reforging the world we live in and with a series of films  &#8211; realizing what we&#8217;ve kind of always wanted to see &#8211; which is <strong>that  alternate timeline of history where mutants are a part of the equation</strong>.</p></blockquote>
<p>Keep that in mind as you watch the trailer and the movie seems just a *little* more interesting&#8230;</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-ftw/"><img src="http://img.youtube.com/vi/qUlkf1gVdK4/2.jpg" alt="" /></a></span></p>
<h3 id="watch-headline-title">Harry Potter and the Deathly Hallows &#8211; Part 2</h3>
<p>I didn&#8217;t see part 1 yet (and all the previous ones seems to blur together for me anyway), but this looks like quite a doozy. Lots of &#8216;splosions and I guess some people kick the bucket in this?</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-ftw/"><img src="http://img.youtube.com/vi/mObK5XD8udk/2.jpg" alt="" /></a></span></p>
<h3>Immortals</h3>
<p>I have no idea where the premise of this movie comes from. I&#8217;ve heard comics/graphic novels, not sure if anyone can confirm. Regardless, it&#8217;s a 300-looking greek-ish piece with gods, former gods, battles, and one really kick-ass bow. It looks like it&#8217;s worth at least a Netflix when it comes out.</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-ftw/"><img src="http://img.youtube.com/vi/9T4VbTuRdpw/2.jpg" alt="" /></a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2011/04/friday-ftw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recap: DC United vs NY Red Bull</title>
		<link>http://harvsworld.com/2011/04/recap-dc-united-vs-ny-red-bull/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=recap-dc-united-vs-ny-red-bull</link>
		<comments>http://harvsworld.com/2011/04/recap-dc-united-vs-ny-red-bull/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 18:21:30 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[DC United]]></category>
		<category><![CDATA[Soccer]]></category>
		<category><![CDATA[dcu]]></category>
		<category><![CDATA[mls]]></category>
		<category><![CDATA[new york red bulls]]></category>

		<guid isPermaLink="false">http://www.harvsworld.com/?p=1328</guid>
		<description><![CDATA[It's not just confidence or pride or anything tangible or quantifiable you could put your hands on. As a former player, you just know when your opponent is a p*&#038;$y and you can just stomp them into the ground. NYRB has had that look tattooed on their forehead for many years now. But not last night. <a href="http://harvsworld.com/2011/04/recap-dc-united-vs-ny-red-bull/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>DC United falls to the New York Red Bulls 4-0. Hi(lo)-lights below.</p>
<p><object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="464" height="308"><param name="source" value="http://mls.neulion.com/mlsvp/scripts/mls.xap"/><param name="initParams" value="server=http://mls.neulion.com/mlsvp/,pageurl=http://www.mlssoccer.com/videos?id=13969&#038;catid=114,id=13969,shareembed=true,"/><param name="background" value="Transparent" /><param name="minRuntimeVersion" value="3.0.40624.0" /><param name="autoUpgrade" value="true" /><param name="Windowless" value="true" /><param name="enableHtmlAccess" value="true"/><a href="http://go.microsoft.com/fwlink/?LinkID=149156&#038;v=3.0.40624.0" style="text-decoration:none"><img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/></a></object></p>
<p>And some post-game comments:</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/recap-dc-united-vs-ny-red-bull/"><img src="http://img.youtube.com/vi/N2k3fLkZevE/2.jpg" alt="" /></a></span></p>
<p>I don&#8217;t hate NY Red Bull anymore [I think I just threw up a little].</p>
<p>The New York Red Bulls were not only a mediocre (and often awful) team for many years, but also arrogant and pompous and whiny and didn&#8217;t know how bad they really were. They cheated (Bob), they dove, they hacked, they complained about being hacked and that others dove, they tried (and failed) to buy good teams and good coaches. There fans we equally as delusional, obnoxious, and annoying. They were the type of team I could thoroughly enjoy their (frequent) misfortune and relish the (also frequent) victories of DC United over this moronic group of individuals.</p>
<h3>But things seem different now&#8230;</h3>
<p><a href="http://www.dcunited.com/gallery/2011/04/dc-united-vs-new-york-red-bulls"><img class="aligncenter" title="Bill Hamid vs Thierry Henry credit Ned Dishman/Getty Images via dcunited.com" src="http://www.dcunited.com/sites/default/files/imagecache/primary_image-620x350/image_nodes/2011/04/5641835625_9d3f77ac31_b.jpg" alt="Bill Hamid vs Thierry Henry credit Ned Dishman/Getty Images via dcunited.com" width="552" height="350" /></a></p>
<p>I noticed almost immediately during the game last night that this was NOT the same team. I mean, it&#8217;s a different team every year, but this team is *really* different. It&#8217;s not just confidence or pride or anything tangible or quantifiable you could put your hands on. As a former player, you just know when your opponent is a p*&amp;$y and you can just stomp them into the ground. NYRB has had that look tattooed on their forehead for many years now. But not last night. I knew we were in for a battle and I hoped the boys in Black were up to the task.</p>
<p><a href="http://www.dcunited.com/gallery/2011/04/dc-united-vs-new-york-red-bulls"><img class="alignleft" title="Chris Pontius credit Ned Dishman/Getty Images via dcunited.com" src="http://www.dcunited.com/sites/default/files/imagecache/primary_image-620x350/image_nodes/2011/04/5641836809_b8bdf9ccb1_b.jpg" alt="Chris Pontius credit Ned Dishman/Getty Images via dcunited.com" width="271" height="350" /></a>Well. Some of them were. Some of them weren&#8217;t. It wasn&#8217;t that they were mentally &#8220;not in it&#8221;, it was just that some of these guys just aren&#8217;t good enough to play at that level.</p>
<p>Marc Burch in particular had a really bad night. He&#8217;s not that great of a defender (pretty bad actually), but usually he can add at least a little something to the offense. Last night he wasn&#8217;t attacking and he certainly wasn&#8217;t defending. By my reckoning 3 out of the 4 goals had him at least partially responsible. I feel a little bad saying that as I think Burch is one of those guys who leaves it all on the field and even stepped up into a leadership role at times over the last few years when others were doing impersonations of lawn chairs.</p>
<p>I thought overall the match was fairly even, with an edge (although not 4 goals worth) to NYRB who was just a little quicker to the ball and a little smarter once they had it. But when United tripped up, they really tripped up. And all credit to NYRB [gag again] for finishing their chances when they got them. As opposed to United who could have scored maybe 3 goals in the final minutes but seemed to find new and creative ways to miss the net.</p>
<p>This one stings a little bit, but you have to move on to the next one. Next league match is against the Dynamo April 29th.</p>
<p>Here&#8217;s what others are saying:</p>
<ul>
<li><a href="http://www.dcunited.com/recap/2011/04/recap-dc-0-ny-4" target="_blank">RECAP: DC 0, NY 4 </a>- dcunited.com</li>
<li><a href="http://www.dcunited.com/press-release/2011/04/post-match-quotes-dc-united-0-new-york-red-bulls-4" target="_blank">Post-match quotes: D.C. United 0 &#8211; New York Red Bulls 4</a> &#8211; dcunited.com</li>
<li><a href="http://www.unitedmania.com/united-not-ready-for-prime-time-as-they-get-hammered-4-0-in-loss-to-rival-red-bull-5764" target="_blank">United not ready for Prime Time as they get hammered 4-0 in loss to rival Red Bull</a> &#8211; unitedmania.com</li>
<li><a href="http://www.washingtonpost.com/sports/united/united-vs-red-bulls-dc-routed-by-talented-new-york-side/2011/04/21/AFf3xkLE_story.html" target="_blank">United vs. Red Bulls: D.C. routed by talented New York side</a> &#8211; washingtonpost.com</li>
<li><a href="http://www.soccerbyives.net/soccer_by_ives/2011/04/sbi-stoppage-time-red-bulls-4-united-0.html" target="_blank">SBI Stoppage Time: Red Bulls 4, United 0</a> &#8211; soccerbyives.net</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2011/04/recap-dc-united-vs-ny-red-bull/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friday! Apes, Cowboys, Aliens, Doctors and Priests</title>
		<link>http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=friday-apes-cowboys-aliens-doctors-and-priests</link>
		<comments>http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 16:11:10 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.harvsworld.com/?p=1314</guid>
		<description><![CDATA[Lots of neat stuff this week. We’ve got Rise of the Planet of the Apes concept art and a trailer, along with the trailers for Cowboys and Aliens (now with more aliens), Doctor Who and Priest. <a href="http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Lots of neat stuff this week. We&#8217;ve got Rise of the Planet of the Apes concept art and a trailer, along with the trailers for Cowboys and Aliens (now with more aliens), Doctor Who and Priest. Scroll down or follow the link below for more.</p>
<div id="attachment_1315" class="wp-caption aligncenter" style="width: 586px"><a href="https://www.facebook.com/album.php?fbid=178867552161506&amp;id=117612274953701&amp;aid=36769" target="_blank"><img class="size-full wp-image-1315  " title="Rise of the Planet of the Apes Concept Art" src="http://www.harvsworld.com/wp-content/uploads/2011/04/fb_riseofplanetofapes_1.jpg" alt="Rise of the Planet of the Apes Concept Art" width="576" height="321" /></a><p class="wp-caption-text">Rise of the Planet of the Apes Concept Art via facebook.com/apeswillrise</p></div>
<h3><span id="more-1314"></span>Rise of the Planet of the Apes</h3>
<p>Did ya&#8217;ll catch the Facebook webcast about Rise of the Planet of the Apes? If not, you should. <a href="https://www.facebook.com/apeswillrise" target="_blank">Go check it out here</a>. Great interviews with Andy Serkis and others from WETA Digital (the folks behind the SFX in the Lord of the Rings trilogy among others) and a little bit of a peek behind the scenes. Make sure to also check out the <a href="http://www.facebook.com/album.php?fbid=178867552161506&amp;id=117612274953701&amp;aid=36769" target="_blank">concept art gallery</a> which is always one of my favorite parts of these types of movies.</p>
<p>You can go view the trailer at <a href="http://trailers.apple.com/trailers/fox/apeswillrise/" target="_blank">Apple.com/trailers</a> or download the<a href="http://trailers.apple.com/movies/fox/riseoftheplanetoftheapes/riseoftheplanetoftheapes-tlr1_720p.mov" target="_blank"> 720p</a> version. The trailer shows that we were the ones who started the rise of the apes. Just like in most other &#8220;oops, we caused our own demise&#8221; plots we were trying to create a cure for something and it went horribly and unexpectedly wrong. What I&#8217;m curious to see the explanation of is how the apes bred so quickly. In one scene it is just one ape (Ceasar?) who becomes intelligent, then there are a few dozen escaping the lab (how many could there be?), then all of a sudden they are rampaging down the streets. It seems to me that at least early on, we should have the edge in firepower and sheer numbers.</p>
<h3>Cowboys and Aliens</h3>
<p>Everything I&#8217;ve heard so far about this film, mainly from AICN, is that this film is primarily a western rather than a sci-fi flick. The analogy is that the aliens take the place of indians in old-school westerns when they come into town and kidnap folk. Then it&#8217;s up to the heroes to track and find their loved ones. I&#8217;ve always been a big fan of Harrison Ford, and Daniel Craig is getting up there are as well. I wasn&#8217;t really a big fan of Olivia Wilde on House, but I really liked her role in TRON: Legacy as a lighter, funner, smilier character so I&#8217;m curious to see which way she goes in this film.</p>
<p>Scope the trailer from Youtube (<a href="http://youtu.be/eJixNxFxhT4" target="_blank">link for mobile</a>):</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/"><img src="http://img.youtube.com/vi/eJixNxFxhT4/2.jpg" alt="" /></a></span></p>
<h3>Doctor Who</h3>
<p><a href="http://www.aintitcool.com/node/49303" target="_blank">Via AICN</a>, two trailers for the upcoming season of Doctor Who. I really like the combo of this Doctor and Amy. They are right up there with the David Tenant Doctor and Rose. The second trailer hints at some really dark stuff happening. One of the great things I like about this show is they aren&#8217;t afraid to explore both ends of the spectrum of hope.</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/"><img src="http://img.youtube.com/vi/guhx7ssYFuo/2.jpg" alt="" /></a></span></p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/"><img src="http://img.youtube.com/vi/-ZZbM54zf9w/2.jpg" alt="" /></a></span></p>
<h3>Priest</h3>
<p>This movie looks pretty intriguing as well (although I&#8217;m not likely to see it). In a far future where it looks like &#8220;vampires&#8221; have ruined the world and humanity is confined to fortress cities a conspiracy is afoot. The Priests are charged with defending humanity, but there have been no sightings of vampires in a long time so they are deemed unnecessary. But wait! It seems there *are* vampires about&#8230;. (WHY does this need to be in 3D????)</p>
<p>This is trailer 4 which is more action packed (<a href="http://youtu.be/CvBc0P_QIZM" target="_blank">link for mobile</a>)</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/"><img src="http://img.youtube.com/vi/CvBc0P_QIZM/2.jpg" alt="" /></a></span></p>
<p>And the original trailer which gives more of the backstory (<a href="http://youtu.be/stAfEDSosXc" target="_blank">link for mobile</a>)</p>
<p><span style="text-align:center; display: block;"><a href="http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/"><img src="http://img.youtube.com/vi/stAfEDSosXc/2.jpg" alt="" /></a></span></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2011/04/friday-apes-cowboys-aliens-doctors-and-priests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://trailers.apple.com/movies/fox/riseoftheplanetoftheapes/riseoftheplanetoftheapes-tlr1_720p.mov" length="99" type="video/quicktime" />
		</item>
		<item>
		<title>Live Action Dragonriders of Pern Movie</title>
		<link>http://harvsworld.com/2011/04/live-action-dragonriders-of-pern-movie/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=live-action-dragonriders-of-pern-movie</link>
		<comments>http://harvsworld.com/2011/04/live-action-dragonriders-of-pern-movie/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 15:13:54 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://www.harvsworld.com/?p=1302</guid>
		<description><![CDATA[This falls squarely in the &#8220;DON&#8217;T F%&#38;K IT UP!&#8221; category. Please, please, please, do not mess this up. &#160; Growing up, this was one of my favorite series and I had (they are now lost) many pencil drawings based on &#8230; <a href="http://harvsworld.com/2011/04/live-action-dragonriders-of-pern-movie/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This falls squarely in the &#8220;DON&#8217;T F%&amp;K IT UP!&#8221; category. Please, please, please, do not mess this up.</p>
<p style="text-align: center;">&nbsp;</p>
<div id="attachment_1308" class="wp-caption aligncenter" style="width: 597px"><a href="http://www.glassonion.com/catalog/collectiondetail.php?products_id=103&amp;title=THE+WHITE+DRAGON&amp;cat_id=29&amp;osCsid=9137c32198c8dc4ad53e7d33835d731b" target="_blank"><img class="size-full wp-image-1308 " title="Cover art by Michael Whelan glassonion.com" src="http://www.harvsworld.com/wp-content/uploads/2011/04/vlarge_whitedragon.jpg" alt="Cover art by Michael Whelan glassonion.com" width="587" height="386" /></a><p class="wp-caption-text">Cover art by Michael Whelan glassonion.com for &quot;The White Dragon&quot; by Anne McCaffery</p></div>
<p>Growing up, this was one of my favorite series and I had (they are now lost) many pencil drawings based on Michael Whelan&#8217;s dragon depictions on McCaffery&#8217;s covers. McCaffery built a HUGE epic across over 20 books and covering thousands of years and generations.</p>
<p><span id="more-1302"></span>If you&#8217;re not familiar with the series, the story revolves around a planet (Pern) that every few hundred years comes across the path of a comet tail that has some weird life-form in it that upon entering the atmosphere rains down like threads and devours anything it touches. The thread dies shortly after landfall of starvation (because it eats everything), or drowns in water, or is burned in midair (hence the dragons).</p>
<p>The origin of the story is a human colony ship arrives on this great planet, wondering why there is no large growth and no large land animals. But it does have these really neat little lizards that breathe fire and can teleport. Shortly after arrival and settlement the thread falls, causing much mayhem. They quickly burn through their non-replenishable hi-tech supplies (batteries, metals, plastics, etc) fighting the thread and turn to the little fire-lizards for help by genetically altering them to be &#8220;bigger&#8221;. Over time they lose all recollection of their origin from Earth until they discover some artifacts many thousands of years later.</p>
<p>You can see why this is a plot that would make a great movie story with lots of sequels (see Lord of the Rings), but also it is incredibly hard to do. For goodness sakes, there are DRAGONS everywhere.</p>
<p>From <a href="http://www.deadline.com/2011/04/david-hayter-to-adapt-scifi-book-series-dragonriders-of-pern/" target="_blank">Deadline</a> via <a href="http://www.aintitcool.com/node/49259" target="_blank">Ain&#8217;t it Cool News</a></p>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2011/04/live-action-dragonriders-of-pern-movie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud Music, Legal or Not?</title>
		<link>http://harvsworld.com/2011/04/cloud-music-legal-or-not/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cloud-music-legal-or-not</link>
		<comments>http://harvsworld.com/2011/04/cloud-music-legal-or-not/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 16:26:11 +0000</pubDate>
		<dc:creator>Harvey Ramos</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Harv's News]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.harvsworld.com/?p=1286</guid>
		<description><![CDATA[Before you get too far into reading this, please know that I am not a lawyer. Nor did I spend the night at a Holiday Inn. I&#8217;m just a guy with a ton of media and want to find a &#8230; <a href="http://harvsworld.com/2011/04/cloud-music-legal-or-not/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Before you get too far into reading this, please know that <strong>I am not a lawyer</strong>. Nor did I spend the night at a Holiday Inn. I&#8217;m just a guy with a ton of media and want to find a way to access it all no matter what I&#8217;m using and no matter where I am.</p>
<div id="attachment_1254" class="wp-caption alignleft" style="width: 160px"><a href="http://www.harvsworld.com/wp-content/uploads/2011/03/AmazonCloudDrive-LearnMore-1.png"><img class="size-thumbnail wp-image-1254" title="Amazon Cloud Drive - Learn More" src="http://www.harvsworld.com/wp-content/uploads/2011/03/AmazonCloudDrive-LearnMore-1-150x150.png" alt="Amazon Cloud Drive - Learn More" width="150" height="150" /></a><p class="wp-caption-text">Store your files with us, what could possibly go wrong?</p></div>
<p>As most of you know, <a href="http://www.harvsworld.com/2011/04/streaming-music-with-amazons-cloud-drive-and-cloud-player/">Amazon launched a music streaming service about two weeks ago</a>. A combination of Cloud Drive to store your music and the Cloud Player to play those stored songs. Amazon lets you keep up to 5GB for free with paid options available all the way up to 1TB (not free). This stirred up a lot of tech commentary since they beat both Apple and Google who have been in &#8220;talks&#8221; with the music industry for what seems like forever over licensing agreements.</p>
<h3>How did they manage to scoop both Apple AND Google?</h3>
<p>Simple. They just didn&#8217;t ask. Kind of like it&#8217;s better to ask forgiveness than permission. Yeah, kinda like that. Only it&#8217;s different in that Amazon&#8217;s position is that they don&#8217;t need permission anyway. And I agree with that.</p>
<p><a href="http://news.cnet.com/8301-31001_3-20048499-261.html?part=rss&amp;tag=feed&amp;subj=MediaMaverick" target="_blank"><span id="more-1286"></span>CNet&#8217;s Greg Sandoval writes</a>: (emphasis mine)</p>
<blockquote><p>In an interview with <a href="http://bits.blogs.nytimes.com/2011/03/29/amazon-introduces-a-digital-music-locker/">The New York Times</a> on Monday, Amazon took a more defiant tone, at least with regard to  music. <strong>&#8220;We don&#8217;t need a license to store music,&#8221;</strong> Craig Pape, director of  music at Amazon, was quoted in the Times as saying. <strong>&#8220;The functionality  is the same as an external hard drive.&#8221;</strong></p></blockquote>
<p>I think it&#8217;s important to note at this point how this service is different from most other &#8220;streaming&#8221; services out there right now. You have a couple of broad categories they fall into: &#8220;Radio-like&#8221; streaming, &#8220;leased&#8221; streaming, and &#8220;owned&#8221; streaming. Note that I just made up these terms, feel free to use them or make up your own terms for this stuff.</p>
<h3>First, radio-like streaming</h3>
<p>A prime example is <a href="http://www.pandora.com" target="_blank">Pandora</a> [and I'm also going to lump broadcast radio in here just because, to me anyway, radio is just streaming over a different medium]. These guys take &#8220;their&#8221; music and send it to you. You have no (or not much) control over what gets played and when and how often. It&#8217;s also essentially free for the listener since you don&#8217;t pay any money out of pocket although you are subject to plenty of advertising. These guys pay some fee every time they play one of &#8220;their&#8221; songs that somebody else (you) listens to. <strong>These guys make money via advertising, and the music industry makes their money via the fee.</strong></p>
<h3>Leased streaming</h3>
<p>I don&#8217;t know what to call this&#8230; rented, leased, borrowed, temporarily owned&#8230; Let&#8217;s stick with leased for now. Examples include <a href="http://www.napster.com" target="_blank">Napster</a> &amp; <a href="http://www.rhapsody.com" target="_blank">Rhapsody</a> who have been around forever as well as newcomers like <a href="http://www.rdio.com" target="_blank">Rdio</a> and <a href="http://www.spotify.com" target="_blank">Spotify</a>. These guys take &#8220;their&#8221; music and send it to you. You have complete control over what you want to hear and when and how often. It&#8217;s kinda like you own the music&#8230;. only you lose access to it once you stop paying them. I rather like this system as I pay a flat fee and get all you can eat music. These guys also pay some fee every time they play one of &#8220;their&#8221; songs that somebody else (you) listens to. <strong>These guys make their money usually by a subscription fee </strong>(Spotify has a free ad-based as well as subscription model), <strong>and again the music industry makes their money via the fee.</strong></p>
<h3>Owned streaming</h3>
<p>Again, I struggle with a name for this. It&#8217;s music that you own whether you bought the CD 10 years ago or just downloaded the MP3 from a store like iTunes, Amazon, eMusic, Napster, Rhapsody, etc. The point being that it is &#8220;your&#8221; music (definition of &#8220;yours&#8221; is hazy according to music industry&#8230;). There are several programs such as <a href="http://www.audiogalaxy.com/" target="_blank">AudioGalaxy</a> and <a href="http://www.subsonic.org/" target="_blank">Subsonic</a> (which I use) which install some software on your computer that let&#8217;s you stream your music *from your computer* to wherever you happen to be. For free. The only catch is you need the computer that holds you music to be on all the time and it has to be accessible to the internet past any annoying firewalls that may (or may not) be in the way. The costs involved are for the actual music, your storage (buying  ever bigger hard drives), and your bandwidth (your ISP may or may not  have caps and charge you). You, as the provider of this service, don&#8217;t  make any money from this endeavor and probably just end up spending more  money on top of whatever you initially spent for the music itself. <strong>The  music industry makes money on the original music they sold you.</strong></p>
<p>A couple of companies have cropped up recently in <a href="http://www.mougg.com" target="_blank">Mougg</a> and <a href="http://www.mspot.com" target="_blank">mSpot</a> along with the (in)famous <a href="http://www.mp3tunes.com" target="_blank">MP3Tunes</a> (I&#8217;m sure there are others) to take some of the hassle (if any) in streaming your own music to yourself. All of these companies let you upload your music to their cloud storage, and then play them back from wherever you want. They all give you a certain amount of storage for free, and then charge you a monthly or yearly fee for anything beyond that. <strong>Sound familiar? You betcha</strong>. The perk for you is you don&#8217;t need to leave your computer all the time, nor deal with any (possible) firewall conflicts. You also gain some redundancy (i.e. backup) in case your hard drive dies you don&#8217;t lose all your music. Put simply&#8230; it just works. <strong>The company makes money by charging you a monthly fee and the music industry STILL makes money on the original music they sold you.</strong></p>
<p>Now, as far as I know, with the exception of MP3Tunes (that&#8217;s a whole &#8216;nother story) none of the guys in the Owned Streaming category have ever been sued, nor do they pay any licensing fees. Why? (again <strong>I&#8217;m not a lawyer</strong>) Because it is music YOU own and are playing back to YOURSELF.</p>
<h3>Where does the Music Industry stand?</h3>
<p>The industry loves to use the word &#8220;license&#8221;. They like to never admit they&#8217;ve actually &#8220;sold&#8221; you something, only that they have granted you a license for you to use for a fee and under certain restrictions. Something along the lines of (paraphrasing here) &#8220;We grant you permission to use this music as long as you don&#8217;t make any money off of it without paying us and you don&#8217;t share it over the internet, mmkay?&#8221;  You probably didn&#8217;t know that because you never read the Terms of  Service (TOS) or Terms of Use (TOU) on a CD box or all that fine print  when you download your music (MP3/AAC). What it means is that the music industry is OK with it if you buy an album and listen to it. If you buy it and give it to your buddies, it&#8217;s not OK. If you buy it and play it for your buddies that you charged money to hear you play it (think radio) that&#8217;s not OK.</p>
<p>As far as I know the TOS/TOU don&#8217;t say you can&#8217;t use storage that isn&#8217;t directly attached to your machine (besides, then you&#8217;d have to define &#8220;attached&#8221; because it&#8217;s really just a long-ass cable from you to Amazon&#8217;s storage). The only thing the industry has to say is &#8220;Well, we didn&#8217;t say you *could* store it there, let&#8217;s negotiate some licensing terms&#8221;.</p>
<p><a href="http://techcrunch.com/2011/03/30/amazon-cloud-music/" target="_blank">MG Siegler of TechCrunch</a> says:</p>
<blockquote><p>But the fundamental issue here remains: should storage in  the cloud that  you pay for really be different from your local hard  drive? Think about  that for a second. It’s actually pretty ridiculous  that people think it  should be different.</p>
<p>Currently, if you buy a song on iTunes or Amazon or elsewhere, you’re   free to play that song as often as you wish on your machine. You’re  also  free to burn it onto a CD or transfer it to an MP3 player. I’m  just not  sure how moving it to the cloud is any different.</p></blockquote>
<p>I&#8217;m guessing (again <strong>I&#8217;m not a lawyer</strong>) they don&#8217;t want these types of cases to go to a trial that they would either not win or not win clearly enough and potentially have a judge set a clarification/limit to their TOS/TOU that wouldn&#8217;t benefit them in the long run. Right now the whole licensing issue from streaming music is a really big vague mess that the music industry exploits by just saying &#8220;Where is my fee?&#8221;. That&#8217;s why these so-called negotiations among groups like Spotify, Apple, Google, etc take YEARS to come to a conclusion. What they don&#8217;t want (again <strong>I&#8217;m not a lawyer</strong>) is a clarification on when/where/how/why they actually CAN charge these streaming licensing fees&#8230; because then a dozen startups will rush the gates to exploit those newfound loopholes. We&#8217;ve already seen several (see above) that have gone through un-sued.</p>
<p>I think <strong>Amazon knew exactly what they were doing</strong> when they put this service out. They have lawyers too, and they knew where they could draw the line in the sand that the music industry could not cross.</p>
<div class="wp-caption alignright" style="width: 310px"><a href="http://www.brobible.com/bronews/13159207-15-best-mike-tyson-videos-ever-honor-champs-44th-birthday"><img class="  " title="Iron Mike Tyson via brobible.com" src="http://www.brobible.com/sites/default/files/844/Tyson.jpg" alt="Iron Mike Tyson via brobible.com" width="300" /></a><p class="wp-caption-text">Iron Mike Tyson via brobible.com</p></div>
<h3>What happens next is going to be really interesting</h3>
<p>Get the popcorn. Pull up a chair. Sit back and watch the fireworks. Both Apple and Google are watching these two stand toe to toe and see who blinks first. If the music industry backs down, then JUST WATCH as Apple and Google do the same thing with their streaming service. Why should they pay if Amazon doesn&#8217;t have to? It&#8217;s only storage right?</p>
<p>That&#8217;s not to say that the music industry isn&#8217;t holding a doomsday device behind their back. They could go scorched-Earth style and tell Amazon they can&#8217;t sell their music anymore and only sell to those who would pay them fees for streaming (here is where Apple &amp; Google are waiting in the wings to pick up the pieces). It&#8217;s possible Amazon doesn&#8217;t care because by that point they will have a boatload of people locked in streaming their own music (bought from Apple &amp; Google) off of their servers. Maybe this is the sticking point for &#8220;negotiations&#8221;.</p>
<p>But I&#8217;ll tell you who the real winner is. For once, maybe &#8211; just maybe, it is the consumer (us).</p>
<h3>Further reading (from people much smarter than me):</h3>
<ul>
<li><a href="http://mediamemo.allthingsd.com/20110329/amazons-cloud-service-is-a-legal-b-illegal-c-probably-here-to-stay/?mod=ATD_rss" target="_blank">Amazon’s Cloud Service Is A) Legal B) Illegal? C) Probably Here To Stay</a> by Peter Kafka</li>
<li><a href="http://news.cnet.com/8301-31001_3-20048499-261.html?part=rss&amp;tag=feed&amp;subj=MediaMaverick" target="_blank">Amazon&#8217;s cloud risks war with labels, studios</a> by Greg Sandoval</li>
<li><a href="http://techcrunch.com/2011/03/29/founders-of-mp3-com-mspot-on-amazons-music-locker-all-eyes-on-the-labels/" target="_blank">Founders Of MP3.com, mSpot On Amazon’s Music Locker: All Eyes On The Labels</a> by Robin Wauters</li>
<li><a href="http://techcrunch.com/2011/03/30/amazon-cloud-music/" target="_blank">The Cloud Will Be Your Hard Drive, Despite The Record Labels’ Greed</a> by MG Siegler</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://harvsworld.com/2011/04/cloud-music-legal-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

