Tagged Questions

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

learn more… | top users | synonyms (1)

128
votes
23answers
51k views

Is Python any good for GUI development?

I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it ...
81
votes
25answers
3k views

What belongs in an educational tool to demonstrate the unwarranted assumptions people make in C/C++?

I'd like to prepare a little educational tool for SO which should help beginners (and intermediate) programmers to recognize and challenge their unwarranted assumptions in C, C++ and their platforms. ...
66
votes
23answers
95k views

Best UML Application for MAC OSX / Cross Platform [closed]

What is the best mac based or even better cross platform UML Application available both costed and opensource / freeware?
56
votes
7answers
31k views

Cross-platform, cross-browser way to play sound from Javascript?

I am writing a dhtml application that creates an interactive simulation of a system. The data for the simulation is generated from another tool, and there is already a very large amount of legacy ...
44
votes
17answers
7k views

Is .NET/Mono or Java the better choice for cross-platform development?

How much less libraries are there for Mono than for Java? I lack the overview over both alternatives but I have pretty much freedom of choice for my next project. I'm looking for hard technical facts ...
42
votes
4answers
15k views

What's the best CRLF handling strategy with git?

I tried committing files with CRLF-ending lines but it failed. I spent a whole work day on my Windows computer trying different strategies, and was almost drawn to stop trying to use git and instead ...
39
votes
5answers
23k views

Java: How do I get a platform independent new line character?

How do I get a platform independent newline in java? I can't use "\n" everywhere.
39
votes
7answers
44k views

How to 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 disk space (free/total) *note that I mean overall memory ...
34
votes
7answers
14k views

Can I run a Python script as a service (in Windows)? How?

I am sketching the architecture for a set of programs that share various interrelated objects stored in a database. I want one of the programs to act as a service which provides a higher level ...
31
votes
11answers
25k views

How can one grab a stack trace in C?

I know there's no standard C function to do this. I was wondering what are the techniques to to this on Windows and *nix? (Windows XP is my most important OS to do this on right now.) Thanks for ...
27
votes
11answers
1k views

What platforms have something other than 8-bit char?

Every now and then, someone on SO points out that char (aka 'byte') isn't necessarily 8 bits. It seems that 8-bit char is almost universal. I would have thought that for mainstream platforms, it is ...
26
votes
14answers
2k views

Alternative to Eclipse for C and C++ development?

I have been using Eclipse for C and C++ development for some time. Unfortunately Eclipse has it's faults (speed, the crappy integrated console, and some bugs that pop up from time to time). For C++ ...
25
votes
2answers
767 views

Are (bool)(i & 1) and i % 2 == 1 same?

Are (bool)(i & 1) and i % 2 == 1 always same where i is int? Note: saying always I mean for all platforms (even when a byte is 16 bit) and for all standards of C and C++. Edit: For all ...
25
votes
10answers
850 views

What should a developer know about interface design, usability and user psychology to create great software? [closed]

Possible Duplicate: Human factors design (meeting psychological needs in UI design) What should a developer know about user interface design, usability and less technical aspects of human ...
24
votes
15answers
4k views

Using a Mac for cross platform development?

Who uses Macs for cross-platform development? By cross platform I essentially mean you can compile to target Windows or Unix (not necessarily both at the same time). I understand that this also has a ...
23
votes
4answers
4k views

Cross-platform way of getting temp directory in Python

Is there a cross-platform way of getting the path to the temp directory in Python 2.6? For example, under Linux that would be /tmp, while under XP C:\Documents and settings\\[user]\Application ...
23
votes
9answers
1k views

On the web, what fonts should I use to create an equivalent experience cross-platform?

Because Linux (and its variants) have a completely different set of fonts than Windows and Mac OS X, is there anyone with any experience of creating cross-platform font families - ideally finding ...
22
votes
22answers
40k views

Generate list of all possible permutations of a string

How would I go about generating a list of all possible permutations of a string between x and y characters in length, containing a variable list of characters. Any language would work but it should ...
21
votes
8answers
7k views

iOS / Android cross platform development

I've been playing around with developing Android apps in Java for a while and am starting to get a handle on it. However if I want to on start on an iOS version I need to code everything from scratch ...
21
votes
3answers
1k views

Windows: how to get a list of all visible windows?

(by all mean do re-tag with the relevant technology: I don't know which ones they are :) I'll probably come later with more detailed questions, about specific details but for now I'm trying to grasp ...
21
votes
13answers
6k views

Is Ruby any good for GUI development?

I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it ...
20
votes
10answers
2k views

WPF vs Silverlight 3.0

Silverlight 3.0 beta has just been announced at Microsofts Mix Conference in Las Vegas. Two features of the new beta are 3D-graphics and the ability to run applications outside of the browser, which ...
20
votes
5answers
7k views

Monitoring files/directories with python

I'm looking for a cross-platform file monitoring python package? I know it is possible to monitor files on windows usung pywin32, and there are packages working on Linux/Unix but does anyone know ...
20
votes
13answers
6k views

cross platform IPC

I'm looking for suggestions on possible IPC mechanisms that are: cross platform (WIN32 and Linux at least) Simple to implement in C++ as well as the most common scripting languages (perl, ruby ...
18
votes
2answers
597 views

fopen for everything - is this possible?

I used to programing windows, but I want to try my hand on making a cross-platform application. And I have some questions, if you don't mind: Question 1 Is there some way to open UNICODE\ASCII file ...
18
votes
3answers
6k views

Inspect the return value of a function in gdb

Is it possible to inspect the return value of a function in gdb assuming the return value is not assigned to a variable?
18
votes
9answers
2k views

Best practices for portable C#

I am looking to write some C# code for linux/windows/mac/any other platform, and am looking for best practices for portable code. Project mono has some great porting resources. What are the best ...
17
votes
8answers
2k views

Cross-platform desktop notifier in Python

I am looking for Growl-like, Windows balloon-tip-like notifications library in Python. Imagine writing code like: >>> import desktopnotifier as dn >>> dn.notify('Title', 'Long ...
17
votes
4answers
17k views

Using cmake to generate visual studio C++ project files

I am working on an open source C++ project, for code that compiles on Linux and Windows. I use cmake to build the code on Linux. For ease of dev-setup and political reasons, I must stick to visual ...
17
votes
7answers
12k views

How can I detect the operating system in Perl?

I have Perl on Mac, Windows and Ubuntu. How can I tell from within the script which one is which? Thanks in advance. Edit: I was asked what I am doing. It is a script, part of our cross-platform ...
17
votes
13answers
13k views
17
votes
10answers
7k views

any good tool for makefile generation?

I'm looking for a tool which can generate makefile for a C/C++ project for different compilers (gcc, microsoft vc++, borland etc) and different platforms (Win, Linux, Mac).
16
votes
3answers
4k views

Best folder structure for C++ cross-platform library and bindings

I am about to begin work on a cross-platform library to be written in C++. Down the road, I intend to implement bindings for other languages such as Python, Java, etc. The library needs to be ...
16
votes
6answers
10k views

Shutting down a computer using Java

Is there a way to shutdown a computer using a built-in Java method?
15
votes
4answers
4k views

Create cross platform Java SWT Application

I have written a Java GUI using SWT. I package the application using an ANT script (fragment below). <jar destfile="./build/jars/swtgui.jar" filesetmanifest="mergewithoutmain"> ...
15
votes
11answers
2k views

How to write a GUI for a large cross-platform C++ project?

I have a large cross-platform (Linux and Windows) C++ project, for which I want to create a GUI. I have few very general questions about the basic principles of GUI for such project: Should the GUI ...
15
votes
6answers
4k views

How to handle stdafx.h in cross-platform code?

I have a Visual Studio C++ based program that uses pre-compiled headers (stdafx.h). Now we are porting the application to Linux using gcc 4.x. The question is how to handle pre-compiled header in ...
15
votes
6answers
2k views

Difference between “\n” and Environment.NewLine

What is the difference between two if any (with respect to .net)? Thanks
15
votes
8answers
506 views

What Issues prevent Java applications from working on multiple platforms?

Java is supposed to be "write once, run anywhere" and it really can be, but in some cases it turns into "write once, debug everywhere". What are the most common reasons for problems when moving a ...
15
votes
7answers
8k views

java background/daemon/service cross platform best pratices

I am looking for the best way to make my desktop java program run in the background (daemon/service?) across most platforms (Windows, Mac OS, Linux [Ubuntu in particular]). By "best way" I am hoping ...
15
votes
9answers
627 views

Where should cross-platform apps keep their data?

I'm building an application that is targeting Windows, Mac and Linux soon. I was wondering where should I keep application data such as settings, etc. Application's installation folder is the easiest ...
14
votes
6answers
750 views

What is your experience with Android webapps (limitations, tips, best practices)?

Update: As François mentioned, there are alternatives such as Phone Gap for a more cross-platform approach. It's a very good suggestion indeed. I'm open to any suggestions and I would really ...
14
votes
6answers
993 views

C++ frontend only compiler (convert C++ to C)

I'm currently managing some C++ code that runs on multiple platforms from a single source tree (Win32, Linux, Verifone CC terminals, MBED and even the Nintendo GBA/DS). However I need to build an app ...
14
votes
6answers
872 views

Is Mono robust enough for serious enterprise development?

It's been a few years since I've taken a deep look at Mono. When I last took a look, it wasnt quite there as far as BCL implementation and the tools available were limited. I have a specific need now ...
13
votes
6answers
276 views

Hierarchical Enums in C++

I'm working on a message parser/generator subsystem. I'm creating an auto-generator that uses a database that contains all of the information about this protocol, including enum lists, to generate the ...
13
votes
16answers
1k views

Which are the current/emerging desktop development technologies worth looking into?

Greetings, With all the existing development towards web development and emerging technologies in that area, I'm left wondering; what is a state of the art way to implement desktop applications in ...
13
votes
3answers
2k views

How to add a timeout to a function in Python

Many attempts have been made in the past to add timeout functionality in Python such that when a specified time limit expired, waiting code could move on. Unfortunately, previous recipes either ...
13
votes
2answers
12k views

How mature is SDL for iPhone?

For a while I've been thinking of trying to do a port of one of my favorite classic PC games, The Ur-Quan Masters (aka Star Control 2) to the iPhone. UQM uses SDL for all its graphics, sound, input ...
13
votes
9answers
4k views

Using Linux vs Windows for development

On my servers I run everything on Linux/ Apache, but for offline preparation before upload of the projects I'm using Windows (Vista) with a local Apache/ WAMP, PHP, Python, GD_image installation and ...
13
votes
3answers
8k views

Which Java GUI framework to choose now?

Which GUI framework/library would you choose if you were to start your new project now or in the near future? It has to be free for commercial use and cross platform. I have been a happy swing user, ...

1 2 3 4 5 33