473,396 Members | 1,783 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Survey: What IDEs do people use?

Hi All,

I hope this is not too far off topic here, but I can't think off any place where
it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm particularly
interested to know how widely used are Borland C++BuilderX (on various operating
systems) and Bloodshed Dev-CPP. I'd also like to know what C++ IDE people think
is best for Linux.

Obviously this is not a scientific survey -- I don't have the time or funding
for that. But I'd like to get some rough idea of people's opinions.

Your help would be greatly appreciated.

Jonathan
Jul 23 '05 #1
15 1789
Jonathan Turkanis wrote:
Hi All,

I hope this is not too far off topic here, but I can't think off any place where
it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm particularly
interested to know how widely used are Borland C++BuilderX (on various operating
systems) and Bloodshed Dev-CPP. I'd also like to know what C++ IDE people think
is best for Linux.

Obviously this is not a scientific survey -- I don't have the time or funding
for that. But I'd like to get some rough idea of people's opinions.

Your help would be greatly appreciated.

Jonathan


IF you are looking for a GUI IDE with integrated debugger support,
there are several, but Anjuta (for gnome) and KDevelop (for
KDE, gnome, and several others) are the 2 most often used.
KDevelop in particular is similar to the MS-Visual* IDE's
found on Windows - similar as far as the IDE's GUI style is
concerned.

I haven't used Anjuta in about 2 years, so I can't speak to
its latest features, but I use KDevelop a lot.

Many Linux distros include one, or both, of these IDE's.

Below are the links. Both sites include screenshots
(at the top for Anjuta, and in the left-hand menu-pane
for KDevelop), docs, etc.

http://www.kdevelop.org/

http://anjuta.sourceforge.net/

Regards,
Larry
Regards,
Larry
Jul 23 '05 #2
"Jonathan Turkanis" <te******@kangaroologic.com> wrote in message
news:t4********************@comcast.com
Hi All,

I hope this is not too far off topic here, but I can't think off any
place where it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm
particularly interested to know how widely used are Borland
C++BuilderX (on various operating systems) and Bloodshed Dev-CPP. I'd
also like to know what C++ IDE people think is best for Linux.

Obviously this is not a scientific survey -- I don't have the time or
funding for that. But I'd like to get some rough idea of people's
opinions.

Your help would be greatly appreciated.

Jonathan

VC++. I have never seriously used anything else. I use VC++ because:

1. It is pretty good.
2. I figure that Microsoft is successful partly because its knowledge of the
OS gives it the inside track in other development areas. Using Microsoft's
compiler/IDE/documentation is the closest someone outside Microsoft can get
to an inside track.

--
John Carson

Jul 23 '05 #3
ben
Eclipse with CDT sounds like a nice choice!

ben

"Jonathan Turkanis" <te******@kangaroologic.com> wrote in message
news:t4********************@comcast.com...
Hi All,

I hope this is not too far off topic here, but I can't think off any place where it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm particularly interested to know how widely used are Borland C++BuilderX (on various operating systems) and Bloodshed Dev-CPP. I'd also like to know what C++ IDE people think is best for Linux.

Obviously this is not a scientific survey -- I don't have the time or funding for that. But I'd like to get some rough idea of people's opinions.

Your help would be greatly appreciated.

Jonathan

Jul 23 '05 #4
"Jonathan Turkanis" <te******@kangaroologic.com> writes:
Hi All,

I hope this is not too far off topic here, but I can't think off any place where
it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm particularly
interested to know how widely used are Borland C++BuilderX (on various operating
systems) and Bloodshed Dev-CPP. I'd also like to know what C++ IDE people think
is best for Linux.

gcc + gdb + emacs + man

--
espen
Jul 23 '05 #5
Espen Myrland wrote:
"Jonathan Turkanis" <te******@kangaroologic.com> writes:

Hi All,

I hope this is not too far off topic here, but I can't think off any place where
it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm particularly
interested to know how widely used are Borland C++BuilderX (on various operating
systems) and Bloodshed Dev-CPP. I'd also like to know what C++ IDE people think
is best for Linux.


gcc + gdb + emacs + man


SECOND!
Jul 23 '05 #6
Hi,

KDevelop on Linux.
VC++ on Windows, but only if I have to.

Fabio
Jul 23 '05 #7
Jonathan Turkanis wrote:
Hi All,

I hope this is not too far off topic here, but I can't think off any place
where it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm
particularly interested to know how widely used are Borland C++BuilderX
(on various operating systems) and Bloodshed Dev-CPP. I'd also like to
know what C++ IDE people think is best for Linux.

Obviously this is not a scientific survey -- I don't have the time or
funding for that. But I'd like to get some rough idea of people's
opinions.

Your help would be greatly appreciated.

Jonathan


I have a lot of hope for the future of KDevelop, but right now, it doesn't
behave in a way that enhances my personal development preferences. It also
has a serious problem talking to my SVN server, and does not yet integrate
well with QT4-rc1, so for now I use Emacs, bash, qmake (and/or autotools),
svn commandline and gdb(I'm just learning). I'm beginning to view the
Unix-like environment as an IDE. Not quite in the sense of those provided
by Borland, Eclipse, VC++, etc., but once the tools are understood, the
collection provides almost the same convenience as a more unified IDE, with
far more flexibility.

I've been spending a good bit of time studying the code base for KDevelop,
and hope to contribute to it in the future. It proved very useful to me in
the firest weeks working with C++ because it set up my header, and
implementation files in a way that worked, and also set up the build
environment. I was then able to examine what it produced in order to learn
how it was done.

The highmark in IDEs I have used is Borland's JBuilder. I know it's not
C++, but after using JBuilder, I can see the limitations in any of the C++
IDEs I looked at. I downloaded VC++ 2005 beta, and was willing to provide
feedback, but it's so broken as to be unusable.
--
If our hypothesis is about anything and not about some one or more
particular things, then our deductions constitute mathematics. Thus
mathematics may be defined as the subject in which we never know what we
are talking about, nor whether what we are saying is true.-Bertrand Russell
Jul 23 '05 #8
John Carson wrote:
VC++. I have never seriously used anything else. I use VC++ because:

1. It is pretty good.
2. I figure that Microsoft is successful partly because its knowledge of
the OS gives it the inside track in other development areas. Using
Microsoft's compiler/IDE/documentation is the closest someone outside
Microsoft can get to an inside track.


Oh, but, but, but...Oh, nevermind.
--
If our hypothesis is about anything and not about some one or more
particular things, then our deductions constitute mathematics. Thus
mathematics may be defined as the subject in which we never know what we
are talking about, nor whether what we are saying is true.-Bertrand Russell
Jul 23 '05 #9
On Sun, 12 Jun 2005 13:36:34 -0400, "Steven T. Hatton"
<ch********@germania.sup> wrote:
The highmark in IDEs I have used is Borland's JBuilder. I know it's not
C++, but after using JBuilder, I can see the limitations in any of the C++
IDEs I looked at. I downloaded VC++ 2005 beta, and was willing to provide
feedback, but it's so broken as to be unusable.


You know that Borland is dropping JBuilder and moving to Eclipse now?

Go to: http://tinyurl.com/dodlt and search in the current page for
"Eclipse".

--
Bob Hairgrove
No**********@Home.com
Jul 23 '05 #10
Bob Hairgrove wrote:
On Sun, 12 Jun 2005 13:36:34 -0400, "Steven T. Hatton"
<ch********@germania.sup> wrote:
The highmark in IDEs I have used is Borland's JBuilder. I know it's not
C++, but after using JBuilder, I can see the limitations in any of the C++
IDEs I looked at. I downloaded VC++ 2005 beta, and was willing to provide
feedback, but it's so broken as to be unusable.


You know that Borland is dropping JBuilder and moving to Eclipse now?

Go to: http://tinyurl.com/dodlt and search in the current page for
"Eclipse".

--
Bob Hairgrove
No**********@Home.com


That's a shame. I like JBuilder far more than I like Eclipse. I believe
part of the problem Borland is facing is that Java is designed in such a
way to make it relatively easy to provide many of the features that used to
distinguish JBuilder from other tools. But I haven't done any Java coding
in over a year, so I'm a bit out of the loop on the current state of
affairs.
--
If our hypothesis is about anything and not about some one or more
particular things, then our deductions constitute mathematics. Thus
mathematics may be defined as the subject in which we never know what we
are talking about, nor whether what we are saying is true.-Bertrand Russell
Jul 23 '05 #11
> I'd like to get some sense of how widely used certain IDEs are.

I have been an Emacs user, if not exactly an enthusiast, for 15 years or
so. Last week I "upgraded" my Debian Linux box and the Emacs
installation has been somewhat trashed. So I thought to myself, what
better opportunity to look at some of the more 21st-century IDEs.

Yesterday I installed KDevelop (version 3.2, from the Debian packages).
It looks OK; there's obviously a learning curve, but something that is
too quick to learn may turn out to be superficial in the long term. I
was not unimpressed and imported one of my current projects. It seems
happy to let me write my own Makefiles and doesn't "get in the way" of
the underlying tools.

BUT... then it crashed. I clicked OK on a preferences dialog and boom,
the window was gone. That's not acceptable; Emacs has never done that
to me.

So I'm not sure what to do next. Maybe this thread will throw up some
ideas.

--Phil.
Jul 23 '05 #12
I use Visual C++ on windows. Mostly because I don't want to deal with
the full beast that is MFC programming. Programming is only a hobby
for me so I'd rather use the wizards.

Jul 23 '05 #13
BUT... then it crashed. I clicked OK on a preferences dialog and boom,
the window was gone. That's not acceptable; Emacs has never done that
to me.

So I'm not sure what to do next. Maybe this thread will throw up some
ideas.


Yeah, I poked around with the linux IDE's and none of the ones I tested
were even close to emacs in terms of functionality or stability.
Anjuta and MonoDevelop are close, I guess. But I still stick with
emacs, or XEmacs on some platforms. VIM if I need it.

I use XCode on OS.X.

Jul 23 '05 #14
Rob
I am waiting for JetBrains (makers of IntelliJ) to do something for the
c++ community. After using IntelliJ for years is has been very
disappointing to have to use VS.

Jul 23 '05 #15
Thanks, everyone!

Jonathan Turkanis wrote:
Hi All,

I hope this is not too far off topic here, but I can't think off any
place where it would be exactly on topic.

I'd like to get some sense of how widely used certain IDEs are. I'm
particularly interested to know how widely used are Borland
C++BuilderX (on various operating systems) and Bloodshed Dev-CPP. I'd
also like to know what C++ IDE people think is best for Linux.

Obviously this is not a scientific survey -- I don't have the time or
funding for that. But I'd like to get some rough idea of people's
opinions.

Your help would be greatly appreciated.

Jonathan

Jul 23 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
by: AgustinD | last post by:
I'm looking for a very-good-lot-featured PHP IDE, i've found a lot of IDEs that support php syntax, but i can't find the best or the ide that has all the features to satisfy a professional PHP...
1
by: GTF | last post by:
PHP Web Survey Idea.. I have been given an opportunity to create a web based survey. This is a fairly lengthy survey of 60 pages on paper (various multiple choice and free form). These are...
8
by: S.Marion | last post by:
Hello, We are interested in programmers' experiences of programming languages supported by managed runtimes (including but not limited to Java, C#, etc). In particular, we are interested in bugs...
1
by: Nico Baumgarten | last post by:
Dear Madam/Sir, You are invited to participate in an international research study. This research project is headed and led by Cambridge student Nico Baumgarten. What is it all about? It is a...
8
by: Marek Lewczuk | last post by:
Look at this: http://www.zend.com/images/survey/14.gif I belive that there is only one reason why most of people are using MySQL - it has native, very easy to install version for windows. ...
0
by: Joerg Rech | last post by:
Dear software practitioners, consultants, and researchers, we are currently conducting an international survey about architecture and design patterns. Our goal is to discover how familiar people...
0
by: Joerg Rech | last post by:
Dear software practitioners, consultants, and researchers, we are currently conducting an international survey about architecture and design patterns. Our goal is to discover how familiar people...
0
by: pierreduez | last post by:
Hello, I am a Ph.D. candidate at the University of Toronto, doing my research in conjunction with IBM Canada through the Centre for Advanced Studies (IBM CAS). Part of my research involves...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.