Sending email by crontab and sendmail

1. /home/www/mailq/sendmail.sh [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] #!/bin/bash user='kim'; subject='hello kim'; content='this is just a test email.'; from='kim@example.co… Continue reading
Posted in Linux| Tagged , | Leave a comment

Custom PHP Extension in C

For Linux (Ubuntu Server) 1. Installation [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ sudo apt-get install gcc $ sudo apt-get install php5-dev [/codesyntax] 2. PHP Source Packa… Continue reading
Posted in PHP, Ubuntu| Tagged , | Leave a comment

Shell – count the keyword

[codesyntax lang="bash" lines="no" container="pre" tab_width="4"] #!/bin/bash # perhaps the field to be analyted is the 2nd field log=/path/to/log; keyword=”the keyword”; cat $log | cut -f2 | grep $ke… Continue reading
Posted in Linux| Tagged | Leave a comment

SSH and SecureCRT

1. Environment Ubuntu Server 10.10 SecureCRT 6 OpenSSH 5.3 2. OpenSSH Installations [codesyntax lang="bash" lines="no" container="pre" tab_width="4"] $ sudo apt-get install openssh-server openssh-clie… Continue reading
Posted in Ubuntu| Tagged , , | Leave a comment

Uri Knowledges

1. Uniform Resource Identifier (URI) http://en.wikipedia.org/wiki/Uniform_Resource_Identifier 2. Uniform Resource Locator (URL) http://en.wikipedia.org/wiki/Uniform_Resource_Locator 3. Uniform Resourc… Continue reading
Posted in Network Protocol| Tagged | Leave a comment

HTML5 Skills

HTML5 Tutorial : http://www.w3schools.com/html5/default.asp 1. HTML5 doctype [codesyntax lang="html4strict"] <!DOCTYPE html> [/codesyntax] 2. Figure [codesyntax lang="html4strict"] <figure> < img src … Continue reading
Posted in DHTML| Tagged | Leave a comment

Xdebug for PHP Profile

Windows 1. Download xdebug extension : http://www.xdebug.org/files/php_xdebug-2.1.0-5.2-vc6.dll 2. Add xdebug extension into php : E:\xampp\php\ext\php_xdebug-2.1.0-5.2-vc6.dll 3. Modify php.ini : [co… Continue reading
Posted in PHP| Tagged , | Leave a comment

SEO Skills

1. What is SEO SEO on wiki SEO on baidu 2. Skills (1) Keywords in url, but not much http://kbs.kimbs.cn/blog/list/post/30/title/using-ajax/ -- it's right, but too long http://kbs.kimbs.cn/blog/using-a… Continue reading
Posted in SEO| Tagged | 1 Comment

Nature of Ajax

1. Ajax is ... Asynchronous JavaScript and XML 2. Defined by ? Jesse James Garrett 3. Group of Technologies ! HTML / XHTML + CSS DOM Plain Text, XML, JSON ... XMLHttpRequest JavaScript, VBScript ... P… Continue reading
Posted in Ajax| Tagged | Leave a comment

Using Memcache

1. About memcached See http://en.wikipedia.org/wiki/Memcached 2. About memcache (the php extension) See http://www.php.net/manual/en/book.memcache.php 3. Different between memcached and memcache (1) W… Continue reading
Posted in Optimization| Tagged | 5 Comments