ide

Javadoc for J2EE in Netbeans not showing

For all the javax* classes Netbeans says javadoc not found. Anyone know how I can get javadoc to show? ...

ColdFusion IDE? Visual Studio Plugin?

I just took a web contract to fix up an existing site written in ColdFusion. I haven't had a chance to peak at the code yet, but the site itself is riddled with problems. Anyway, I've never used ColdFusion before, and barely know anything about it. Tutorials shouldn't be too hard to find, but what about an IDE? Is there a nice Visual Stu...

Best toolchain/IDE for ARM Cortex-M3 mcu?

There are quite a few IDE available for ARM, which one's good? What's your experience with anyone of them? Keil™ RealView® MDKARM IAR Systems Embedded Workbench® CodeSourcery G++ GNU Code Red Technologies Red Suite Code Composer Studio™ IDE WinARM anymore? ...

Nested struct viewer for Linux Kernel

I am in the process of tackling the Linux Kernel learning curve and trying to get my head round the information stored in nested struct specifically to resolve a ALSA driver issue. Hence, I am spending a lot of my time in the source code tracing through structures that have pointers to other structures that in turn have pointers to yet ...

JSP pages in Eclipse do not indent?

I've read this article describing how to format jsp's in eclipse. I have WTP installed and the jsp tags are colored. However, there is no indenation on the html (i.e. <html> and <body> etc. are all at the same level). I've tried Source -> Format with no success. Is this a bug? ...

Eclipse: C/C++ Plugin Download Link?

I'm downloaded the Java EE version of Eclipse 3.5.1. Can I now use it to edit C/C++ with the proper plugin? I went to Help >> Install New Software but I don't know which URL to use to get the C/C++ plugin. I can't find it on the Eclipse website either. ...

iPad as programming platform--What future do touch screens have with programming?

I read this question a few weeks ago. I thought about it when I first saw the iPad. Do you think it would be possible to set up a development environment on the iPad? I think it would be awesome if there was an InstantRails App, a Django App, maybe even 280 North's Atlas could run on it :). Would you develop using an on-screen keyboard...

Xcode window organization tips?

I'm a fairly recent convert to Xcode and OS X. Even though I have two large monitors it feels likes I spend far to much time hunting for windows. I typically have at least the following windows open: The file I'm editing. A matching header file. Another source file. API Documentation. A browser window. It seems like whatever I want ...

U2 Basic Developer Toolkit

Does anyone here run the Basic Developer Toolkit with UniData 7.1? Even though the IDE was released with UniData 7.2, I was given the impression that it works fine with 7.1. However, when opening up "Database Files" in an account, every single DIR type file gives a loading error dialog and doesn't register any records in them. Are chan...

IDEs and DVCSs that support remote working directories?

Our web development shop is divided into two groups, at the moment: LAMP developers and Windows developers. The LAMP folk are currently using Bazaar for version control, and doing development on a remote development server. Both the shared repositories and the individual checkouts are on said server, so checkouts usually look something...

Visual Studio Pro 2008: Equivalent of Eclipse's member list?

In Eclipse, when you are viewing a class (such as Java), there is a window available to list all the fields and functions of that class. Is there an equivalent for Visual Studio 2008 Pro, for C# (XNA)? (I'm looking for an easy way to locate and jump between functions. Is there a better way to do this in VS?) ...

wxPython autocomplete

What editors or IDEs offer decent autocompletion for wxPython on Windows or Linux? Are there any? I tried several and support is either non-existant or limited. ...

Learning C - Want to use visual studio

I am trying to get cracking with my C module at uni, however I can't seem to get an IDE to work. I want to use Visual Studio though I guess I should be using Unix (I just don't understand Unix enough yet). How in Visual Studio 2008 do I set up a project to work with C? I have used Visual Studio for VB.net before and it was a doddle to u...

A text editor which allows configuration of text to select when it is double clicked

From my experience, most text editors will, when double clicking a block of text, break the selected text by dashed lines but not for underscores. E.g: Double click the word 'text' of this sentence with underscores: this_text_block Double click the word 'text' of this sentence with dashes: this-text-block However, in different si...

Eclipse: Create Hello World app in C

This seems super basic, but I'm having trouble finding documentation online to explain it. I have the Eclipse IDE for C/C++ 3.5.1. How can I create a simple Hello World program in C? (I have also downloaded cygwin.) Many tutorials online make reference to "Managed" and "Simple" types of projects, but I can't find that anywhere. Was that...

What vim plugins mix results in this interface

I saw this VIM UI and thought it was awesome and now I want it. Anyone know what plugins the author is using? http://werkzeug.pocoo.org/wiki30/files/wiki30.mp4 ...

Easiest way to get GTK+ to run in Windows with IDE

Hello! I've been trying to get GTK+ to compile using Dev-C++ or Code::Blocks IDE, but I cannot get either to work. I wondered if there's someone that knows an IDE where GTK+ is installed as part of the IDE, and it just works? Its got to be running under windows. ...

Visual Studio: Create a Hello World app in C?

How can I create a basic C app in Visual Studio, be it 2010 Ultimate or 2008 Professional? I have searched through the project templates, and can find plenty for C++, but none for C. (I'm hoping that the compiler and debugger will be built in.) ...

Visual Studio 2010 Formatting

I have plenty of experience with Eclipse, and now I'm trying out Visual Studio 2010. I find its formatting somewhat counter-intuitive. Here are some things I'm trying to figure out: Is there a way to select all text and format/indent it properly, like SHIFT+A SHIFT+I in Eclipse? Why is it that when I type a line like if (n == 0) {, as ...

Finding division by zero in a big project

Recently, our big project began crashing on unhandled division by zero. No recent code seems to contain any likely elements so it may be new data sets affecting old code. The problem is the code base is pretty big, and running on an embedded device with no comfortable debug access (debug is done by a lot of printf()s over serial console,...