Tagged Questions

0
votes
11answers
234 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 …
0
votes
4answers
70 views

How to store SQL query results for fast access ?

Hello, 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 …
0
votes
2answers
180 views

Live screencasting for both PC and Mac

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 o …
1
vote
12answers
973 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.
2
votes
2answers
85 views

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

Hi, 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 …
0
votes
1answer
95 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 th …
1
vote
5answers
480 views

Auto startup for java desktop application?

Hi friends, 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 …
4
votes
2answers
195 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 doi …
1
vote
5answers
346 views

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

Hi friends, 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
1
vote
3answers
157 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 W …
1
vote
6answers
329 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 p …
4
votes
3answers
136 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? …
3
votes
3answers
374 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 t …
2
votes
3answers
631 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 …
0
votes
2answers
84 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 inst …