Programming

แค่ update python version จาก 2.6.4 ไป 3.1.2

แม่มสงสัยอยู่ตั้งนานว่า ทำไม update python version 3.1.2 บนเครื่อง cloud2 แล้วมันแปลกๆ แค่ลอง print ‘test’ มันก็ฟ้อง error   ไอ้เราก็หาวิธีแก้อยู่ตั้งนาน ที่ไหนได้ python 3.1.2 มันบอกว่า print is a function แล้วนะเธอว์ๆๆๆๆๆ แสดเ ...

Read More

[Python] Evolution of a Python programmer.py

เจอผ่านๆ ลูกตา รู้สึกประทับใจ เรยเก็บไว้หน่อย นะๆๆ 1 2 3 4 5 6 7 #Newbie programmer def factorial(x): if x == 0: return 1 else: return x * factorial(x - 1) print factorial(6)

Read More

[ComKUCamp] Introduction GPU Programming

Introduction to GPU Programming View more documents from Chakkirt Tantithamthavorn. Example Application of GPU View more documents from Chakkirt Tantithamthavorn.

Read More

[Python] Optimize what needs optimizing?

ปกติแล้ว เวลาผมเขียนโปรแกรมจะถือคตินี้มาตลอด นั่นคือ Make it done, make it right, and then make it fast. blog นี้จะมาบอกว่า เราจะ opimize โปรแกรมที่เขียนด้วยภาษา python ได้อย่างไรบ้าง อย่างแรก ให้ติดตั้ง Python profiler ก่อน คลิก เพ ...

Read More

[Python] Identify the bottlenecks by Python profilers

Python Profiler package เป็น package ไว้สำหรับ วิเคราะห์ประสิทธิภาพของโปรแกรมที่เขียนด้วยภาษา python เพื่อหา bottleneck หรือปัญหาคอขวดของโปรแกรมของเราว่าอยู่ตรงไหน Minimum-requirement: Python 2.6 or later [use profiler and pstats package] ถ้าเครื่องไหนไ ...

Read More