Browsing All Posts filed under »Python«

Mengaktifkan command line editing (Readline) di Python

December 25, 2010

0

Secara default, pada saat kita masuk ke python command line, tidak akan ada completion seperti halnya bila kita menggunakan bash, tcsh, atau zsh. Untuk mengaktifkan tab completion, biasanya kita menggunakan langkah-langkah berikut: [bpdp@bpdp-arch ~]$ python Python 3.1.3 (r313:86834, Dec  1 2010, 12:35:23) [GCC 4.5.1 20101125 (prerelease)] on linux2 Type “help”, “copyright”, “credits” or “license” for […]

chm2html.py: Mengubah .chm ke satu file .html

November 22, 2009

1

Tentang chm2html.py Script Python ini sebenarnya script yang telah lama saya buat. Penyebabnya sederhana saja, saya sering membaca dokumentasi dalam format .chm (compressed HTML file) tapi harus bolak balik ke satu chapter ke chapter berikutnya. Sering saya menginginkan hanya membuka satu file saja, atau barangkali cukup jadi 1 file kemudian saya buka menggunakan OpenOffice.org writer […]

Modularizing Crosscutting Concerns Using Aspect-Oriented Programming

October 25, 2009

0

Introduction In this article, we will try to introduce some problems regarding software modularity as a result of croscutting concerns. A concern is “the part of a software system relevant to a particular concept, goal, or purpose”  Colyer2004, p. 2]. A software system is the realization of a set of concerns. People often argue that […]