Skip to main content

Posts

Aplikasi Isi Pulsa Dengan Koneksi Soket

Pada pengerjaan tugas akhir ini akan dipelajari bagaimana merancang dan membangun aplikasi client – server dengan menggunakan beberapa teknologi yaitu : PHP, MySQL, dan J2ME. Secara garis besar, arsitektur aplikasi yang akan dibangun dapat digambarkan sebagai berikut: - koneksi database setelah terkoneksi ke database engine MySQL, perintah – perintah yang ada di MySQL dapat dijalankan secara remote / lokal dengan PHP. - Fungsi Internal Fungsi internal ini diantaranya meliputi fitur utama dari aplikasi pengisian pulsa mobile. yaitu : cek saldo, tambah saldo, transfer saldo antar akun, dan tentunya transaksi pembelian pulsa. - Fungsi H2H (Host to Host) Aplikasi ini dibangun dengan membeli stok pulsa dari 3rd party supplier yang menyediakan layanan host to host (h2h). Layanan h2h adalah layanan yang menawarkan transaksi pembelian pulsa melalui jaringan tcp/ip. - Soket Servis & Koneksi Soket Di sisi server, soket servis selalu standby menunggu client yang mengirimkan sejumlah paket d...

Threads in Actionscript 3 (AS3)

by Alex Harui @ blogs.adobe.com . January 1, 2008 Every once in a while, someone decides they would like to see threading or background processing in Actionscript. While the underlying Flash Player and Operating System use threads, the execution model for Actionscript does not. For those who don’t know, ‘threading’ is essentially the ability to have the code do something in the background while the UI is doing something else. Because Actionscript is single-threaded, if you spend lots of time doing heavy computation, the UI cannot be updated while you’re doing that computation so your application appears stuck or effects don’t run smoothly. Similarly, there is no yielding or blocking in Actionscript either. If the next line of code is supposed to run, you cannot prevent the next line of code from running. That means that when you call Alert.show(), the next line of code following that runs right away. In many other runtimes, the Alert window has to be closed before the...

All in One Testing FrameWork

CommonLisp/ CppBuilder3plus/ CppSolaris/ CppUnit/ Delphi/ Dolphin/ Flash/ Forte/ GemStoneSmalltalk/ JSunit/ JUnit/ JUnitTogether/ Jade/ OmPyUnit/ Perl/ PowerBuilder/ PythonFit/ Readme.txt SUnit23/ Shell/ Squeak/ Testfram.doc Testfram.rtf UnitTestJava/ VisualAge/ VisualBasic/ VisualObjects/ VisualSmalltalk/ VisualWorks/ ada/ j2me/ python/ wall/

Cara Setup sebuah Dedicated Web Server Ubuntu

All great websites have a great server behind them. In this tutorial, I’ll show you how to set up a dedicated web server (with Apache, MySQL, and PHP) using that old computer you have lying around the house and some free software. http://net.tutsplus.com/tutorials/php/how-to-setup-a-dedicated-web-server-for-free/

Game Indonesia > Game Buatan Indonesia

SEGERA HADIR... halaman ini diperuntukkan bagi anda para gamers yang ingin memajukan industri games di Indonesia. Tujuannya tentu bukan hanya menciptakan anak - anak bangsa yang konsumtif menjadi pemain games. Tetapi lebih dari itu, kita juga mampu untuk membuat game yang dapat bersaing dengan game - game produksi luar negeri. Kecenderungan para gamers di Indonesia untuk menerima game buatan luar memang sepertinya sulit untuk dibendung. Namun hal itu tidak menyurutkan semangat anak bangsa untuk mulai berkarya melalui industri game digital. Buktinya, indonesia dikejutkan dengan game lokal online seperti Nusantara Online (Nusol), Majapahit Online,dll. Dan baru - baru ini, Steamops - pemenang inaicta kategori video games 2011 yang dibangun oleh tim garuda games, menjadi nominator di ajang yang lebih besar : Asia Pacific ICT Award 2011. So, siapa lagi yg bisa memajukan game indonesia kalo bukan kita sendiri? :) lihat juga: >> Game Steamops : Pemenang Kontes INAICTA 2011 kategori Vid...

PHPSESSID: FireFox Didn't destroy PHP SESSION on browser close

Now i know: PHPSESSID Cookie isn't destroyed with Firefox browser when it's closed. Sessions are supposed to be destroyed when the browser application is closed. Users assume that if they close the browser, the next person to open it will not be able to view web applications they may have authenticated to. A sample php web page is included in 'Troubleshooting' section. To duplicate the problem publish the example code, load the page in FireFox. On first load, session is reported as not there. On reload, it's reported as intact. Then close the browser (choose 'Save & Close'). Open FireFox again. You will see the session has been maintained through a browser restart. This may be handy, but is rather dangerous, as many web applications assume that after the browser is closed, sessionID's are destroyed.

Memasukkan Aplikasi Facebook ke dalam Tab Profile

ditulis oleh : pedox @ kaskus.us Quote: Originally Posted by budakoyot ya elo penggunanya banyak gila ijin bertanya ane baru bikin buat search ampe index gimana caranya biar bisa di taro buat profilbox nih aplikasinya http://apps.facebook.com/get_bingo/ help ya... Gampang Bro !! nih kode nya di taroh di paling atas di index.php jga boleh PHP Code: <?php $kontenbox = "ini adalah contoh konten yang bakal di render di Profile box silahkan masukan konten manapun disini untuk di publikasikan di Profil box"; abis itu di bawahnya di kasih kode brikut PHP Code: $facebook->api_client->profile_setFBML(NULL, $user, 'profile', NULL, NULL, $kontenbox); ?> kira2x kalo di gabung jd begini PHP Code: <?php $kontenbox = "ini adalah contoh konten yang bakal di render di Profile box silahkan masukan konten manapun disini untuk di publikasikan di Profil box"; $facebook->api_client->profile_setFBML(NULL, ...