Tagged Questions
The platform-independent tag has no wiki summary.
12
votes
5answers
4k 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++ libraries for all your ...
9
votes
7answers
23k 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, but it seems ...
8
votes
6answers
316 views
How platform-independent is .Net?
Can the .NET framework be installed on Linux, Unix, MAC etc. operating systems?
7
votes
2answers
349 views
Pure WBXML encoding for PHP?
Is there a native PHP wbxml API that can be used platform-independently? Perhaps a loadable module?
I have seen the pecl implementations but I have not been able to successfully work with the builds ...
6
votes
10answers
2k views
Is .NET platform independent?
.NET is a language independent platform.
But is it platform independent as well ? How ?
EDIT :
I have heard, .NET 4.0 is developed considering plateform independency ! Well, hope it may take over ...
5
votes
2answers
120 views
Capitalization and NoClassDefFoundError vs ClassNotFoundException
I'm seeing differences across platforms about when Class.forName() throws ClassNotFoundException and when it throws NoClassDefFoundError. Is this behavior well-defined somewhere, or have I stumbled ...
5
votes
4answers
95 views
How to run a script and not wait for it in Perl?
I have a system call in Perl that looks like this:
system('/path/to/utility >> /redirect/to/log file');
But this waits for utility to complete. I just want to trigger this and let the Perl ...
5
votes
8answers
279 views
Is there any disadvantages to a language being platform independent?
I'm working on a paper about multi-platform programming and I'd like to include sections on advantages/disadvantages. From my understanding; having any application be multi-platform is a huge selling ...
5
votes
1answer
2k views
Platform independent size_t Format specifiers in c?
I want to print out a variable for type size_t in c but it appears that size_t is aliased to different variable types on different architextures. For example on one machine (64-bit) the following code ...
4
votes
6answers
1k views
Portable way to get file size in C/C++
I need to determin the byte size of a file.
The coding language is C++ and the code should work with Linux, windows and any other operating system. This implies using standard C or C++ ...
4
votes
8answers
492 views
Most appropriate platform independent development language
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 running 24/7 so I envisage ...
4
votes
3answers
359 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 shuffle on another thread ...
3
votes
2answers
148 views
Bridge between Java and C#
I have been given a task to create a bridge between C# and Java. It was said that if we use C# right now, and then we receive a Java file from somewhere else, we should be able to convert that Java ...
3
votes
2answers
45 views
How to open and view a file(similar to that of double clicking a file) using Java
I would like to know to know the code in Java that that will help perform the same operation as that of a double click in any OS on a file making it open and thereby enable us to view its contents ...
3
votes
1answer
159 views
Does Security:cipher encrypted result depend on the server?
I'm working in a cakephp application where I use Security::cipher in order to encrypt some data. It works perfectly but I've moved files and DB to another server and now the encrypted result is ...
3
votes
2answers
112 views
Remove command-prompt in D?
I'm writing an SDL app in D (therefore I'd like to maintain a high amount of platform-independence), and I'm looking for a way to stop the command prompt opening up release builds. How does one do ...
3
votes
5answers
1k views
OS-independent API to monitor file system?
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 daemon to monitor ...
2
votes
5answers
99 views
Streaming data from C++ program?
I want to stream some data from my program for other subscribers (other programs). These programs can use these data as streaming event.
What I want?
How it is done generally?
Any libraries or ...
2
votes
2answers
75 views
When is code considered platform-independent?
This question arose as the result of a discussion on the reply to a question about platform-independence of PhysicsFS library. The question is whether particular code could be considered ...
2
votes
1answer
168 views
Is PhysicsFS platform-independent?
I'm thinking about using PhysicsFS in my game engine project, but I'd like to first make sure it's entirely platform-independent. That's because I'd like to port my engine to some rather obscure ...
2
votes
1answer
439 views
Webcam: Programmatically adjust Webcam parameters
In our project, we would like to access the webcam image programmatically.
The main problem we have is that the webcam automatically adjusts the sensitivity depending on the brightness of the captured ...
2
votes
11answers
1k views
Platform independent languages
I was searching a bit for another platform independent language like Java.
Are there other P.I. languages?
Thanks
2
votes
3answers
237 views
Making a program platform independent
I'm working with an OCR project which is developed using Visual C++ on .net framework.
But since the .net is platform dependent I want to make this project platform independent and make it supports to ...
2
votes
4answers
174 views
How to prevent arbitrary code execution vulnerability in our programs?
You always read in changelogs when your system or browser or any program updates that they fixed a bug that made possible that an attacker can execute any code in your computer with a forged website, ...
2
votes
1answer
1k views
Qt portable IPC: only QSharedMemory?
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 shared memory and locks; ...
2
votes
6answers
129 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 discussed with a ...
2
votes
5answers
2k 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 database type ...
1
vote
1answer
142 views
Platform version independent custom dialog with standard icon, title and buttons
What I'm trying to archive!
I want a dialog with a custom view in it, but I want the standard icon, title, buttons from the AlertDialog.
What I'm doing is this custom dialog class:
public class ...
1
vote
4answers
87 views
What is a platform independent way of getting unique value of current instance (e.g. pid) in C++
I would like to get a some kind (doesn't matter whether it's a process id or anything) of a unique integer value of current instance in C++ in a platform independent manner (that means no #if #else ...
1
vote
1answer
51 views
Is it possible to capture the username in a Google Chrome extension in a platform independent way?
Does Google Chrome support this in a native way? If not, is there a good workaround?
1
vote
1answer
356 views
Find all available wireless networks in range, using Java
I want to list all the wireless networks in range using Java. The application needs to be platform-independent, i.e., it should work on both Windows and Linux. I found answers listing different ...
1
vote
3answers
77 views
Language independent logic question
If one has three fields in a db that they are querying an object by....
One of these fields must always be an associations id.
Concerning the other two fields "only one needs to be true"
What ...
1
vote
3answers
479 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 have removed the ...
0
votes
2answers
44 views
How to get system environment variables using boost library?
I work on windows and MacOS, I would like to get environment variables.
How to get system environment variables using boost library?
Are there equivalent to ...
0
votes
3answers
72 views
System-independent machine shutdown in Java [closed]
Possible Duplicate:
Shutting down a computer using Java
I am making a personal program that will shut down my computer after a certain amount of time or at a certain time/date. However, I ...
0
votes
0answers
15 views
Fusion Web Application works on Java EE platform
Now I'm using Oracle JDeveloper 11g.
I was developing Java EE Web Application and I first saw about Fusion Web Application.
It says Fusion Web Application uses ADF(Application Development ...
0
votes
1answer
80 views
Passing WinMain parameters to another function
I'm developing an application on Windows, but I'd also like to support other platforms (the majority of code I've written is platform independent). Anyway, I figured for developments sake I'd like to ...
0
votes
0answers
23 views
Bare-bones source highlighting widget written in Java
Can anyone suggest a bare-bones source highlighting widget written in Java? I'm interested in the bare-minimum here so that I can build additional features on this minimal implementation.
Also ...
0
votes
1answer
72 views
C/C++: Platform independent way to handle structs and bitfields
I'm working on a project to convert an ancient Solaris (sparc) targeted application to Linux. The language is C/C++, and most of the code was written by electronics engineers -- that is, people who ...
0
votes
2answers
145 views
Platform independant ways of hiding console when program runs
Im looking for a way to hide the console (in windows) in my program, and ive found this code:
#if defined (__WIN32__)
#include <windows.h>
HWND hWnd = GetConsoleWindow();
...
0
votes
1answer
67 views
Is it possible to use #ifdef like checks in assembler?
I have tested a bit of assembler on Linux using the AT&T syntax. One thing that struck me was that the book I was reading was written from a 32-bit standpoint. Thus, all sizes would have to be ...
0
votes
3answers
154 views
Platform-independent programmming with Java native code or C++ (QT, WxWidgets etc.)
I am asking myself if it would be easier and more flexible to program a multiplatform application in Java and compile it to native binaries (the way Eclipse was written) or to use a cross-platform C++ ...
0
votes
1answer
146 views
couldn't find platform independent libraries<prefix>
i tried to install python in friendlyarm mini 2440 by following some cross compiling tutorials..now when i start python following statements are shown
Could not find platform independent libraries
...
0
votes
0answers
65 views
What is the best way to create a platform independent GUI which displays a continuously changing graph (as in graph theory)
I am looking for any platform independent libraries which I can use to create a graph and update it. The updates come in as XML and I want to update the displayed graph to reflect the changes in the ...
0
votes
1answer
36 views
is there any way to make the platform independent files just like Dlls?
i am looking for some files like DLLs that can be used on windows as well as Mac OS is there any way of doing this will c++ or any other language that must be higher level than c++
need help ...
0
votes
1answer
61 views
Database-independent queries to the extreme in Java… or in general
Let's say I have an app that should ideally be able to use a relational database, object database, XML files, or whatever to persist its data. In the spirit of coding to interfaces instead of ...
0
votes
1answer
78 views
Image/color manipulation formulas
I know how to do simple things with images at the pixel level like applying grayscale, sepia, etc. I'd like to find some articles on how to apply saturation, hue, brightness, contrast, etc at the ...
0
votes
4answers
190 views
Is Java.NET platform independent? [closed]
Java is the supported language by .NET.
Where is it used ? Is there any IDE available for programming with Java.NET ?
Isn't Java.NET a platform independent ? Can we compile it using JVM ?
0
votes
3answers
460 views
How do I map a spherical triangle to a plane triangle?
The gnomonic projection maps spherical triangles to straight-edged plane triangles.
But I've heard that the Chamberlin trimetric projection has less distortion, so I'd like to use that instead.
Alas, ...
0
votes
1answer
268 views
Linux Browsers And VBScript
I've already done some little things using Visual Basic and some nice things with eMbedded Visual Basic, but now I want to go on the scripting way, then I want to know if Linux, BeOS and other OSes ...