Sunday, May 06, 2012

 "Thuật toán ứng dụng mạng Bayes phân cụm dữ liệu phạm trù"

Wednesday, May 02, 2012


Password download: taphop.net

Sunday, April 01, 2012

Adding meta description and meta keywords in Drupal 7 is different compared with Drupal 6. I used drupal_add_html_head() for
adding meta description and meta keywords in header. In my theme (template.php file), I call hook_page_alter() for embeding meta. If you want to add meta description and meta keywords in your site then go to your site default theme folder’s template.php file and paste the code (display below) :

function yourtheme_page_alter($page) {
$meta_description = array(
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => array(
'name' => 'description',
'content' => 'some description here'
));
$meta_keywords = array(
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => array(
'name' => 'keywords',
'content' => 'some, keywords'
));
drupal_add_html_head( $meta_description, 'meta_description' );
drupal_add_html_head( $meta_keywords, 'meta_keywords' );
}
Or you can use module Meta Tags Quick
http://drupal.org/project/metatags_quick

Thursday, March 29, 2012

Friday, March 23, 2012


Biểu tượng Copyleft
 
Là một sản phẩm công nghiệp, nhưng chắc chắn phần mềm không giống như một chiếc xe hơi hay máy bay trực thăng. Vì vậy, phần mềm được bảo hộ theo quy định của sở hữu trí tuệ. Thuật ngữ đang dùng là Copyright - tác quyền.

Sunday, March 11, 2012

 
HTML & Javascript Basic 4E

Saturday, March 10, 2012

Microsoft tuyên bố đã tung ra thị trường toàn cầu phiên bản mới nhất của nền tảng quản lí dữ liệu Microsoft SQL Server 2012.
 
Microsoft kì vọng SQL Server 2012 giúp khách hàng quản lí công việc  khổng lồ hiệu quả hơn

Tuesday, February 14, 2012

Create your first Drupal 7 module with the following steps.
  1. Create a folder called helloworld in sites/all/modules/custom
  2. Create a helloworld.info file
  3. Create a template file page-helloworld.tpl.php in your theme directory
  4. Enable your module at http://domain.com/admin/build/modules
  5. Visit http://domain.com/helloworld

Saturday, February 11, 2012




Auslogics Disk Defrag Professional 4.0.0.40 | 3.69 MB


Phần mở rộng *.HTML hay *.HTM

HTML viết tắt của từ Hyper Text Markup Language do đó phần mở rộng thường dùng là *.html tuy nhiên nó được viết thu gọn thành 3 ký tự cho giống với các phần mở rộng chung của window là *.htm. Cả hai phần đều giống nhau – không có sự khác biệt.

Thursday, February 09, 2012

Wednesday, February 08, 2012

Giới thiệu sơ lượt về HTML

HTML
  • HTML viết tắt của Hyper Text Markup Language.
  • HTML không phải là ngôn ngữ lập trình.
  • HTML là ngôn ngữ đánh dấu bao gồm một tập các thẻ đánh dấu.
  • Các thẻ bắt đầu và kết thúc còn gọi là thẻ mở và thẻ đóng.
  • Tài liệu HTML (HTML document) là một trang web (web page)

Tuesday, January 31, 2012


Oreilly.Building.iPhone.Apps.with.HTML.CSS.and.JavaScript.Jan.2010
Oreilly.Building.iPhone.Apps.with.HTML.CSS.and.JavaScript.Jan.2010

Thursday, January 12, 2012