Jumat, 23 Desember 2011

easySMS sms utk windows mobile

easySMS is a software for sending SMS (Short Message) on Windows Mobile phones. You can send new message or archived message for selected contacts easily. easySMS is fastest way for sending SMS in windows mobile. http://easysms.codeplex.com/

sms extractor

smsextractor dowmload di http://smsextractor.codeplex.com/ adalah software kecil utk extract data sms inbox dan outbox dari modem huwaei.

SMS Server Setup

lagi coba SMS Server Setup dari http://modem4sms.codeplex.com/ tp pending dulu soalnya butuh framework 4.0, sepertinya bagus, support modem, http dan database

Jumat, 16 Desember 2011

Selasa, 13 Desember 2011

Class php yang bagus

http://www.phpclasses.org/package/7221-PHP-Search-for-content-on-MySQL-or-Sphinx.html 
http://www.phpclasses.org/package/7165-PHP-Extract-information-from-Web-site-pages.html

http://www.phpclasses.org/package/7244-PHP-Synchronize-MySQL-databases.html
This class can be used to synchronize MySQL databases.

It can connect to two MySQL databases with the same table structure and perform operations that synchronize their contents according to certain rules.

Currently it is possible to define rules for which tables will synchronized and for the records to be deleted before synchronizing.

The class generates one file with SQL statements and then reads the file again to execute the generated SQL on the target database

Selasa, 29 November 2011

Kode PHP Untuk Mengambil SMS Queue pada Nowsms

NowSMS menyimpan sms yang dalam antrian dikirim ke dalam 1 folder, setiap sms 1 file, dan dalam 1 file tsb ada beberapa baris seperti ini

[SMS]
SubmittedBy=127.0.0.1
SMSCRoute=COM3:
Data=tes sms aja
pid=00
dcs=00
Binary=0
PhoneNumber=+6281900873824




Untuk memantaunya saya buat kode utk memanggil semua file, setelah itu melihat isi dalam setiap file yg saya buat menjadi  1 baris

kodenya spt ini



Sabtu, 26 November 2011

belajar dan membuat project dengan codeigniter

lagi belajar code igniter sekaligus buat project dengan ci, untuk memudahkan saya gunakan tempate project yg sudah ada.

setelah browsing2, ketemu 2 project bagus yaitu di :

  • https://github.com/ncerminara/envysea-codeigniter-2.0.3-authentication#readme
  • dan http://bkendall.biz/2011/07/codeigniter-starter-project/ 
untuk crud (create, read, update dan delete) data juga sudah ada grocery crud (http://www.grocerycrud.com/ ) , dengan grocery ini masalah inti penampilan data beres.

untuk codeigniter-starter-project, awalnya tidak berhasil memanggil css, namun setelah saya edit file asset.php pada baris ini maka masalah selesai

$config['asset_dir'] =  'http://localhost/opensource/ci-starter2/assets/';

saya juga ganti htaccess menjadi spt ini

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]