vote up 35 vote down star
63

I've just bought a new 4GB USB thumb drive and I'm trying to decide what to put on it. I'm thinking about one of the webserver on a stick packages, a C/C++ IDE (leaning toward Code::Blocks; had Dev-C++ on my old USB drive) and Python.

What development related tools do you carry around with you on yours?

Update

I've added categories.

IDEs

Code::Blocks Open source, cross platform C/C++ IDE

  • Supports several compilers (that you must supply) but you can also download a version that includes MingW.
  • (There's a FAQ question on their website explaining how to make it portable)

Codelite -- Open-source, cross platform C/C++ IDE
Eclipse -- Open-source, cross platform Java IDE
NetBeans -- Open-source, cross platform Java IDE
JCreator -- Java IDE
MSVC6 -- Microsoft's pre-.NET C/C++ environment

Languages & Compilers

Portable Python -- Interpreter for the Python programming language

  • Includes SciTE (editor) and Django (web framework)

Strawberry Perl -- "A 100% Open Source CPAN-capable Perl for Windows® computer that works exactly the same as Perl everywhere else."
Py3k -- Newest version of the Python programming language
Stackless Python
Lua -- Scripting language
MinGW -- Sort of a Windows port of GCC

  • "MinGW provides a complete Open Source programming tool set which is suitable for the development of native Windows programs that do not depend on any 3rd-party C runtime DLLs."

Editors

Notepad++ (after so many recommendations, I had to try it)
UltraEdit -- "text, hex, HTML, PHP, Java, Javascript, Perl, and programmer's editor."
VIM -- "highly configurable text editor built to enable efficient text editing"

  • Major rival to emacs

HEdit -- Hex editor
XVI32 (Hex Editor)
e text editor -- "The Power of Textmate on Windows"
Intype text editor -- Code editor for Windows
ConTEXT -- Code and text editor
Editpad Pro -- "powerful and versatile text editor or word processor."

Discovery

Dependency Walker -- Allows you to see what DLLs a program or DLL depends on and what functions they export.

flag
5  
Please mark as Community Wiki – Jay Bazuzi Jan 5 '09 at 18:15
7  
I just bought a 32GB thumb drive, and I see at least 64GB is available. Dare I suggest Visual Studio and MSDN online documentation? ;) – Arjan Einbu May 7 at 12:57
6  
Bring your Linux OS with you =D – Nuno Furtado May 7 at 13:13
show 5 more comments

55 Answers

1 2 next
vote up 3 vote down
  1. Firefox
  2. Notepad++
  3. Python
  4. Some music (it calms me between coding jobs!)
link|flag
vote up 14 vote down

I like PortableApps. I use NotePad++, OpenOffice applications, etc.

link|flag
vote up 0 vote down

PortableApps as well. I played with a few Linux-on-a-sticks, including Slax (it's a great little distro!), but the computers at my school don't seem to allow booting from USB anymore :'(

I also managed to get Cygwin on my USB, but it's a little weird, and I don't use it often. Eclipse as well, but only if you absolutely need it, it runs slows as molasses.

link|flag
vote up 1 vote down

apache, php5 and mysql (as well as notepad++)

I also have some scripts that copy the php.ini file to the C:\windows folder,etc.

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

It's handy to have http://unxutils.sourceforge.net/ (grep/cut/sh etc...) You may need some environment better then cmd to run it. Try FAR - http://www.farmanager.com/index.php?l=en (use open source one).

Denver is all in one web server package (also with usb-flash install support): http://translate.google.com/translate?hl=uk&ie=UTF-8&u=http%3A%2F%2Fwww.denwer.ru%2F&sl=ru&tl=en&history_state0=

But it is for russian audience.

Also: http://www.makeuseof.com/tag/portable-software-usb/

link|flag
vote up 1 vote down

My VPN Client Software ;)

MMmm Sweet sweet remote desktop. drool

link|flag
vote up 1 vote down

I was about to say: "Nothing" and I decide to double check my USB and I found VIM and my .vimrc and ProcessXP

I don't usually use it from there, but from time to time ( 3 -6 months ) I get into a new machine and copy them from the usb.

link|flag
1  
I change my vimrc too regularly. I am thinking about putting it in source control. – thomasrutter May 5 at 1:45
vote up 1 vote down

Ones not mentioned:

  • WinSCP (for all your S/FTP, etc connections)
  • LINQPad (for all your .NET code testing)
  • PuTTY
link|flag
vote up 3 vote down

Ubuntu Linux

link|flag
1  
+1 - if you want to carry development tools with you, why not an entire development environment? I have Kubuntu installed on an 8G thumb drive, and it's sufficiently performant for the environments where I find myself booting it up – kdgregory Jan 5 '09 at 18:32
vote up 1 vote down
  • Strawberry Perl, I had to edit some batch files to use the USB e: instead of the hard drive c:
  • MinGW, for GCC, G++ and added GDB, maybe MSYS when I get around to it
  • MSVC6, just for console apps so far, haven't tried to include MSDN
  • Codelite, for an IDE, better than Code::Blocks and lighter than Eclipse
  • Ultraedit v9, more recent versions are too bloated and slow, and probably don't run from USB
  • Quite a few other utilities that come in useful, e.g. grep, ssed, batch files to setup environment variables and start Perl, GCC or VC, etc.
link|flag
vote up 10 vote down

For Windows, many of the sysinternal tools.

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

PortableApps.com has most of what's on my portable USB drive:

  • Filezilla
  • Firefox
  • Notepad++
  • PuTTY
  • Wireshark

Besides those, I also have Beyond Compare on my USB drive.

link|flag
vote up 0 vote down

The XamppLite Web-Server so I can be able to work and test any PHP, CGI or scripts wherever I go.

link|flag
vote up 3 vote down

Note: I am a Windows developer. This colours what you read below.

  • Dependency Walker (Depends.exe)
  • WinZip
  • Notepad++ (v5)
  • DbWin32
  • Process Explorer
  • HEdit - a hex editor
  • WinDiff
  • Ripper - an app I co-wrote for stripping redundant lines from log files.
  • DelSub - an app I wrote for deleting files with given extensions in a folder tree. Handy for removing NCBs and PCHs etc. before backup.
  • DosHere - an explorer extension for adding a "command prompt here" entry to the context menu for any folder. This is the FIRST THING I put on any windows box I have to use.
  • DeTab - an app I wrote for stripping tabs out of source files. Note to self - need to update this for Unicode.

Note the emphasis on debugging native code here, because if I'm out in the field, that's usually what I'm doing.

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

I would add to the list this great OSS for Windows:

  • 7-zip. It can handle not only zips, gzs, bz2s, rars or arjs but even rpms or isos.
  • Winmerge. A directory/file comparation tool is always necessary.
link|flag
vote up 0 vote down

Mine just has music, and my GTD projects. Oh, and a couple of games for those in-between times ;-)

link|flag
vote up 0 vote down
  • Putty
  • WinSCP
  • Notepad++ - a must have.
  • Firefox - another must have.
  • XAMPP - there is a standalone version especially for memory sticks which works well.
  • Netbeans
link|flag
vote up 0 vote down

I have a full install (persistency broke on the LiveUSB version) of Fedora 9 (Sulphur) on one partition (ext2 so Windows can't see it) with the following tools:

And on the other partition, my data and the following Windows tools:

EDIT: I now have Fedora 10. Slightly slower, and needs vga= for the new boot to work, but the new features make it worth it.

link|flag
vote up 0 vote down

One of my USB Flash drives has the books I bought in PDF format from Safari Online. The ability to carry ten or twenty books about .NET, HTML, CSS, SQL, Active Directory, Security, WPF, or whatever else I happen to have in there, and pull it up without breaking my back is PRICELESS.

Another has NUnit, TestDriven.NET, WinMerge, the scrollbar fix for VB6, AnkSVN, a copy of the C# specification, and a couple of homebrew tools.

link|flag
vote up 0 vote down

When I get around to it, I'm putting the Windows Home Server PC Recovery image on a USB drive. Not only is it nicer than CD for recovering a home server CD, but you can also boot to a CMD prompt or run disk manager.

I prefer not to cache copies of downloadable software, since downloading anew often brings the latest updates. The exception is software I have to jump through hoops to get (registration, etc.)

link|flag
vote up 0 vote down

I have my mobile phone number as the USB drive name so if I lose it an honest person could call me and return it.

link|flag
vote up 0 vote down

In addition to most tools already listed...

Process Explorer
Process Monitor
AutoRuns
Expresso
KeePass
ReNamer
TrueCrypt
link|flag
vote up 0 vote down

For Windows:

  • PuTTY (PuTTY tray)
  • Xming - X11 server
  • tightvnc.exe

These let me access Linux systems where the real development tools live via SSH and VNC.

link|flag
vote up 1 vote down

I'm surprised JGsoft's excellent suite of tools hasn't been mentioned yet, particularly considering the author is one of us:

  • EditPad Pro (IMO, the best damn text editor there is)
  • RegexBuddy (the regex debugger)
  • PowerGREP (may not be vital if you're carrying Cygwin around, but it's more featureful than "real" grep and has a nice GUI to boot)

Sure, none of them are free, but they're sanely licensed and all of them support portable installation.

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

I go nowhere without puretext.exe. It's just a 28 Kb executable that gives you under Windows+V (or whatever key you want) what I would otherwise be doing quite often manually after hitting Ctrl+C somewhere:

  • Windows+R
  • N, O, T, E, P, A, D (if needed, often was still in my Run dialog...)
  • Enter
  • Ctrl+V
  • Ctrl+A
  • Ctrl+C
  • Alt+F4
  • N (for No)
  • Alt-Tab (correct number of times needed, if any...)
  • Ctrl+V

In other words: it pastes "pure text" from the clipboard, without any of the markup that might have been copied onto the clipboard with the text.

Any PC I work on for more than an hour - where I have permissions to get puretext.exe onto and running - I put it in C:\WINDOWS\, double-click it once, set it to autostart in its settings and always hide the icon in the task bar.

It is so worth it. ;-)

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

I carry a VirtualBox hard drive file that contains the whole development environment for our project.

It takes about a minute to set up on a any new machine for development in a familiar environment.

Install VirtualBox, create a new virtual machine, plug in the usb drive, point the virtual machine to the hard drive file, boot into the dev environment from the virtual machien. Takes about a minute atop of the download time of VirtualBox.

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

Currently: Python + Python Stackless Lua JCreator ConTEXT

Most of my USB is made up of Installers/Source code though :)

link|flag
vote up 0 vote down

I have to have Directory Opus on my USB drive. I use it primarily for the search feature, which is so much better than what Windows provides.

Also, Keepass, already mentioned here.

link|flag
vote up 17 vote down

Sysinternals tools

link|flag
vote up 19 vote down

Assuming a Windows Machine:

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.