ide

how to create a project in turbo c++ 16 bit compiler

I want to create a project file turbo c++ and link the files in this project. Although i have tried for it but i found only one option that to open a project no option to create a new project. So How to do that Thanks in advance. Saurabh Mehta. ...

Visual Studio option - Stop on any project error

Is there any way in VS that I can make it stop building the solution if ANY project in the build step fails to build? I have a solution that has cca. 100 projects. I want build process to STOP if it encounters build error on any of the projects. Failing build means that there were build errors while building that project. ...

What is the best Java IDE?

I'm new to java development and have started out using eclipse, what other tools should I be looking at? I'm coming from TextMate and Vim so its a big change, any advice? ...

Change Subversion creds in Eclipse / Pydev

In Eclipse + PyDev + Subclipse, how can I change the user who is accessing the subversion repository without having to re-checkout? ...

IDE for C Programming?

Can any one suggest me a Best IDE for C programming ( With auto completion feature)? ...

Is it possible to auto-complete parentheses or quotation marks in emacs?

I've used XCode and Netbeans, and I've noticed that they have a feature to automatically complete quotation marks or parentheses (and I assume that other IDEs often do this also). I don't know what the name of this feature is, but is there any way to do this in Emacs? For example, when I type printf(" I would like it to automatically...

Cucumber IDE for feature writing with autocomplete?

Hi, Is there any Eclipse plugin for writing features for cucumber with autocomplete functionality? I guess that would be good to find and reuse steps from other features. Any ideas? ...

CodeBlocks MinGW on XP noob. Is it possible to overwrite the same exe every time I compile? Further explanation inside...

I have looked through both the CodeBlocks and MinGW FAQ and wiki to no avail. As stated above I am a noob. I want CodeBlocks to act like a Unix compiler in that it overwrites a single output file every time it compiles unless told to do otherwise. In Unix: [cc example.c] -> [a.out], [cc example2.c] -> [a.out]. If I want to save the ou...

Why do some programmers hate IDEs or think programmers that use IDEs are bad programmers?

When I investigated ruby/rails, I found this philosophy/opinion to come up over and over again. People in the PHP world often think the same way as well. The thing is - I don't get it. I use an IDE, and frankly, I would refuse to work without it - i.e., in a text editor with basic syntax highlighting. There are just so many great feat...

New comparison of Eclipse and NetBeans

Since this question staled a year and a half ago, has there been some significant development on these projects that would warrant a re-evaluation of the answers? The majority opinion seemed to be that NetBeans was better for JAVA GUI development or JavaScript, otherwise Eclipse was equal or better. ...

Mac OS X PHP IDE with Git support

Can anyone suggest a PHP IDE (preferably built in Cocoa/ Objective-C, not Java) that also has native support or an excellent plugin for Git? I am currently using NetBeans but I am not happy with the speed and the patchy Git plugin. I have previously used Zend Studio for a long time but that had stability issues. ...

Recommended IDE's for pure web apps (HTML5, etc.)

I'd like to play around a bit with pure web app programming. Coming from a VB6 background, some features I'd like are: step-by-step debugging Visual UI design If we decide to do our next app as a web app, price isn't terribly important (a better IDE being more productive and pleasant to use). Update: I'm looking for something like ...

Emacs and intel debugger

Hi, A coworke integrated the gdb into my emacs, so that i can single step through my code and it gets shown where i am in the emacs window. How do i do that with idb? Unfortunately i cannot remember what we did then, so a walkthrough would be appreciated. cheers ...

I am creating a javascript object based upon a json string, I want my IDE to offer intellitext to its properties

I could find out the object properties by looking at the source json string - however is there anyway to do this using an IDE and intellitext ? Currently I am using webstorm with my live deploy - but to no avail the object properties are not revealed ... ...

Which Python IDE can run my script line-by-line?

I wouldn't call myself programmer, but I've started learning Python recently and really enjoy it. I mainly use it for small tasks so far - scripting, text processing, KML generation and ArcGIS. From my experience with R (working with excellent Notepad++ and NppToR combo) I usually try to work with my scripts line by line (or region by ...

Does NetBeans have any "collapse all" shortcut for open directories in the navigator view?

NetBeans has a helpful (to me anyway!) feature under the "Views" menu, called "Synchronize Editor with Views". As the name suggests, toggling this on will cause the navigator view to jump straight to a file when it's opened in the editor. I generally prefer this to the normal "Ctrl+Shift+1" shortcut for manually jumping to a file. How...

Is there any good intellisense tool for coding Ruby?

Hello guys On Linux environment, is there any good intellisense tool, like an IDE you use for coding Ruby on Rails? And what about Windows environment, any really good smart editor? thank you ...

How to view .xml output on the go? (Android App-building help)

Hi, I'm a newbie Android App Developer, also new with xml. I was just wondering if there is an easier way to view xml output other than using eclipse to compile the android application (java + xml) and then see output in the android emulator. Just asking because it takes forever to check my UI through eclipse IDE to turn on android emul...

Are there any IDEs with HTML5 IntelliSense support?

Are there any tools that show HTML5 tags inside IntelliSense? What tools do you use to work with HTML5? ...

Javascript IDE that forces strict typing, semicolons, and validates code like JSLint (or: that adds the advantages of a compiler to Javascript)?

I'm looking for ways to make developing big server sided Javascript (I'm working with Node.js) projects a whole lot easier. Basically, the problems I'm facing with Javascript is that I'm not being warned when I make a syntax error, or when I mix different kinds of object types in the same arrays/variables etc. I was using haXe to solve...