0
votes
0answers
6 views
Portable version of ImageMagick to package with my app?
I've built a Content Management System application in CakePHP which I've utilised ImageMagick for transforming uploaded images and PDF files.
The biggest problem I've found with u …
1
vote
1answer
6 views
enabling clipboard for firefox portable?
i'm using the xinha wysiwyg editor and would like to enable the clipboard (for using the menu icons: copy, cut, paste)
i've googled but couldn't find a working method - only for …
3
votes
3answers
280 views
Lightweight, portable C++ fibers, MIT license
I would like to get ahold of a lightweight, portable fiber lib with MIT license (or looser). Boost.Coroutine does not qualify (not lightweight), neither do Portable Coroutine Libra …
0
votes
8answers
597 views
Is there a lightweight portable windows web server?
I'm looking for a lightweight portable web server for windows capable of serving arbitrary folders in the file system and supporting at least one scripting language. It shouldn't n …
3
votes
10answers
827 views
Portable Programming IDE
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!".
For this kind of …
6
votes
2answers
117 views
Is the use of previously defined members as part of later members in an enum definition legal?
namespace ValueType {
enum Enum {
Boolean = 0,
Float = 1,
Double,
SInt = 8,
SLong,
UInt = SInt + (1 <<4),
ULong = SLong + (1 << 4)
};
}
…
0
votes
1answer
16 views
Is there a way to build a portable RIA without using LiveCycle?
I saw your article on portable RIAs. Excellent article!
http://www.adobe.com/devnet/flex/articles/portable%5Fria.html
We don't have LiveCycle, but want to allow our users to view …
0
votes
3answers
60 views
Drupal Development on a Thumb Drive
I mostly a .NET developer but need to do some new work in Drupal.
So I guess I need a portable
- Apache
- PHP
- MySQL
- phpMyAdmin
- Drupal codebase
What is the best way to w …
0
votes
0answers
6 views
Portable web applications framework
I like Gears (aka Google Gears), but it seems to need a lot of work and AJAX skills to enable off-line support in portions of web applications. What about distributing web applicat …
1
vote
7answers
139 views
How can I write portable Windows applications?
Sometimes, I want to write an simple application which will works on any Windows machine, without installing any programs or components (ex. .NET Framework), in a C# or Java like p …
35
votes
55answers
3k views
What development tools do you carry on your USB drive?
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 …
0
votes
1answer
56 views
Including Large Wordlist in Stand-alone Dictionary Application
The Application
I'm working on a simple dictionary search tool, with the main purpose of searching a word-list of around 180,000 words.
To begin with, the word-list was a plain- …
1
vote
3answers
97 views
Portable C++ 03 Exact Width Types
Background
Unfortunately the current C++ standard lacks C99's exact-width types defined in the stdint header.
The next best thing I could find (in terms of portability) was Boo …
1
vote
1answer
77 views
How to determine if 2 paths reference the same file in portable C++
Hello. I was wondering if there is a portable way to determine if 2 different paths actually reference the same file.
I have read this thread but is Windows-specific.
AFAIK, fstr …
4
votes
2answers
2k views
Using Python’s ftplib to get a directory listing, portably
You can use ftplib for full FTP support in Python. However the preferred way of getting a directory listing is:
# File: ftplib-example-1.py
import ftplib
ftp = ftplib.FTP("www.p …
