1
vote
5answers
85 views
Is it a bad idea to rely on PHP 5 features when writing an application you expect to be portable?
If I'm building a PHP system which I expect to port to many different servers, should I avoid relying on PHP 5 features such as exceptions and final methods? How widespread is PHP …
0
votes
1answer
27 views
How to print ACE_thread_t using printf()
ACE_OS::thr_self() returns ACE_thread_t. ACE logger has a switch "\t" to print it.
How can I do it if I want to print thread id by using printf()?
2
votes
1answer
36 views
What non-Linux unixes support openat()?
openat() was added to POSIX in the POSIX.1-2008 revision, and has been supported by Linux since 2.6.16. How is support on non-Linux UNIXes? eg, Darwin, the *BSDs, and proprietary U …
2
votes
7answers
126 views
Unix paths: officially work in Python for any platform?
Can all paths in a Python program use ".." (for the parent directory) and / (for separating path components), and still work whatever the platform?
On one hand, I have never seen …
0
votes
4answers
74 views
How to split file on first empty line in a portable way in shell (e.g. using sed)?
I want to split a file containg HTTP response into two files: one containing only HTTP headers, and one containg the body of a message. For this I need to split a file into two on …
0
votes
3answers
94 views
Should I use automake/autoconf for distribution of a small ansi C app?
I have a small ANSI C application which compiles cleanly under different tested compilers and platforms. It doesn't use any preprocessor switches or external dependencies and the m …
3
votes
8answers
215 views
Portability concerns on C struct/union
Supposing I have the following type from an external library:
union foreign_t {
struct {
enum enum_t an_enum;
int an_int;
} header;
struct {
do …
20
votes
19answers
1k 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 app …
1
vote
1answer
135 views
jndi.properties in JBoss and GlassFish deployment
Currently an EJB / Web Application project uses a JBoss-specific JNDI configuration file, placed either in the conf directory or in the Jar file (both works fine).
How can I make …
0
votes
6answers
85 views
What is ideal software setup for programming web applications (editing php, javascript, xhtml, css) ?
I've been developing web applications for 2 years now, and have been into simpler web pages for many more. I've been using Notepad, then ConText, then Crimson Editor (was my favori …
2
votes
3answers
160 views
Emulating fork() on Win32? [closed]
Possible Duplicates:
What’s the best way to duplicate fork() in windows?
What is the closest thing windows has to fork()?
Is there a good way to emulate Unix fork( …
1
vote
4answers
160 views
Declaring fixed-size integer typedef in Standard C
Is there a reliable way to declare typedefs for integer types of fixed 8,16,32, and 64 bit length in ISO Standard C?
When I say ISO Standard C, I mean that strictly:
ISO C89/C90 …
6
votes
8answers
741 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.
0
votes
3answers
56 views
GetThreadId on pre-vista systems?
Apperantly, GetThreadId is a Vista API. How can I get a thread's id on pre vista systems?
5
votes
6answers
125 views
How necessary or convenient is it to write portable SQL?
Time and again, I've seen people here and everywhere else advocating avoidance of nonportable extensions to the SQL language, this being the latest example. I recall only one artic …
