<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Khola Janala</title>
	<atom:link href="http://rhasan.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://rhasan.com/blog</link>
	<description></description>
	<pubDate>Fri, 04 Sep 2009 04:44:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>CodeIgniter auto complete with Netbeans</title>
		<link>http://rhasan.com/blog/2009/09/codeigniter-auto-complete-with-netbeans/</link>
		<comments>http://rhasan.com/blog/2009/09/codeigniter-auto-complete-with-netbeans/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:02:43 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[codeigniter]]></category>

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

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

		<category><![CDATA[tips n tricks]]></category>

		<guid isPermaLink="false">http://rhasan.com/blog/?p=72</guid>
		<description><![CDATA[I had been longing for code completion for CodeIgniter with NetBeans for a long time. Finally got a very simple solution which I tested with NetBeans 6.7. It works for 

All CodeIgniter system libraries
Own model functions
Own library functions
Helper functions

Basic Autocomplete : 
To get autocomplete feature for basic CodeIgniter(1.7) functions ONLY just download this file(ci_autocomplete.php) and [...]]]></description>
			<content:encoded><![CDATA[<p>I had been longing for code completion for CodeIgniter with NetBeans for a long time. Finally got a very simple solution which I tested with NetBeans 6.7. It works for </p>
<ul>
<li>All CodeIgniter system libraries</li>
<li>Own model functions</li>
<li>Own library functions</li>
<li>Helper functions</li>
</ul>
<p><strong>Basic Autocomplete : </strong><br />
To get autocomplete feature for basic CodeIgniter(1.7) functions ONLY just <a href="http://rhasan.com/download/ci_autocomplete.zip">download this file</a>(ci_autocomplete.php) and copy it in your netbeans project directory <strong>nbproject</strong>. </p>
<p><div id="attachment_85" class="wp-caption aligncenter" style="width: 510px"><a href="http://rhasan.com/blog/wp-content/uploads/2009/09/basic_autocomplete1.png"><img src="http://rhasan.com/blog/wp-content/uploads/2009/09/basic_autocomplete1.png" alt="Basic CI autocomplete" title="basic autocomplete" width="500" height="351" class="size-full wp-image-85" /></a><p class="wp-caption-text">Basic CI autocomplete</p></div></p>
<p><strong>Advanced autocomplete:</strong><br />
For more advanced autocomplete feature like getting the list of model functions, your own library functions, you need to add<br />
<code><br />
@property  Your_Model $model_object_name<br />
</code><br />
in the file ci_autocomplete.php( that you copied in nbproject). For example :<br />
<code><br />
* @property Buyer_Model $buyer_model<br />
</code><br />
Then in any controller if you write $this -> buyer_model -> &#8230;. the functions list will automatically popup. </p>
<p><div id="attachment_88" class="wp-caption aligncenter" style="width: 510px"><a href="http://rhasan.com/blog/wp-content/uploads/2009/09/advanced_codecomplete.png"><img src="http://rhasan.com/blog/wp-content/uploads/2009/09/advanced_codecomplete.png" alt="Advanced autocomplete" title="advanced_codecomplete" width="500" height="369" class="size-full wp-image-88" /></a><p class="wp-caption-text">Advanced autocomplete</p></div></p>
<p><strong>Finally</strong>, to make every thing simple I just have written a simple script(autocomplete_script.php), can <a href="http://rhasan.com/download/ci_autocomplete.zip">download from here</a>, that will automatically traverse all the system libraries, your application libraries and models directory and list all class names. What you need is to </p>
<ul>
<li>Run the script</li>
<li>Copy whole output </li>
<li>Paste it in a file and keep it in <strong>nbproject</strong></li>
</ul>
<p><br/><br />
<strong>Limitations:</strong></p>
<ul>
<li>If you extend a library like MY_DB_mysql_driver it does not work</li>
<li>You have to run my script(autocomplete_script.php autocomplete function) from a codeigniter controller</li>
<li>In my script(autocomplete_script.php) I assumed that model file name and class name same and all has _model as suffix(user_model, buyer_model) etc</li>
</ul>
<p><strong>Edit:</strong><br />
To make everything available for Models just need to add some properties after the Controller class in same fashion. I have updated my ci_autocomplete.php file accordingly. To see how all things work together you can see my autocomplete_all.php in the zip file.</p>
<p><strong>For Helpers autocomplete:</strong><br />
You should automatically get the hint for helper functions available in your project. If you don&#8217;t get the hint then try tools -> options -> php -> Global Include Path -> add Folder -> your_system_folder.<br />
Thats all !</p>
<p>Happy Coding with NetBeans and CodeIgniter <img src='http://rhasan.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/09/codeigniter-auto-complete-with-netbeans/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML email with PHPmailer</title>
		<link>http://rhasan.com/blog/2009/03/html-email-with-phpmailer/</link>
		<comments>http://rhasan.com/blog/2009/03/html-email-with-phpmailer/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 06:11:32 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[tips n tricks]]></category>

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

		<guid isPermaLink="false">http://rhasan.com/blog/?p=69</guid>
		<description><![CDATA[Here is a worth reading article on HTML email writing. http://www.sitepoint.com/article/code-html-email-newsletters/
]]></description>
			<content:encoded><![CDATA[<p>Here is a worth reading article on HTML email writing. <a href="http://www.sitepoint.com/article/code-html-email-newsletters/">http://www.sitepoint.com/article/code-html-email-newsletters/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/03/html-email-with-phpmailer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox Tips</title>
		<link>http://rhasan.com/blog/2009/03/firefox-tips/</link>
		<comments>http://rhasan.com/blog/2009/03/firefox-tips/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 01:26:31 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[firefox]]></category>

		<category><![CDATA[tips n tricks]]></category>

		<guid isPermaLink="false">http://rhasan.com/blog/?p=63</guid>
		<description><![CDATA[Here I found some good tips to speed up Firefox.
]]></description>
			<content:encoded><![CDATA[<p><a title="Here" href="http://www.dagorret.net/2009/03/25/a-handful-of-firefox-tweaks-that-will-double-your-browser-speed/">Here</a> I found some good tips to speed up Firefox.</p>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/03/firefox-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web page Load Improvement</title>
		<link>http://rhasan.com/blog/2009/03/web-page-load-improvement/</link>
		<comments>http://rhasan.com/blog/2009/03/web-page-load-improvement/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 08:29:23 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[tips n tricks]]></category>

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

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

		<guid isPermaLink="false">http://rhasan.com/blog/?p=53</guid>
		<description><![CDATA[Here are some links that contain really very helpful tips for the improvement of the web page loading  time.

http://developer.yahoo.com/performance/rules.html
http://yuiblog.com/blog/2006/11/28/performance-research-part-1/
http://yuiblog.com/blog/2007/01/04/performance-research-part-2/

And here is a video regarding web performance

]]></description>
			<content:encoded><![CDATA[<p>Here are some links that contain really very helpful tips for the improvement of the web page loading  time.</p>
<ul>
<li><a href="http://developer.yahoo.com/performance/rules.html">http://developer.yahoo.com/performance/rules.html</a></li>
<li><a href="http://yuiblog.com/blog/2006/11/28/performance-research-part-1/">http://yuiblog.com/blog/2006/11/28/performance-research-part-1/</a></li>
<li><a href="http://yuiblog.com/blog/2007/01/04/performance-research-part-2/">http://yuiblog.com/blog/2007/01/04/performance-research-part-2/</a></li>
</ul>
<p>And here is a video regarding web performance</p>
<p><embed src="http://c.brightcove.com/services/viewer/federated_f8/1596744118" bgcolor="#FFFFFF" flashVars="videoId=1840656638&#038;playerId=1596744118&#038;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&#038;servicesURL=http://services.brightcove.com/services&#038;cdnURL=http://admin.brightcove.com&#038;domain=embed&#038;autoStart=false&#038;" base="http://admin.brightcove.com" name="flashObj" width="486" height="412" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/03/web-page-load-improvement/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery Video</title>
		<link>http://rhasan.com/blog/2009/03/jquery-video/</link>
		<comments>http://rhasan.com/blog/2009/03/jquery-video/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 19:53:57 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

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

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

		<guid isPermaLink="false">http://rhasan.com/blog/?p=44</guid>
		<description><![CDATA[jQuery Internals and Cool Stuffs

]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery Internals and Cool Stuffs</strong></p>
<div><embed src="http://services.brightcove.com/services/viewer/federated_f8/1596744118" bgcolor="#FFFFFF" flashVars="videoId=1828663213&#038;playerId=1596744118&#038;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&#038;servicesURL=http://services.brightcove.com/services&#038;cdnURL=http://admin.brightcove.com&#038;domain=embed&#038;autoStart=false&#038;" base="http://admin.brightcove.com" name="flashObj" width="486" height="412" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></div>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/03/jquery-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firebug Tutorial</title>
		<link>http://rhasan.com/blog/2009/03/firebug-tutorial/</link>
		<comments>http://rhasan.com/blog/2009/03/firebug-tutorial/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 19:03:10 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[firebug]]></category>

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

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

		<guid isPermaLink="false">http://rhasan.com/blog/?p=38</guid>
		<description><![CDATA[I have been longing for a good firebug tutorial. Here I found some good tutorials that may help to understand basic functionality of firebug.  Here is blog tutorial and video tutorial
]]></description>
			<content:encoded><![CDATA[<p>I have been longing for a good firebug tutorial. Here I found some good tutorials that may help to understand basic functionality of firebug.  Here is <a href="http://michaelsync.net/category/firebug">blog tutorial</a> and <a href="http://www.digitalmediaminute.com/screencast/firebug-js/">video tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/03/firebug-tutorial/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Javascript Video</title>
		<link>http://rhasan.com/blog/2009/03/javascript-video-compilation/</link>
		<comments>http://rhasan.com/blog/2009/03/javascript-video-compilation/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 16:44:24 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[javascript]]></category>

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

		<guid isPermaLink="false">http://rhasan.com/blog/?p=16</guid>
		<description><![CDATA[Here are some collections of Javascript video presented by Douglas Crockford, creator of JSLint, JSMin, JSON. I was willing to get them in sigle place. So I have just compiled them in this sigle place.
The JavaScript Programming Language: Part-1

The JavaScript Programming Language: Part-2

The JavaScript Programming Language: Part-3

The JavaScript Programming Language: Part-4

Advanced JavaScript: Part-1

Advanced JavaScript: Part-2

Advanced [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some collections of Javascript video presented by <a href="http://crockford.com/">Douglas Crockford</a>, creator of <a href="http://www.jslint.com/">JSLint</a>, <a href="http://javascript.crockford.com/jsmin.html">JSMin</a>, <a href="http://www.json.org/">JSON</a>. I was willing to get them in sigle place. So I have just compiled them in this sigle place.</p>
<p><strong>The JavaScript Programming Language: Part-1</strong></p>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="450" height="322" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" value="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1710507&amp;vid=111593&amp;lang=en-us&amp;intl=us&amp;thumbUrl=&amp;embed=1" /><param name="src" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><embed type="application/x-shockwave-flash" width="450" height="322" src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" flashvars="id=1710507&amp;vid=111593&amp;lang=en-us&amp;intl=us&amp;thumbUrl=&amp;embed=1" bgcolor="#000000" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p><strong>The JavaScript Programming Language: Part-2</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1710553&#038;vid=111594&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111594_320_240.jpeg&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=1710553&#038;vid=111594&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111594_320_240.jpeg&#038;embed=1" ></embed></object></div>
<p><strong>The JavaScript Programming Language: Part-3</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1710607&#038;vid=111595&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111595_320_240.jpeg&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=1710607&#038;vid=111595&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111595_320_240.jpeg&#038;embed=1" ></embed></object></div>
<p><strong>The JavaScript Programming Language: Part-4</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1710658&#038;vid=111596&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111596_320_240.jpeg&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=1710658&#038;vid=111596&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111596_320_240.jpeg&#038;embed=1" ></embed></object></div>
<p><strong>Advanced JavaScript: Part-1</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1027823&#038;vid=111585&#038;lang=en-us&#038;intl=us&#038;thumbUrl=&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=1027823&#038;vid=111585&#038;lang=en-us&#038;intl=us&#038;thumbUrl=&#038;embed=1" ></embed></object></div>
<p><strong>Advanced JavaScript: Part-2</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1027832&#038;vid=111586&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w327/111586_320_240.jpeg&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=1027832&#038;vid=111586&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w327/111586_320_240.jpeg&#038;embed=1" ></embed></object></div>
<p><strong>Advanced JavaScript: Part-3</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=1027854&#038;vid=111587&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w327/111587_100_70.jpeg%3Fx%3D158%26y%3D111%26sig%3DWCEKic7NXxyzthKrgFK47Q--&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=1027854&#038;vid=111587&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w327/111587_100_70.jpeg%3Fx%3D158%26y%3D111%26sig%3DWCEKic7NXxyzthKrgFK47Q--&#038;embed=1" ></embed></object></div>
<p><strong>Javascript: Good Parts</strong></p>
<div><object height="344" width="425"><param name="movie" value="http://www.youtube.com/v/hQVTIJBZook&#038;hl=en&#038;fs=1&#038;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/hQVTIJBZook&#038;hl=en&#038;fs=1&#038;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p><strong>Theory of the DOM: Part-1</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=992708&#038;vid=111582&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111582_320_240.jpeg&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=992708&#038;vid=111582&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111582_320_240.jpeg&#038;embed=1" ></embed></object></div>
<p><strong>Theory of the DOM: Part-2</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=996002&#038;vid=111583&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w327/111583_100_70.jpeg%3Fx%3D158%26y%3D111%26sig%3DG2f65fsDiJybzRbHkElMzw--&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=996002&#038;vid=111583&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w327/111583_100_70.jpeg%3Fx%3D158%26y%3D111%26sig%3DG2f65fsDiJybzRbHkElMzw--&#038;embed=1" ></embed></object></div>
<p><strong>Theory of the DOM: Part-2</strong></p>
<div><object width="450" height="322"><param name="movie" value="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" /><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" VALUE="always" /><param name="bgcolor" value="#000000" /><param name="flashVars" value="id=996008&#038;vid=111584&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111584_320_240.jpeg&#038;embed=1" /><embed src="http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.40" type="application/x-shockwave-flash" width="450" height="322" allowFullScreen="true" AllowScriptAccess="always" bgcolor="#000000" flashVars="id=996008&#038;vid=111584&#038;lang=en-us&#038;intl=us&#038;thumbUrl=http%3A//l.yimg.com/a/i/us/sch/cn/v/v0/w326/111584_320_240.jpeg&#038;embed=1" ></embed></object></div>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/03/javascript-video-compilation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Code Convention</title>
		<link>http://rhasan.com/blog/2009/03/code-convention/</link>
		<comments>http://rhasan.com/blog/2009/03/code-convention/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 16:43:31 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[javascript]]></category>

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

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

		<guid isPermaLink="false">http://rhasan.com/blog/?p=9</guid>
		<description><![CDATA[I always like to follow a good coding convention. Just searching around which one seems good coding convention. Here is the list of coding convention that I found for different language.
Javascript : http://javascript.crockford.com/code.html
PHP : ?? need to find out a good one
]]></description>
			<content:encoded><![CDATA[<p>I always like to follow a good coding convention. Just searching around which one seems good coding convention. Here is the list of coding convention that I found for different language.</p>
<p><strong>Javascript : </strong><a class="wp-caption-dd" title="http://javascript.crockford.com/code.html" href="http://javascript.crockford.com/code.html" target="_self">http://javascript.crockford.com/code.html</a></p>
<p><strong>PHP : </strong>?? need to find out a good one</p>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/03/code-convention/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to my weblog</title>
		<link>http://rhasan.com/blog/2009/02/welcome-to-my-site-blog/</link>
		<comments>http://rhasan.com/blog/2009/02/welcome-to-my-site-blog/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 16:15:01 +0000</pubDate>
		<dc:creator>rakib</dc:creator>
		
		<category><![CDATA[mynote]]></category>

		<guid isPermaLink="false">http://rhasan.com/blog/?p=3</guid>
		<description><![CDATA[Hi,
I have just started my site today. I am not a good blogger. Cannot give much time for blogging. But I have planned to publish at least some blog entries in my site. I am much happy to start with my new site.
]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I have just started my site today. I am not a good blogger. Cannot give much time for blogging. But I have planned to publish at least some blog entries in my site. I am much happy to start with my new site.</p>
]]></content:encoded>
			<wfw:commentRss>http://rhasan.com/blog/2009/02/welcome-to-my-site-blog/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
