Questions tagged [platform-independent]

Software or peripherals intended to permit uniform functionality on multiple platforms, such as multiple operating systems or multiple devices.

Overview

  • This tag should be marked as synonymous with [cross-platform].

See also

123 questions
0
votes
2 answers

How to figure out the cpu usage of a java-process in java

i've been searching the web for a possibility in java to figure out, how much cpu my application needs but sadly couldn't find a solution. Most of the people referred to "OperatingSystemMXBean" which works on platforms like linux, but not on…
Basti
  • 1,085
  • 9
  • 30
0
votes
0 answers

Howto get standard system directories with Python?

Is there a Python(3) way to get the directories for configration (e.g. /etc), log-files, home-dir, etc for the current system (Linux, Windows, ...). I couldn't find something like this in the os-Package.
0
votes
1 answer

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 browsers will support VBScript pages.
Nathan Campos
  • 26,567
  • 57
  • 185
  • 289
0
votes
2 answers

Extending windows based installer to other Operating Systems

I have build an installer using NSIS. And now I want to extend it to Solaris and Linux thorugh WINE. But I wanna know few things here- Is WINE flavour dependent? I mean are there different packages for different Linux versions? Whats if my…
Pia
  • 463
  • 2
  • 8
  • 20
0
votes
1 answer

Are sqlite blobs (made of c/c++ arrays) platform independent?

I know that in general sqlite is supposed to be platform independent -> https://www.sqlite.org/onefile.html . In my case I'd like to save 2dimensional c/c++ arrays into the db as blobs as there is no other way to do this. But since the value-types…
0ax1
  • 435
  • 3
  • 9
0
votes
1 answer

What is the difference between .exe file generated from c program compilation and .exe file generated from vb program compilation

what is difference between .exe file generated from c program compilation and .exe file generated from vb program compilation. Which .exe file is platform independent as per ( as long as the platform is .NET)?
Dhaval
  • 369
  • 1
  • 10
0
votes
2 answers

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 transformed to Javascript, or some mobile development…
Avraam Mavridis
  • 7,742
  • 14
  • 68
  • 117
0
votes
1 answer

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) way to achieve this. i need this because i am working on an open…
fin
  • 242
  • 3
  • 7
0
votes
1 answer

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

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 do this 8 times (or hope someone else will)'. The…
stephanos
  • 3,279
  • 6
  • 30
  • 45
0
votes
1 answer

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 december/2012. I can use the machine clock, but the user can…
Victor
  • 7,620
  • 14
  • 74
  • 121
0
votes
0 answers

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.
0
votes
3 answers

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 could administer OSGi with our shell, too. How can…
Ulrich Scholz
  • 1,701
  • 4
  • 24
  • 44
-1
votes
1 answer

Implementation independent Storage Access

I read this page which explains how to access the google storage from python. https://cloud.google.com/appengine/docs/flexible/python/using-cloud-storage I don't want a marriage between my code and the cloud storage provider. If I use amazon, google…
guettli
  • 26,461
  • 53
  • 224
  • 476
-1
votes
2 answers

Platform independent method to access command line in C?

On windows, the programmer could do something like: system("ls > outputFile.txt") Is there a platform independent way to access the command line, or a least a way to determine which platform the program is being executed on (because calls for the…
sherrellbc
  • 4,222
  • 7
  • 37
  • 71
-1
votes
1 answer

MessageBox OS. Independent

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. #include #include #ifdef…
1 2 3
8
9