Page 3 of 3

Re: IDE

Posted: Fri Feb 17, 2012 4:52 pm
by qeemat
Eclipse is the best IDE for these languages . Also available other IDE like Aptana studio and Net beans

Re: IDE

Posted: Sat Mar 10, 2012 12:36 am
by Hasib
I use ideone.com
the online compiler :)
dont need any pc :)

Re: IDE

Posted: Sun Jan 13, 2013 12:59 am
by leonardo shawon
for Java, i usually use dr java. but for a large project, NetBeans usually works well. Eclipse is good for java as well.

Re: IDE

Posted: Sun Jan 13, 2013 8:47 am
by nafistiham
I also use ideone.com. it's easier to save and sort.

Re: IDE

Posted: Mon Jan 14, 2013 1:32 am
by kfoozminus
code::blocks, still! ;)

Re: IDE

Posted: Sun Jan 05, 2014 6:00 pm
by mission264
codeblocks/geany

Re: IDE

Posted: Thu Jan 09, 2014 1:49 am
by *Mahi*
My favorite one would be gEdit.
Though not an IDE by the purest definition, it enables personalization to a great extent with external tools and snippets :D for example, assigning a shortcut to the following external tool code you can make a "build and run" option-

Code: Select all

#!/bin/sh
g++ ${GEDIT_CURRENT_DOCUMENT_NAME%} -o ${GEDIT_CURRENT_DOCUMENT_NAME%.*}
if [ -f ${GEDIT_CURRENT_DOCUMENT_NAME%.*} ];
then
    gnome-terminal –working-directory=$GEDIT_CURRENT_DOCUMENT_DIR -e "bash -c \"./${GEDIT_CURRENT_DOCUMENT_NAME%.*}; read line;\"" &
fi