Posts by Agil

Introduction to JAVA threads part 1

Simple java thread example retrieved from IBM developerWorks 1234567891011121314151617181920public class TwoThreads {     public static class Thread1 extends Thread {         public void run() {             System.out.println("A");             System.out.println("B");         }    }    public static class Thread2 [...]

div in a form or mixing form with div [HTML]

I thought I cant mix between form tag and div tag, I’m talking about HTML. In a basic HTML explanation I thought form tag cant be mixed with other tag than form tag itself. Here’s example of form tag from w3c 1234567<form action="form_action.asp" method="get">   First name: <input name="fname" type="text" />   Last name: <input [...]

debugging php in quick and lightweight environment

Sometimes the debugger, xdebug, zend debugger, aren’t working. So instead debugging, we just spend time to debug the debugger itself. To debug quickly in php we just need to call exit function with variable or any parameter we want. so the script stop and displaying what exactly in the exit parameter. Example, suppose you want [...]

Simple PHP MySQL Blog Example

OK, this is just one of many PHP ad MySQL implementation, it is my course which I’m taking actually. So in this post is what my lecturer gave to us. Lets dive into our first step. OK, no more talk, lets practice. Developing a web application based on PHP and MySQL as its database can [...]

JavaFX is dead?

According to this link Oracle has discontinued further development of JavaFX. Netbeans a free IDE from Oracle, later on its 7 version will not support javaFX, which will be release on march 2011 year based on their roadmap release.

metode numerik

Metode Numerik: Teknik dimana masalah matematika diformulasikan sedemikian rupa sehingga dapat diselesaikan oleh pengoperasian Aritmatika.

Error preverifying class Preverification failed with error code 1

When I using both netbeans 6.7.1 and 6.9 to create some j2me based apps it’s stop compiling with the error code: 12345Preverifying 2 file(s) into E:\Play_On\Java\MyLab\mobileApp\mFaraid3\build\preverified directory. Error preverifying class mfaraid.faraidMIDlet java/lang/VerifyError: E:\Play_On\Java\MyLab\mobileApp\mFaraid3\nbproject\build-impl.xml:470: Preverification failed with error code 1. BUILD FAILED (total time: 0 seconds) So I began investigating which is land me on some [...]