Wednesday, September 26, 2007

Contoh Multi Threading di Python

Studi kasus : mengupdated 1 row database secara bersamaan untuk melihat apakah Transaction di MySQL berfungsi dengan baik.


import MySQLdb
import threading


class MultiThread(threading.Thread):
def __init__(self, cx):
super(MultiThread,self).__init__()
self.counter = cx

def run(self):
myconn = MySQLdb.Connect(host='localhost',user='root',passwd='a',db='DTSClient')
myconn.autocommit(1)
mysql = "Call testproc(1,1);"
mycursor = myconn.cursor()
result = mycursor.execute(mysql)
print result
myconn.close()

blist = []
for cx in range(50):
bg = MultiThread(cx)
blist.append(bg)

for bx in blist:
bx.start()


Untuk stored procedure dengan menggunakan Transaction lihat blog sebelum ini.

Stored Procedure di MySQL

Contoh stored procedure di MySQL:


DROP PROCEDURE testproc;
DELIMITER //
CREATE PROCEDURE testproc (IN pid INT, IN pamount INT)
BEGIN

DECLARE bal INT;

START TRANSACTION;
SELECT balance INTO bal FROM test1 where id = pid;
UPDATE test1 SET balance = (bal + pamount) WHERE id = pid;
COMMIT;

END;
//
DELIMITER ;


Statement DELIMITER sangat penting, kalau tidak MySQL akan memberikan pesan ERROR.

Thursday, February 22, 2007

How to Install Windows 2003 Server + Intel SATA Raid Controller without Floppy disk

The point is you have to make a new installation disk with the drivers files included.

The easiest way is to use nlite http://www.nliteos.com/ .

Just copy your W2k3 Server installation disk to your hard-disk.

Get the the Intel SATA RAID Controller driver for F6 Floppy disk method.
Extract it with ZipGenius. Twice, also extract the exe file until you'll get the *.ima file.
The *.ima file is the image file for the floppy disk.
Extract all drivers files from *.ima with tool from http://www.winimage.com/extract.htm.

Run the nlite and follow the instruction.
And have fun with the new installation CD.

Wednesday, January 31, 2007

Metadata untuk gambar dan foto

Pada dasarnya adalah untuk mempermudah pencarian gambar atau foto. Keterangan
tentang foto dapat saja dituliskan sebagai nama file. Namun hal itu memiliki
beberapa kekurangan :
- panjang nama file terbatas
- jika terlalu panjang menjadi sulit di baca
- sulit untuk memberikan keterangan yg sama / serupa untuk beberapa gambar/foto
- tidak terorganisasi dengan baik, baik fields, catagories etc
- tidak ada format standard

Alternatif lain menggunakan IPTC metadata format yg berkembang menjadi XMP
[http://en.wikipedia.org/wiki/Extensible_Metadata_Platform] .

Setelah mencoba beberapa tools untuk IPTC, sekarang saya menggunakan :
Abender's Photoscontrol untuk menuliskan IPTC metadata
http://www.softartstudio.com/photoscontrol/

PixVue untuk searching gambar/foto berdasarkan IPTC metada
http://www.pixvue.com
Sayang sekali terakhir buka websitenya sdh discontinue :-(

Picasa2 untuk organisasi / manajemen album foto
http://picasa.google.com

Satu tools lagi yg cukup membantu untuk browsing koleksi foto/gambar yg banyak.
PhotoMesa 3 http://www.cs.umd.edu/hcil/photomesa/


Keuntungan lain dari metadata dari IPTC adalah mempermudah pertukaran gambar / foto.
Inilah tujuan awal dibuatnya IPTC metadata, mempermudah pertukaran gambar / foto
antar kantor berita di seluruh dunia.