I’d like to make a few simple programs for basic data manipulation, and I’d like them to run on Windows, OSX, and Ubuntu.
My primary consideration is ease of deployment, meaning ideally no JRE, Mono, or Adobe Air required; small, self-contained binaries are best, or maybe small, self-contained installers if absolutely necessary.
The programs would just get data from either a serial port, a local database (SQLite), or a CSV file, and then do some regex processing would upload them to various web services using public APIs. They’re the kind of thing that would be easy to whip up in a few hours in .NET, but Linux and Mac compatibility are important too.
A native GUI look is preferable, but I’ll settle for command-line programs if need be. I’m considering the Mozilla Application Framework, but I’m not at all familiar with it. Might it suit the task at hand? Any other suggestions?
Thanks!