Tagged Questions
Portable code can be run with little to no modification in multiple environments. Portable applications can be run from e.g. a USB drive without modifying a computer's environment.
81
votes
25answers
3k views
What belongs in an educational tool to demonstrate the unwarranted assumptions people make in C/C++?
I'd like to prepare a little educational tool for SO which should help beginners (and intermediate) programmers to recognize and challenge their unwarranted assumptions in C, C++ and their platforms.
...
73
votes
6answers
24k views
Is there a portable way to get the current username in Python?
Is there a portable way to get the current user's username in Python (i.e., one that works under both Linux and Windows, at least). It would work like os.getuid:
>>> os.getuid()
42
...
52
votes
58answers
6k 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::Blocks; had ...
31
votes
19answers
2k views
How do you deal with Internet Explorer?
I am aware that there are probably other questions regarding this topic. I guess that every web developer goes through this with IE.
My problem:
I am developing a web-based application fully based ...
29
votes
8answers
36k views
Is there a replacement for unistd.h for Windows (Visual C)?
I'm porting a relatively simple console program written for Unix to the Windows platform (Visual C++ 8.0). All the source files include "unistd.h", which doesn't exist. Removing it, I get complaints ...
25
votes
4answers
60k views
How to measure time in milliseconds using ANSI C?
Using only ANSI C, is there any way to measure time with milliseconds precision or more? I was browsing time.h but I only found second precision functions.
24
votes
7answers
1k views
How to design a C / C++ library to be usable in many client languages?
I'm planning to code a library that should be usable by a large number of people in on a wide spectrum of platforms. What do I have to consider to design it right? To make this questions more ...
22
votes
4answers
698 views
Preventing MSYS 'bash' from killing processes that trap ^C
I have a console-mode Windows application (ported from Unix) that was originally designed to do a clean exit when it received ^C (Unix SIGINT). A clean exit in this case involves waiting, potentially ...
20
votes
8answers
15k views
How should I print types like off_t and size_t?
I'm trying to print types like off_t and size_t. What is the correct placeholder for printf() that is portable?
Or is there a completely different way to print those variables?
19
votes
6answers
7k views
How can I have a portable Emacs?
Is there a way run Emacs from a USB drive? I am a Windows user and I would like to be able use it on any PC without an Emacs install.
15
votes
8answers
383 views
Recommended ways to produce app portable between Android and “other platforms”
I'm developing an application for Android, and I'm thinking that it's functionality might be useful on other (Java-running) platforms (say a regular desktop app -- although I hope that the other ...
15
votes
7answers
707 views
Portability of binary serialization of double/float type in C++
The C++ standard does not discuss the underlying layout of float and double types, only the range of values they should represent. (This is also true for signed types, is it two's compliment or ...
15
votes
4answers
930 views
In C++, is it safe/portable to use static member function pointer for C API callbacks?
In C++, is it safe/portable to use static member function pointer for C API callbacks? Is the ABI of a static member function the same as a C function?
14
votes
3answers
646 views
How do I type a floating point infinity literal in python
How do I type a floating point infinity literal in python?
I have heard
inf = float('inf')
is non portable. Thus, I have had the following recommended:
inf = 1e400
Is either of these ...
14
votes
8answers
8k views
How to Declare a 32-bit Integer in C
What's the best way to declare an integer type which is always 4 byte on any platforms? I don't worry about certain device or old machines which has 16-bit int.
13
votes
3answers
2k views
Running Mercurial on a Flash Drive?
So I do a lot of work on a school computer. We can't install anything but we have most of our tools on our flash drives but I was wondering if there's a way to get Command Prompt to use Mercurial off ...
13
votes
6answers
8k views
Did anyone try Portable Python?
I have recently discovered Portable Python as a very interesting tool. I am a linux user, and I am frutstrated when I come to machines that does not come "battery included".
This is cool because ...
12
votes
12answers
605 views
12
votes
13answers
847 views
Why is it important for C / C++ Code to be compilable on different compilers?
I'm
interested in different aspects of portability (as you can see when browsing my other questions), so I read a lot about it. Quite often, I read/hear that Code should be written in a way that ...
12
votes
11answers
986 views
Should “portable” C compile as C++?
I got a comment to an answer I posted on a C question, where the commenter suggested the code should be written to compile with a C++ compiler, since the original question mentioned the code should be ...
12
votes
10answers
3k views
Developing lightweight (no runtime) Windows based GUI applications using free tools
Does anyone know of free tools (languages, environments) that would support development of GUI applications on the Windows platform?
I am looking to be able to create a single executable file that ...
12
votes
9answers
4k views
Free portable database
Hi I am developing desktop portable free application and I`m looking for portable database:
free
without install
up to 20K records
standalone application
supports encryption (optional)
SQL92 spec
...
11
votes
3answers
147 views
C++ shared library called from C
I have a shared library written in C++. It exports a visible interface made of extern "C" functions which create, destroy and manipulate opaque types.
Now, I'd like to have a pure C program which ...
11
votes
9answers
11k views
Portable Compare And Swap (atomic operations) C/C++ library?
Is there any small library, that wrapps various processors' CAS-like operations into macros or functions, that are portable across multiple compilers?
PS. The atomic.hpp library is inside ...
10
votes
1answer
135 views
Unix C++ compilers that do not understand -c -o
Autoconf/Automake are at pains to support ancient C compilers that didn't understand the simultaneous use of the -c and -o options (create an object file with this name). There's AM_PROG_CC_C_O and a ...
10
votes
5answers
419 views
What parts of C are most portable?
I recently read an interview with Lua co-creators Luiz H. de Figueredo and Roberto Ierusalimschy, where they discussed the design, and implementation of Lua. It was very intriguing to say the least. ...
10
votes
8answers
319 views
C++ integral constants + choice operator = problem!
I have recently discovered an annoying problem in some large program i am developing; i would like to understand how to fix it in a best way. I cut the code down to the following minimal example.
...
10
votes
7answers
521 views
How to do portable 64 bit arithmetic, without compiler warnings
I occasionally use 64 bit arithmetic in an open source C++ library of mine. I discovered that long long serves my purpose quite nicely. Even some 10 year old solaris box could compile it. And it works ...
10
votes
3answers
1k views
Is there any “standard” htonl-like function for 64 bits integers in C++?
I'm working on an implementation of the memcache protocol which, at some points, uses 64 bits integer values. These values must be stored in "network byte order".
I wish there was some uint64_t ...
10
votes
6answers
2k views
int vs size_t on 64bit
Porting code from 32bit to 64bit. Lots of places with
int len = strlen(pstr);
These all generate warnings now because strlen() returns size_t which is 64bit and int is still 32bit. So I've been ...
10
votes
3answers
453 views
How do I detect if I'm running MATLAB or Octave?
I need to write code that should run equally well in Octave and on MATLAB. Problem is that it needs to do some GUI stuff, which MATLAB and Octave handle completely differently.
Is there a way I can ...
10
votes
12answers
7k views
How should I handle “cast from ‘void*’ to ‘int’ loses precision” when compiling 32-bit code on 64-bit machine?
I have a package that compiles and works fine on a 32-bit machine. I am now trying to get it to compile on a 64-bit machine and find the following error-
error: cast from ‘void*’ to ‘int’ loses ...
10
votes
6answers
4k views
How does one include TR1?
Different compilers seem to have different ideas about TR1. G++ only seems to accept includes of the type:
#include <tr1/unordered_map>
#include <tr1/memory>
...
While Microsofts ...
10
votes
4answers
2k views
How to deal with the most common classes missing on J2ME
I'm trying to code an application which runs un different java platforms like J2SE, J2ME, Android, etc. I already know that I'll have to rewrite most of the UI for each platform, but want to reuse the ...
10
votes
6answers
4k views
Portable C++ Stack Trace on Exception
I am writing a library that I would like to be portable. Thus, it should not depend on glibc or Microsoft extensions or anything else that is not in the standard. I have a nice hierarchy of classes ...
10
votes
5answers
5k views
Is PThread a good choice for multi-platorm C/C++ multi-threading program?
Been doing mostly Java and smattering of .NET for last five years and haven't written any significant C or C++ during that time. So have been away from that scene for a while.
If I want to write a C ...
10
votes
5answers
5k views
Portability of #warning preprocessor directive
I know that the #warning directive is not standard C/C++, but several compilers support it, including gcc/g++. But for those that don't support it, will they silently ignore it or will it result in a ...
10
votes
11answers
1k views
What is the best technique for consistent form, function between all web browsers (including Google Chrome)?
Short version: What is the cleanest and most maintainable technique for consistant presentation and AJAX function across all browsers used by both web developers and web developers' end-users?
IE 6, ...
9
votes
7answers
388 views
Does 64-bit floating point numbers behave identically on all modern PCs?
I would like to know whether i can assume that same operations on same 64-bit floating point numbers gives exactly the same results on any modern PC and in most common programming languages? (C++, ...
9
votes
6answers
367 views
Are web applications more portable than desktop applications?
I often hear people praising web applications (as opposed to desktop apps) for their portability. Indeed, making a desktop application available on multiple operating systems is difficult. However, ...
9
votes
3answers
3k views
Is there a portable Perl?
Is there a portable Perl along the lines of portable Python? Something I could use (while learning the stuff) from my thumb drive?
Oh, and I'm talking about Window XP.
9
votes
5answers
7k views
Best Portable way to connect to SQL server using c++
I need some help into this problem:
Basically i want to connect my program which uses c/c++ to a SQL server database (MS SQL server express or standard edition) , because of our users demands the ...
8
votes
1answer
83 views
How to portably parse the (Unicode) degree symbol with regular expressions?
I'm writing a simple regular expression parser for the output of the sensors utility on Ubuntu. Here's an example of a line of text I'm parsing:
temp1: +31.0°C (crit = +107.0°C)
And here's ...
8
votes
4answers
281 views
Is the .NET string hash function portable? [closed]
Possible Duplicate:
How do I create a HashCode in .net (c#) for a string that is safe to store in a database?
I use C# 4.0 and gets the string hash by invoking:
"my string".GetHashCode()
...
8
votes
5answers
612 views
Lightweight portable C++ threading
Does anyone know about a lightweight portable C++ threading library, that can work on Windows, Linux and Mac OS X?
Specifically in my case, I do a simulator that after each time passes exports ...
8
votes
2answers
4k views
GLIBCXX versions
If I compile a C++ program on my machine, and run it on another one (with older software) I get: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found.
In fact on my system glibc is newer (I got ...
8
votes
2answers
486 views
Apache portable runtime tutorials?
My platform is gcc 4.4.3, C89, on Ubuntu 10.4.
I am looking for some tutorials or ebooks for installing and using the Apache portable runtime.
So far, I have only found the links below. I was ...
8
votes
4answers
331 views
String manipulation & memory allocation - C
I am in the process of learning C. I have a method that takes 3 strings and combines them to do some operation. Following was my first implementation using a GCC compiler.
void foo(const char *p1, ...
8
votes
3answers
1k views
Deploying C# (.NET 2.0) application as a portable application?
Is it possible to deploy a .NET 2.0 application as a portable executable?
So that my program can be ran in a Flash Disk without the .NET Framework 2.0 installed in the target machine. Or maybe is it ...
8
votes
4answers
2k views
How do I convert my Git repository to Mercurial and bring along its tags
I am wanting to toy around with Mercurial a bit, so I am trying to convert one of my existing repositories over. I run the following command on my Mac:
hg convert myrepos myrepos-hg
The command ...