up vote 10 down vote favorite
5
share [g+] share [fb]

I'm looking for a compiler or interpreter for a language with basic math support and File IO which can be executed directly from a memorystick in either Linux or Windows. Built in functionality for basic datastructures and sorting/searching would be a plus.

(I've read about movable python, but it only supports windows)

Thank you

link|improve this question

feedback

12 Answers

up vote 7 down vote accepted

Not sure what are the issues there for the other languages, but I am pretty sure that Lua will work fine on such environment.

It is perfect for your requirements: basic I/O, math functions, excellent data structures (all based on numeric and associative array, with any kind of key/values, allowing the most complex operations).
Bonus: very simple to learn (for the bases, at least), readable, and powerful when you start to dig. And it starts to have a number of useful libraries, sockets, regexes and parsers, GUI, etc.

It is just a single binary file, no install at all, no registry access, no file access (beyond reading the binary and script!) if not requested, totally transparent: it is often used in embedded system, often memory constrained, on Roms, etc.

link|improve this answer
Thanks, i just happened to read about Lua in another question about game-programming, so I was just reading about it. Does it install on a USB-stick. – tovare Dec 20 '08 at 21:34
I just expanded my answer. I didn't tried to install it on a stick, but I see no issue there. It costs nothing to try (Lua is small!). – PhiLho Dec 20 '08 at 21:38
Yes, it is perfect for my requirements :-) Thanks man. – tovare Dec 20 '08 at 22:26
feedback

There is a python distribution called Movable Python which is designed to do exactly that. It might do what you want. Also, MinGW/MSYS will run on Windows with no registry entries or other installation beyond placing the files in a directory tree - all you need to do is set up the relevant directories in the path, which can be done in a batch file.

link|improve this answer
Did you read the whole question? – BobbyShaftoe Dec 21 '08 at 4:17
feedback

The Java JDK easily fits on a stick, and does not require installation; You can install it to a PC first and then just copy the install directory to the stick. I presume you can do the same for the Linux JDK.

And there's a ton of good text editors that don't require installation.

link|improve this answer
Thanks, I didn't know this. I though java required registry access. – tovare Dec 20 '08 at 22:32
Yeah, but I wanna see you develop Java in a simple text editor... Of course you can use eclipse too, but JRE for win and linux + eclipse for win and linux is about 1GB, and a bit clumsy... – abyx Dec 21 '08 at 8:17
@abyx: Actually, I do use a simple text editor (TextPad) to develop Java. – Software Monkey Dec 22 '08 at 5:33
You can use eclipse in a portable way, look here: portableapps.com/node/929 – Peter Jan 15 '09 at 9:13
feedback

Not sure if it still applies to current versions, but I have an ancient perl.exe (version 5.001, from 1994 or 1995) that still works perfectly fine as a no-installation single executable.

link|improve this answer
Thanks for the suggestion. – tovare Dec 20 '08 at 22:21
feedback

If you can tolerate TCL, it's hard to beat a tclkit

link|improve this answer
Thanks that would work as well. I'll give Lua a shot first though :-) – tovare Dec 20 '08 at 23:38
feedback

I've done exactly that with Ruby. Worked well.

link|improve this answer
feedback

I'm way late for this party, but I thought I'd weigh in anyway.

I currently have a Windows-usable USB stick with the following installed on it (for Windows):

Languages

  • Java
  • Erlang
  • Fantom
  • Groovy
  • Haskell
  • jacl (JVM-based Tcl)
  • JavaFX
  • JRuby (JVM-based Ruby)
  • Jython (JVM-based Python)
  • NASM
  • nice
  • pnuts
  • Rexx
  • Scala
  • SISC (JVM-based Scheme)
  • Sleep
  • Tcl
  • Prolog
  • gawk (via GnuWin32 and MinGW/MSys)
  • jawk (JVM-based AWK)
  • ANTLR
  • Clojure
  • JBasic (JVM-based BASIC)
  • Tuprolog (JVM-based Prolog)
  • Rhino (JVM-based Javascript)
  • YASM
  • Lua
  • Kahlua (JVM-based Lua)
  • C (via GnuWin32 and MinGW/MSys)
  • C++ (via GnuWin32 and MinGW/MSys)
  • Fortran77 (via GnuWin32 and MinGW/MSys)
  • Ada (via GnuWin32 and MinGW/MSys)

Programming Tools

  • jEdit (JVM-based programmer's editor)
  • Ant (JVM-based build tool)
  • Maven 2 (JVM-based build tool)
  • vi (via GnuWin32 and MinGW/MSys)
  • Vim
  • CMake
  • gmake (via GnuWin32 and MinGW/MSys)
  • Leiningen
  • Subversion
  • Fossil
  • ANTLRworks
  • ctags/etags

Geek Toys

  • All SIMH emulators, with networking if available
  • Several operating systems, utilities, etc. for same

And a cast of dozens in key libraries, plus the Geronimo application server.

Yes, this is a single USB stick, and I probably missed an item here or there while making this list. It's amazing what you can run off of a USB stick these days.

link|improve this answer
What's the size of all of this ? – Leonel Sep 22 '10 at 12:35
@Leonel: Since I posted that I've added Factor, Yap, Hudson and some SQLite tools to the mix, so my current mix of languages, development tools and geek toys weighs in at just under 4GB on disk. (Actual data size is closer to 3.2GB, but slack space accounts for a lot there.) – JUST MY correct OPINION Sep 22 '10 at 13:34
feedback

Not sure that I understand the question: what would keep you from putting any language on a memory stick? You're going to have to put both Linux and Windows binaries if you want both, but that shouldn't be an issue. If you really want portability, you could go the route I did, and put a full Linux install with Java/Eclipse on an 8Gb stick.

link|improve this answer
System admins which don't allow installation of software would keep me from a lot of things. Most forget to disable USB :-) I use putty to my own shell today, but for instance generate a file and import the contents to excel is a hassle, a programming enviroment on a stick would solve things. – tovare Dec 20 '08 at 21:58
And as I said, you can do that with pretty much any language -- perhaps not with a MS product that expects registry keys, but pretty much anything else. For another example, look at Cygwin: cygwin.com, which gives you all the GNU tools for Windows – kdgregory Dec 21 '08 at 0:54
feedback

TCC (the Tiny C Compiler) is a full implementation of C in a really small package. You can even write shell scripts in C:

#!/usr/local/bin/tcc -run
#include <stdio.h>

int main() 
{
    printf("Hello World\n");
    return 0;
}

TCC is available for any Unix-like platform, and also for Windows.

link|improve this answer
Greg - Assuming this compiles the C code, where does the output go? Or does TCC interpret?? – Software Monkey Jan 16 '09 at 18:55
Wherever you tell it to go – nos Jun 12 '10 at 12:40
feedback

http://smallbasic.sourceforge.net/

Runs anywhere (even mobiles) and has everything you need.

link|improve this answer
Looks like a fun BASIC implementation, it appears to require installation. – tovare Jan 31 '09 at 1:58
it is possible to just copy the installation folder to usb. – Jon Romero Jan 31 '09 at 12:28
feedback

You could use DevCpp, it comes with Mingw 3.x or CodeLite (Mingw 4.x) for C/C++. For Pascal you can use DevPas, for Python web development try InstantDjango or better yet Web2py (very nice indeed!), for Ruby you have InstanRails, for Perl you got a complete enviroment (even a C compiler!) with StrawberryPerl. You could install cygwin on the USB drive. There are a lot more options out there. Interested in a LISP like portable/cross-platform and little language? Try newlisp (its a gem!). Also you could run almost anything (linux or windows based) on a portable VM under Portable VirtualBox/VMplayer or QEmu with a performance tax ;).

link|improve this answer
feedback

Why not C++? You can statically link in any external librarys assuming there lisence allows it, and you won't have any external dependencies.

link|improve this answer
That would be like creating software capable of running on a memorystick. The use case is write,run and revise my own code anywhere. – tovare Dec 20 '08 at 22:20
feedback

Your Answer

 
or
required, but never shown

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