Friday, January 28, 2011

Remove Header in blogspot

Some people doesnt like blogger header to appear in their blog so i have a trick to hide it.

Put the CSS

#navbar-iframe { display: none !important;}

before  /* Variable definitions

Thursday, January 27, 2011

JAVA and NetBeans IDE

Java is a programming language originally developed by James Gosling at Sun Microsystems (which is now a subsidiary of Oracle Corporation)
NetBeans IDE is a  free, open-source Integrated Development Environment for software developers. Earlier Netbeans is introduced for Java but now it supports all the tools you need to create professional desktop, enterprise, web, and mobile applications with the Java platform, as well as C/C++, PHP, JavaScript, Groovy, and Ruby.
NetBeans provides a host of features including syntax highlighting, project support, code navigation, unit testing, and code completion. The code completion features save a lot of time of coders. NetBeans provide well organised Documentation, Training and Support to its users.
Download Link http://netbeans.org/downloads/
NetBeans supports: NetBeans Platform SDK, Java SE, JavaFX, Java Web and EE, Java ME, Java Card™ 3 Connected, Ruby, C/C++, Groovy, PHP, GlassFish Server Open Source Edition and Apache Tomcat.
To create an IDE project:
  1. Start NetBeans IDE.
  2. In the IDE, choose File > New Project (Ctrl-Shift-N), as shown in the figure below. 
  3. In the New Project wizard, expand the Java category and select Java Application as shown in the figure below. Then click Next.  
  4. In the Name and Location page of the wizard, do the following (as shown in the figure below):
    • In the Project Name field, type HelloWorldApp.
    • Leave the Use Dedicated Folder for Storing Libraries checkbox unselected.
    • In the Create Main Class field, type helloworldapp.HelloWorldApp.
    • Leave the Set as Main Project checkbox selected.
  5. Click Finish.
  6. To run the program:
    • Choose Run > Run Main Project (F6).