Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
5answers
873 views

What is the optimal multiplatform way of dealing with Unicode strings under C++?

I know that there are already several questions on StackOverflow about std::string versus std::wstring or similar but none of them proposed a full solution. In order to obtain a good answer I should ...
8
votes
4answers
1k views

What C++ library to use to write a cross-platform service/daemon?

I wonder what library would ease the development of a cross-platform service/daemon ? (C/C++) I'm targeting: Windows, Linux and OS X. Requirements: network operations and serial port communication. ...
5
votes
3answers
392 views

R: determine if a script is running in Windows or Linux

Is there a simple way to programmatically determine if an R script is being executed in Windows vs. Linux?
5
votes
2answers
563 views

Programmatic control of python optimization?

I've been playing with pyglet. It's very nice. However, if I run my code, which is in an executable file (call it game.py) prefixed with the usual #!/usr/bin/env python by doing ./game.py then ...
5
votes
5answers
5k views

Auto startup for java desktop application?

I have created a desktop application in java using NETBeans IDE 6.1... and made a jar file of the application. Now I want to make its auto start up in such a way that its start up whenever client ...
5
votes
3answers
242 views

How do I do Perl machine or platform dependent TDD?

How do I go about testing a function or module that is machine or platform dependent? For example, something that looks at/depends on $^O or a module like Net::Ifconfig::Wrapper? I don't need to ...
5
votes
17answers
4k views

What is the best multi-platform RAD language?

What is the best multi-platform RAD language for writing a desktop application? Nice GUI capability would be a bonus. Question Update: Now after 2 years from asking this question, can Adobe AIR a be ...
4
votes
1answer
116 views

compiling for other platforms

is it possible to compile (under mac os x using netbeans) C++ code for linux architectures?
4
votes
3answers
503 views

prefer windows or unix line ending for code?

I writing code that should compiled and run on both Windows and unix like Linux. I know about difference between line endings, but question is which to prefer for my code? Does it matter? I want it to ...
4
votes
4answers
1k views

Why can't Perl's PAR find the loadable object for Socket.pm?

I was using PAR::Packer to package my Perl application on Cygwin and then running it on HPUX. A simple hello world works well, e.g.: pp -p hello.pl That results in a.par and then on HPUX: parl ...
3
votes
1answer
685 views

How to configure git encoding for German Umlaute on Ubuntu and Windows?

I noticed that commit messages that contain German Umlaute are not displayed correctly when I run git log in Git Bash on Windows. Those commits were made on Ubuntu using the Terminal. Normally, commit ...
3
votes
8answers
658 views

Cross platform desktop application

I would like to develop a cross platform application, i'm not sure which is best to use for a desktop application Microsoft Silverlight Adobe Air Java? (don't want to do this) Firefox Add-On?
3
votes
4answers
4k views

How to make installer of java desktop application for multi-platform?

How could we made a jar file's installer, which can run on multi-platform, is there any simple way, because I don't know Java too well. Balwant
2
votes
2answers
171 views

How can I determine in R what platform I'm running on? [closed]

Possible Duplicate: R: determine if a script is running in Windows or Linux How can an R script determine what platform it's running on? I'm using R 2.10.1, sometimes on Windows, sometimes ...
2
votes
2answers
400 views

How to go about a platform independent E-Book Reader in C/C++?

I'm trying to develop an ebook reader(for mobile devices) which is platform independent. Currently my focus is epub only. As a proof of concept, we were able to make a basic epub reader for android ...
2
votes
2answers
161 views

What library to choose to build a user interface for a C++ software that uses SDL

I have a simulation software (C++) that runs on the command line. It is platform independent (currently compiling and running on Windows, MacOS X and Linux). When the simulation ends, I visualize the ...
2
votes
2answers
441 views

Bash alias to Python script — is it possible?

The particular alias I'm looking to "class up" into a Python script happens to be one that makes use of the cUrl -o (output to file) option. I suppose I could as easily turn it into a BASH function, ...
2
votes
8answers
223 views

Is it possible to write multi-platform program that is not writen in Java

Just curious, is it possible to write a multi-platform program that is not writen in Java. If true, could I do it by compiling two or three different programing languages (for each platform) together ...
2
votes
2answers
194 views

Multiplatform (Win, Mac, Linux) development environment to achieve native look-and-feel? (Just as Dropbox)

I've noticed that all betas for Dropbox are released simultaneously for Windows, Mac and Linux. How do they do that? Anyone knows which platform they're using? I'm aware that there are many native ...
2
votes
4answers
2k views

Can autotools create multi-platform makefiles

I have a plugin project I've been developing for a few years where the plugin works with numerous combinations of [primary application version, 3rd party library version, 32-bit vs. 64-bit]. Is there ...
1
vote
1answer
94 views

multiplatform atomic increment

Until std::atomic is available, what is the multiplatform (windows & linux) way of atomically increment a variable ? I am currently use boost::detail::atomic_count but it's in boost::detail ...
1
vote
3answers
402 views

Java: Open a file (Windows + Mac) [closed]

Possible Duplicate: How to launch the default (native) application for a given file from Java? I have a java application that opens a file. This works perfect on windows, but not on mac. ...
1
vote
0answers
109 views

Best way to access my asp.net Data from multiple mobile app

I'm new to mobile development! I have a web application with several users. I want to build multi-platform mobile app. I consider using phoneGap to build the app. My question is how can I make the ...
1
vote
1answer
311 views

How to use SSE with both Windows compiler and GCC compiler?

I have to optimize a piece of code using SSE extensions. My target platforms are Windows and Linux, so I build my application using MS compiler (VStudio) and GCC compiler. What approach does exist to ...
1
vote
1answer
149 views

Qt as a true multi-platform dev-env

Inspired by the maturity problems I am facing porting on Mono Mac & Linux. I am investigating the use of Qt as an alternative. I am curious to hear about your favorite Qt experiences, tips or ...
1
vote
3answers
127 views

OpenGL Game development for the Desktop / Platform issues

Does anyone have experience writing professional OpenGL games on Windows? For the Mac, due to apple's control, the OS seems quite "uniform". For windows, due to different hardware, different drivers ...
1
vote
2answers
122 views

What technology is involved in making Mozilla Firefox?

Programming Languages, Open source libraries and standards adopted to make Firefox works.
1
vote
4answers
663 views

How do you port a Windows-based application written in Delphi to different platforms such as Mac, iPhone and into a web-based application?

Currently, it is just a windows-based application (slowed down guitar software) written in Delphi. However, I do have plans to port them to the following platforms : Mac iPhone Web-based How do I ...
1
vote
6answers
1k views

What build system has the best support for cross platform driver, library and GUI builds?

What would be the best choice of build system for a more than one million line multi platform project, which produces drivers, libraries, command line tools, GUIs, and OS install packages for all the ...
0
votes
1answer
42 views

Strategies for multi-platform (not just cross-platform) development of the same product line?

I am here to ask for some high-level strategies for maintaining development of a multi-platform product line, in a startup environment. Think in terms of what a company like DropBox does to have an ...
0
votes
1answer
54 views

what should i use instead of Directory.SetCurrentDirecory?

i have a multi environment program that runs on windows ce machines, regular pc and windows mobile. I am using a database and files. because of the windows CE i need to use the ...
0
votes
0answers
165 views

Adding new toolchain support to Visual Studio

I'm looking to add support for a non-Windows platform for Visual Studio 2008. It would need to build C++ using a non-Microsoft toolchain (essentially a customised gcc). I know the easy way is to use ...
0
votes
2answers
214 views

How to port a simple application (which uses only standard libc) to iPhone OS?

There is a simple application written in C, which includes only standard C library functions (from stdio, stdlib, etc.) and Makefile+GCC to build it. Now, I wanna port it to iPhone OS for ...
0
votes
3answers
202 views

Unity in C# for Platform Specific Implementations

My program has heavy interaction with the operating system through Win32API functions. Now I want to migrate my program to run under Mono under Linux (No wine), and this requires different ...
0
votes
2answers
537 views

Get and set Num/Caps/Scroll-lock status in Mono C#

Is thyere a way in Mono.Net to get and set the Num/Caps/Scroll-lock status platform independent (Linux and Windows)? Thanks in advance.
0
votes
4answers
113 views

Compiling multiple languages together to make them run on different platforms

I would like to start with a THANK YOU to all those that answered my previous question on Compiling multiple languages together. Now I want to know whether or not it's possible to Compile multiple ...
0
votes
2answers
105 views

Which tools do I need to create installers multi-platform for my python application? [closed]

Possible Duplicate: An executable Python app imagine that I developed the next killer application in Python using pySide and other several third party libraries. Which tools do i need to ...
0
votes
4answers
603 views

How to store SQL query results for fast access?

SQL beginner here. I have a query which takes around 10 seconds to run, so we have a slow down in the application. Would it be possible in MySQL or more generally in SQL for the server to ...
0
votes
11answers
1k views

Cross-Platform Programming Language with a decent gui toolkit?

For the program idea I have, it requires that the software be written in one binary that is executeable by all major desktop platforms, meaning it needs an interpreted language or a language within a ...
0
votes
3answers
2k views

Live screencasting for both PC and Mac [closed]

This is not exactly very programming- but we are hosting a code hacking section every week. Now we have a guy left our origin and working oversea, but he still would like to join our event :) So the ...
0
votes
1answer
225 views

How to circumvent Symbian naming conventions?

I'm about to write a C++ library that is to be used by a Windows application as well as on Symbian. Linux is not a current requirement but should generally be possible, too. For this reason I would ...
0
votes
2answers
99 views

Overloading . -> and :: for use in multiplatform classes

Say I have three window classes, one for each OS I want to support: WindowsWindow OSXWindow LinuxWindow They all inherit from the Window class. This is also the class you instantiate. The Window ...
-2
votes
6answers
598 views

How to get basic user input for java

I began to learn c++ and then c# a couple of days ago, but I gave up early because I wanted to something that will run on multiple platforms, and i never understood pointers. So I finally settled for ...