Top "Cross-platform" questions

An attribute conferred to computer software or computing methods and concepts that are implemented and inter-operate on multiple computer platforms.

How to get current time and date in C++?

Is there a cross-platform way to get the current date and time in C++?

c++ date time cross-platform
What's the best way to check if a file exists in C?

Is there a better way than simply trying to open the file? int exists(const char *fname) { FILE *file; if ((…

c filesystems cross-platform
How to get the home directory in Python?

I need to get the location of the home directory of the current logged-on user. Currently, I've been using the …

python cross-platform home-directory
What is "stdafx.h" used for in Visual Studio?

A file named stdafx.h is automatically generated when I start a project in Visual Studio 2010. I need to make …

visual-studio visual-studio-2010 visual-c++ cross-platform stdafx.h
How do I get a platform-dependent new line character?

How do I get a platform-dependent newline in Java? I can’t use "\n" everywhere.

java cross-platform newline eol
Difference between "\n" and Environment.NewLine

What is the difference between two, if any (with respect to .Net)?

c# .net cross-platform
Python: What OS am I running on?

What do I need to look at to see whether I'm on Windows or Unix, etc?

python cross-platform platform-specific platform-agnostic
How can I find the current OS in Python?

Possible Duplicate: Python: What OS am I running on? As the title says, how can I find the current operating …

python cross-platform platform-specific
How do you run a Python script as a service in Windows?

I am sketching the architecture for a set of programs that share various interrelated objects stored in a database. I …

python windows cross-platform
How do I monitor the computer's CPU, memory, and disk usage in Java?

I would like to monitor the following system information in Java: Current CPU usage** (percent) Available memory* (free/total) Available …

java memory cross-platform cpu diskspace