Skip to main content

Get Ozeki Message Server Develover Code for FREE!

Get Ozeki Message Server Develover Code for FREE!
Mmmm, Dapet software seharga USD 3549, hampir Rp. 35 juta, secara gratis? diambil ngga ya?
Lumayan, buat ngerjain Tugas!
Sebenarnya cuma ngirim email balasan, siapa tahu direspon. Ternyata bisa juga dapat gratis dengan alasan "Study". Email ini sudah lama didapat, tapi karena masuk ke Bagian spam baru nyadar sekarang.



Re: Ozeki Message Server - technical support 2008.02.24. 17:57
...
Ozeki Informatics Ltd. <info@ozeki.hu>
...
AddTuesday, February 26, 2008 6:10:49 PM
To:om4gus@telkom.net
Cc:jolan.pongracz@ozeki.hu; Erzsebet.Savanya@ozeki.hu; Erzsebet.Savanya@ozeki.hu

Dear Mr. Oki Agus Muttaqin,

We can provide a 60-day developer code. It gives you all functionality and you can create your final project. At the end of the code it will change for trial version. Please write us when we can send your code for 60 days.

Best Regards,

Erzsebet Savanya
sales manager

Ozeki Informatics Ltd.
1094 Budapest, Viola u. 20-24/B.
Tel: (36 1) 371 0150
Fax: (36 1) 371 0151
E-mail: info@ozeki.hu
Web: http://www.ozeki.hu
*****************************

>
>I already create a review about your software in my blog, om4gus.blogspot.com in http://om4gus.blogspot.com/2008/02/ozeki-message-server-sms-mms-server.html. But it is in Indonesian because it's my native language. I still learn your software for my study, so can you send me you developer version?
>
>----- Original Message ----
>From: Ozeki Support <info@ozeki.hu>
>To: "om4gus@telkom.net" <om4gus@telkom.net>
>Sent: Wednesday, February 20, 2008 3:09:05 PM
>Subject: Ozeki Message Server - technical support
>Dear Sir/Madam,
>Seeing that you downloaded our Ozeki Message Server software some days ago, we
>would like to inquire about your experience and offer our help if need be.
>We appreciate any feedback about our products, so feel free to share your
>experience related to the installation, configuration, testing or any
>other aspect of the software.
>Also, we are happy to provide information if you have questions, and we
>offer you guidance and advice to help you make the best use of the
>software.
>You can contact us at the following email address: info@ozeki.hu
>Best Regards,
>
>Mr. János Aranyász
>customer support
>Ozeki Informatics Ltd.
>1132 Budapest, Victor Hugo u.. 18-22.
>Tel: (36 1) 371 0150
>Fax: (36 1) 371 0151
>E-mail: info@ozeki.hu
>Web: http://www.ozeki.hu
>*****************************

Comments

Popular posts from this blog

KISS: Complete Ubuntu Server Configuration

The Simplest way to install and configure our Ubuntu Server Edition. With this step-by-step manual instalation, we can configure Network, Internet, APT instalation source, XAMPP for Linux, Apache Web server, ProFtpd Ftp Server, PHP, MySql Database Server, Samba file sharing, Squid proxy server. A. Network And Internet Configuration 1. Intall Ubuntu Server Edition, I prefer using 8.04 LTS, a stable build with long time support, even better than the newer ones, in my opinion. Login as root or use this command to become root for user in sudoers list. # sudo su 2. Now, Change the hostname # pico /etc/hosts 127.0.0.1 localhost //Don't change this 192.168.1.12 hercules //Change with your ip address and hostname ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts 3. Make configuration for network interfaces # pico /etc/network/interfaces # This file describes the network interfaces available on your s...

JarMaker & j2Exe: Membuat Executable Aplikasi Java

Lupakan mitos java tidak bisa dijalankan secara langsung. Jangan percaya kalau ada yang bilang java tidak bisa dibuat menjadi aplikasi exe. Kuno kalo masih menggunakan file jar saja atau bahkan file class untuk hasil building aplikasi java. Cobalah untuk sedikit berimprovisasi membuat aplikasi java menjadi exe, hal yang tidak bisa dilakukan oleh tools yang disediakan jdk, bahkan netbeans 6 saat ini. Hasil binary compiler java berupa file class, yang dijalankan dengan perintah java namaclass. Jadi paling tidak untuk menjalankannya harus melalui command prompt, atau yang sedikit kreatif dengan membuat shortcut yang diarahkan ke java.exe dengan parameter nama class yang dipanggil, lengkap dengan pengubahan icon sesuai dengan aplikasinya. Sun sendiri mengembangkan file arsip kompresi jar, mirip dengan format zip, dengan tool yang disediakan di jdk-nya,untuk menghasilkan sebuah file yang berisi seluruh class yang dibutuhkan, sehingga dapat dilakukan pemanggilan dengan class yang pertama...

Pembuatan PDF di PHP dengan FPDF dan HTML2FPDF

Untuk membuat pdf dengan menggunakan php, kita bisa menggunakan fpdf yang berbasis class. Sedangkan html2fpdf digunakan untuk mengubah html menjadi pdf. Dengan hanya menggunakan fpdf, kita harus menentukan semua hal yang mengatur tampilannya berbasis code sesuai dengan aturan dan fungsi yang disediakan class tersebut. Dengan menggunakan html2fpdf, kita cuma perlu membuat sebuah file html dan tampilannya langsung diubah menjadi sebuah file pdf, tentu dengan beberapa keterbatasan dan perubahan tampilan. Saat ini, fpdf terbaru pada versi 1.6 sedangkan html2fpdf versi 3. Instalasi: + Ekstrak file fpdf dan html2fpdf. Sebenarnya html2fpdf merupakan inheritance dari class fpdf, tapi class di fpdf yang disdertakan di paket html2fpdf telah dimodifikasi dari aslinya sesuai dengan kebutuhan konversi tersebut. Class original dari fpdf akan kita pakai untuk pembuatan pdf secara manual, bukan dari html. + Ganti nama file fpdf.php misalkan menjadi fpdf16.php. Karena untuk bebrapa versi instalasi php ...