3
votes
2answers
51 views
Using Qt to make an almost native Windows Application?
I love that Qt is cross-platform but I want to make an application that will call into some Windows specific .dll's. Kinda like Google Chrome does with the glass on Windows Vista/7 …
2
votes
1answer
54 views
Python app distribution cross-platform
I want to distribute my app on OSX (using py2app) and as a Debian package.
The structure of my app is like:
app/
debian/
<lots of debian related stuff>
…
2
votes
4answers
101 views
Where is Boost.Process?
I need to execute a program and retrieve its stdout output in c++. I'd like my code to be cross-platform too.
Having recently discovered the wonderful world of the Boost c++ libra …
0
votes
3answers
47 views
CMake: how to add compiler flags to non-default compiler
Hello I want to build a project with intel compiler.
With default gcc I usually run:
cmake -DCMAKE_CXX_FLAGS=-I/some/path /path/to/project
And this works fine.
cmake -DCMAKE_ …
2
votes
6answers
105 views
Cross-Platform equivalent to windows events
I'm trying to port some Windows code to Linux, ideally through platform-independent libraries (eg boost), however I'm not sure how to port this bit of event code.
The bit of code …
399
votes
61answers
19k views
What should a developer know before building a public web site?
What things should a programmer implementing the technical details of a web site address before making the site public? If Jeff Atwood can forget about HttpOnly cookies, sitemaps, …
0
votes
2answers
46 views
Free cross-platform tools for web development
This question is geared towards a group of newly hired developers that need to adopt into a minimal learning curve, maximum development/programming/management effort. Some of the d …
1
vote
1answer
35 views
URI Escape C++ wstring
I am looking for a good way to do a URI Escape in C++ that would be reasonable for a cross platform project.
I would like a function that would take a string like this:
L"jiayouć …
0
votes
11answers
154 views
Cross-Platform Programming Language with a decent gui toolkit?
For the program idea I have, it requires that the software be written in one binary that is executeable by all major desktop platforms, meaning it needs an interpreted language or …
2
votes
8answers
223 views
What’s the simplest cross-platform way to pop up graphical dialogs in Python?
I want the simplest possible way to pop up simple dialogs in Python scripts. Ideally, the solution would:
Work on Windows, OS X, Gnome, KDE
Look like a native dialog on any OS
R …
4
votes
7answers
231 views
Size of int in C on different architectures
I am aware that the specification of the C language does not dictate the exact size of each integer type (e.g., int).
What I am wondering is: Is there a way in C (not C++) to defi …
1
vote
7answers
88 views
Cross platform programming question (file I/O)
I have a C++ class that looks a bit like this:
class BinaryStream : private std::iostream
{
public:
explicit BinaryStream(const std::string& file_name);
bo …
1
vote
3answers
70 views
Cross-platform, open-source development framework that needs 3d graphics
I'm thinking of developing a game-like piece of software. It will probably require a bit of OpenGL, MIDI input, and math. I'd like to eventually sell the software, so it needs to …
3
votes
3answers
103 views
C memory management for Cross-platform VM.
Hi all, I asked a question about C-type sizes which I get a pretty good answer but I realized that I may not formulate the question very well to be useful for my purpose.
My backg …
0
votes
2answers
58 views
How does screen savers work on Mac OS X and Linux?
In Windows a screen saver is just an executable with a .scr extension dumped in the system32, and it is controlled with three switches (/p, /c and /s, I think).
How does screen sa …
