ide

Clojure Development: IDE or REPL?

I've been using Clojure for a little while and want to create some projects that are bigger and more complicated than toys. I've been using Java for the past few years and have become accustomed to what IDEs do for me -- compile lots of classes, package them up in jars, create batch files for users to start them with. When I look at exa...

Adding Delphi 6 third party component to Delphi 2010?

Hi, I have a few Delphi 6 third party components which I need to add to Delphi 2010 to begin my migration. Is it possible? The interface seem a lot different and I can't seem to find a way to do this? This help... My components: DBGridEasy, TSerial, Varian Async32. Thanks a lot. ...

What is ideal software setup for programming web applications (editing php, javascript, xhtml, css) ?

I've been developing web applications for 2 years now, and have been into simpler web pages for many more. I've been using Notepad, then ConText, then Crimson Editor (was my favorite for a long time) and I've been trying with Notepad++. I have NetDrive setup so I can edit and save files directly on the ftp server. On Firefox I use the We...

IDE For Objective-C On Linux

Hello, I'm learning Objective-C and i would like to know where i can found a IDE for Objective-C on Linux? ...

Is there an IDE or plugin which allows separation of code from layout?

I'm looking for something like CSS for code. Does it exist either in an IDE, or as a plugin? The compiler often doesn't care how many more spaces or tabs or newlines you have between tokens in your code, but people do care. I want to specify in my "style sheet" that braces always live on a seperate line, commas are always followed by ...

Running Clojure Box in Windows 7

Has anyone had a problem running Clojure Box in Windows 7? I am trying to run a fresh install of Clojure Box on a fresh install of Windows 7 Professional (64 bit). Java version on system is 1.6.0_16. emacs starts up but produces the following error messages: Warning (initialization): An error occurred while loading `~/.emacs': ...

Alternatives to MS Visual Studio .NET

I've been working mostly with MS Visual Studio .NET tools and technologies, but started to wonder out of curiosity if there are alternatives to it, especially open source ones, since it seems like for every payed products there are free open source alternatives. ...

Create a Debugging IDE for proprietary language

I am using a rather obsure, proprietary langauge called WIL/Winbatch that had an awful IDE (winbatch studio). I would like to develop an alternative environment; however, without the ability to set breakpoints, step, and examine variables, there is really no point. How does one begin even researching how to implementing a debugger for ...

Objective-C And MetroWerks C/C++ IDE

Hello, I'm learning Objective-C and my friend have a real Macintosh IIci, that uses a Mac System 7(specifically 7.5.5 with a 68k processor) and I've installed Metrowerks C/C++ IDE(I think it's the version 1, but I don't know), but i didn't tested it, then i want to know one thing: It's possible to develop in Objective-C using NSObjects/...

PHP Web development IDE

I am coming from a C++ background and am used to testing code by setting breakpoints, viewing variables in the debugger etc. I am now doing web development (using the symfony framework). what I really miss is not being able to set a breakpoint when a particular action is performed (e.g. a url clicked etc). Is there a FREE (GPL or other ...

Develop a Form Designer Application

I have been tasked to create a form designer application in Windows Forms. The application will be used to layout "controls" on a page. The controls would most likely be images that can be resized and repositioned within the form. The result of the designer would be a file with the relative positions of the images or "controls" on the...

Is there a Flex IDE/development env that works on Ubuntu 64bit?

Is there a good Flex IDE/development env that works on Ubuntu? Where can this be found? ...

Is there a *very* lightweight IDE for .net?

Does anyone know of a good lightweight IDE for .net? Often times I open VS and create a new project just to see if a line compiles, to test a quick method, or something trivial like that. Essentially what I want is an app similar to notepad I can open, have the basic class structure already defined, and be able to compile/run it. It wo...

Netbeans Source Format: Can It Recognize Other Stuff? (For RoR Views)

I am in love with Netbeans Source->Format feature. Is there any way to get it to recognize stuff in these blocks <% content_for :style do %> <% end %> as CSS? It would also help for autocomplete. Ditto, of course, for <% content_for :javascript do %> <% end %> blocks. ...

View Errors in Intellij Project

I'm new to Intellij (version 8), I've been using Eclipse. How can I view the warnings or errors for my entire project? ...

What to replace FrontPage with?

I use FrontPage for two different tasks; authoring html help and authoring a couple of websites. The websites don't require a lot of stuff -- they are there to disseminate a bit of information to a couple of small audiences. FrontPage has been quick and easy for these tasks. WYSIWYG is good for these jobs and I like being able to click ...

Making Wing IDE wrap lines on one file

I have one file in my project, (the readme file,) which I would like Wing IDE to display with wrapped lines. Is it possible? ...

What is the best IDE/GUI for my .NET DSL?

Hi folks, As a learning exercise I'm building a basic scientific computation environment based on .NET. I'd like the GUI of the app to be much like matlab, in that I have an interactive window, an objects window and the facility to spawn visualisation windows. Intellisense in my command window would be very nice. It seems visual studio ...

Visual studio 2008 adds inline style instead of changing markup

Hi guys, Visual studio 2008 on dragging (say) a td inside a table adds a inline style named style1,style2, and so on......while this might be good thing for some purposes it is just better to have a style="height:80px;" added to the markup of the TD... is there any way to make VS 2008 not add inline styles and add into the markup of th...

how to debug a gsp page? (no grails, just gsp)

I've tried with netbeans and eclipse, with no luck... (coudn't try IntelliJ idea) I gave a quick look ant the code http://kickjava.com/src/groovy/servlet/TemplateServlet.java.htm and it gives me the impression that .gsp pages are translated to .groovy servlets (groovlets) in memory (I might be wrong)... so perhaps it's not so easy to...