up vote 4 down vote favorite
1
share [g+] share [fb]

I know we've got all of these nice IDEs out there today. With the way that it intelligently finishes your coding for you or checks syntax as you type - it's cool. But.... for those of us who really love to bang out code in a simple editor , is it still possible to do this AND, if so, is anyone?

I am finally migrating over to VS.NET 2008 from VB 6, ASP, VBScript, etc and before that I came from the mainframe world. I am a straight "notepad" developer. I think the VS.NET IDE is nice, don't get me wrong, but I really miss not being able to bang out some good ol' ASP in notepad and copy it over to the test server to see it run.

link|improve this question
feedback

43 Answers

1 2
up vote 12 down vote accepted

It's always possible to bang out code in a text editor - after all, that's how it goes into the compiler. However, the time-cost of working without an IDE rises rapidly as the project becomes more complex. The more work you have to do, the more value you gain by having an IDE manage and collate details for you, particularly when collaborating with multiple colleagues.

I recently went through this transition. I remember the joy of starting with a literally blank slate, and the resistance to learning a new system. I still do small projects without an IDE sometimes, but I wouldn't do anything with more than a few pages or classes without an IDE to help me remember what my member names are and quickly trace function calls back to their source.

Trust me, it's worth it.

link|improve this answer
show 1 more comment
feedback

I work on a Unix box coding in vi.

link|improve this answer
show 3 more comments
feedback

Simple answer: No.

link|improve this answer
feedback

Notepad ? no...

But SciTE can be very helpful for a quick edit

He manages to understand many programming languages

link|improve this answer
show 2 more comments
feedback

Not really, the closest I get to a "simple" text editor any more is Notepad++. About the only time I ever use Notepad any more is if I have to make some configuration changes while remoted into a web server.

link|improve this answer
feedback

There's so many better editors out there now that aren't over the top (Textmate, E-Text Editor, etc...) that there's really no need to code in something so featureless.

link|improve this answer
feedback

Notepad can be useful to test the quickest of html/css snippets (saved as html and loaded into a browser), but even then, Notepad++ or other alternative is likely better and just as fast.

link|improve this answer
feedback

Seems like a lot of you guys are working in the .Net or Java world, but there is far more out there, than just that. Of course do some IDEs also support Python or Ruby or Perl or whatever, but most people I know tend to program all these other languages in "normal" text editors. I actually use (g)vim on Windows and on Linux/Unix, it's one of the first things I install on Windows, just to avoid using notepad.exe, which is horrible.

link|improve this answer
feedback

No, but I use the free PSPad (Windows only) which loads almost as quick and does coloured code and a host of other stuff. This tip from The Pragmatic Programmer has been worth its weight:

Use a Single Editor Well

The editor should be an extension of your hand; make sure your editor is configurable, extensible, and programmable.

link|improve this answer
show 1 more comment
feedback

I heard recently about a university teacher asking students to name files file.cpp.txt to be able to open them in notepad with double click.

link|improve this answer
1  
????!!!???!???!??!!!?? – thomasrutter Apr 14 '09 at 14:17
show 1 more comment
feedback

It is (for C# see e.g. http://blogs.oberon.ch/tamberg/2007-10-17/compiling-csharp-without-visual-studio.html).

After all Visual Studio is just a fancy view on the command line. And we're also using a very simple editor (not Notepad, though).

Regards, tamberg

link|improve this answer
feedback

Not for .NET stuff.

But I've yet to find anything I like better than gvim for writing PHP & Python code.

link|improve this answer
feedback

Yes! A coworker at the last company I worked for actually used "notepad.exe" as his primary IDE. He firmly believed the other options all used too many PC resources.

link|improve this answer
feedback

Not me. IDE's help me code faster due to code completion. win win.

link|improve this answer
feedback

Possible: Yes. Still doing it: Only curmudgeons.

link|improve this answer
feedback

I have had to before, but I wouldn't recommend it.

Notepad + CSC.exe = Quick program in the field.

link|improve this answer
feedback

In college, the Java course I took was instructed using TextPad for Windows. I enjoyed the simplicity of it, and it definitely helps students learn more about a language without auto-complete and other dynamic error checkers. Plus, its very light weight and with syntax definitions, its not as painful as using Notepad. Just add the Java executables to a hot key and you're ready to roll! For simple HTML/CSS modifications, I'll opt for TextPad also.

link|improve this answer
feedback

I trust Reflection based intellisense over my memory.

link|improve this answer
feedback

On occasion, I have written some PHP or HTML using Notepad but the luxuries like automatic indentation, reformatting commands, and even syntax highlighting are too difficult to pass up for all but the simplest jobs.

link|improve this answer
feedback

Depends on the project and the IDE.

For instance when I've used Eclipse for Java, I've tended to use its text editor. When I've used it for Symbian I've tended to use notepad++, and only fired up the IDE when using the emulator (because the devices I was targeting didn't have TRK, so my standard test cycle didn't benefit much from having Carbide running anyway and it's a resource hog).

I'm not massively picky about my text editor, so when the IDE manages everything else, such as with Visual Everything, I tend to just use it rather than fight the power. If I'm writing a quick perl script or a small C program, I tend just to stick to a text editor and the command-line.

That said, I'm picky enough that I wouldn't use actual notepad.exe for anything, unless it was all that's available on the machine. The bare minimum I demand for coding is the ability to highlight a block and tab it left or right.

link|improve this answer
feedback

Anybody who does would be silly.

Simple text editors are great for quick edits. But developing fully functional programs without the aid of any sort of structure, would just be mind numbing. Programmers have enough of a time investment with solving real problems. I use TextPad for easy edits.

link|improve this answer
feedback

UltraEdit, but only for complex editing. Visual Studio is pretty solid.

link|improve this answer
feedback

Yes, if I want to quickly try out an HTML snippet really quickly. I can type out the whole

<html><head><title>test</title></head><body>
...
</body></html>

In about 5s flat so it's not a problem.

link|improve this answer
feedback

I use Notepad to strip formatting sometimes. For example, if I want to copy something from MS Word and paste it into an Outlook message, but I don't want the fonts and formatting to come along with it, then I'll paste into Notepad, select all, copy, paste into the message.

link|improve this answer
show 1 more comment
feedback

I use it. On a computer where I haven't unzipped SciTE yet! Somehow it is like vi (sorry, vi fans, they sure don't compare on power!): you are quite sure to find it.

SciTE is a small, yet powerful editor not needing installation and starting as quickly as Notepad. You can have syntax highlighting or chose to disable it. Very flexible. The above sounds like an ad, but actually you can replace the name with the one of similar editors (Notepad++ and Notepad2 are good, both based on Scintilla too).

IDEs are nice because of some extra features (eg. deep understanding of syntax, thus refactoring and class hierarchy, etc.) but you should have some good, fast and lightweight editor at hand: I won't fire Eclipse to write a small JavaScript test!

link|improve this answer
feedback

I hate tooltips. They get on the way all the time and too often they are giving no additional value. I use Notepad++ with old ASP, but with new ASP I use Visual Studio.

link|improve this answer
feedback

The closest I use regularly is the wonderful TextMate. It's not an ide, but supports "snippets" activated through tab triggers. No IntelliSense, but you can pipe your file through shell commands.

link|improve this answer
feedback

I normally use an IDE for my main development tool but still use notepad++ in conjunction with the IDE for simple edits and search/replaces.

link|improve this answer
feedback

Sometimes... if I am on a client site or whatever and I am using one of their machines to make some quick code changes on the fly.

link|improve this answer
feedback

Yes, this laptop has a new hard drive and I wrote a couple HTML pages, a style sheet and a JavaScript file all in NotePad since I hadn't yet installed Multi-Edit.

It wasn't pleasant, and I probably could have installed it and saved an equivalent amount of time.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.