Python and NetBeans
Python and NetBeans
Jython ( http://www.jython.org )
Python ( http://www.python.org )
Python and NetBeans
Jython ( http://www.jython.org )
Python ( http://www.python.org )
Apache Tomcat
Set JAVA_HOME and JRE_HOME:

Start Apache Tomcat
C:\tomcat-6.0.18\bin\catalina run
Users:
C:\tomcat-6.0.18\conf\tomcat-users.xml
<?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="manager"/> <user username="tomcat" password="s3cret" roles="manager"/> </tomcat-users>
Manager
Install on Ubuntu Intrepid Ibex:
sudo apt-get install tomcat6 tomcat6-*
Users:
/etc/tomcat6/tomcat-users.xml
Start Apache Tomcat
sudo /etc/init.d/tomcat6 start
http://tomcat.apache.org/
Java Servlets and JavaServer Pages
C/C++ and NetBeans
NetBeans needs C/C++ compiler, the better option is GCC (GNU Compiler Collection).
On Win32 you can use Cygwin to get it.
On Project Properties you can change the Build options (Debug or Release), add libraries, Plataform, Package type (tar/zip/rpm,deb), Strip Symbols (reduce size of the executable)
Your executable will be on:
\NetBeansProjects\(your project)\build\(Debug or Release)\Cygwin-Windows\
Remember you application depends of cygwin1.dll ( c:\cygwin\bin\cygwin1.dll )
If you compile C files you can disable this depency using “-mno-cygwin” on CFLAGS options on your Makefile
See dependencies of you executable (using cygwin):
objdump application.exe | grep "DLL"
or use Depency Walker
Cygwin
http://www.cygwin.com/
http://www.redhat.com/services/custom/cygwin/
MinGw
http://www.mingw.org/
PHP and NetBeans
Add new PHP Project
Execute SQL
control + 5 (Services)
Databases => New Connection
Chouse your database type and put your database, username and password
Execute SQL Command
Class/Library/Module
Goto menu tools = > Libraries => JavaScript Libraries
Chouse your Class/Library/Module
Now you can add Class/Library/Module in others Projects
Goto project propieties and see JavaScript Libraries
Add your Class/Library/Module
Now check resources folder
You can add PHP Class/Library/Module using “JavaScript Libraries” easy but nasty.