Convert Encoding File

Comments   0   Date Arrow  January 22, 2010 at 12:05am   User  by pichai

iconv –from-code=cp874 –to-code=utf-8 cp874.txt > utf.txt

Tagged   Talk  delicious  Comments  Add Your Comment

install perl module in ubuntu

Comments   0   Date Arrow  December 10, 2009 at 12:20am   User  by pichai

เรียกใช้ CPAN
# perl -MCPAN -e shell
install module ที่ต้องการ
cpan> install MIME::Lite

Tagged   Talk  delicious  Comments  Add Your Comment

Change editor for greasemonkey

Comments   0   Date Arrow  March 13, 2009 at 11:07am   User  by pichai

about:config in firefox
filter by greasemonkey.editor
modify to new editor path

Tagged   Talk  delicious  Comments  Add Your Comment

Function str (Example Python Built-in Functions)

Comments   0   Date Arrow  November 28, 2008 at 9:37am   User  by pichai

str(object)
แปลง object ที่ส่งเข้าไปกลับมาในรูปแบบ string
>>> str(123)
‘123′
>>> str(50.99)
‘50.99′
>>> str(['Hello','World'])
“['Hello', 'World']”

Tagged   Talk  delicious  Comments  Add Your Comment

Function ord (Example Python Built-in Functions)

Comments   0   Date Arrow  November 7, 2008 at 11:12am   User  by pichai

ord(i)
คืนตัวเลขที่มีค่า Unicode เท่ากับตัวอักษรที่ส่งไปซึ่งจะตรงข้ามกับฟังก์ชั่น chr()
>>> ord(’a')
97
>>> ord(’z')
122

Tagged   Talk  delicious  Comments  Add Your Comment

Function chr (Example Python Built-in Functions)

Comments   0   Date Arrow  November 6, 2008 at 9:37am   User  by pichai

chr(i)
คืนตัวอักษรที่มีค่า ACSII เท่ากับ i ซึ่งจะตรงข้ามกับฟังก์ชั่น ord() โดยจะรับค่าตัวเลข 0 ถึง 255 นอกเหนือจากนั้นจะเกิดข้อผิดพลาด
>>> chr(97)
‘a’
>>> chr(122)
‘z’

Tagged   Talk  delicious  Comments  Add Your Comment

Function abs (Example Python Built-in Functions)

Comments   0   Date Arrow  November 5, 2008 at 2:55pm   User  by pichai

abs(x)
จะคืนคืนค่าสัมบูรณ์ของตัวเลข
>>> abs(-9)
9
>>> abs(9)
9

Tagged   Talk  delicious  Comments  Add Your Comment

Function any (Example Python Built-in Functions)

Comments   0   Date Arrow  November 3, 2008 at 10:55am   User  by pichai

any(iterable)
จะคืนค่า True ถ้าแต่ละ elements ใน iterable เป็น True อย่างน้อย 1 ตัว
>>> a = [True,False]
>>> any(a)
True
>>> a = [False,0]
>>> any(a)
False

Tagged   Talk  delicious  Comments  Add Your Comment

Function all (Example Python Built-in Functions)

Comments   0   Date Arrow  October 31, 2008 at 9:39am   User  by pichai

all(iterable)
จะคืนค่า True ถ้าแต่ละ elements ใน iterable เป็น True ทั้งหมด
>>> a = [True,False]
>>> all(a)
False
>>> a = [True,1]
>>> all(a)
True

Tagged   Talk  delicious  Comments  Add Your Comment

66

Comments   0   Date Arrow  September 5, 2008 at 11:00am   User  by pichai

rails66
grails66
django66

Tagged   Programming · Web  delicious  Comments  Add Your Comment