Portable Programming IDE

后端 未结 13 2477
借酒劲吻你
借酒劲吻你 2020-12-14 04:57

Frequently I\'m brainstormed with programming ideas that I would like to directly code. More or less like \"Wow, that algorithm will rock! I need to write it now!\".

相关标签:
13条回答
  • 2020-12-14 05:21

    Well, IDEs are often better suited depending on the programming language you want to use. I'm not really sure if you're looking for a text editor or an IDE, but:

    As far as I'm concerned, I'd use:

    Java: Eclipse (though not very minimalist)

    C/C++: vim and g++, Code::Blocks

    Ruby/Python/Perl: vim + interpreter

    TextMate (best editor ever) on Mac OS X ($39.99) and e editor (Windows' TextMate equivalent) I also find NotePad++ to be a decent text editor, very minimalist.

    Some people are crazy in love with emacs, you might want to check it out.

    0 讨论(0)
  • 2020-12-14 05:21

    I'm late to the game, but a something worth mentioning is Squeak Smalltalk, or one of its derivatives like Pharo or Croquet. No changes to the registry or OS, no installers, no Services, no Admin rights needed, and only a few files needed- a full install in half a dozen files.

    1) binary and source portable code; nice IDE, but with a minimalist disk footprint (5-50 MB)

    2) Runs on almost any OS- one cross-platform binary image and a small virtual machine executable for each platform- one for 95/98/ME/XP/2k/XP/Vista/7/2003/2008; one for WinCE, one for OS X, one for Linux x86, etc.; (0.5-2 MB) for each platform. You can even boot onto bare metal, if you're hardcore.

    3) It's Smalltalk. Birthplace of most buzz-worthy Ruby features...

    4) Syntax Highlight and some level of intellisense is good built-in.

    5) Free as in speech and beer.

    Smalltalk isn't for everyone, but it's my personal fave. The fact that I can use the same binary image on my XP desktop, Linux server, iPhone and WinCE PDA without recompilation is a great bonus.

    0 讨论(0)
  • 2020-12-14 05:24

    You can also carry NetBeans on your USB drives: http://nbide.blogspot.com/2008/03/portable-netbeans.html and http://nbide.blogspot.com/2008/04/portable-netbeans-part-ii.html

    0 讨论(0)
  • 2020-12-14 05:26

    Eclipse isn't "minimalist", but it does work installation-less. So as long as your USB key, or whatever, is large enough, you can put Eclipse in there and be ready to go.

    0 讨论(0)
  • 2020-12-14 05:27

    Please have a look at ideone.com - supports 40+ langugages

    0 讨论(0)
  • 2020-12-14 05:27

    Emacs + a compiler/interpreter sounds like what you want.

    0 讨论(0)
提交回复
热议问题