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

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

I just use the VS 2005 editor. It's a whole lot smarter and better-featured than Notepad; it colors keywords; it lets me stay in the same environment for C code, JS, and HTML; and it's just fine iff you can convince it to stop applying gratuitous, unrequested formatting.

I don't know about VS 2010. It seems to me that VS has changed over its versions only to make the product harder to use, more cryptic, more obscure. Some very helpful features (e.g., telling me which version of a file, from what directory, I'm editing/building) have been removed! Like MS-Word, whose best incarnation, as some say, was Word 95: it's been downhill from there.

link|improve this answer
show 1 more comment
feedback

my friend created a chatbot for his mibbit chat with notepad and i edit games with notepad

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Here is an homage to notepad -- how to use it for everything from keeping a calendar to creating an intranet:

http://www.youtube.com/watch?v=OXxXZuuqd2I

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.