<?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"
	>

<channel>
	<title>Simori.com</title>
	<atom:link href="http://www.simori.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simori.com</link>
	<description>Where Art meets Science and falls in love.</description>
	<pubDate>Sun, 17 Aug 2008 19:49:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Building a Brightkite using Django-Part-1</title>
		<link>http://www.simori.com/2008/08/17/building-a-brightkite-using-django-part-1/</link>
		<comments>http://www.simori.com/2008/08/17/building-a-brightkite-using-django-part-1/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 19:49:46 +0000</pubDate>
		<dc:creator>stranger</dc:creator>
		
		<category><![CDATA[Featured]]></category>

		<category><![CDATA[How-To]]></category>

		<category><![CDATA[Interesting]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[application]]></category>

		<category><![CDATA[brightkite]]></category>

		<category><![CDATA[django]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=829</guid>
		<description><![CDATA[As we know Brightkite is a location based social network where users can checkin into a location and make posts. I always had a thought on how we can acheive this functionality using django framework. Last week I started off this project with an eye on contributing it to Pinax project. I talked to Jtauber and I was lucky enough to get a [...]]]></description>
			<content:encoded><![CDATA[<p>As we know <a title="Brightkite" href="http://www.brightkite.com/">Brightkite</a> is a location based social network where users can checkin into a location and make posts. I always had a thought on how we can acheive this functionality using <a title="Django" href="http://djangoproject.com/">django</a> framework. Last week I started off this project with an eye on contributing it to <a title="Pinax" href="http://pinaxproject.com/">Pinax</a> project. I talked to <a title="Jtauber" href="http://jtuaber.com/">Jtauber</a> and I was lucky enough to get a chance before the feature freeze of pinax.</p>
<p>To start this project we need to recollect the basic requirements. <br />
<strong>1.</strong> Registration for users. This can be acheived by <a title="DjangoRegistration" href="http://http//code.google.com/p/django-registration/">django registration</a> <br />
<strong>2.</strong> Search for a location and get its proper place name, latitude and longitude data <br />
<strong>3.</strong> Ability to checkin to that location. In simple words store the userid, place name, latitude, longitude and datetime of the checkin.</p>
<h5>Implementation:</h5>
<p>I am not going to start a brand new django project and build it upon it. Instead I recommend you to check out pinax project source code. Or you start a new project and add django-registration app to INSTALLED_APPS and set the urls. There are a bunch of tutorials on web on how to do that. Now we can create a new application called &#8220;locations&#8221;.</p>
<pre><span class="c">#!/bin/sh</span>
<span class="nv">$ </span>python manage.py startapp locations</pre>
<p>You now have the basic skeleton of the location application. Lets start creating the model &#8220;Location&#8221;. As discussed in the basic requirements above.</p>
<pre><span class="k">from</span> <span class="nn">django.db</span> <span class="k">import</span> <span class="n">models</span>
<span class="k">from</span> <span class="nn">django.contrib.auth.models</span> <span class="k">import</span> <span class="n">User</span>

<span class="k">class</span> <span class="nc">Location</span><span class="p">(</span><span class="n">models</span><span class="o">.</span><span class="n">Model</span><span class="p">):</span>
    <span class="n">user</span> <span class="o">=</span> <span class="n">models</span><span class="o">.</span><span class="n">ForeignKey</span><span class="p">(</span><span class="n">User</span><span class="p">)</span>
    <span class="n">time_checkin</span> <span class="o">=</span> <span class="n">models</span><span class="o">.</span><span class="n">DateTimeField</span><span class="p">()</span>
    <span class="n">place</span> <span class="o">=</span> <span class="n">models</span><span class="o">.</span><span class="n">CharField</span><span class="p">(</span><span class="n">max_length</span><span class="o">=</span><span class="mi">100</span><span class="p">)</span>
    <span class="n">latitude</span> <span class="o">=</span> <span class="n">models</span><span class="o">.</span><span class="n">FloatField</span><span class="p">()</span>
    <span class="n">longitude</span> <span class="o">=</span> <span class="n">models</span><span class="o">.</span><span class="n">FloatField</span><span class="p">()</span>

    <span class="k">class</span> <span class="nc">Meta</span><span class="p">:</span>
        <span class="n">ordering</span>            <span class="o">=</span> <span class="p">(</span><span class="s">&#8216;-time_checkin&#8217;</span><span class="p">,)</span>
        <span class="n">get_latest_by</span>       <span class="o">=</span> <span class="s">&#8216;time_checkin&#8217;</span></pre>
<p>The model is pretty self explanatory. It has a foriegn key to User, so that each user can have his own checkins. After the model is created our objective is to search for a location and get the geo data for that location. For this we will take help of <a title="GeoPy" href="http://exogen.case.edu/projects/geopy/">GeoPy</a> a geocoding toolbox for python. We can query web services like Yahoo, Google, <a title="Geocoders" href="http://geocoders.us/">Geocoders</a> to get geo data for a location.</p>
<p>We create an entry in urls.py for this lcoations search.</p>
<pre><span class="n">urlpatterns</span> <span class="o">=</span> <span class="n">patterns</span><span class="p">(</span><span class="s">&#8221;</span><span class="p">,</span>
    <span class="p">(</span><span class="s">r&#8217;new/$&#8217;</span><span class="p">,</span> <span class="s">&#8216;locations.views.new&#8217;</span><span class="p">),</span>
<span class="p">)</span></pre>
<p>To create a form, just create a file forms.py in locations and</p>
<pre><span class="k">class</span> <span class="nc">LocationForm</span><span class="p">(</span><span class="n">forms</span><span class="o">.</span><span class="n">Form</span><span class="p">):</span>
         <span class="n">place</span> <span class="o">=</span> <span class="n">forms</span><span class="o">.</span><span class="n">CharField</span><span class="p">()</span></pre>
<p>This means when somebody tries to access the url &#8216;/new/&#8217; the request is routed to the view &#8216;new&#8217;. Lets create a definition for the &#8216;new&#8217;. Open view.py</p>
<pre><span class="nd">@login_required</span>
<span class="k">def</span> <span class="nf">new</span><span class="p">(</span><span class="n">request</span><span class="p">):</span>
    <span class="k">if</span> <span class="n">request</span><span class="o">.</span><span class="n">method</span> <span class="o">==</span> <span class="s">&#8216;POST&#8217;</span><span class="p">:</span>
         <span class="n">location_form</span> <span class="o">=</span> <span class="n">LocationForm</span><span class="p">(</span><span class="n">request</span><span class="o">.</span><span class="n">POST</span><span class="p">)</span>
         <span class="k">if</span> <span class="n">location_form</span><span class="o">.</span><span class="n">is_valid</span><span class="p">():</span>
               <span class="n">y</span> <span class="o">=</span> <span class="n">geocoders</span><span class="o">.</span><span class="n">Yahoo</span><span class="p">(</span><span class="s">&#8216;yahoo_map_api&#8217;</span><span class="p">)</span>
               <span class="n">p</span> <span class="o">=</span> <span class="n">location_form</span><span class="o">.</span><span class="n">cleaned_data</span><span class="p">[</span><span class="s">&#8216;place&#8217;</span><span class="p">]</span>
               <span class="n">place</span><span class="p">,</span> <span class="p">(</span><span class="n">lat</span><span class="p">,</span> <span class="n">lng</span><span class="p">)</span> <span class="o">=</span> <span class="n">y</span><span class="o">.</span><span class="n">geocode</span><span class="p">(</span><span class="n">p</span><span class="p">)</span>
               <span class="n">location</span> <span class="o">=</span> <span class="p">{</span><span class="s">&#8216;place&#8217;</span><span class="p">:</span> <span class="n">place</span><span class="p">,</span> <span class="s">&#8216;latitude&#8217;</span><span class="p">:</span> <span class="n">lat</span><span class="p">,</span> <span class="s">&#8216;longitude&#8217;</span><span class="p">:</span> <span class="n">lng</span><span class="p">}</span>
               <span class="n">checkin_form</span> <span class="o">=</span> <span class="n">CheckinForm</span><span class="p">()</span>
               <span class="k">return</span> <span class="n">render_to_response</span><span class="p">(</span><span class="s">&#8220;locations/checkin.html&#8221;</span><span class="p">,</span> <span class="p">{</span><span class="s">&#8220;location&#8221;</span><span class="p">:</span> <span class="n">location</span><span class="p">,</span>
        <span class="s">&#8220;checkin_form&#8221;</span><span class="p">:</span> <span class="n">checkin_form</span><span class="p">})</span>
    <span class="k">else</span><span class="p">:</span>
         <span class="n">location_form</span> <span class="o">=</span> <span class="n">LocationForm</span><span class="p">()</span>
         <span class="k">return</span> <span class="n">render_to_response</span><span class="p">(</span><span class="s">&#8220;locations/new.html&#8221;</span><span class="p">,</span> <span class="p">{</span><span class="s">&#8220;location_form&#8221;</span><span class="p">:</span> <span class="n">location_form</span><span class="p">})</span></pre>
<p>First of all I am protecting this view, so that only logged in users(@login_required) will be able to search locations. Next if the request of the type POST only the loop gets executed. If some tries to access with a GET/anything the else part will be executed there by rendering an empty form again. I&#8217;m extracting the data from request.POST and putting in location_form variable.</p>
<p><strong>Next</strong> we import geocoders from geopy and then instantiate its Yahoo class. We can use Google or Geocoders as well, but I chose Yahoo. Pass your YAHOO_API_KEY as argument to Yahoo class. I am extracting the form data into a variable &#8216;p&#8217; and then performing a geocode using the yahoo object. A request is made to Yahoo Geocoding service and geo data is returned. I created 3 variables place, lat &amp; lng which contains place name, latitude &amp; longitude. I pass all these variables into a dictionary and pass them to a template(checkin.html). In this process I am also creating a blank checkin_form which is also passed to the tempalte. I will discuss those details in the next part. You can check out the <a title="checkin.html" href="http://code.google.com/p/django-locations/source/browse/trunk/locations/templates/locations/new.html">checkin.html</a> which is pretty simple. It contains just a form.</p>
<p>More is part-2&#8230;</p>
<p> </p>
<p><strong>I am disabling comments for this posts as I already wrote this post in my personal blog.</strong><a href="http://www.yashh.com/blog/2008/aug/17/building-brightkite-using-django-part-1/"><strong> Head over to my blog</strong></a><strong> to share some feedback with me.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/08/17/building-a-brightkite-using-django-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ara Abrahamian of Sweden throws the Bronze Medal and Quits</title>
		<link>http://www.simori.com/2008/08/15/ara-abrahamian-of-sweden-throws-the-bronze-medal/</link>
		<comments>http://www.simori.com/2008/08/15/ara-abrahamian-of-sweden-throws-the-bronze-medal/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 18:42:11 +0000</pubDate>
		<dc:creator>dhiwakar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[2008]]></category>

		<category><![CDATA[Beijing]]></category>

		<category><![CDATA[Beijing 2008]]></category>

		<category><![CDATA[Games]]></category>

		<category><![CDATA[Olympic]]></category>

		<category><![CDATA[throws the Bronze Medal]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=823</guid>
		<description><![CDATA[Its happening at Beijing 2008 Olympic Games. World Records,  Controversies, Revenge, and more.
At the same time players getting frustrated for the medals.
“I don’t care about this medal. I wanted gold,” he said.
Who had a high hopes from the last Olympic 2004.
“This will be my last match. I wanted to take gold, so I consider this [...]]]></description>
			<content:encoded><![CDATA[<p>Its happening at Beijing 2008 Olympic Games. World Records,  Controversies, Revenge, and more.</p>
<p>At the same time players getting frustrated for the medals.</p>
<p>“I don’t care about this medal. I wanted gold,” he said.</p>
<p>Who had a high hopes from the last Olympic 2004.</p>
<p>“This will be my last match. I wanted to take gold, so I consider this Olympics a failure,” he said.</p>
<p>Swedish coach Leo Myllari said: “It’s all politics.”</p>
<p>Check More <a href="http://sports.yahoo.com/olympics/news;_ylt=AsuRRLh1P4RvWp_zbYaA3FUazJV4?slug=reu-wrestling&amp;prov=reuters&amp;type=lgns" target="_blank">here</a></p>
<p><a href="http://www.simori.com/wp-content/uploads/2008/08/r3891005234.jpg"><img class="alignnone size-full wp-image-824" title="r3891005234" src="http://www.simori.com/wp-content/uploads/2008/08/r3891005234.jpg" alt="" width="410" height="215" /></a></p>
<p>The bronze medal belonging to Ara Abrahamian of Sweden lies on the floor during the medal ceremony for the men&#8217;s 84kg Greco-Roman wrestling competition at the Beijing 2008 Olympic Games August 14, 2008. REUTERS/Hans Deryk (CHINA) - yahoo</p>
<p><a href="http://www.simori.com/wp-content/uploads/2008/08/r2392146305.jpg"><img class="alignnone size-full wp-image-825" title="r2392146305" src="http://www.simori.com/wp-content/uploads/2008/08/r2392146305.jpg" alt="" width="410" height="318" /></a></p>
<p>Bronze medallist Ara Abrahamian (R) of Sweden throws his medal on the floor during the medal ceremony for the men&#8217;s 84kg Greco-Roman wrestling competition at the Beijing 2008 Olympic Games August 14, 2008. Gold medallist Andrea Minguzzi of Italy watches from the left. REUTERS/Oleg Popov (CHINA) - Yahoo</p>
<p><a href="http://www.simori.com/wp-content/uploads/2008/08/r2816289792.jpg"><img class="alignnone size-full wp-image-826" title="r2816289792" src="http://www.simori.com/wp-content/uploads/2008/08/r2816289792.jpg" alt="" width="410" height="285" /></a></p>
<p>The bronze medal belonging to Ara Abrahamian lies on the floor during the medal ceremony for the men&#8217;s 84kg Greco-Roman wrestling competition at the Beijing 2008 Olympic Games August 14, 2008. REUTERS/Oleg Popov (CHINA) - Yahoo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/08/15/ara-abrahamian-of-sweden-throws-the-bronze-medal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Batman : Dark Knight Returns</title>
		<link>http://www.simori.com/2008/08/15/batman-dark-knight-returns/</link>
		<comments>http://www.simori.com/2008/08/15/batman-dark-knight-returns/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 18:18:01 +0000</pubDate>
		<dc:creator>dhiwakar</dc:creator>
		
		<category><![CDATA[Movies]]></category>

		<category><![CDATA[2011]]></category>

		<category><![CDATA[Batman]]></category>

		<category><![CDATA[Dark Knight]]></category>

		<category><![CDATA[Returns]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=821</guid>
		<description><![CDATA[Good News for Batman Fans !! Like me
Dark Knight Returns is the hot topic so far. Lot of discussion is going around about Gotham, who will be next villain and more.
And i came across some fake image release about the Batman - Dark Knight Returns.
I wish this should be true.

]]></description>
			<content:encoded><![CDATA[<p>Good News for Batman Fans !! Like me</p>
<p>Dark Knight Returns is the hot topic so far. Lot of discussion is going around about Gotham, who will be next villain and more.</p>
<p>And i came across some fake image release about the Batman - Dark Knight Returns.</p>
<p>I wish this should be true.</p>
<p><a href="http://www.simori.com/wp-content/uploads/2008/08/acey.jpg"><img class="alignnone size-full wp-image-822" title="acey" src="http://www.simori.com/wp-content/uploads/2008/08/acey.jpg" alt="" width="433" height="706" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/08/15/batman-dark-knight-returns/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yahoo&#8217;s new API BOSS</title>
		<link>http://www.simori.com/2008/07/29/yahoos-new-api-boss/</link>
		<comments>http://www.simori.com/2008/07/29/yahoos-new-api-boss/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 02:46:00 +0000</pubDate>
		<dc:creator>stranger</dc:creator>
		
		<category><![CDATA[How-To]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[boss]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[search]]></category>

		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=819</guid>
		<description><![CDATA[So this will be my first post on simori. I had been observing this site for quite sometime and found very useful information. In case you have n&#8217;t got me yet, I am yashh. So here I am to add a few tidbits of mine.
For about an year I was wondering if google provided any [...]]]></description>
			<content:encoded><![CDATA[<p>So this will be my first post on simori. I had been observing this site for quite sometime and found very useful information. In case you have n&#8217;t got me yet, I am <a href="http://www.yashh.com">yashh</a>. So here I am to add a few tidbits of mine.</p>
<p>For about an year I was wondering if google provided any API&#8217;s for the 3rd party players to utilize google search. In fact google has supported the <a title="Soap API" href="http://code.google.com/apis/soapsearch/">Soap API</a> for few years. The Soap API provided a lot of freedom for the developers to utilize the Google search remotely. The main advantage was that we could hide the backend queries from the presentation. In simple terms the results do not have the brand name google. Although google limited the queries to 1000 per day it was worth while. As of December 5, 2006, google is no longer issuing any new API keys to the developers and instead started promoting the <a title="AJAX search API" href="http://code.google.com/apis/ajaxsearch/">AJAX search API</a>which does not give the developers the freedom to manipulate the presentation of search results.</p>
<p>Now it is Yahoo which has come the <a title="Build your Own Search Service" href="http://developer.yahoo.com/search/boss/">BOSS</a> api which is used to launch search products. The first obvious question is how is it different from the previous Yahoo API.</p>
<ol>
<li>Unlimited queries per day.</li>
<li>No restriction on presentation.</li>
<li>Search Web, Images &amp; News.</li>
<li>Get Spelling sugestions.</li>
<li>Reorder the search results &amp; many other.</li>
</ol>
<p>So let&#8217;s get started with a small exercise to know how Y! BOSS API works. Sign up for an <a href="http://developer.yahoo.com/search/boss/">BOSS Application ID</a>. For this excercise I am using Y! BOSS mashup python library. You can download the library <a href="http://developer.yahoo.com/search/boss/download/">here</a>. Unzip the library. Open config.json file in code editor and edit the application id with yours. Fire up your terminal (if on mac or command prompt on windows).</p>
<p>#!/bin/sh</p>
<p class="code"><span class="nv">$ </span><span class="nb">cd </span>Desktop/boss_mashup_framework_0.1<br />
<span class="nv">$ </span><span class="nb">export </span><span class="nv">PYTHONPATH</span><span class="o">=</span><span class="nv">$PYTHONPATH</span>:<span class="nv">$PWD</span><br />
<span class="nv">$ </span>python<br />
Python 2.5.1 <span class="o">(</span>r251:54863, Apr <span class="m">15</span> 2008, 22:57:26<span class="o">)</span><br />
<span class="o">[</span>GCC 4.0.1 <span class="o">(</span>Apple Inc. build 5465<span class="o">)]</span> on darwin<br />
&gt;&gt;&gt; from yos.boss import ysearch<br />
&gt;&gt;&gt; <span class="nv">data</span> <span class="o">=</span> ysearch.search<span class="o">(</span><span class="s1">&#8216;python&#8217;</span>, <span class="nv">count</span><span class="o">=</span>10<span class="o">)</span><br />
&gt;&gt;&gt; data<br />
<span class="c"># You find all the top search results for the keyword &#8216;python&#8217; </span><br />
in a dictionary format. Voila you are able to search the web from your terminal.</p>
<div>
<p><a href="http://lethain.com/">Will Larson</a> developed a python wrapper for the Yahoo BOSS <a href="http://github.com/lethain/bossarray/tree/master/boss_array.py">boss_array.py</a>. This eases our development by a large amount. <a href="http://lethain.com/entry/2008/jul/28/bossarray-for-list-like-yahoo-search-results/">Here</a> is a good tutorial using the wrapper.</p>
<p><strong>Conclusion</strong>: Yahoo BOSS api is certainly a boon for third party apps and developers. All it needs to improve is the speed and accuracy. It will take some time for the developers to accustom to it and develop new API&#8217;s over BOSS.</p>
<p><strong>I am disabling comments for this posts as I already wrote this post in my personal blog.</strong><a href="http://www.yashh.com/blog/2008/jul/29/yahoos-new-api-boss/"><strong> Head over to my blog</strong></a><strong> to share some feedback with me.</strong></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/07/29/yahoos-new-api-boss/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Joker Truely Dies</title>
		<link>http://www.simori.com/2008/07/20/villain-turns-to-hero/</link>
		<comments>http://www.simori.com/2008/07/20/villain-turns-to-hero/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 03:17:45 +0000</pubDate>
		<dc:creator>dhiwakar</dc:creator>
		
		<category><![CDATA[Movies]]></category>

		<category><![CDATA[Dark Knight]]></category>

		<category><![CDATA[Heather Ledger]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=812</guid>
		<description><![CDATA[


&#8220;Heath Ledger born April 4, 1979  was an Academy Award-, BAFTA-, Golden Globe-, and SAG Award-nominated Australian film and television actor. After appearing in television roles during the 1990s, Ledger developed a movie career, appearing in nearly 20 films. He starred in both critical and box-office successes, including 10 Things I Hate About You, The [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.simori.com/wp-content/uploads/2008/07/batman-dark-knight-joker.jpg"><img class="aligncenter size-full wp-image-818" title="batman-dark-knight-joker" src="http://www.simori.com/wp-content/uploads/2008/07/batman-dark-knight-joker.jpg" alt="" width="429" height="375" /></a></p>
<p style="text-align: center;"><a href="http://www.simori.com/wp-content/uploads/2008/07/dark_knight_18.jpg"><img class="aligncenter size-full wp-image-813" title="dark_knight_18" src="http://www.simori.com/wp-content/uploads/2008/07/dark_knight_18.jpg" alt="" width="434" height="300" /></a></p>
<p style="text-align: center;"><a href="http://www.simori.com/wp-content/uploads/2008/07/imagen-joker-ledger-dark-knight-story.jpg"><img class="aligncenter size-full wp-image-815" title="imagen-joker-ledger-dark-knight-story" src="http://www.simori.com/wp-content/uploads/2008/07/imagen-joker-ledger-dark-knight-story.jpg" alt="" width="432" height="395" /></a></p>
<p><strong>&#8220;Heath Ledger</strong> born April 4, 1979  was an Academy Award-, BAFTA-, <span class="mw-redirect">Golden Globe</span>-, and <span class="mw-redirect">SAG Award</span>-nominated <span class="mw-redirect">Australian</span> film and television actor. After appearing in television roles during the 1990s, Ledger developed a movie career, appearing in nearly 20 films. He starred in both critical and <span class="mw-redirect">box-office</span> successes, including <em>10 Things I Hate About You</em>, <em>The Patriot</em>, <em>Monster&#8217;s Ball,</em> <em>A Knight&#8217;s Tale</em>, and <em><span class="mw-redirect">Brokeback Mountain</span></em>. For his portrayal of Ennis Del Mar in <em>Brokeback Mountain</em>, Ledger was nominated for a 2005 Oscar for &#8220;Best Actor in a Leading Role&#8221; and also was nominated and won &#8220;Best Actor&#8221; awards for that role from BAFTA and the Australian Film Institute and the <span class="mw-redirect">New York Film Critics Circle</span>, respectively, as well as won an MTV Movie Award with Jake Gyllenhaal for their &#8220;best kiss&#8221; in the film.</p>
<p style="text-align: center;"><a href="http://www.simori.com/wp-content/uploads/2008/07/heath-ledger.jpg"><img class="aligncenter size-full wp-image-816" title="heath-ledger" src="http://www.simori.com/wp-content/uploads/2008/07/heath-ledger.jpg" alt="" width="438" height="510" /></a></p>
<p>He played the Joker in the movie <em>The Dark Knight</em>,<sup> </sup>shortly before dying, on January 22, 2008, from an accidental prescription drug overdose at age 28. His final film performance, uncompleted at the time of his death, is the role of Tony in Terry Gilliam&#8217;s forthcoming film <em>The Imaginarium of Doctor Parnassus</em>. Posthumously, on February 23, 2008, he shared the <span class="mw-redirect">Independent Spirit</span> <span class="new">Robert Altman Award</span> with the cast and crew of the film <em>I&#8217;m Not There</em>, in which he portrayed a character named &#8220;Robbie Clark&#8221;, based on a stage in the life of Bob Dylan.<sup> &#8220;</sup></p>
<p>From <a href="http://en.wikipedia.org/wiki/Heath_Ledger" target="_blank">Wiki</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/07/20/villain-turns-to-hero/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Batman - Dark Knight - Sets Record</title>
		<link>http://www.simori.com/2008/07/20/batman-dark-knight-sets-record/</link>
		<comments>http://www.simori.com/2008/07/20/batman-dark-knight-sets-record/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 03:01:06 +0000</pubDate>
		<dc:creator>dhiwakar</dc:creator>
		
		<category><![CDATA[Movies]]></category>

		<category><![CDATA[Batman]]></category>

		<category><![CDATA[Dark Knight]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=808</guid>
		<description><![CDATA[Dark Knight Sets Weekend Record with &#8220;155.34 M&#8221;


&#8220;The Dark Knight&#8221; took in a record $155.34 million in its first weekend, topping the previous best of $151.1 million for &#8220;Spider-Man 3&#8243; in May 2007 and pacing Hollywood to its biggest weekend ever, according to studio estimates Sunday&#8221;. Yahoo. 
&#8221; Estimated ticket sales for Friday through Sunday [...]]]></description>
			<content:encoded><![CDATA[<p>Dark Knight Sets Weekend Record with &#8220;155.34 M&#8221;</p>
<p style="text-align: center;"><a href="http://www.simori.com/wp-content/uploads/2008/07/posterexclusivoomelete.jpg"><img class="aligncenter size-full wp-image-811" title="posterexclusivoomelete" src="http://www.simori.com/wp-content/uploads/2008/07/posterexclusivoomelete.jpg" alt="" width="420" height="628" /></a></p>
<p style="text-align: center;"><a href="http://www.simori.com/wp-content/uploads/2008/07/the_dark_knight_outro_poster.jpg"><img class="aligncenter size-full wp-image-810" title="the_dark_knight_outro_poster" src="http://www.simori.com/wp-content/uploads/2008/07/the_dark_knight_outro_poster.jpg" alt="" width="425" height="678" /></a></p>
<p><span style="font-family: arial,helvetica;">&#8220;The Dark Knight&#8221; took in a record $155.34 million in its first weekend, topping the previous best of $151.1 million for &#8220;Spider-Man 3&#8243; in May 2007 and pacing Hollywood to its biggest weekend ever, according to studio estimates Sunday&#8221;. Yahoo. </span></p>
<p><span style="font-family: arial,helvetica;">&#8221; Estimated ticket sales for Friday through Sunday at U.S. and Canadian theaters, according to Media By Numbers LLC. Final figures will be released Monday. </span></p>
<p><span style="font-family: arial,helvetica;">1. &#8220;The Dark Knight,&#8221; $155.34 million. </span></p>
<p><span style="font-family: arial,helvetica;">2. &#8220;Mamma Mia!&#8221;, $27.6 million. </span></p>
<p><span style="font-family: arial,helvetica;">3. &#8220;Hancock,&#8221; $14 million. </span></p>
<p><span style="font-family: arial,helvetica;">4. &#8220;Journey to the Center of the Earth,&#8221; $11.9 million. </span></p>
<p><span style="font-family: arial,helvetica;">5. &#8220;Hellboy II: The Golden Army,&#8221; $10 million. </span></p>
<p><span style="font-family: arial,helvetica;">6. &#8220;WALL-E,&#8221; $9.8 million. </span></p>
<p><span style="font-family: arial,helvetica;">7. &#8220;Space Chimps,&#8221; $7.4 million. </span></p>
<p><span style="font-family: arial,helvetica;">8. &#8220;Wanted,&#8221; $5.1 million. </span></p>
<p><span style="font-family: arial,helvetica;">9. &#8220;Get Smart,&#8221; $4.1 million. </span></p>
<p><span style="font-family: arial,helvetica;">10. &#8220;Kung Fu Panda,&#8221; $1.8 million. &#8221;<br />
</span></p>
<p>From <a href="http://movies.yahoo.com/mv/news/ap/20080720/121658682000.html" target="_blank">Yahoo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/07/20/batman-dark-knight-sets-record/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Quantum of Solace&#8221; Theme &#038; HD Trailer</title>
		<link>http://www.simori.com/2008/07/12/quantum-of-solace-by-igor-montenegro/</link>
		<comments>http://www.simori.com/2008/07/12/quantum-of-solace-by-igor-montenegro/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 19:57:50 +0000</pubDate>
		<dc:creator>Cuong</dc:creator>
		
		<category><![CDATA[Arts &amp; Designs]]></category>

		<category><![CDATA[Movies]]></category>

		<category><![CDATA[Music Video]]></category>

		<category><![CDATA[007]]></category>

		<category><![CDATA[james bond]]></category>

		<category><![CDATA[quantum of solace]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=807</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/jnjkWGTmX5Y&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/jnjkWGTmX5Y&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/r32p4uaGPog&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/r32p4uaGPog&amp;hl=en&amp;fs=1" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/07/12/quantum-of-solace-by-igor-montenegro/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone 3G Launched, like a &#8220;Holiday&#8221;</title>
		<link>http://www.simori.com/2008/07/11/iphone-3g-launched-like-a-holiday/</link>
		<comments>http://www.simori.com/2008/07/11/iphone-3g-launched-like-a-holiday/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 17:12:39 +0000</pubDate>
		<dc:creator>Cuong</dc:creator>
		
		<category><![CDATA[Apple News]]></category>

		<category><![CDATA[Arts &amp; Designs]]></category>

		<category><![CDATA[Awesome Gadgets]]></category>

		<category><![CDATA[Newsblog]]></category>

		<category><![CDATA[iPhone 3G]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=805</guid>
		<description><![CDATA[





Today at exactly 8:00 in the morning, Apple opens the door to accept their orders of the new iPhone 3G. Similar to the commotion of the last iPhone, crows have lined up heavily last night to claim their spot in front of Apple and AT&#38;T stores. People who were skeptical to purchase about the first [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://farm4.static.flickr.com/3178/2656909720_83c0f0bacc_o.jpg" alt="" width="426" height="308" /><br />
<img src="http://farm4.static.flickr.com/3034/2657623597_3aa2cc6baa.jpg" alt="" width="427" height="320" /><br />
<img src="http://farm4.static.flickr.com/3064/2658450660_f1bfda4737.jpg" alt="" width="428" height="319" /><br />
<img src="http://farm4.static.flickr.com/3200/2655798904_7d4993b443.jpg" alt="" width="429" height="283" /><br />
<img src="http://farm4.static.flickr.com/3167/2657524874_e413b4981e.jpg" alt="" /></p>
<p style="text-align: center;">
<p style="text-align: left;">Today at exactly 8:00 in the morning, Apple opens the door to accept their orders of the new iPhone 3G. Similar to the commotion of the last iPhone, crows have lined up heavily last night to claim their spot in front of Apple and AT&amp;T stores. People who were skeptical to purchase about the first iPhone a year ago, are now lined up, waiting for the new and improved iPhone 3G. The &#8220;launch&#8221; of the new iPhone doesn&#8217;t end there, in various places like YouTube &amp; Flickr, owners of the new iPhone post up pictures, videos, reviews and most importantly their &#8220;love&#8221;.</p>
<p style="text-align: left;">For those you missed the commotion, here&#8217;s the experience all recorded.</p>
<p style="text-align: left;"><a href="http://youtube.com/results?search_query=iphone+3G&amp;search_sort=video_date_uploaded">The Launch</a></p>
<p style="text-align: left;"><a href="http://www.flickr.com/search/?q=iphone+3G+launch&amp;s=int&amp;z=t">Picture of the launch</a></p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/07/11/iphone-3g-launched-like-a-holiday/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Great Wave + Blue Jeans</title>
		<link>http://www.simori.com/2008/07/07/great-wave-blue-jeans/</link>
		<comments>http://www.simori.com/2008/07/07/great-wave-blue-jeans/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 19:35:38 +0000</pubDate>
		<dc:creator>Cuong</dc:creator>
		
		<category><![CDATA[Arts &amp; Designs]]></category>

		<category><![CDATA[Fashion]]></category>

		<category><![CDATA[Humorous]]></category>

		<category><![CDATA[Newsblog]]></category>

		<category><![CDATA[Blue Jeans]]></category>

		<category><![CDATA[Great Wave]]></category>

		<category><![CDATA[Hokusai]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=803</guid>
		<description><![CDATA[
Found this really awesome picture of Hokusai&#8217;s Great Wave made from blue jeans. At first I couldn&#8217;t make up what the blue things were, it looked like shreaded blue papers with Hokusai&#8217;s painting. But when I looked closely at the length of the medium, and the texture on them, I soon recognize that they were [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.simori.com/wp-content/uploads/2008/07/calvin-levi-hokusai.jpg"><img class="alignnone size-full wp-image-804" title="calvin-levi-hokusai" src="http://www.simori.com/wp-content/uploads/2008/07/calvin-levi-hokusai.jpg" alt="" width="420" height="718" /></a></p>
<p style="text-align: left;">Found this really awesome picture of Hokusai&#8217;s <em>Great Wave</em> made from blue jeans. At first I couldn&#8217;t make up what the blue things were, it looked like shreaded blue papers with Hokusai&#8217;s painting. But when I looked closely at the length of the medium, and the texture on them, I soon recognize that they were all blue jeans!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/07/07/great-wave-blue-jeans/feed/</wfw:commentRss>
		</item>
		<item>
		<title>World Record - Firefox 3</title>
		<link>http://www.simori.com/2008/07/06/world-record-firefox-3/</link>
		<comments>http://www.simori.com/2008/07/06/world-record-firefox-3/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 14:51:53 +0000</pubDate>
		<dc:creator>dhiwakar</dc:creator>
		
		<category><![CDATA[Awesome Gadgets]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[Firefox 3]]></category>

		<category><![CDATA[Worl Record]]></category>

		<guid isPermaLink="false">http://www.simori.com/?p=799</guid>
		<description><![CDATA[
On June 17th, 2008 Firefox 3 set Guinness World record for most downloads in 24 hours. Million number of ursers downloaded firefox 3 in just one day. The excpectations in more than 5 million in one day, but i am not sure about the count. But i bet it will be more than 2 million. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.simori.com/wp-content/uploads/2008/07/scaling-images-fx3.png"><img class="aligncenter size-full wp-image-802" title="scaling-images-fx3" src="http://www.simori.com/wp-content/uploads/2008/07/scaling-images-fx3.png" alt="" width="420" height="348" /></a></p>
<p>On June 17th, 2008 Firefox 3 set Guinness World record for most downloads in 24 hours. Million number of ursers downloaded firefox 3 in just one day. The excpectations in more than 5 million in one day, but i am not sure about the count. But i bet it will be more than 2 million. But its really amazing to see such an amount of users using Firefox.</p>
<p>The mail Expected Feautres.</p>
<ul>
<li>Faster load times</li>
<li>Better security against phishing and malware</li>
<li>Awesome Bar</li>
<li>Zoom in Feature</li>
<li>Better Look in Mac</li>
<li>and much more &#8230;&#8230;</li>
</ul>
<p><a href="http://www.simori.com/wp-content/uploads/2008/07/ff3b-robo-bg.jpg"><img class="aligncenter size-full wp-image-801" title="ff3b-robo-bg" src="http://www.simori.com/wp-content/uploads/2008/07/ff3b-robo-bg.jpg" alt="" width="420" height="416" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simori.com/2008/07/06/world-record-firefox-3/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
