<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3445887595963234351</id><updated>2011-10-22T22:25:03.238-04:00</updated><title type='text'>Don't even know myself.</title><subtitle type='html'>random riddles. maybe funny, may be not.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>48</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-7443829097421901506</id><published>2011-05-17T22:24:00.000-04:00</published><updated>2011-05-17T22:24:19.083-04:00</updated><title type='text'>i'm a creeper :D</title><content type='html'>so i was sitting under the table in a big dinning in the corner of a dinning full of tables that have a window next to it. as i was polishing the table legs, a kid was walking outside and looked in, at the same time, i was staring out to the windown, he freaked out cuz there's a weird kid out of no where sitting in a corner :D :D :D&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-7443829097421901506?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/7443829097421901506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/05/im-creeper-d.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7443829097421901506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7443829097421901506'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/05/im-creeper-d.html' title='i&apos;m a creeper :D'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-3103582093890027958</id><published>2011-05-17T22:22:00.000-04:00</published><updated>2011-05-17T22:22:15.121-04:00</updated><title type='text'>oh, it's blood</title><content type='html'>(work break time)&lt;br /&gt;Ly ( a woman at work) : what are you drinking?&lt;br /&gt;me: blood&lt;br /&gt;Ly: stop kidding around&lt;br /&gt;me: no i'm serious, (sprite and red berry crystal light powder mixed, look just like blood)&lt;br /&gt;(take finger and put some of the drink on)&lt;br /&gt;me: see? it's blood, (pretend lke squeezing out blood from fingers *note: it look exactly like blood)&lt;br /&gt;Ly: ....*surprised*&lt;br /&gt;me: oh i'm kidding :D&lt;br /&gt;Ly: -____-&lt;br /&gt;&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-3103582093890027958?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/3103582093890027958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/05/oh-its-blood.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3103582093890027958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3103582093890027958'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/05/oh-its-blood.html' title='oh, it&apos;s blood'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-7410702228481413055</id><published>2011-04-21T22:24:00.000-04:00</published><updated>2011-04-21T22:24:57.234-04:00</updated><title type='text'>money for the poor</title><content type='html'>(at a random point during dinner)&lt;br /&gt;sis: when you get a job, all the money go to mommy and sister right?&lt;br /&gt;me: I rather give it to the poor than to you&lt;br /&gt;dad: what do you mean by poor, what's ur definition of poor? real poor or those lazy drug addicts guys, (blah blah blah blah,... ect ect ect..) what's ur definition of poor?&lt;br /&gt;mom: those girls whom dance around the pole ?? they're so poor they don't have enough clothes to wear.&lt;br /&gt;( ect ect everyone jump in)&lt;br /&gt;&lt;br /&gt;me: ...........&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-7410702228481413055?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/7410702228481413055/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/04/money-for-poor.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7410702228481413055'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7410702228481413055'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/04/money-for-poor.html' title='money for the poor'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1426184963241255165</id><published>2011-04-11T09:37:00.000-04:00</published><updated>2011-04-11T09:37:11.296-04:00</updated><title type='text'>Yep</title><content type='html'>(a phone call)&lt;br /&gt;pana: Duy?&lt;br /&gt;me: yep&lt;br /&gt;pana: how's my friend doing, is she doing alright?&lt;br /&gt;me: yep&lt;br /&gt;pana: have she eat yet?&lt;br /&gt;me: yep&lt;br /&gt;pana: have you eat yet?&lt;br /&gt;me: yep&lt;br /&gt;pana: are you working tomorrow?&lt;br /&gt;me: yep&lt;br /&gt;pana: can you stop answering with yep?&lt;br /&gt;me: yep&lt;br /&gt;pana: dakljfaslfjkslksaldkjf bye&lt;br /&gt;me: yep&lt;br /&gt;(hung up)&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1426184963241255165?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1426184963241255165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/04/yep.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1426184963241255165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1426184963241255165'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/04/yep.html' title='Yep'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-2653226383416248527</id><published>2011-04-11T09:34:00.000-04:00</published><updated>2011-04-11T09:34:33.791-04:00</updated><title type='text'>oiii brother..</title><content type='html'>dieu: An, grab that rose bushes.&lt;br /&gt;lit bro: i'm not dumb...&lt;br /&gt;dieu: duy, grab it&lt;br /&gt;me: *grab* (laugh) ahahaha&lt;br /&gt;lit bro: he grabbed it!1&lt;br /&gt;dieu: yeah he's dumb.&lt;br /&gt;(10 secs later)&lt;br /&gt;lit bro: aaaaaaaaaaa it hurtsssssssssssssssssssss (he grabbed the rose bushes) &lt;br /&gt;me: ahahahahahahaha&lt;br /&gt;dieu: why did you grabbed it......&lt;br /&gt;lit bro: duy grabbed it, i&amp;nbsp; thought it didn't hurt :(:(:( (look like about to cry.)&lt;br /&gt;me: stupido, just because i laughed doesn't mean it's not hurt :D&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-2653226383416248527?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/2653226383416248527/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/04/oiii-brother.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2653226383416248527'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2653226383416248527'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/04/oiii-brother.html' title='oiii brother..'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-9162492491906282599</id><published>2011-04-06T20:39:00.000-04:00</published><updated>2011-04-06T20:39:12.854-04:00</updated><title type='text'>name...</title><content type='html'>me: Sorry, i dont remember stuff name well. I mean, i barely know that guy name&lt;br /&gt;cooley: it's ok, there's other thing in the trivia&lt;br /&gt;me: wait, I dont know that guy name. ahahaha&lt;br /&gt;cooley: hahahaha he's kind of important and you should know&lt;br /&gt;me: (whispered) what's his name?&lt;br /&gt;cooley: (____)&amp;nbsp; *note: i forgot again ahahahahaha&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-9162492491906282599?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/9162492491906282599/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/04/name.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9162492491906282599'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9162492491906282599'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/04/name.html' title='name...'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-4393752674687758875</id><published>2011-04-05T20:06:00.001-04:00</published><updated>2011-04-05T20:06:05.819-04:00</updated><title type='text'>an interesting text</title><content type='html'>"hi.. duy. see.. i did text to u.. lol. dont bug me.. im doin homework..hahaha"&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-4393752674687758875?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/4393752674687758875/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/04/interesting-text.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4393752674687758875'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4393752674687758875'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/04/interesting-text.html' title='an interesting text'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-8099028331405822596</id><published>2011-03-31T22:36:00.000-04:00</published><updated>2011-03-31T22:36:07.375-04:00</updated><title type='text'>scratch your ears</title><content type='html'>sis: I feel like there's a grain of rice in the back of my nose and my throat hurt&lt;br /&gt;me: oh, that's easy to get rid of. Just scratch behind your ears and suck it (breath in hard)&amp;nbsp;in with your nose. &lt;br /&gt;sis: *scratching behind her ears n sniffed* Like this?&lt;br /&gt;me: ahahahahaha&lt;br /&gt;sis: you bastard.....&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-8099028331405822596?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/8099028331405822596/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/scratch-your-ears.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8099028331405822596'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8099028331405822596'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/scratch-your-ears.html' title='scratch your ears'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-8654681460450196897</id><published>2011-03-31T22:34:00.000-04:00</published><updated>2011-03-31T22:34:07.514-04:00</updated><title type='text'>animie</title><content type='html'>viet: I was looking through&amp;nbsp;manga yesterday to find something new. I went into this manga and read a couple chapter. turned out, it was a gay manga and now girl dress up as boy... WTFFFFFFF&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-8654681460450196897?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/8654681460450196897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/animie.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8654681460450196897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8654681460450196897'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/animie.html' title='animie'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-7401489625577511550</id><published>2011-03-20T17:18:00.000-04:00</published><updated>2011-03-20T17:18:22.420-04:00</updated><title type='text'>don't drag me in it...</title><content type='html'>me, watching cartoon&lt;br /&gt;others, talking about fake marriage for citizenship&lt;br /&gt;(after a while)&lt;br /&gt;dad: take duy for example, he have nothing to lose, he can't be trick ,he's fit for these thing. i mean, if he get a divorce, all they can do is divide up a pistol.&lt;br /&gt;me: -____---- Oiiiii don't drag me into this convo......&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-7401489625577511550?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/7401489625577511550/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/dont-drag-me-in-it.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7401489625577511550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7401489625577511550'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/dont-drag-me-in-it.html' title='don&apos;t drag me in it...'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-3768216878026031411</id><published>2011-03-16T15:28:00.002-04:00</published><updated>2011-03-16T15:28:39.449-04:00</updated><title type='text'>my best day at work.</title><content type='html'>7 am, came in&lt;br /&gt;eat muffin and drink coffee to wake up till 8&lt;br /&gt;make table/chair shinny till 9:45&lt;br /&gt;break till 10:30&lt;br /&gt;back to clean chair till 11:45&lt;br /&gt;lunch till 1:15&lt;br /&gt;wipe dust till 2&lt;br /&gt;sleep on the couch till 3&lt;br /&gt;go home. get paid for 8 hours of work :D&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-3768216878026031411?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/3768216878026031411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/my-best-day-at-work.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3768216878026031411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3768216878026031411'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/my-best-day-at-work.html' title='my best day at work.'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-9115406221710166105</id><published>2011-03-10T22:24:00.000-05:00</published><updated>2011-03-10T22:24:13.991-05:00</updated><title type='text'>grandkids</title><content type='html'>dad: When you guys have kids, if you want me to babysit them, better teach them to be quiet. or else they will just sit in that corner the whole day.&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-9115406221710166105?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/9115406221710166105/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/grandkids.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9115406221710166105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9115406221710166105'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/grandkids.html' title='grandkids'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1799823048024054198</id><published>2011-03-10T22:22:00.000-05:00</published><updated>2011-03-10T22:22:15.157-05:00</updated><title type='text'>question 31</title><content type='html'>viet: man i'm so stupid, i left one question unanswered&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;&lt;div&gt;me: which one&lt;/div&gt;&lt;div&gt;viet: question 31, i checked the exam over n over but...(interrupted)&lt;/div&gt;&lt;div&gt;me: question 31!!?? what? there's question 31??? (look throw the exam), WTH it's a 30 question exam, why is there a question 31 on the back page??!!!!&lt;/div&gt;&lt;div&gt;viet: question 1 doesn't count&lt;/div&gt;&lt;div&gt;me: EHHHHHHH????????????&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1799823048024054198?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1799823048024054198/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/question-31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1799823048024054198'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1799823048024054198'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/question-31.html' title='question 31'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-2973822357726481553</id><published>2011-03-05T22:57:00.000-05:00</published><updated>2011-03-05T22:57:22.809-05:00</updated><title type='text'>Just like you</title><content type='html'>me: You know, I was talking to this girl yesterday, and she's just like you.&lt;br /&gt;Viet: what do you mean???&lt;br /&gt;me: well, i was talking to her, somehow we got on the manga topic, and she keep talking non stop. one after another, like you.&lt;br /&gt;viet: really? who? where????&lt;br /&gt;me: she work yesterday, in the desert. she work here every friday. &lt;br /&gt;viet: oh, what did she talk about?&lt;br /&gt;me: idk, i dont remember.... she keep jumping manga and anime and tell them like you.... i had to jump to this guy and ran away hahaha&lt;br /&gt;viet: oh, (then 5 minutes of bugging me to get which anime she was talking about, ofcourse, i have no idea, i dont remember...)&lt;br /&gt;(10 minutes later)&lt;br /&gt;viet: man, you make me curious now, i cant concentrate now......&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-2973822357726481553?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/2973822357726481553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/just-like-you.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2973822357726481553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2973822357726481553'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/just-like-you.html' title='Just like you'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-531088532620601339</id><published>2011-03-05T22:33:00.000-05:00</published><updated>2011-03-05T22:33:36.968-05:00</updated><title type='text'>ahh i see</title><content type='html'>(stopped at red light, cousin car on the side)&lt;br /&gt;viet: you know, this ass forgot to put his headlight on, so the woman behind run over and tell him to&lt;br /&gt;me: ohhhh the woman that came out and run to another car? i was complaining cuz she had the whole line of car wait&lt;br /&gt;me: sooo you was the reason you asshole! &lt;br /&gt;trung: Shut UP! :D hehe:D&amp;nbsp;&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-531088532620601339?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/531088532620601339/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/ahh-i-see.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/531088532620601339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/531088532620601339'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/ahh-i-see.html' title='ahh i see'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-3628529639093572087</id><published>2011-03-05T22:31:00.000-05:00</published><updated>2011-03-05T22:31:21.539-05:00</updated><title type='text'>:D</title><content type='html'>me: Where do you work tonight?&lt;br /&gt;qingyi: I don't know&lt;br /&gt;me: I think you're on the line tonight&lt;br /&gt;qingyi: maybe...&lt;br /&gt;me: not maybe you are on the line tonight. hmm wanna bet?&lt;br /&gt;qingyi: bet??&lt;br /&gt;me: yeah, if you lose, you will own me a favor, if i lose, i will own you a favor.&lt;br /&gt;qingyi: hmm ok sure, we'll bet&lt;br /&gt;"shoke hand"&lt;br /&gt;(she went ask the supervisor)&lt;br /&gt;(walk back)&lt;br /&gt;me: so where do you work tonight?&lt;br /&gt;qingyi: i work in here&lt;br /&gt;me: where?&lt;br /&gt;qingyi: at bershire, this place&lt;br /&gt;me: ... hahaha you lost :D&lt;br /&gt;qingyi: ok, i own you a favor, what do u want to do, movie?&lt;br /&gt;me: nahhh i haven't think of it yet, i ll get back on you some other time&lt;br /&gt;qingyi: you're evil.&lt;br /&gt;me: :D&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-3628529639093572087?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/3628529639093572087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/03/d.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3628529639093572087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3628529639093572087'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/03/d.html' title=':D'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1888217416645222038</id><published>2011-02-01T00:10:00.000-05:00</published><updated>2011-02-01T00:10:45.043-05:00</updated><title type='text'>see you next week :)))</title><content type='html'>about to be late. rushed to class. walked into the wrong room =__=&lt;div&gt;sat down in about 5ft away from the professor and&amp;nbsp;realized&amp;nbsp;it. then she started to talk n talk n talk which made me couldn't leave because i would feel guilty and rude......(sighs... need to work on this)&lt;/div&gt;&lt;div&gt;in the middle of the class, had to picked someone n pair up to debate. (apparently it's a debate class)&lt;/div&gt;&lt;div&gt;somehow i got crazy and actually participate in the class like it was mine.&amp;nbsp;&lt;/div&gt;&lt;div&gt;at the end of the class:&lt;/div&gt;&lt;div&gt;my partner: it was nice meeting you, i ll see you again next week ?&lt;/div&gt;&lt;div&gt;me: oh, i'm not in this class, i'm walked in the wrong room, mine's next door.&lt;/div&gt;&lt;div&gt;partner: ahahaha (rolling on the chair laughing)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;(the people behind her &amp;nbsp;looked at me weirdly like i did something weird to her -___-)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1888217416645222038?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1888217416645222038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/02/see-you-next-week.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1888217416645222038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1888217416645222038'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/02/see-you-next-week.html' title='see you next week :)))'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-9116117858779633283</id><published>2011-01-21T23:26:00.000-05:00</published><updated>2011-01-21T23:26:02.238-05:00</updated><title type='text'>HATE KARMA</title><content type='html'>start from the beginning. &lt;br /&gt;&lt;br /&gt;cal class. a guy walk in. wore short and t shirt. everyone looked&lt;br /&gt;me thinking: WTH IS WRONG WITH THIS GUY. WHAT IS HE THINKING.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9 hours late. going to pick mom up. she cook for umass dinning. i was an hour early (dad told me at 9:30) but it's at 10:30 -___-.&lt;br /&gt;waited. then came in&lt;br /&gt;everyone looked.&lt;br /&gt;here it go&lt;br /&gt;&lt;br /&gt;1: manager: it's summer huh??&lt;br /&gt;2: laty: nice and warm outside huh?&lt;br /&gt;3: depart: ohoo it's summer eh?&lt;br /&gt;4: rojenaa: warm and cozy?&lt;br /&gt;5: janitor: on vacation huh?&lt;br /&gt;6: smiley(dunno her real name): hey, long time no see. "look down". uhmm i dont wanna know&lt;br /&gt;7 &lt;br /&gt;8&lt;br /&gt;9&lt;br /&gt;10 ect ect ect probably 15&lt;br /&gt;&lt;br /&gt;note: i had sandle and short on -___-&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-9116117858779633283?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/9116117858779633283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/01/hate-karma.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9116117858779633283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9116117858779633283'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/01/hate-karma.html' title='HATE KARMA'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-6576740708146507797</id><published>2011-01-03T21:47:00.002-05:00</published><updated>2011-01-03T21:48:34.360-05:00</updated><title type='text'>RD #6</title><content type='html'>How do you put an Elephant into the fridge ?&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;Open it up and put it in.&lt;/span&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;How do you put a Giraffe into the fridge?&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;take the elephant out and put the Giraffe in.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;The Lion King summon all animals to a meeting. but one animal refuse to go, which one?&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;The Giraffe that got put into the fridge.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;One guy came to a river that's famous for it's crocodile. but he crossed it without getting killed. how?&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;The crocodile went to the meeting.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-6576740708146507797?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/6576740708146507797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-5_03.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/6576740708146507797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/6576740708146507797'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-5_03.html' title='RD #6'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-3048721178885000632</id><published>2011-01-03T21:32:00.002-05:00</published><updated>2011-01-03T21:48:56.368-05:00</updated><title type='text'>Rd #5</title><content type='html'>In the world. who can jump higher than the house???&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;Everyone. House can't jump.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-3048721178885000632?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/3048721178885000632/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-5.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3048721178885000632'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3048721178885000632'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-5.html' title='Rd #5'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1145830750481962434</id><published>2011-01-03T21:31:00.000-05:00</published><updated>2011-01-03T21:31:16.172-05:00</updated><title type='text'>RD #4</title><content type='html'>in 2 hours, two person dig a hole. how many hole is dig if one person dig it.&amp;nbsp;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;One. A hole is a hole&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1145830750481962434?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1145830750481962434/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-4.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1145830750481962434'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1145830750481962434'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-4.html' title='RD #4'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-4096947133164828048</id><published>2011-01-03T21:23:00.000-05:00</published><updated>2011-01-03T21:23:54.355-05:00</updated><title type='text'>RD #3</title><content type='html'>the Husband is black and the wife is White and they just had a baby. what color is the baby teeth???&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444;"&gt;&lt;span class="Apple-style-span" style="color: #444444;"&gt;no teeth. no idea :D&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-4096947133164828048?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/4096947133164828048/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4096947133164828048'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4096947133164828048'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-3.html' title='RD #3'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-4554907005680031915</id><published>2011-01-03T17:11:00.000-05:00</published><updated>2011-01-03T17:11:00.874-05:00</updated><title type='text'>RD #2</title><content type='html'>&lt;span class="Apple-style-span" style="background-color: #444444; color: white;"&gt;a guy got locked inside a room that's just made of walls. (all 4 wall, roof and bottom) there's nothing in a room but a mirror and a table. How does he get out????&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444; color: #444444;"&gt;he looked into the mirror. he see what he saw. he took the saw and saw the table in half. two half make a whole (hole). he crawl out of the hole.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-4554907005680031915?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/4554907005680031915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4554907005680031915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4554907005680031915'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/01/rd-2.html' title='RD #2'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-7776962114580904370</id><published>2011-01-03T01:04:00.000-05:00</published><updated>2011-01-03T01:04:05.368-05:00</updated><title type='text'>riddle number 1:</title><content type='html'>&lt;span class="Apple-style-span" style="background-color: #444444;"&gt;there's two clock. one run 5 minutes late and one is dead at 5 o'clock. which one is more useful? and why?&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: #444444;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: #444444;"&gt;&lt;span class="Apple-style-span" style="background-color: #444444;"&gt;the one that's head is more useful because &amp;nbsp;one is never on time but the one that's dead is on time&amp;nbsp;at least&amp;nbsp;twice a day.&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-7776962114580904370?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/7776962114580904370/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2011/01/riddle-number-1.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7776962114580904370'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7776962114580904370'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2011/01/riddle-number-1.html' title='riddle number 1:'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-2996525016724762558</id><published>2010-12-28T23:46:00.000-05:00</published><updated>2010-12-28T23:46:37.103-05:00</updated><title type='text'>Brother Finally gave someone SOMETHING</title><content type='html'>dad: Take your toy with you, no one gonna ask you for it&lt;br /&gt;little brother: why do i need to? it's mine&lt;br /&gt;sis: you know, he gave bom(her bf) his flash lazer light the other day&lt;br /&gt;mom: really???? that's something new&lt;br /&gt;little brother: yeah, i'm not selfish....&lt;br /&gt;me (over heard the convo): How dare you gave my stuff away!? &lt;br /&gt;.................................&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-2996525016724762558?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/2996525016724762558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/12/brother-finally-gave-someone-something.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2996525016724762558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2996525016724762558'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/12/brother-finally-gave-someone-something.html' title='Brother Finally gave someone SOMETHING'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1122933244102667445</id><published>2010-12-04T21:59:00.002-05:00</published><updated>2010-12-04T21:59:51.867-05:00</updated><title type='text'>red line?</title><content type='html'>Jordan: hey, do i have a line on my forehead ? (line from the hat)&lt;span&gt;&lt;/span&gt;&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;&lt;div&gt;me: dude..... you are Pink, you can't see red line..&lt;/div&gt;&lt;div&gt;Jordan: omg you are so mean.....&lt;/div&gt;&lt;div&gt;van:(interrupted) &amp;nbsp;you're not pink, you're Red.&lt;/div&gt;&lt;div&gt;Jordan: what...&lt;/div&gt;&lt;div&gt;trung: (interrupted) no you are not .....&lt;/div&gt;&lt;div&gt;Jordan (interrupted) SHUT UP, u guys are so mean.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1122933244102667445?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1122933244102667445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/12/red-line.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1122933244102667445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1122933244102667445'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/12/red-line.html' title='red line?'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-3572522411258399121</id><published>2010-12-03T21:29:00.002-05:00</published><updated>2010-12-03T21:30:23.007-05:00</updated><title type='text'>how?</title><content type='html'>&lt;span class="Apple-style-span" style="background-color: black;"&gt;Viet: a man is locked inside a room with no way out. inside a room there's &lt;span class="Apple-style-span"&gt;a mirror and a table. h&lt;/span&gt;ow does he get out?&amp;nbsp;&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;me: stand on the table, jump into the mirror&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;viet: u ok?&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;me: how?&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;viet: well, he look into the mirror, he see what he saw. he take the saw and saw the table in half. two have make a whole (hole) he go out from the hole&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;me: =_===== asshole&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;viet: wat?&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="background-color: black;"&gt;me: wat? no nothing. :D&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-3572522411258399121?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/3572522411258399121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/12/how.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3572522411258399121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/3572522411258399121'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/12/how.html' title='how?'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-5335282349052708663</id><published>2010-11-30T00:24:00.000-05:00</published><updated>2010-11-30T00:24:53.823-05:00</updated><title type='text'>wtf?</title><content type='html'>&lt;div&gt;(English&amp;nbsp;class)&lt;/div&gt;sally: hey, what's mean to for it to say closed and wait list?&amp;nbsp;&lt;div&gt;Ifu: well, closed mean it's closed and wait list is to wait.&amp;nbsp;&lt;/div&gt;&lt;div&gt;(talking about register for class)&lt;/div&gt;&lt;div&gt;sally: omg i know that!! i need aaaa what the hell? (tried to hit ifu as he try push his hair back)&lt;/div&gt;&lt;div&gt;english teacher : &amp;nbsp;What are you THREE doing? no fighting in class......&lt;/div&gt;&lt;div&gt;me: How the heck did i got involved in this?&lt;/div&gt;&lt;div&gt;english teacher: (laughing) i know u are involved in this.&lt;/div&gt;&lt;div&gt;me: no.... no i am not =.===&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-5335282349052708663?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/5335282349052708663/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/wtf.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/5335282349052708663'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/5335282349052708663'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/wtf.html' title='wtf?'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-716930313612554712</id><published>2010-11-20T23:37:00.000-05:00</published><updated>2010-11-20T23:37:38.374-05:00</updated><title type='text'>all prepared except....</title><content type='html'>&lt;div&gt;uyen: OMG i forgot to brush my teeth&lt;/div&gt;&lt;div&gt;phuoc: seriously? u spend an hour in the bathroom....&lt;/div&gt;&lt;div&gt;me: hahahahahahahahaha&amp;nbsp;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-716930313612554712?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/716930313612554712/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/all-prepared-except.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/716930313612554712'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/716930313612554712'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/all-prepared-except.html' title='all prepared except....'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1436899957020664896</id><published>2010-11-18T22:38:00.002-05:00</published><updated>2010-11-18T22:38:55.365-05:00</updated><title type='text'>run!!</title><content type='html'>(walking up stair skipping steps, look back at linda)&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;&lt;div&gt;me: RUN LINDA RUN ( lagging behind cuz she have to take step by step)&lt;/div&gt;&lt;div&gt;linda: F U, THIS IS NOT FUNNY!!!!!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1436899957020664896?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1436899957020664896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/run.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1436899957020664896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1436899957020664896'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/run.html' title='run!!'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-8271344114880684456</id><published>2010-11-17T15:23:00.000-05:00</published><updated>2010-11-17T15:23:36.493-05:00</updated><title type='text'>pointless argument</title><content type='html'>(after 10 minutes of arguing on a pointless topic)&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;/div&gt;&lt;div&gt;Amber: wow you are quite arguitive today Duy, Are you angry????????&lt;/div&gt;&lt;div&gt;me: ehh?????&lt;/div&gt;&lt;div&gt;A: hahahaha (walk away)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-8271344114880684456?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/8271344114880684456/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/pointless-argument.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8271344114880684456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8271344114880684456'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/pointless-argument.html' title='pointless argument'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-9153339859632480022</id><published>2010-11-14T22:51:00.000-05:00</published><updated>2010-11-14T22:51:04.234-05:00</updated><title type='text'>teamwork</title><content type='html'>me: you're the 3rd person who clean this table (note: the table have nothing on and completely polished)&amp;nbsp;&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;&lt;div&gt;trung: yeah man!! that's what we call. TEAMWORK!!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-9153339859632480022?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/9153339859632480022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/teamwork.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9153339859632480022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/9153339859632480022'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/teamwork.html' title='teamwork'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-5431613355619077888</id><published>2010-11-14T09:51:00.000-05:00</published><updated>2010-11-14T09:51:23.415-05:00</updated><title type='text'>pevt?</title><content type='html'>(at work)&lt;div&gt;(random girl came to the drink station where i work and asked where's the juice)&lt;/div&gt;&lt;div&gt;me: it's over there&lt;/div&gt;&lt;div&gt;random girl: thanks&lt;/div&gt;&lt;div&gt;(just doing my stuff "away from that girl" but still, only me and her was there until her friend sneaky running up and slap her butt and ran away quietly to the other side)&lt;/div&gt;&lt;div&gt;random girl: aaa (freaked out, looked back, (of course, only me standing behind her). about to scream until she heard her friend laughing really hard on the other side)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;note: if i was about 4ft close and not 10ft away, i probably get slap cuz the girl looked pissed lololol.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-5431613355619077888?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/5431613355619077888/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/pevt.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/5431613355619077888'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/5431613355619077888'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/pevt.html' title='pevt?'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-7095258200299341949</id><published>2010-11-12T23:02:00.002-05:00</published><updated>2010-11-12T23:02:47.413-05:00</updated><title type='text'>jerk...</title><content type='html'>sis bf : "you still want to join the military even though u r afraid of height and u drown everytime you are in the water, even in class???"&amp;nbsp;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-7095258200299341949?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/7095258200299341949/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/jerk.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7095258200299341949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7095258200299341949'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/jerk.html' title='jerk...'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-271207495259675092</id><published>2010-11-12T14:57:00.002-05:00</published><updated>2010-11-12T14:57:46.338-05:00</updated><title type='text'>:D</title><content type='html'>I speak no well and spell no good :D lol&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-271207495259675092?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/271207495259675092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/d.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/271207495259675092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/271207495259675092'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/d.html' title=':D'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-8929717391416400762</id><published>2010-11-11T22:23:00.001-05:00</published><updated>2010-11-11T22:23:46.631-05:00</updated><title type='text'>dont look</title><content type='html'>Note: please don't look at people when they eat or w/e, it is very awkward. that's all.&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-8929717391416400762?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/8929717391416400762/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/dont-look.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8929717391416400762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8929717391416400762'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/dont-look.html' title='dont look'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-6871238763281579830</id><published>2010-11-10T13:32:00.000-05:00</published><updated>2010-11-10T13:32:36.396-05:00</updated><title type='text'>aye</title><content type='html'>dental office: "this is the dental office, could you hold please"&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;&lt;div&gt;me: aye&lt;/div&gt;&lt;div&gt;dental office: could u hold please!??&lt;/div&gt;&lt;div&gt;me: aye&lt;/div&gt;&lt;div&gt;dental office: "sir! can you hold?"&lt;/div&gt;&lt;div&gt;me: yes......&lt;/div&gt;&lt;div&gt;dental office: thank you.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-6871238763281579830?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/6871238763281579830/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/aye.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/6871238763281579830'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/6871238763281579830'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/aye.html' title='aye'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-2053749317687940818</id><published>2010-11-08T15:25:00.000-05:00</published><updated>2010-11-08T15:25:11.985-05:00</updated><title type='text'>no wei</title><content type='html'>english teacher: "there's only 8 people who come today, no wei" "ahahaha i crack myself up."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-2053749317687940818?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/2053749317687940818/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/no-wei.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2053749317687940818'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2053749317687940818'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/no-wei.html' title='no wei'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-560317176192639141</id><published>2010-11-06T00:19:00.001-04:00</published><updated>2010-11-06T00:19:47.423-04:00</updated><title type='text'>deaf..</title><content type='html'>Uyen: what color is that car? yellow or white?&lt;div&gt;phuoc: are you colorblind? it's obviously yellow.&lt;/div&gt;&lt;div&gt;Uyen: color fly? where? what? i don't see any color flying&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-560317176192639141?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/560317176192639141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/deaf.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/560317176192639141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/560317176192639141'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/deaf.html' title='deaf..'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-7396556737251587032</id><published>2010-11-04T22:20:00.002-04:00</published><updated>2010-11-05T01:34:53.634-04:00</updated><title type='text'>omegle vid chat</title><content type='html'>(female) stranger: wanna see me dance? ( n started to dance)&lt;script&gt; // CREDITS: // Snowmaker Copyright (c) 2003 Peter Gehrig. All rights reserved. // Distributed by http://www.hypergurl.com // Permission given to use the script on webpages provided that this notice remains as is. // Set the number of snowflakes (more than 30 - 40 not recommended) var snowmax=35 // Set the colors for the snow. Add as many colors as you like var snowcolor=new Array("#aaaacc","#ddddFF","#ccccDD") // Set the fonts, that create the snowflakes. Add as many fonts as you like var snowtype=new Array("Arial Black","Arial Narrow","Times","Comic Sans MS") // Set the letter that creates your snowflake (recommended:*) var snowletter="*" // Set the speed of sinking (recommended values range from 0.3 to 2) var sinkspeed=0.6 // Set the maximal-size of your snowflaxes var snowmaxsize=22 // Set the minimal-size of your snowflaxes var snowminsize=8 // Set the snowing-zone // Set 1 for all-over-snowing, set 2 for left-side-snowing // Set 3 for center-snowing, set 4 for right-side-snowing var snowingzone=3 /////////////////////////////////////////////////////////////////////////// // CONFIGURATION ENDS HERE /////////////////////////////////////////////////////////////////////////// // Do not edit below this line var snow=new Array() var marginbottom var marginright var timer var i_snow=0 var x_mv=new Array(); var crds=new Array(); var lftrght=new Array(); var browserinfos=navigator.userAgent var ie5=document.all&amp;&amp;document.getElementById&amp;&amp;!browserinfos.match(/Opera/) var ns6=document.getElementById&amp;&amp;!document.all var opera=browserinfos.match(/Opera/) var browserok=ie5||ns6||opera function randommaker(range) { rand=Math.floor(range*Math.random()) return rand } function initsnow() { if (ie5 || opera) { marginbottom = document.body.clientHeight marginright = document.body.clientWidth } else if (ns6) { marginbottom = window.innerHeight marginright = window.innerWidth } var snowsizerange=snowmaxsize-snowminsize for (i=0;i&lt;=snowmax;i++) { crds[i] = 0; lftrght[i] = Math.random()*15; x_mv[i] = 0.03 + Math.random()/10; snow[i]=document.getElementById("s"+i) snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)] snow[i].size=randommaker(snowsizerange)+snowminsize snow[i].style.fontSize=snow[i].size snow[i].style.color=snowcolor[randommaker(snowcolor.length)] snow[i].sink=sinkspeed*snow[i].size/5 if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size) snow[i].style.left=snow[i].posx snow[i].style.top=snow[i].posy } movesnow() } function movesnow() { for (i=0;i&lt;=snowmax;i++) { crds[i] += x_mv[i]; snow[i].posy+=snow[i].sink snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i]); snow[i].style.top=snow[i].posy if (snow[i].posy&gt;=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)&gt;(marginright-3*lftrght[i])){ if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)} if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)} if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4} if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2} snow[i].posy=0 } } var timer=setTimeout("movesnow()",50) } for (i=0;i&lt;=snowmax;i++) { document.write("&lt;span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'&gt;"+snowletter+"&lt;/span&gt;") } if (browserok) { window.onload=initsnow } &lt;/script&gt;&lt;br /&gt;me: nope, not at all&lt;br /&gt;stranger: oh look, i'm dancing with middle fingers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-7396556737251587032?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/7396556737251587032/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/testing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7396556737251587032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/7396556737251587032'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/testing.html' title='omegle vid chat'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-4999569108144797788</id><published>2010-11-03T22:38:00.000-04:00</published><updated>2010-11-03T22:38:29.623-04:00</updated><title type='text'>Monster alert</title><content type='html'>Announcement: &amp;nbsp;Please DO not. I repeat. DO NOT go to the planet fitness on Monday, Wednesday, and Friday from 7-9 PM. that's all.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-4999569108144797788?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/4999569108144797788/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/monster-alert.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4999569108144797788'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/4999569108144797788'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/monster-alert.html' title='Monster alert'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-6004999542762727879</id><published>2010-11-03T15:47:00.002-04:00</published><updated>2010-11-03T15:47:43.234-04:00</updated><title type='text'>ow</title><content type='html'>Note: don't say mean things or else you will get hit.....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-6004999542762727879?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/6004999542762727879/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/ow.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/6004999542762727879'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/6004999542762727879'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/ow.html' title='ow'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-2460740144332647921</id><published>2010-11-02T13:20:00.001-04:00</published><updated>2010-11-02T22:15:03.117-04:00</updated><title type='text'>haha?</title><content type='html'>&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;me: have u finished the hw? (to a random guy that sit in the room, i thought he was one of my classmate)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;random dude: yeah i did&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;(3 minutes later) : WTH? what homework?&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;me: the one that due in an hour.. i didn't finish it.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;random dude: we have homework???&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;me: yep.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;random dude: m i in the wrong room??&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;me: are u in my class?&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Arial; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;random dude: omg i'm in the wrong room, no wonder no one is here.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-2460740144332647921?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/2460740144332647921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/haha.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2460740144332647921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2460740144332647921'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/haha.html' title='haha?'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1496365959889074559</id><published>2010-11-01T10:33:00.002-04:00</published><updated>2010-11-01T10:33:56.125-04:00</updated><title type='text'>cooky</title><content type='html'>note: people get very crazy and weird at night, so better watch out. (side note: most of them are crazy all day long.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1496365959889074559?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1496365959889074559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/11/cooky.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1496365959889074559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1496365959889074559'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/11/cooky.html' title='cooky'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-2550840278588912096</id><published>2010-10-31T22:56:00.000-04:00</published><updated>2010-10-31T22:56:22.385-04:00</updated><title type='text'>idiot!</title><content type='html'>student: "excuse me, can you tell me where the mug is?"&lt;div&gt;me : "mug? eh?"&lt;/div&gt;&lt;div&gt;student : "you know, the coffee mug...."&lt;/div&gt;&lt;div&gt;(note: i'm standing right next to the mug and the cups)&lt;/div&gt;&lt;div&gt;me: (picking up a mug that's in FRONT of his face. "you mean this???"&lt;/div&gt;&lt;div&gt;student: "yeah, where can i get it"?&amp;nbsp;&lt;/div&gt;&lt;div&gt;me: ( looking/staring at him like he's the most stupidest person in the world)&lt;/div&gt;&lt;div&gt;student: "oh..." (after 2 second) "what about the cups" ?&lt;/div&gt;&lt;div&gt;me : ....... (pointing at the cups that's 2 inches away....)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;(note: some people is just completely student or blind. most likely both.)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-2550840278588912096?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/2550840278588912096/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/10/idiot.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2550840278588912096'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2550840278588912096'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/10/idiot.html' title='idiot!'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-1323767687495868350</id><published>2010-10-31T20:09:00.003-04:00</published><updated>2010-10-31T20:09:38.268-04:00</updated><title type='text'>smoke</title><content type='html'>note: &amp;nbsp;it's fun to turn on the smoke machine behind people back so they freak out and scream.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-1323767687495868350?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/1323767687495868350/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/10/smoke.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1323767687495868350'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/1323767687495868350'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/10/smoke.html' title='smoke'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-8141588789638960043</id><published>2010-10-30T21:59:00.000-04:00</published><updated>2010-10-30T21:59:43.751-04:00</updated><title type='text'>still don't know the name</title><content type='html'>(a girl at work that usually work with came n asked)&lt;br /&gt;"where have u been"?&lt;br /&gt;(i said)&lt;br /&gt;"i had to fold laundry down stair because the new manager said it's too """"unprofessional"""" doing it upstair..'"&lt;br /&gt;(she said)&lt;br /&gt;"which one??"&lt;br /&gt;(me)&lt;br /&gt;"the annoying one with glasses, sorry, i'm really bad with name, &amp;nbsp;(then point at the manager)... righttt there."&lt;br /&gt;(she said)&lt;br /&gt;"yeah i hate that guy too, and i'm really bad with name too, i forgot your name"&lt;br /&gt;(i said)&lt;br /&gt;"uhmm i dont think i ever told u my name or u ever told me yours"&lt;br /&gt;(she said)&lt;br /&gt;"oh, oh...."&lt;br /&gt;(then both walked away and still don't know each others name)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-8141588789638960043?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/8141588789638960043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/10/still-dont-know-name.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8141588789638960043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/8141588789638960043'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/10/still-dont-know-name.html' title='still don&apos;t know the name'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3445887595963234351.post-2123590377755302059</id><published>2010-10-29T14:42:00.000-04:00</published><updated>2010-10-29T14:42:08.143-04:00</updated><title type='text'>bus accident</title><content type='html'>after the bus accidentally hit the car bumper, the driver said,&lt;br /&gt;&amp;nbsp;"please remain calm, that would help me out a lot"&lt;br /&gt;a random girl from the back push everyone aside and asked the driver&lt;br /&gt;"do you want me to conduct an&amp;nbsp;emergency procedure?" (loudly)&lt;br /&gt;the driver looked confused and everyone on the bus started to laughed loudly, the girl started,&lt;br /&gt;"please follow the emergency procedure for court trial, if you see or heard anything, please fill in the paper and hand it to me or the police officer that will come in a bit, oh, you need to get our ur own paper and pen because i don't have any right now"&lt;br /&gt;(then everyone left the bus laughing n wrote nothing)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3445887595963234351-2123590377755302059?l=innersin.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://innersin.blogspot.com/feeds/2123590377755302059/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://innersin.blogspot.com/2010/10/bus-accident.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2123590377755302059'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3445887595963234351/posts/default/2123590377755302059'/><link rel='alternate' type='text/html' href='http://innersin.blogspot.com/2010/10/bus-accident.html' title='bus accident'/><author><name>innersin</name><uri>http://www.blogger.com/profile/08505256860265534965</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://1.bp.blogspot.com/_bt4mNUI5VH8/TM-OjUIu_0I/AAAAAAAAABs/rY7qMBdTC8Y/S220/Snapshot+of+me+4.png'/></author><thr:total>0</thr:total></entry></feed>
