<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>One Life</title>
	<atom:link href="http://1lifeisallwegot.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://1lifeisallwegot.wordpress.com</link>
	<description>the story of my one shot.</description>
	<lastBuildDate>Mon, 20 Feb 2012 19:40:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='1lifeisallwegot.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>One Life</title>
		<link>http://1lifeisallwegot.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://1lifeisallwegot.wordpress.com/osd.xml" title="One Life" />
	<atom:link rel='hub' href='http://1lifeisallwegot.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Javascript Slideshow Code</title>
		<link>http://1lifeisallwegot.wordpress.com/2012/02/19/javascript-slideshow-code/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2012/02/19/javascript-slideshow-code/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 19:40:03 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[artarium]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[transition]]></category>

		<guid isPermaLink="false">https://1lifeisallwegot.wordpress.com/?p=599</guid>
		<description><![CDATA[I prefer writing all my web-design code from scratch. So I use only text editors to write HTML directly, and &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2012/02/19/javascript-slideshow-code/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=599&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="justify">I prefer writing all my web-design code from scratch. So I use only text editors to write HTML directly, and raw JavaScript (no jQuery etc). While working on a javascript slideshow for <a title="Artarium" href="http://artarium.in/" target="_blank">Artarium</a>, I came across a lot of problems in transitioning the images. My javascript was changing the <em>src</em> for the image, but I needed to also resize it to the dimensions of the new image before displaying it. Finally, after a lot of time, effort and fruitless migrations to online tutorials and troubleshooters, I came up with the exact configuration that works. On a transition the image disappears, resizes, then reappears. In between this, if the next image takes too long to load, you could display some loading animation, as I did. Just put an animated gif there permanently with a lower <em><a title="z-index" href="http://www.w3schools.com/cssref/pr_pos_z-index.asp" target="_blank">z-index</a></em> than the photo. This will cause it to show between transitions. For the transitions itself you could use a <a title="W3schools: CSS3 transitions" href="http://www.w3schools.com/css3/css3_transitions.asp" target="_blank">CSS3 transition</a> of opacity as I did and not have to worry about further code for transition effects.</p>
<p align="justify">Here is the JavaScript code with some explanatory comments. I have added a preloading function and keyboard navigation. I have not explained everything in detail as I have assumed the user will have standard web-designing experience, in which case this should very well suffice.</p>
<p align="justify"><strong>JavaScript:</strong></p>
<p><pre class="brush: jscript;">
function keyNavigate(e) //to enable slideshow navigation using right and left arrow keys
{
    if(e.which==39)
         pre_next();
    else if (e.which==37)
        pre_previous();
}

var i=0,imax=n; //put the # of slideshow images as n here

function imagearray() //prepares things on page load and starts preloading images
{
    preloader=new Image()
    var j=0;
    captions = new Array();
    captions = ['caption1', 'caption2', ... 'caption n'];
    document.photo.src=&quot;directory/photo1.jpg&quot;; //assumes photos are in 'directory'
    document.getElementById('navigation-count').innerHTML=&quot;0/&quot;+(imax); //sets slide number
    for(j=1; j    {
        filename=&quot;directory/photo&quot;+j+&quot;.jpg&quot;; //assumes photos are 'photo1.jpg', 'photo2.jpg' etc
        preloader.src=filename;
    }
}

var imgHeight;
var imgWidth;
var newImg;

function resize() //to resize as image changes
{
    imgHeight = this.height;
    imgWidth = this.width;
    if (imgWidth/imgHeight &lt; 2.25) //any desired criterion
    {
        document.photo.style.height='355px'; //or whatever else
    }
    else
    {
        document.photo.style.width=&quot;95%&quot;;
    }
    document.photo.style.opacity=1; //photo appears only after it has been resized
    document.getElementById('caption').innerHTML=captions[i-1]; //caption changes
    document.getElementById('caption').style.opacity=1; //caption appears
    document.getElementById('navigation-count').innerHTML=(i)+&quot;/&quot;+(imax); //slide count changes
    return true;
}

function pre_next() //to ensure resizing occurs after picture disappears
{
    document.photo.style.opacity=0;
    document.getElementById('caption').style.opacity=0;
    setTimeout(&quot;next()&quot;,500);
}

function next()
{
    if (i==imax)
    {i=0;}
    i++;
    newImg=new Image();
    newImg.src=&quot;directory/photo&quot;+i+&quot;.jpg&quot;;
    document.photo.src=newImg.src;
    newImg.onload = resize; //resize function is called
}

function pre_previous()
{
    document.photo.style.opacity=0;
    document.getElementById('caption').style.opacity=0;
    setTimeout(&quot;previous()&quot;,500);
}

function previous()
{
    if (i==1)
    {i=imax+1;}
    i--;
    newImg=new Image();
    newImg.src=&quot;directory/photo&quot;+i+&quot;.jpg&quot;;
    document.photo.src=newImg.src;
    newImg.onload = resize;
}
</pre></p>
<p>This JavaScript alone does not suffice. Here’s some things you need to do with the HTML for this to work:</p>
<ol>
<li>The image element which changes in the slideshow should have a <em>name=”photo”</em> attribute (used on line 17 etc. of the JavaScript).</li>
<li>Add <em>&lt;body onload = &#8220;imagearray(), next()&#8221;  onkeydown=&#8221;keyNavigate(event)&#8221;&gt;</em>  to the HTML <em>body. </em>The <em>next()</em> is required to display the first photo and initialize the caption and slide count.</li>
<li>The slide transition occurs by <em>pre_next()</em> and <em>pre_previous()</em> functions. So any event that you want will trigger a transition should call these functions (as used in the keyboard navigation part), <em>not</em> <em>next()</em> or <em>previous()</em>.</li>
<li>The ‘caption’ div in the HTML holds the caption, while the ‘navigation-count’ div holds the slide number. Place them as you require.</li>
</ol>
<p>You can find this code at work in any gallery at Artarium, unless I change it in the future. If you hit a block using this code, there’s nothing a couple of Google searches won’t clear for you. If there’s a problem that persists<em> even after you have done your research thoroughly,</em> leave a comment (be specific) with your e-mail and I promise to try to help.</p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/tech/'>Tech</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/artarium/'>artarium</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/code/'>code</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/html/'>html</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/image/'>image</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/javascript/'>javascript</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/slide/'>slide</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/slideshow/'>slideshow</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/transition/'>transition</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/599/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/599/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/599/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/599/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/599/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/599/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/599/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/599/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/599/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/599/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/599/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/599/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/599/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/599/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=599&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2012/02/19/javascript-slideshow-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>
	</item>
		<item>
		<title>Germany Through My Lens</title>
		<link>http://1lifeisallwegot.wordpress.com/2012/01/21/germany-through-my-lens/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2012/01/21/germany-through-my-lens/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 19:13:49 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[daad]]></category>
		<category><![CDATA[daad delhi]]></category>
		<category><![CDATA[daad india]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[ya]]></category>
		<category><![CDATA[young ambassador]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://1lifeisallwegot.wordpress.com/?p=580</guid>
		<description><![CDATA[At the DAAD1 Young Ambassador2 annual meet in Delhi, India, we had a special session for presenting our photos and videos &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2012/01/21/germany-through-my-lens/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=580&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At the DAAD<sup><a href="http://www.daad.de" target="_blank">1</a></sup> Young Ambassador<sup><a href="http://newdelhi.daad.de/mainFrame/home/ya.php" target="_blank">2</a></sup> annual meet in Delhi, India, we had a special session for presenting our photos and videos from around Germany. The night before, I decided I’d do something slightly better than just opening up the photos and tapping the right arrow key as the room stares at the projector screen out of nicety. So I stayed up all night making a video out of photos and clips, and threw in some of my favourite uncommon music. As dawn was breaking, I went to the front desk of our hotel and asked if the swimming pool was open yet. It was plain from my looks that I hadn’t slept. The guy must have thought I was crazy. He said it opens from eight. So I went back and hit the bed. And got up an hour later for our program that day.</p>
<p>Anyway, everyone liked the video. At the end, it was replayed as a way of finishing the meet, so that was great. Ms. Christiane Schlottmann, head of DAAD India, said the music was cool. I had uploaded it to YouTube and today DAAD India uploaded it to their newly opened YouTube channel. So here it is from their channel, and I hope you like it!</p>
<span style="text-align:center; display: block;"><a href="http://1lifeisallwegot.wordpress.com/2012/01/21/germany-through-my-lens/"><img src="http://img.youtube.com/vi/XIcVZ-NqsDA/2.jpg" alt="" /></a></span>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/daad/'>daad</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/daad-delhi/'>daad delhi</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/daad-india/'>daad india</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/video/'>video</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/ya/'>ya</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/young-ambassador/'>young ambassador</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/youtube/'>youtube</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/580/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=580&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2012/01/21/germany-through-my-lens/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>
	</item>
		<item>
		<title>My blog: 2011 in review</title>
		<link>http://1lifeisallwegot.wordpress.com/2012/01/01/my-blog-2011-in-review/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2012/01/01/my-blog-2011-in-review/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 13:39:13 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://1lifeisallwegot.wordpress.com/?p=571</guid>
		<description><![CDATA[The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog. Here&#8217;s an excerpt: A New York City &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2012/01/01/my-blog-2011-in-review/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=571&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog.</p>
<p><a href="/2011/annual-report/"><img src="http://www.wordpress.com/wp-content/mu-plugins/annual-reports/img/emailteaser.jpg" alt="" width="100%" /></a></p>
<p>Here&#8217;s an excerpt:</p>
<blockquote><p>A New York City subway train holds 1,200 people. This blog was viewed about <strong>4,400</strong> times in 2011. If it were a NYC subway train, it would take about 4 trips to carry that many people.</p></blockquote>
<p><a href="/2011/annual-report/">Click here to see the complete report.</a></p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/571/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=571&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2012/01/01/my-blog-2011-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>

		<media:content url="http://www.wordpress.com/wp-content/mu-plugins/annual-reports/img/emailteaser.jpg" medium="image" />
	</item>
		<item>
		<title>Photoshop Tutorial: Add texture to flat image</title>
		<link>http://1lifeisallwegot.wordpress.com/2011/12/28/photoshop-tutorial-add-texture-to-flat-image/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2011/12/28/photoshop-tutorial-add-texture-to-flat-image/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 20:45:50 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">https://1lifeisallwegot.wordpress.com/?p=539</guid>
		<description><![CDATA[This will be a short Photoshop tutorial that will explain how you can make an image richer by adding a &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2011/12/28/photoshop-tutorial-add-texture-to-flat-image/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=539&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This will be a short Photoshop tutorial that will explain how you can make an image richer by adding a texture to it.</p>
<p>We start with this image that can be found on the internet:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/guitar.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="HD Wallpapers of Violin - High Resolution Backgrounds of Guitar 3000 x 2000" border="0" alt="HD Wallpapers of Violin - High Resolution Backgrounds of Guitar 3000 x 2000" src="http://1lifeisallwegot.files.wordpress.com/2011/12/guitar_thumb.jpg?w=497&#038;h=333" width="497" height="333" /></a></p>
<p>Then we straighten and flip it in Photoshop using <strong>Image &gt; Image Rotation</strong> options:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-19.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-1" border="0" alt="photoshop-1" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-19_thumb.png?w=693&#038;h=489" width="693" height="489" /></a></p>
<p>There is a more or less flat backdrop to the guitar. We want to introduce a texture here. You can download textures from the internet, like this crumpled paper texture that I chose:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/crumpled_paper_7_insight_designs.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;padding-top:0;border-width:0;margin:0 auto;" title="crumpled_paper_7_insight_designs" border="0" alt="crumpled_paper_7_insight_designs" src="http://1lifeisallwegot.files.wordpress.com/2011/12/crumpled_paper_7_insight_designs_thumb.jpg?w=294&#038;h=407" width="294" height="407" /></a></p>
<p>Insert it into the document as a layer, like so:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-21.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-2" border="0" alt="photoshop-2" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-2_thumb1.png?w=722&#038;h=510" width="722" height="510" /></a></p>
<p>Resize it so that it fills the entire area, in this case:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-31.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-3" border="0" alt="photoshop-3" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-3_thumb1.png?w=715&#038;h=504" width="715" height="504" /></a></p>
<p>Now comes the magic. Set the blend mode of this layer to <strong>overlay</strong>. You can experiment with some of the other modes too to get your desired result:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-41.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-4" border="0" alt="photoshop-4" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-4_thumb1.png?w=711&#038;h=502" width="711" height="502" /></a></p>
<p>This is the result:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-51.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-5" border="0" alt="photoshop-5" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-5_thumb1.png?w=709&#038;h=501" width="709" height="501" /></a></p>
<p>Not quite finished yet. The overlayed texture has fallen on the entire image, including the guitar. Although in this case it is not very conspicuous, I still prefer the smoother, softer original look of the guitar. Also, in other cases it might not do to have the texture sprawl over the entire image, but only lie over a specific area of it. For this we must remove the texture from the unneeded region. This we shall do via a <strong>layer mask</strong>.</p>
<p>Apply a layer mask to the texture layer by <strong>Layer &gt; Layer Mask &gt; Reveal All</strong>:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-61.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-6" border="0" alt="photoshop-6" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-6_thumb1.png?w=707&#038;h=500" width="707" height="500" /></a></p>
<p>Now choose a suitable brush:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-71.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-7" border="0" alt="photoshop-7" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-7_thumb1.png?w=707&#038;h=500" width="707" height="500" /></a></p>
<p>Paint with black over the mask of the texture layer. This will start removing the texture from the regions you paint over. Paint with white to restore the texture in that area. Toy around with the brush size, hardness and opacity; change brushes etc. until you are satisfied with the result:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-84.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-8" border="0" alt="photoshop-8" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-84_thumb.png?w=696&#038;h=492" width="696" height="492" /></a></p>
<p>As you can see, some softness has been restored to the guitar and the surrounding background. Now you may, if you want, merge down the two layers by selecting the top layer and pressing <strong>Ctrl+E</strong> or choosing <strong>Layer &gt; Merge Down</strong> and use it as a single layer or save as an image.</p>
<p>This essentially concludes the tutorial on adding a texture. However, I also wanted to increase the extent of this image upwards, filling the expanded region with only the textured background. For this we must first make a layer from the locked background (the original image) by double-clicking it. Then we change the canvas size by <strong>Image &gt; Canvas Size</strong>:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-91.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-9" border="0" alt="photoshop-9" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-9_thumb1.png?w=704&#038;h=498" width="704" height="498" /></a></p>
<p>If we do not make a layer from the background before expanding the canvas, the new area will be white instead of transparent.</p>
<p>Then I duplicate our layer into a new one and shift that up. I flip it vertically and line it up with the top edge of the original layer below:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-101.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-10" border="0" alt="photoshop-10" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-10_thumb1.png?w=700&#038;h=495" width="700" height="495" /></a></p>
<p>We need to make the top guitar disappear. We do this using the <strong>Clone Stamp</strong> tool. Choosing a patch of the textured background beside the top guitar as the source, you can paint over the guitar. Again, fiddle with the size, hardness and opacity of the brush to smoothen out the changed region with its surroundings. </p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-111.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-11" border="0" alt="photoshop-11" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-11_thumb1.png?w=699&#038;h=493" width="699" height="493" /></a></p>
<p>Same goes for the region where the two edges are meeting, because the mirroring is apparent there:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-121.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-12" border="0" alt="photoshop-12" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-12_thumb1.png?w=699&#038;h=494" width="699" height="494" /></a></p>
<p>Here is the final image:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-tutorial1.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:block;float:none;border-top:0;border-right:0;padding-top:0;margin:0 auto;" title="photoshop-tutorial" border="0" alt="photoshop-tutorial" src="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-tutorial_thumb1.jpg?w=323&#038;h=722" width="323" height="722" /></a></p>
<p>Share the knowledge and enjoy.</p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/tech/'>Tech</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/image/'>image</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/photoshop/'>photoshop</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/texture/'>texture</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/tutorial/'>tutorial</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/539/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/539/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/539/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=539&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2011/12/28/photoshop-tutorial-add-texture-to-flat-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/guitar_thumb.jpg" medium="image">
			<media:title type="html">HD Wallpapers of Violin - High Resolution Backgrounds of Guitar 3000 x 2000</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-19_thumb.png" medium="image">
			<media:title type="html">photoshop-1</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/crumpled_paper_7_insight_designs_thumb.jpg" medium="image">
			<media:title type="html">crumpled_paper_7_insight_designs</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-2_thumb1.png" medium="image">
			<media:title type="html">photoshop-2</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-3_thumb1.png" medium="image">
			<media:title type="html">photoshop-3</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-4_thumb1.png" medium="image">
			<media:title type="html">photoshop-4</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-5_thumb1.png" medium="image">
			<media:title type="html">photoshop-5</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-6_thumb1.png" medium="image">
			<media:title type="html">photoshop-6</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-7_thumb1.png" medium="image">
			<media:title type="html">photoshop-7</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-84_thumb.png" medium="image">
			<media:title type="html">photoshop-8</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-9_thumb1.png" medium="image">
			<media:title type="html">photoshop-9</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-10_thumb1.png" medium="image">
			<media:title type="html">photoshop-10</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-11_thumb1.png" medium="image">
			<media:title type="html">photoshop-11</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-12_thumb1.png" medium="image">
			<media:title type="html">photoshop-12</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/12/photoshop-tutorial_thumb1.jpg" medium="image">
			<media:title type="html">photoshop-tutorial</media:title>
		</media:content>
	</item>
		<item>
		<title>Unwritten Thoughts</title>
		<link>http://1lifeisallwegot.wordpress.com/2011/12/14/unwritten-thoughts/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2011/12/14/unwritten-thoughts/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 11:48:45 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Me and My Life]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[unwritten]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">https://1lifeisallwegot.wordpress.com/?p=504</guid>
		<description><![CDATA[Last night I finished some work on a website I’ve been designing and watched a video lecture before tucking into &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2011/12/14/unwritten-thoughts/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=504&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last night I finished some work on a website I’ve been designing and watched a video lecture before tucking into bed. It was pretty late by then, around half past three, and I was very sleepy. But I think I got a small idea for a blog post (after a long time) and wanted to write it down before I either forgot or lost the enthusiasm the next day. So instead of turning off the laptop, I opened up the blog publishing program. I remember that well, although I was terribly sleepy and there was a film of clouded haze before my eyes, and I was forgetting whether I was asleep or awake.</p>
<p>I wrote down the title, I remember that. What happened next was pretty creepy, but I remember that too.</p>
<p>I collected my half-asleep mind with considerable difficulty in order to type down the formative idea for the post. Then, just as I was about to type it, just as my fingers hovered close above the keyboard, I heard this distinctive patter of the keys. Moderately fast typing, like my speed. I blinked and shook my head, but the haze did not clear. I could still see though that the text area was blank. I looked down and my fingers were still poised above the keys.</p>
<p>The soft sounds of the typing continued. I completely forgot what I was about to write.</p>
<p>I have been going to bed overworked, tired, and very late, a lot lately. So I stopped and tried to figure out whether all this was really happening, or I had smoothly passed from reality to a dream without significant changes in my surroundings. I was thinking that when I realized there was no sound. No typing noises. I sat up, rubbed my eyes and took stock of my surroundings. I was in my dark room under the sheets with a laptop on my lap, staring at a blank blog post. I remembered why I had it open. I remembered what I wanted to write down. So I thought of typing it down before I fell completely asleep and forgot the thought the next day.</p>
<p>Again, just as I was about to touch the keys, there started this soft patter over the keyboard. It wasn’t coming out of the speakers or anything, I was sure. It was coming from the keyboard, as if I was typing. But I wasn’t. I just sort of gave up then and lay back and let it be, much as one does after some shots of alcohol. I kept listening and did nothing. The typing continued. It was fast, and did not pause for long gaps, as if the mind was made. It continued, interjected by the slightly louder tap of the spacebar here and there. It was as if someone had wanted to write down a lot of things on their mind but had for long been unable to, and now took the opportunity of my attempt at a post to pour out their heart and mind. Only that it refused to show up on the screen. But it was as if I knew that someone, with that distinctive typing speed, that peculiar distribution of speeding up in some words and slowing down, pausing, thinking for a moment in others, that so familiar punching of the spacebar…</p>
<p>It was as if that someone was me, from some place else I had long neglected.</p>
<p>I kept listening to the typing in a general sleepy trance, trying a bit to guess from the source of the sounds which keys were being pressed, when there arose from inside me a faint feeling that I wasn’t asleep or imagining this.</p>
<p>I listened to it for a long time, gradually slipping into a deeper haze until I remember no more.</p>
<p>I woke up very late this morning. Afternoon, rather. The laptop was on my lap. It had turned itself off. I remembered last night. Before I did anything else, I booted the laptop and opened up the program.</p>
<p>Something had been written and saved last night. I opened it up and almost fell off my bed.</p>
<p>It was <em>huge</em>. I read through the whole thing for an hour. Then I sat silent for another hour afterwards, not believing, not being able to figure it out.</p>
<p>I don’t remember writing any of this. I don’t remember ever having <em>thought</em> of writing any of this. A person half-asleep, disoriented and hallucinating <em>cannot</em> write like this. But they were <em>my</em> thoughts, my own thoughts. My own wispy odds and ends that had flashed past the mind now and then and been carelessly shelved away for later reflection which I never had time for. Thoughts I had had on a bus, on the road, while looking at the face of a sad young girl in the metro, thoughts while listening to a song, thoughts about the nature of darkness and the lives of animals. Inconsequential thoughts, unfruitful thoughts, the smallest of thoughts. Picked and arranged and nurtured now into a long monologue before my eyes. Everything I had wanted to write about. Everything that is proper to write about, and everything improper.</p>
<p>I have not read it a second time since. I cannot put it in my blog. It cannot be read by any person except me. And the one thing I can swear on, is it couldn’t have been written by anyone except me.</p>
<p>I don’t know what to do with this. I don’t know if I am happy, or upset, or scared. I can’t decide. I don’t know how this happened. I need to find out. But I don’t know how. Who else can I ask? I have my doubts whether anyone else can help me.</p>
<p>I just know one thing. I’m going early to bed tonight.</p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/me-and-my-life/'>Me and My Life</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/blog/'>blog</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/thoughts/'>thoughts</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/unwritten/'>unwritten</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/writing/'>writing</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/504/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=504&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2011/12/14/unwritten-thoughts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>
	</item>
		<item>
		<title>I hate the word &#8216;Genius&#8217;</title>
		<link>http://1lifeisallwegot.wordpress.com/2011/12/07/i-hate-the-word-genius/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2011/12/07/i-hate-the-word-genius/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 21:57:00 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Views and Observations]]></category>
		<category><![CDATA[genius]]></category>
		<category><![CDATA[gift]]></category>
		<category><![CDATA[hate]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">https://1lifeisallwegot.wordpress.com/?p=499</guid>
		<description><![CDATA[Just dug up an old favourite quote: I don’t like this word ‘genius’, especially when they call me that. There &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2011/12/07/i-hate-the-word-genius/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=499&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just dug up an old favourite quote:</p>
<p>I don’t like this word ‘genius’, especially when they call me that. There are two reasons for that. The first is the burden of expectation. Geniuses are supposed to perform no matter what. They are not common men like us weighed down by chance, by fault, by stupidity or lack of intelligence or skill. They perform magically, they astound, they deliver. Now I know I can’t do those. Not consistently. Not despite the odds, my limited intelligence and skill. Especially when everybody is breathing down my neck with those expectations, like watching a show. And I don’t want no label for which I’d have to run that race. I can’t trust myself to live up to people’s expectations. In fact, I don’t <em>want </em>them to have any from me.</p>
<p>Whatever little I do have, it’s not a <em>gift.</em> I’m not <em>endowed</em> or <em>special.</em> I started from the same line as everyone. I had to work; I had to make an effort. I had to be passionate and stick with things. I had to push myself beyond my own lines, and I got what I feel happy with today. I had to work as much as you would have had to, only that I did. So I don’t want no god-given power to come and claim that away from me. Yeah, that’s the second reason.</p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/views-and-observations/'>Views and Observations</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/genius/'>genius</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/gift/'>gift</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/hate/'>hate</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/quote/'>quote</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/word/'>word</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/work/'>work</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/499/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/499/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/499/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=499&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2011/12/07/i-hate-the-word-genius/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>
	</item>
		<item>
		<title>Engineer Jokes</title>
		<link>http://1lifeisallwegot.wordpress.com/2011/11/15/engineer-jokes/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2011/11/15/engineer-jokes/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 21:06:17 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Views and Observations]]></category>
		<category><![CDATA[engineer jokes facebook funny science]]></category>

		<guid isPermaLink="false">https://1lifeisallwegot.wordpress.com/2011/11/15/engineer-jokes/</guid>
		<description><![CDATA[First off, if you&#8217;ve arrived here searching for engineer jokes, you might be disappointed. There is no engineer joke in &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2011/11/15/engineer-jokes/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=493&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First off, if you&#8217;ve arrived here searching for engineer jokes, you might be disappointed. There is no engineer joke in this post.</p>
<p>So anyway, I don’t get this deal with the newfound arrogance of engineering I see around these days. Facebook’s full of it. There’s a horde of half-geeky slash semi-witty slash pure roundabout humour stuff with uncountable spelling and grammar mistakes being shared around, with a footnote to the effect of ‘Engineers made this. Engineers understand this. If you are not an engineer, you’re too dumb to get this. How superiorly cool is that?’ This is what I mean:</p>
<p><a href="http://1lifeisallwegot.files.wordpress.com/2011/11/engineers-clock.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:block;float:none;padding-top:0;border:0;margin:0 auto;" title="engineers-clock" src="http://1lifeisallwegot.files.wordpress.com/2011/11/engineers-clock_thumb.jpg?w=244&#038;h=198" alt="engineers-clock" width="244" height="198" border="0" /></a></p>
<p>(It actually says ‘Sheldon Cooper’s clock’. And he was a… what? Hint: not engineer. Remember the engineer in that show?) I mean, it’s finally a bunch of frivolity, dudes. Settle down, grow up. And relax, science students get it. At least there’s no reason to doubt that a significantly different (and necessarily lower) fraction of science students get it as compared to engineering students.</p>
<p>So who makes this stuff, anyway? To hell with whoever makes them. The creator is inconsequential. Why, my engineer friends (<em>some,</em> not <em>all </em>of them), do you suppose that they consist an argument for your intellectual superiority, and gladly hand it around under that label? Why do you circulate a photo of the German water bridge with a ‘this is what engineers do’ tag? You are not in Germany. You are in India. This is not what you do. You know very well what engineers do in India and what we have achieved till now. Not much, frankly. I’m not condemning having achieved next to nothing. Indian science lately hasn’t achieved much either. My point is, I don’t see ‘superior scientist’ labels slapped on half-baked nerd jokes and circulated on social networks. Why do you think is that?</p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/views-and-observations/'>Views and Observations</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/engineer-jokes-facebook-funny-science/'>engineer jokes facebook funny science</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/493/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/493/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/493/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=493&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2011/11/15/engineer-jokes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>

		<media:content url="http://1lifeisallwegot.files.wordpress.com/2011/11/engineers-clock_thumb.jpg" medium="image">
			<media:title type="html">engineers-clock</media:title>
		</media:content>
	</item>
		<item>
		<title>Simplest Javascript Fade Animation</title>
		<link>http://1lifeisallwegot.wordpress.com/2011/11/03/simplest-javascript-fade-animation/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2011/11/03/simplest-javascript-fade-animation/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 20:09:17 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[fade]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[setTimeout]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[simplest]]></category>

		<guid isPermaLink="false">http://1lifeisallwegot.wordpress.com/?p=454</guid>
		<description><![CDATA[[UPDATE: There's now a much better (shorter, cleaner, more modern) solution than using Javascript to fade elements in and out. &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2011/11/03/simplest-javascript-fade-animation/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=454&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>[<strong>UPDATE:</strong> There's now a much better (shorter, cleaner, more modern) solution than using Javascript to fade elements in and out. Add a CSS3 <em>transition</em> property (<a href="http://www.google.co.in/url?sa=t&amp;rct=j&amp;q=css3%20transition&amp;source=web&amp;cd=1&amp;ved=0CCkQFjAA&amp;url=http%3A%2F%2Fwww.w3schools.com%2Fcss3%2Fcss3_transitions.asp&amp;ei=LT_RTviVEMmrrAfoi_ncDA&amp;usg=AFQjCNE_VsKUo3SCv7Rvug4AQcDPMO9eEA&amp;sig2=Qg6hGb7jvz8TZOnqkAMVfA" target="_blank">tutorial here</a>) to the elements you want to fade, then use Javascript only to set the opacity to the changed value. The transition will happen by itself. Although yes, the CSS3 sets a single fixed transition duration. If you want the fade animation on the same element occurring for different durations at different times, this code is still the only way out.]</p>
<p>I needed a simple code for Javascript fade animation, i.e. fading in and out of HTML elements, but couldn&#8217;t find online exactly what I wanted. Borrowing on the fundamental animation mechanism from <a href="http://www.switchonthecode.com/tutorials/javascript-tutorial-simple-fade-animation" target="_blank">this page</a>, which is the closest I got, I wrote my own short code. It works in all major browsers (Chrome, Firefox, Opera, Safari, IE). The same code works for both fading in and out, from whatever initial opacity value to whatever final value, depending on the arguments of the function. In the code, the arguments you can specify are the following: <code>eid</code> is the id of the HTML element you wish to run the fade on. The fade goes from the initial CSS opacity value <code>initOp</code> to the final value <code>finalOp</code> in time <code>TimeToFade</code> measured in milliseconds. You don&#8217;t have to specify the last parameter, <code>time</code>, which you&#8217;ll see if you look at the HTML that I&#8217;ve shown afterwards.</p>
<p><strong>Javascript</strong><br />
<pre class="brush: jscript;">
function fade(eid, initOp, finalOp, TimeToFade, time)
{
	if (initOp==0)
	{
		document.getElementById(eid).style.visibility=&quot;visible&quot;;
	}
	var curTick = new Date().getTime();
	var elapsedTicks = curTick - time;
	var newOp = initOp+(finalOp-initOp)*elapsedTicks/TimeToFade;
	if (Math.abs(newOp-initOp)&amp;gt;Math.abs(finalOp-initOp))
	{
		document.getElementById(eid).style.opacity=finalOp;
		if (finalOp==0)
		{
			document.getElementById(eid).style.visibility=&quot;hidden&quot;
		}
		return;
	}
	document.getElementById(eid).style.opacity=newOp;
	setTimeout(&quot;fade( '&quot; + eid + &quot;',&quot; + initOp + &quot;,&quot; + finalOp + &quot;,&quot; + TimeToFade + &quot;,&quot; + time + &quot;)&quot;, TimeToFade/100);
}
</pre></p>
<p><strong>HTML</strong><br />
<pre class="brush: xml;">
&lt;div id=&quot;box&quot;&gt;;
&lt;input type=&quot;button&quot; onclick=&quot;fade('box', 1, 0.3, 5000, new Date().getTime())&quot; value=&quot;Fade&quot;/&gt;;
&lt;/div&gt;
</pre><br />
If you choose your element to be a div, all child elements in the div also fade. In the HTML, put the last argument of the function exactly as given. On clicking the button, this example fades out the <code>box</code> div from an opacity value of 1 to 0.3. If you fade it from 0.2 to 0.8, let&#8217;s say, it will fade in. Usually you would require to set <code>initOp</code> to whatever was the element&#8217;s opacity at the time you start the animation, but in general you could set it to something different, in which case the opacity of the element will sharply change to <code>initOp</code> the moment the animation function is called, then start its transition to <code>finalOp</code>.</p>
<p>I can&#8217;t include an example in this WordPress blog, but you can see this code in action in multiple fade animations at <a href="http://www.iiserk.net/~abhra" target="_blank">my homepage</a>. [<strong>EDIT:</strong> Now I don't use my code any more; I use the CSS3 transition like I mentioned.]</p>
<p>If you look at the Javascript again, you&#8217;ll see that the <code>fade()</code> function calls itself via the <code>setTimeout()</code> in the last line. The <code>setTimeout</code> delay has been chosen as 1/100th of the duration of your fade animation. You could also set this as a fixed number in milliseconds.  This delay does not determine the duration of the animation, only how many times <code>fade()</code> manages to run in that duration and the opacity value is updated. The shorter this delay, the smoother the fade animation; the longer, the choppier. It may however not always be a good idea to set it as something very small like 1 ms, say for long, slow fades, for which the fast, repeated computations for miniscule opacity changes are usually unnecessary.</p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/tech/'>Tech</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/animation/'>animation</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/browser/'>browser</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/css/'>CSS</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/fade/'>fade</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/html/'>html</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/javascript/'>javascript</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/opacity/'>opacity</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/settimeout/'>setTimeout</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/simple/'>simple</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/simplest/'>simplest</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/454/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=454&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2011/11/03/simplest-javascript-fade-animation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>
	</item>
		<item>
		<title>Har Pal Har Lamha</title>
		<link>http://1lifeisallwegot.wordpress.com/2011/10/11/har-pal-har-lamha/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2011/10/11/har-pal-har-lamha/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 17:24:49 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Me and My Life]]></category>
		<category><![CDATA[drums]]></category>
		<category><![CDATA[har pal har lamha]]></category>
		<category><![CDATA[iiser kolkata]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[teachers day]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://1lifeisallwegot.wordpress.com/?p=438</guid>
		<description><![CDATA[I played the drums at a Teachers&#8217; Day performance of an original composition by our group in IISER Kolkata. Filed &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2011/10/11/har-pal-har-lamha/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=438&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I played the drums at a Teachers&#8217; Day performance of an original composition by our group in IISER Kolkata.</p>
<span style="text-align:center; display: block;"><a href="http://1lifeisallwegot.wordpress.com/2011/10/11/har-pal-har-lamha/"><img src="http://img.youtube.com/vi/SuqdOPoYNw4/2.jpg" alt="" /></a></span>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/me-and-my-life/'>Me and My Life</a> Tagged: <a href='http://1lifeisallwegot.wordpress.com/tag/drums/'>drums</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/har-pal-har-lamha/'>har pal har lamha</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/iiser-kolkata/'>iiser kolkata</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/music/'>music</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/teachers-day/'>teachers day</a>, <a href='http://1lifeisallwegot.wordpress.com/tag/youtube/'>youtube</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/438/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=438&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2011/10/11/har-pal-har-lamha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.963842 88.524502</georss:point>
		<geo:lat>22.963842</geo:lat>
		<geo:long>88.524502</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>
	</item>
		<item>
		<title>The Spam Today</title>
		<link>http://1lifeisallwegot.wordpress.com/2011/09/08/the-spam-today/</link>
		<comments>http://1lifeisallwegot.wordpress.com/2011/09/08/the-spam-today/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 07:28:05 +0000</pubDate>
		<dc:creator>Abhra</dc:creator>
				<category><![CDATA[Odds and Ends]]></category>

		<guid isPermaLink="false">http://1lifeisallwegot.wordpress.com/?p=435</guid>
		<description><![CDATA[You get this sort of spam often. But this story was something special, so I decided to share it. From: &#8230;<p><a href="http://1lifeisallwegot.wordpress.com/2011/09/08/the-spam-today/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=435&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You get this sort of spam often. But this story was something special, so I decided to share it.</p>
<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>From:</td>
<td><strong>miss florence</strong> (florencdidian1@gmail.com) <a href="https://blu164.mail.live.com/mail/#"><img src="https://blu164.mail.live.com/mail/clear.gif" alt="" /></a></td>
</tr>
<tr>
<td>Sent:</td>
<td>07 September 2011 20:50PM</td>
</tr>
</tbody>
</table>
<p>Dearest one i trust,</p>
<p>Greetings my dearest one, my name is Miss Florence Diama i am 21 years old Girl from Southern Sudan. I want to have a common relationship with you, I need to tell you more things, but first I need your help to Stand for me as a trustee.</p>
<p>My father Dr. Diama yak Arop was the former Minister for SPLA Affairs and Special Adviser to President Salva Kiir of South Sudan for Decentralization. My father Dr. Diama Yak Arop, my mother including other top Military officers and top government officials where on board when the plane crashed on Friday May 02, 2008. You can read more about the crat through the below site:</p>
<p>http://news.bbc.co.uk/2/hi/africa/7380412.stm</p>
<p>Some months after the burial of my father, my uncle conspired with my step mother and sold my father&#8217;s properties to a Chinese Expatriate. On a faithful morning I opened my father&#8217;s briefcase and found out document which my beloved late father used and deposit money in a Bank in Burkina Faso , with my name as the next of kin.</p>
<p>I traveled to Burkina Faso to withdraw the money so that I can start a better life and take care of myself. The Branch manager of the Bank whom I met in person told me that my present status does not permit me by the local law to clear money or make a transfer of money into an account, he advice me to provide a trustee who will help me and invest the money or I should wait till when I will get married it demand by their Authority&#8230;&#8230;</p>
<p>I have chosen to contact you after my prayers and I believe that you will not betray my trust. But rather take me as your own blood sister and help me. Though you may wonder why I am so soon revealing myself to you without knowing you, well, I will say that my mind convinced me that you are the true person to help me. More so, I will like to disclose much to you if you can help me to relocate to your country because my uncle has threatened to assassinate me.</p>
<p>The amount is $5.6 Million and I have confirmed from the bank in Burkina Faso . You will also help me to place the money in a more profitable business venture in your Country.</p>
<p>However, you will help by recommending a nice University in your country so that I can complete my studies. It is my intention to compensate you with 40% of the total money for your services and the balance shall be my capital in your establishment.</p>
<p>As soon as I receive your interest in helping me, I will put things into action immediately. In the light of the above, I shall appreciate an urgent message indicating your ability and willingness to handle this transaction sincerely. Please do keep this only to your self. I beg you not to disclose it till i come over because I am afraid of my wicked uncle who has threatened to kill me.</p>
<p>Sincerely yours<br />
Miss Florence Diama.</p>
<br />Filed under: <a href='http://1lifeisallwegot.wordpress.com/category/odds-and-ends/'>Odds and Ends</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/1lifeisallwegot.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/1lifeisallwegot.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/1lifeisallwegot.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/1lifeisallwegot.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/1lifeisallwegot.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/1lifeisallwegot.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/1lifeisallwegot.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/1lifeisallwegot.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/1lifeisallwegot.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/1lifeisallwegot.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/1lifeisallwegot.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/1lifeisallwegot.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/1lifeisallwegot.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/1lifeisallwegot.wordpress.com/435/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=1lifeisallwegot.wordpress.com&amp;blog=16814081&amp;post=435&amp;subd=1lifeisallwegot&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://1lifeisallwegot.wordpress.com/2011/09/08/the-spam-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://0.gravatar.com/avatar/4d4e574c5ec35427f8343bf1b34b7921?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dvidby0</media:title>
		</media:content>

		<media:content url="https://blu164.mail.live.com/mail/clear.gif" medium="image" />
	</item>
	</channel>
</rss>
