<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>Đỗ Nam Khánh weblog</title>
	<link>http://donamkhanh.com</link>
	<description>Tích góp kinh nghiệm - Nhặt nhạnh kỹ năng...</description>
	<lastBuildDate>Thu, 11 Feb 2010 15:35:29 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Cache Zend_Db_Table MetaData with Zend_Cache</title>
		<description><![CDATA[In this afternoon, my boss asked me to improving performance of project to release to client before we have Lunar new year holidays. The problem has too many DESCRIBE queries on every page load. I Google-ed &#38; found the Lysender&#8217;s solution, simple &#38; easy to fix this problem:
When you are using Zend_Db_Table (I sometimes only [...]]]></description>
		<link>http://donamkhanh.com/2010/02/11/cache-zend_db_table-metadata-with-zend_cache.html</link>
			</item>
	<item>
		<title>Overtime</title>
		<description><![CDATA[Lâu rồi mới phải làm overtime (OT) thế này. Hôm thứ 7 vừa rồi phải ngồi lại cty đến hơn 12h đêm mới về   Rồi lại đưa chị Thủy &#8220;tét&#8221; (vs với con dở Thủy top  ) về nhà cho an tòan, về đến nhà cũng hơn 1h sáng rồi. Log effort [...]]]></description>
		<link>http://donamkhanh.com/2010/02/01/overtime.html</link>
			</item>
	<item>
		<title>IE message: Operation aborted</title>
		<description><![CDATA[Few days ago, I assigned a task to fix a problem: IE showed an error message box and crashed when load a heavy page (it took about 40-50s to load completly) .
I thought, maybe cause of problem is Javascript (syntax error) and I checked whole the page. Hix, nothing happened   After I Googled, [...]]]></description>
		<link>http://donamkhanh.com/2009/11/18/ie-message-operation-aborted.html</link>
			</item>
	<item>
		<title>Determining the Number of Days in a Month with Javascript</title>
		<description><![CDATA[Cuối tuần vừa rồi, bác Cảnh (my leader) có triển khai 1 task cho tôi với nội dung là: &#8220;chỉnh lại core của con calendar.js để ngày mặc định khi hiệp popup calendar sẽ là ngày hiện tại cộng một&#8221; (dĩ nhiên nếu đã nhập ngày trước đó rồi thì vẫn phải focus đúng).
Rất may [...]]]></description>
		<link>http://donamkhanh.com/2009/11/01/determining-the-number-of-days-in-a-month-with-javascript.html</link>
			</item>
	<item>
		<title>Use synchronous request in jQuery.ajax</title>
		<description><![CDATA[Đã bao giờ bạn sử dụng AJAX (jQuery) để check username tồn tại như sau chưa?

[-]?View Code JAVASCRIPT1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function checkUser&#40;u&#41; &#123;
    var isExist = false;
    $.post&#40;
        'index.php',
        &#123;'username': u&#125;,
        [...]]]></description>
		<link>http://donamkhanh.com/2009/10/31/use-synchronous-request-in-jquery-ajax.html</link>
			</item>
	<item>
		<title>Enable windows Vista Aero glass transparency effect</title>
		<description><![CDATA[Nếu như phần cứng đáp ứng đủ yêu cầu tối thiểu để sử dụng hiệu ứng Aero glass transparency mà Windows vẫn không chịu enable hiệu ứng đấy lên thì làm như sau:


Go to Start button, then click on Run.
Run “regedit”.
Browse and navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM\ registry branch.
On the following registry subkeys, edit and change the [...]]]></description>
		<link>http://donamkhanh.com/2009/10/09/enable-windows-vista-aero-glass-transparency-effect.html</link>
			</item>
	<item>
		<title>UnitTest???</title>
		<description><![CDATA[
Khó có thể viết Unit Test để bắt tất cả các lỗi của 1 chương trình.
Chỉ kiểm tra được lỗi của những unit nhỏ nhất của chương trình do đó không thể nào lường trước những vấn đề có thể xảy ra khi kết hợp các module với nhau.
Chỉ có thể kiểm tra được những [...]]]></description>
		<link>http://donamkhanh.com/2009/09/19/unittest.html</link>
			</item>
	<item>
		<title>Parse single Javascript object in Jquery by $.ajax method</title>
		<description><![CDATA[Chưa thử test với Jquery phiên bản mới nhất, mới chạy trên bản 1.2.1 (dự án hiện tại đang dùng  ). Khi sử dụng $.ajax như bên dưới thì phát sinh lỗi:

[-]?View Code JAVASCRIPT1
2
3
4
5
6
7
8
9
10
11
12
13
14
$.ajax&#40;&#123;
	type: &#34;POST&#34;,
	url: document.location.href,
	data: &#34;card_type=&#34; + cardType + &#34;&#38;card_number=&#34; + cardNumber,
	dataType: 'JSON',
	cache: false,
	success: function&#40;responses&#41;&#123;
	    if&#40;!responses.has_error&#41;
	    &#123;
	 [...]]]></description>
		<link>http://donamkhanh.com/2009/09/08/parse-single-javascript-object-in-jquery-by-ajax-method.html</link>
			</item>
	<item>
		<title>Library vs Framework</title>
		<description><![CDATA[Hôm trước có hỏi ở trên Twitter (mặc dù cái list của mình chả có mấy người :&#8221;>):
web framework or library framework   Ai cho em lời khuyên  
Hôm nay nhận được reply của anh Định:
Phân biệt nhé: library là you call me, framework là I call you  
Do trình độ mình [...]]]></description>
		<link>http://donamkhanh.com/2009/07/13/library-vs-framework.html</link>
			</item>
	<item>
		<title>Stupid IE???</title>
		<description><![CDATA[Today, a colleague asked me: &#8220;how to download file with docx extension (MS Word 2007) in IE6?&#8221; because IE automatic changes the .docx to .zip. I thought to solve this problem very easy by directly link download but I&#8217;m wrong   It seems a IE bug??? So I recommend him that he should use [...]]]></description>
		<link>http://donamkhanh.com/2009/07/03/stupid-ie.html</link>
			</item>
</channel>
</rss>
