<?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-5092296896310373218</id><updated>2011-04-21T15:54:31.776-07:00</updated><title type='text'>WebDev</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://vuthysan.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://vuthysan.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Vuthy</name><uri>http://www.blogger.com/profile/01177333567806895666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5092296896310373218.post-1165836996647974201</id><published>2009-02-11T23:27:00.000-08:00</published><updated>2009-02-12T00:14:14.783-08:00</updated><title type='text'>Transparency PNG file in IE</title><content type='html'>The ability of this script is help you to show PNP files transparency in IE.It's will effect all ur &amp;lt;img class="whatever"&amp;gt; tag in the page that u added this script.But to make sure that img u have to create class whatever it's name.&lt;br /&gt;&lt;br /&gt;// CONFIGURATION&lt;br /&gt;// png_overlay is the png 'frame' that will be loaded over the images with a class      name of "frame"&lt;br /&gt;// suffix is the identifier for the rollover image; image.jpg -&gt; image_suffix.jpg&lt;br /&gt;//&lt;br /&gt;//	var png_overlay = 'rounded_frame.png';&lt;br /&gt;//	var suffix = '_over';&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;//	addEvent()&lt;br /&gt;//	Allows attachment of events to elements&lt;br /&gt;//&lt;br /&gt;function addEvent( obj, type, fn ) {&lt;br /&gt;   if (obj.addEventListener) {&lt;br /&gt;      obj.addEventListener( type, fn, false );&lt;br /&gt;      EventCache.add(obj, type, fn);&lt;br /&gt;   }&lt;br /&gt;   else if (obj.attachEvent) {&lt;br /&gt;      obj["e"+type+fn] = fn;&lt;br /&gt;      obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }&lt;br /&gt;      obj.attachEvent( "on"+type, obj[type+fn] );&lt;br /&gt;      EventCache.add(obj, type, fn);&lt;br /&gt;   }&lt;br /&gt;   else {&lt;br /&gt;      obj["on"+type] = obj["e"+type+fn];&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;var EventCache = function() {&lt;br /&gt;    var listEvents = [];&lt;br /&gt;    return {&lt;br /&gt;	   listEvents : listEvents,&lt;br /&gt;	   add : function(node, sEventName, fHandler) {&lt;br /&gt;	         listEvents.push(arguments);&lt;br /&gt;	   },&lt;br /&gt;	   flush : function() {&lt;br /&gt;   		 var i, item;&lt;br /&gt;		 for(i = listEvents.length - 1; i &gt;= 0; i = i - 1) {&lt;br /&gt;  		     item = listEvents[i];&lt;br /&gt;		     if(item[0].removeEventListener) {&lt;br /&gt;			item[0].removeEventListener(item[1], item[2], item[3]);&lt;br /&gt;    		     };&lt;br /&gt;		     if(item[1].substring(0, 2) != "on") {&lt;br /&gt;			item[1] = "on" + item[1];&lt;br /&gt;		     };&lt;br /&gt;		     if(item[0].detachEvent) {&lt;br /&gt;			item[0].detachEvent(item[1], item[2]);&lt;br /&gt;         	     };&lt;br /&gt;		     item[0][item[1]] = null;&lt;br /&gt;		 };&lt;br /&gt;	   }&lt;br /&gt;	};&lt;br /&gt;}();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;addEvent(window,'unload',EventCache.flush);&lt;br /&gt;//&lt;br /&gt;//	correctPNG()&lt;br /&gt;//	Allows transparent PNG images to be display correctly in IE&lt;br /&gt;//	Not sure who wrote it, but thanks&lt;br /&gt;//&lt;br /&gt;function correctPNG() {&lt;br /&gt;      for(var i=0; i&lt;document.images.length; i++) {&lt;br /&gt;	  var img = document.images[i]&lt;br /&gt;	  var imgName = img.src.toUpperCase()&lt;br /&gt;	  if (imgName.substring(imgName.length-3, imgName.length) == "PNG") {&lt;br /&gt;	      var imgID = (img.id) ? "id='" + img.id + "' " : ""&lt;br /&gt;	      var imgClass = (img.className) ? "class='" + img.className + "' " : ""&lt;br /&gt;	      var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" +              img.alt + "' "&lt;br /&gt;	      var imgStyle = "display:inline-block;" + img.style.cssText &lt;br /&gt;	      if (img.align == "left") imgStyle = "float:left;" + imgStyle&lt;br /&gt;	      if (img.align == "right") imgStyle = "float:right;" + imgStyle&lt;br /&gt;	      if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle		&lt;br /&gt;	      var strNewHTML = "&lt;span " + imgID + imgClass + imgTitle&lt;br /&gt;	          + " style=\"" + "width:" + img.width + "px; height:" + img.height +         "px;" + imgStyle + ";"&lt;br /&gt;         	  + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"&lt;br /&gt;		  + "(src=\'" + img.src + "\', sizingMethod='image');\"&gt;&lt;/span&gt;" &lt;br /&gt;		  img.outerHTML = strNewHTML&lt;br /&gt;		  i = i-1&lt;br /&gt;	     }&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;//	rollovers()&lt;br /&gt;//	Displays a rollover for any image with a class name of "rollover". Includes IE friendly function for transparent PNG fix.&lt;br /&gt;//&lt;br /&gt;var rollovers = {&lt;br /&gt;    obj : Object,&lt;br /&gt;    init : function() {&lt;br /&gt;	for( var i = 0, over; over = document.getElementsByTagName('img')[i]; i++ ){&lt;br /&gt;	     if( over.className.indexOf('rollover') &gt;= 0 ) {&lt;br /&gt;		 rollovers.preload(over);&lt;br /&gt;		 addEvent(over,'mouseover',rollovers.show);&lt;br /&gt;		 addEvent(over,'mouseout',rollovers.hide);&lt;br /&gt;	     }&lt;br /&gt;	}&lt;br /&gt;    },&lt;br /&gt;    preload : function(e) {&lt;br /&gt;	var img = new Image;&lt;br /&gt;	var ext = e.src.substring(e.src.length - 4, e.src.length);&lt;br /&gt;	var name = e.src.substring(0, e.src.length - 4);&lt;br /&gt;	img.src = name + suffix + ext;&lt;br /&gt;    },&lt;br /&gt;    show : function(e) {&lt;br /&gt;	var ext = this.src.substring(this.src.length - 4, this.src.length);&lt;br /&gt;	var name = this.src.substring(0, this.src.length - 4);&lt;br /&gt;	this.src = name + suffix + ext;&lt;br /&gt;    },&lt;br /&gt;    hide : function(e) {&lt;br /&gt;	this.src = this.src.replace(suffix,'');&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;var rollovers_ie = {&lt;br /&gt;	obj : Object,&lt;br /&gt;	init : function() {&lt;br /&gt;	     if( document.getElementsByTagName('span').length &lt; 1 )&lt;br /&gt;		 setTimeout('rollovers_ie.init()',500);&lt;br /&gt;		 for( var i = 0, span; span =     document.getElementsByTagName('span')[i]; i++ ){&lt;br /&gt;         	    if( span.className.indexOf('rollover') &gt;= 0 ) {&lt;br /&gt;			rollovers_ie.preload(span);&lt;br /&gt;			addEvent(span,'mouseover',rollovers_ie.show);&lt;br /&gt;			addEvent(span,'mouseout',rollovers_ie.hide);&lt;br /&gt;		    }&lt;br /&gt;		}&lt;br /&gt;	},&lt;br /&gt;	preload : function(e) {&lt;br /&gt;	        var img = new Image;&lt;br /&gt;		var filter = e.style.filter;&lt;br /&gt;		var src = filter.substring( filter.indexOf("src='") + 5,  filter.indexOf("',"));&lt;br /&gt;		var ext = src.substring(src.length - 4, src.length);&lt;br /&gt;		var name = src.substring(0, src.length - 4);&lt;br /&gt;		img.src = name + suffix + ext;&lt;br /&gt;	},&lt;br /&gt;	show : function(e) {&lt;br /&gt;		var filter = this.style.filter;&lt;br /&gt;		var src = filter.substring( filter.indexOf("src='") + 5, filter.indexOf("',"));&lt;br /&gt;		var ext = src.substring(src.length - 4, src.length);&lt;br /&gt;		var name = src.substring(0, src.length - 4);&lt;br /&gt;		this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader" + "(src=\'" + name + suffix + ext + "\', sizingMethod='image')";&lt;br /&gt;	},&lt;br /&gt;	hide : function(e) {&lt;br /&gt;		var filter = this.style.filter;&lt;br /&gt;		var src = filter.substring( filter.indexOf("src='") + 5, filter.indexOf("',"));&lt;br /&gt;		this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader" + "(src=\'" + src.replace(suffix,'') + "\', sizingMethod='image')";&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;//	pngFrame()&lt;br /&gt;//	Replaces images with class name of "frame" with png_overlay file.&lt;br /&gt;//&lt;br /&gt;function pngFrame() {&lt;br /&gt;	var imgs = document.images;&lt;br /&gt;	for( var i = 0, img; img = imgs[i]; i++ ) {&lt;br /&gt;		if( img.className.indexOf('frame') &gt;= 0 ) {&lt;br /&gt;			var bgSrc = img.src;&lt;br /&gt;			img.style.background = "url(" + bgSrc + ")";&lt;br /&gt;			img.src = png_overlay;&lt;br /&gt;		}&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;// Load the Functions&lt;br /&gt;//&lt;br /&gt;if( navigator.userAgent.indexOf('MSIE') &gt;= 0 )&lt;br /&gt;	addEvent(window,'load',correctPNG);&lt;br /&gt;addEvent(window,'load',pngFrame);&lt;br /&gt;if( navigator.userAgent.indexOf('MSIE') &gt;= 0 )&lt;br /&gt;	addEvent(window,'load',rollovers_ie.init);&lt;br /&gt;addEvent(window,'load',rollovers.init);&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5092296896310373218-1165836996647974201?l=vuthysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vuthysan.blogspot.com/feeds/1165836996647974201/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5092296896310373218&amp;postID=1165836996647974201' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/1165836996647974201'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/1165836996647974201'/><link rel='alternate' type='text/html' href='http://vuthysan.blogspot.com/2009/02/transparency-png-file-in-ie.html' title='Transparency PNG file in IE'/><author><name>Vuthy</name><uri>http://www.blogger.com/profile/01177333567806895666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5092296896310373218.post-2987372434541284658</id><published>2008-10-08T20:46:00.000-07:00</published><updated>2008-10-08T20:52:43.245-07:00</updated><title type='text'>Get width of text in px</title><content type='html'>Create a DIV styled with the following styles. In your JavaScript, set the font size and attributes that you are trying to measure, put your string in the DIV, then read the current width and height of the DIV. It will stretch to fit the contents and the size will be within a few pixels of the string rendered size.&lt;br /&gt;&lt;br /&gt;&amp;lt;div id="introtext" class="txt_select"&amp;gt;This is some introductory text&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;style&amp;gt;&lt;br /&gt;    &amp;nbsp;.txt_select{&lt;br /&gt;        position: absolute;&lt;br /&gt;        background-color:#000099;&lt;br /&gt;        font-size:12px;&lt;br /&gt;    }&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;script language="javascript" type="text/javascript"&amp;gt;&lt;br /&gt;    var test = document.getElementById("introtext");&lt;br /&gt;    var height = (test.clientHeight + 1) + "px";&lt;br /&gt;    var width = (test.clientWidth + 1) + "px";&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5092296896310373218-2987372434541284658?l=vuthysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vuthysan.blogspot.com/feeds/2987372434541284658/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5092296896310373218&amp;postID=2987372434541284658' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/2987372434541284658'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/2987372434541284658'/><link rel='alternate' type='text/html' href='http://vuthysan.blogspot.com/2008/10/get-width-of-text-in-px.html' title='Get width of text in px'/><author><name>Vuthy</name><uri>http://www.blogger.com/profile/01177333567806895666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5092296896310373218.post-4217937691894572827</id><published>2008-09-21T20:25:00.000-07:00</published><updated>2008-09-21T20:32:17.393-07:00</updated><title type='text'>Callback Functions</title><content type='html'>When you pass a function A to another function B and B executes A, it's often said that A is a callback function. If A doesn't have a name, then you can say that it's an anonymous callback function.&lt;br /&gt;&lt;br /&gt;When are the callback functions useful? Let's see some examples that demonstrate the benefits of the callback functions, namely:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;They let you pass functions without the need to name them (which means there are less global variables)&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;You can delegate the responsibility of calling a function to another function (which means there is less code to write)&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;They can help with performance&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Callback Example:&lt;/span&gt;&lt;br /&gt;    function multiplyByTwo(a, b, c, callback)     {&lt;br /&gt;        var i, ar = [];&lt;br /&gt;        for(i = 0; i &lt; 3; i++)     {&lt;br /&gt;            ar[i] = callback(arguments[i] * 2);&lt;br /&gt;        }&lt;br /&gt;        return ar;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&gt;&gt;&gt; myarr = multiplyByTwo(1, 2, 3, addOne);&lt;br /&gt;       &lt;br /&gt;        [3, 5, 7]&lt;br /&gt;&lt;br /&gt;Instead of defining addOne() we can use an anonymous function, this way saving an extra global variable.&lt;br /&gt;&gt;&gt;&gt; myarr = multiplyByTwo(1, 2, 3, function(a){return a + 1});&lt;br /&gt;&lt;br /&gt;        [3, 5, 7]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5092296896310373218-4217937691894572827?l=vuthysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vuthysan.blogspot.com/feeds/4217937691894572827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5092296896310373218&amp;postID=4217937691894572827' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/4217937691894572827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/4217937691894572827'/><link rel='alternate' type='text/html' href='http://vuthysan.blogspot.com/2008/09/callback-functions.html' title='Callback Functions'/><author><name>Vuthy</name><uri>http://www.blogger.com/profile/01177333567806895666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5092296896310373218.post-2002202165215481447</id><published>2008-09-21T20:08:00.000-07:00</published><updated>2008-09-21T20:12:28.560-07:00</updated><title type='text'>Local versus Global scoping</title><content type='html'>Here's an interesting example that shows an important aspect of the local versus global scoping.&lt;br /&gt;    var a = 123;&lt;br /&gt;    function f()  {&lt;br /&gt;        alert(a);&lt;br /&gt;        var a = 1;&lt;br /&gt;        alert(a);&lt;br /&gt;    }&lt;br /&gt;   &lt;br /&gt;    f();&lt;br /&gt;&lt;br /&gt;You might expect that the first alert() will display 123 (the value of the global variable a) and the second will display 1 (the local a). This is not the case. The first alert will show "undefined". This is because inside the function the local scope is more important than the global scope. So a local variable overwrites any global variable with the same name. At the time of the first alert() a was not yet defined (hence the value undefined) but it still existed in the local space.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5092296896310373218-2002202165215481447?l=vuthysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vuthysan.blogspot.com/feeds/2002202165215481447/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5092296896310373218&amp;postID=2002202165215481447' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/2002202165215481447'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/2002202165215481447'/><link rel='alternate' type='text/html' href='http://vuthysan.blogspot.com/2008/09/local-versus-global-scoping.html' title='Local versus Global scoping'/><author><name>Vuthy</name><uri>http://www.blogger.com/profile/01177333567806895666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5092296896310373218.post-3673576625412134258</id><published>2008-09-12T00:00:00.000-07:00</published><updated>2008-09-21T20:16:19.117-07:00</updated><title type='text'>SQL_BIG_SELECTS</title><content type='html'>Before I had one problem that can not execute big query in my Search page.It's because of web-hosting not allow to execute big query. So we have to add one line bellow before the big query like this:&lt;br /&gt;ActiveRecord::Base.connection.execute('SET SQL_BIG_SELECTS = on')&lt;br /&gt;Place.find_by_sql("..............")&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5092296896310373218-3673576625412134258?l=vuthysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vuthysan.blogspot.com/feeds/3673576625412134258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5092296896310373218&amp;postID=3673576625412134258' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/3673576625412134258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/3673576625412134258'/><link rel='alternate' type='text/html' href='http://vuthysan.blogspot.com/2008/09/sqlbigselects.html' title='SQL_BIG_SELECTS'/><author><name>Vuthy</name><uri>http://www.blogger.com/profile/01177333567806895666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5092296896310373218.post-2999492964558349184</id><published>2008-08-22T23:26:00.000-07:00</published><updated>2008-08-28T01:36:26.469-07:00</updated><title type='text'>Save_without_validation</title><content type='html'>This snip code bellow show about save a new record without validation&lt;br /&gt;&lt;br /&gt;photo = Photo.new&lt;br /&gt;photo.name = ""&lt;br /&gt;photo.save(false)&lt;br /&gt;&lt;br /&gt;if we use &lt;b&gt;update_attribute_with_validation_skipping&lt;/b&gt;(name, value) to update record without validation and want to success this task when we user find_by_sql to find that record we must to select all fields of that record.otherwise it will not effect at all.&lt;br /&gt;biz = Photo.find_by_sql(..............)&lt;br /&gt;biz.update_attribute_with_validation_skipping("request_date", Time.now)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5092296896310373218-2999492964558349184?l=vuthysan.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vuthysan.blogspot.com/feeds/2999492964558349184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5092296896310373218&amp;postID=2999492964558349184' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/2999492964558349184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5092296896310373218/posts/default/2999492964558349184'/><link rel='alternate' type='text/html' href='http://vuthysan.blogspot.com/2008/08/first-blog.html' title='Save_without_validation'/><author><name>Vuthy</name><uri>http://www.blogger.com/profile/01177333567806895666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
