The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

Are the Model-driven architecture feasible?

I want to ask some questions about MDA: First, I know that there exist tools that you can write code in one language and then the code be generated in another, for example in 'GWT' Java code is ...
0
votes
0answers
26 views

Which headers are platform independent?

I want to write a software which should compile on different platforms. Say MS and Unix. Which headers can I use without thinking about platform dependency? I guess I can use stdlib.h stdio.h ...
2
votes
2answers
133 views

How to run x64 Debug Mode DLLs are “Any CPU”?

I compiled DLLs to be "Any CPU" so they can be run in both x86 and x64, but when I try to run in Debug Mode (x64) it keeps telling me Error while trying to run project: Could not load file or assembly ...
2
votes
2answers
290 views

How to check if an arbitrary PID is running using Node.js?

Is there some way to check if an arbitrary PID is running or alive on the system, using Node.js? Assume that the Node.js script has the appropriate permissions to read /etc/proc or the Windows ...
-1
votes
1answer
59 views

MessageBox OS. Independent [closed]

I want to create an Assert function wich displays a message in a new window without opening the console. The function need to be O.S independent, and not using c++ external libraries if possible. ...
2
votes
2answers
134 views

Java - howto platform independent output

I'd like to know how to let my code produce the same output (UTF-8 or UTF16) on different platforms (at least windows and linux). I thought it was possible to set a codepage to use by the application ...
6
votes
2answers
428 views

What is wrong with printf(“%llx”)?

I have this piece of code that is challenging all my knowledge of C. Here I have : int main(void){ unsigned long long int massage ; scanf("%llX", &massage); //input: 0x1234567890abcdef ...
0
votes
1answer
123 views

Integrate C library with Java, Ruby, Node, Python, Go, .NET [closed]

Status Quo For a project of mine I need a client library that communicates with my API for every major programming platform. Currently I implemented just one (Java) and was thinking 'I don't want to ...
19
votes
1answer
377 views

How to write platform-independent code in Haskell (ghc)

There are a few platform-specific libraries in Hackage that I'd like to use (e.g. inotify, kqueue). However, documentation on how to switch between platforms using conditional compilation seems a ...
1
vote
2answers
113 views

Platform-Independent Way to Obtain IP-Address in C++ [duplicate]

Possible Duplicate: Get the IP Address of local computer I want to be able to get the IP address for the machine I'm on in C++ without querying external www.whatsmyip.com, but also want to ...
4
votes
1answer
165 views

How to ensure same float numbers on different systems?

If I compile following c lines on windows and linux(ubuntu) I get different results. I would like to avoid. How can I do it? double a = DBL_EPSILON; double b = sqrt(a); printf("eps = ...
0
votes
1answer
26 views

How to tell if connected to a website [closed]

Is there an OS and browser neutral way to tell if someone is connected to a given website? Netstat doesn't seem to work because it shows only connections up to the router.
0
votes
1answer
169 views

License Management by time

Is there any framework to implement a license management using C/C++? I need to limit the time usage of my application. For example with one license file someone can use the software util ...
0
votes
0answers
133 views

How to check if a process is alive? (with pure platform independent java)

I try to make an updater for my application, everything has went fine until I realized the synchronization problem between the application and the updater. The problem is that the updater can't know ...
0
votes
0answers
114 views

openssl with java and platform independence

If I use openssl with java will I lose the platform independence of the code? I want my code to work in both linux and windows.
3
votes
5answers
577 views

Is java really platform independent ?

There are different versions of JVM for different operating systems/platforms. Which means that the people who developed it have made different interpreters for major operating systems. If at all a ...
1
vote
4answers
157 views

understanding java platform independence

I wanted to test the platform independence of java.So I wrote the hello world program in java and compiled it using the compiler for windows to create the HelloWorld.class file. Then I tried to run ...
2
votes
2answers
641 views

Access the serial port in a platform-independant way [closed]

I have a task to create a program, that control a device over RS-232 from a desktop station. Currently I am at the planning stage and need some general help selecting a language and overall approach ...
2
votes
2answers
55 views

what is the algorithm to determine x and y for something so that it follows a curve between 2 keyframes?

back in uni i remember there being an algorithm that's use to calculate the x and y position of point between the x and y values of 2 key frames, i know the one for a straight line x = ((KeyFrame2.x ...
3
votes
2answers
318 views

Get user name from the command line on different platforms

Is there a way in MATLAB to get the user name of the user that started the session? I am interested in solutions for Windows, Linux and Mac OSX. I imagine that if the solutions are platform-specific, ...
0
votes
1answer
189 views

Platform-independant OpenSSL library

I'm in the process of writing a program in C++ which needs to compile and run... anywhere. It can be run from Linux, MacOS, Windows, DOS, OS/2, BSD, hell, even custom written operating system that has ...
0
votes
0answers
10 views

Is there a platform that will allow development of an interactive graphical interface that can be sent via email?

I am developing a product that provides a simple graphical interface to a user. The requirements of this interface are very basic and could be rendered quite easy simply using HTML and Javascript. ...
0
votes
3answers
185 views

platform independent OSGi console

I'm designing a shell to administer an application. It is planned to let the next application verison use OSGi, but the OSGi platform (Felix, Equinox, ...) is not decided yet. it would be nice if we ...
2
votes
1answer
338 views

Easiest to use, lightweight, platform independent graphing library for c++

What is the simplest to use c++ library that graphs functions like matlab and octave do? I have looked over several and have found similar major problems with all of them: i cannot compile an empty ...
1
vote
3answers
63 views

How to eliminate the need of JIT when target platform is pre-determined?

It is great that using Intermediate Language (.Net: MSIL, Java: Bytecode) we can achieve platform independence. But when an application is supposed to run on a single platform only (e.g. Windows), in ...
10
votes
2answers
302 views

Portable printing of exponent of a double to C++ iostreams

I want to print a double value to std::cout portably (GCC, clang, MSVC++) such that the output is the same on all platforms. I have a problem with the formatting of the exponent. The following ...
1
vote
1answer
526 views

How do I get MSBuild to generate a platform agnostic COMReference?

I recently switched all our test projects from dotnet 4 to dotnet 3.5 (because I want to test code under CLR 2.0 (see here). Most things work fine, but one test project has a dependency on ...
13
votes
2answers
3k views

Node.js - Find home directory in platform agnostic way

Process.platform returns "win32" for Windows. On Windows a user's home directory might be C:\Users[USERNAME] or C:\Documents and Settings[USERNAME] depending on which version of Windows is being used. ...
3
votes
3answers
1k 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 ...
0
votes
2answers
1k 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
281 views

System-independent machine shutdown in Java [duplicate]

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 ...
3
votes
1answer
810 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 ...
8
votes
5answers
322 views

Is -1u valid c++?

Is for example size_t x = -1u; if (x == -1u) ... valid? If this is valid it would prevent a warning. of course on a 32 bit system x should be 0xffffffff and on a 64 bit system it should be ...
0
votes
1answer
210 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 ...
5
votes
2answers
254 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 ...
3
votes
3answers
292 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 ...
1
vote
4answers
293 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 ...
0
votes
2answers
96 views

How to make sure the size of a floating point is the same across platforms?

I'm writing software that has to work on different platforms. It uses floating point numbers. On all platforms, the floating point numbers have to be the same size in memory. For integers I could use ...
5
votes
4answers
144 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 ...
0
votes
1answer
176 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 ...
2
votes
4answers
180 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 ...
0
votes
2answers
572 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(); ...
-7
votes
4answers
952 views

What is the difference between Platform-Independent and Cross-Platform?

I have seen a lot of C/C++ Libraries and Gui Toolkits. Among them there are some like GTK+ , Qt , Swing etc. which claim to be platform-independent. While some , like WxWidgets, SWT etc. which claim ...
2
votes
1answer
102 views

Is it possible to capture the username in a Google Chrome extension in a platform independent way? [duplicate]

Possible Duplicate: How to get the windows user name using javascript in google chrome browser for google chrome extension Does Google Chrome support this in a native way? If not, is there ...
0
votes
2answers
301 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 ...
1
vote
3answers
288 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++ ...
1
vote
1answer
1k 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 ...
2
votes
2answers
111 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
390 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 ...
8
votes
6answers
804 views

How platform-independent is .Net?

Can the .NET framework be installed on Linux, Unix, MAC etc. operating systems?

1 2