Tagged Questions

1
vote
5answers
2k views

Play a Sound with Python

What's the easiest way to play a sound file (.wav) in Python? By easiest I mean both most platform independent and requiring the least dependencies. pygame is certainly an option, …
0
votes
1answer
62 views

Qt portable IPC: only QSharedMemory?

Hi, I'm looking for suggestions about choosing a portable way to achieve local IPC in a robust way, since i'm new to C++ and would like to avoid common pitfalls of fiddling with s …
2
votes
4answers
131 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 …
2
votes
2answers
103 views

Python: Platform independent way to modify PATH environment variable

Is there a way to modify the PATH environment variable in a platform independent way using python? Something similar to os.path.join()?
0
votes
1answer
76 views

how to provide platform independent keycodes

how do cross platform frameworks like sdl or java provide platform independed keycodes. do they have mapping tables for all possible cases? or is there another (eventually better) …
0
votes
3answers
142 views

Windows Setup Project without .net dependency

I have made a custom dll for my setup project. My dll is very simple, registering few services, not CLR or any 3rd party lib dependent. Have statically linked with msi.lib only. I …
1
vote
5answers
462 views

OS-independent API to monitor file system?

Hi, I would like to experiment with ideas about distributed file synchronization/replication. To make it efficient when the user is working, I would like to implement some kind of …
4
votes
8answers
167 views

Most appropriate platform independent development language

Hi, A project is looming whereby some code that I will be writing may be deployed on any hardware that potential clients happen to have. Its a business application that will be ru …
1
vote
6answers
102 views

Detecting Overanalysis

How do I know if I am overanalysing? I've been chasing a problem the last 3 days. I've been through many designs and reached a complex solution using about 3 classes. Having discu …
2
votes
3answers
153 views

Email obfuscation question

Yes, I realize this question was asked and answered, but I have specific questions about this that I feel were not clear on that thread and I'd prefer not to get lost in the shuffl …
1
vote
5answers
675 views

Platform Neutral SQL Statement for INSTR or CHARINDEX

I have a problem writing a SQL statement for both Oracle and MS SQL server. I'd like to write the SQL so that it works in both. I don't want to have to mess around with setting a …