vote up 2 vote down star

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.

flag

41 Answers

1 2 next
vote up 10 vote down check

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|flag
vote up 0 vote down

Yes. And when I'm not programming, I use a typewriter. (I'm not joking.)

I've tried many other editors — just didn't take. I don't need colors, and I know how to find what I'm looking for. I guess that makes me a "curmudgeon".

link|flag
vote up 0 vote down

Where I work some people use what I think is worse than notepad. Some old console text editor app that arguably has fewer features than notepad... I wish I could remember the name though.

link|flag
vote up 1 vote down

Yes. I use Notepad and/or WordPad when there are either few or no development tools installed on the computer. Especially, if I want to leave the computer intact without installing developer tools and without suddenly turning someone else's PC into a development platform with all of the DLLs, debuggers, registry entries and other cruft. Some development environments can take a lot of time to set up when all that I need is a simple text editor like Notepad.

Depending on the machine and the development software, sometimes it's faster to open Notepad than firing up an entire IDE, if all I am doing is a few simple changes. I might check out, do some development work using Notepad, and check in removing the project from the computer. Doing development in this manner isn't something I'm going to spend a lot of time in. Perhaps, I am going to document, fix, rewrite, create a small script, web page, or a program using Notepad, and leave the machine as it was.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

Yes, if I'm banging out a quick Perl script. But not for my .NET or Java dev.

link|flag
vote up 0 vote down

Notepad++ actually! Now that I am getting into VS2008, maybe not.

link|flag
vote up 1 vote down

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|flag
vote up 4 vote down

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|flag
vote up 0 vote down

I actually use Notepad++ for all of my coding. In my industry the tools change based on the product I'm working on, so a universal IDE that can be applicable to every project I work on is highly unlikely to exist. Notepad++ is great because you can do all sorts of great things with it compared to notepad.exe and other "simple" text editors. But then again, I am no .NET developer ;-)

link|flag
vote up 2 vote down

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|flag
show 2 more comments
vote up 1 vote down

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|flag
vote up 0 vote down

The funny thing is that i cant imagine someone coding using notepad, although I code a lot of perl scripts using vi.

link|flag
vote up 3 vote down

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|flag
show 1 more comment
vote up 0 vote down

I don't use an IDE, but Notepad is another extreme. There are much better editors.

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
show 1 more comment
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

Clearly anyone worth their salt uses an IDE.

However, it is occasionally useful to view (or minor edit) old code/script files with Notepad in such circumstances as: you happen to be in a server's remote desktop environment and you want to quickly update some connection string or app variable somewhere to debug/test/tweak some ancient application that is no longer maintained in a regular IDE.

Even in such cases, I recommend replacing the built-in notepad.exe with notepad2 (the best, most elegant, and leanest notepad replacement hands down) on every possible computer.

link|flag
show 2 more comments
vote up 0 vote down

I will use it for writing a quick note, or saving some text, but for coding I need color. Using notepad++ right now for php stuff.

link|flag
vote up 0 vote down

Thanks everyone. I had a feeling I better get used to the new IDE. It just seems so bloated BUT, I shall get used to it.

link|flag
show 1 more comment
vote up 9 vote down

I work on a Unix box coding in vi.

link|flag
show 3 more comments
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
1 2 next

Your Answer

Get an OpenID
or

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