2007-11-03

Requested CDs

I have requested a NetBeans CD from Sun and two CDs with the new Ubuntu.
Happily I found that The NetBeans CD arrived the past days, faster than expected, because the CD entered Prahova Post Office on 2007-10-25 and was in my mail box on 2007-10-30, while on the site they said they send the CD on 2007-11-01, something like I received it 2 days before they send it, that's quite a speed don't you think?
On the other hand Ubuntu is on the way (approved and sent to the shipping company on 2007-10-15). Because it may take from 4 to 6 weeks for delivery, I may expect it will arrive somewhere between 2007-11-11 and 2007-11-25.

I've tested NetBeans 5.5.1 on Linux (actually Ubuntu) and it is amazing! It makes from java developing a pleasure and also supports C/C++ developing if you install the required components.

Here is the HelloWorld java source code:
/*
* HelloWorldApp.java
*
* Created on November 1, 2007, 10:12 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/

package helloworldapp;

/**
*
* @author xunrage
*/
public class HelloWorldApp {

/** Creates a new instance of HelloWorldApp */
public HelloWorldApp() {
}

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("Hello world!");
}
}

And here is the HelloWorld C source code:
/*
* File: test.c
* Author: xunrage
*
* Created on November 2, 2007, 2:46 AM
*/

#include
#include

/*
*
*/
int main(int argc, char** argv) {

printf("Hello world!");
return (EXIT_SUCCESS);
}
Remember that in Ubuntu, after you've installed the C++ extention for NetBeans (netbeans-c++-5_5_1_ul-linux.bin) you also should install g++, the C++ compiler (sudo apt-get install g++).

Niciun comentariu: