Tagged Questions
Converting existing code or executables to another programming language, environment, or architecture.
27
votes
14answers
24k views
Is there an effective tool to convert C# code to Java code?
Is there an effective tool to convert C# code to Java code?
14
votes
6answers
19k views
What is the bit size of long on 64-bit Windows?
Not to long ago someone told me that long are not 64 bits on 64 bit machines and i should always use int. This did not make sense to me. I seen docs (such as the one on apples official site) say that ...
13
votes
2answers
664 views
Java Equivalent of Reflection.Emit
As far as I can tell, Java has no such equivalent of C#'s Reflection.Emit stuff. Are there any additional libraries for Java that provide similar functionality? What are the differences (to reflection ...
13
votes
1answer
450 views
Converting long[64] to byte[512] in Java?
I'm porting a process over to Java. There's already working versions in C# and C++.
I have a section in C# that I do Marshal.Copy(...) to convert 64 ulongs to 512 bytes and that line in C++ I use ...
13
votes
1answer
4k views
Upgrading from Drupal 6 to Drupal 7: best programmer's practices?
Although I am using drupal since the D4 series, I only started developing professionally for it with D6, so - despite I did various site upgrades - I was never faced by the task of having to port my ...
13
votes
10answers
14k views
How can I convert VB6 code to C#?
Does anyone know a way to convert from VB6 code to C#?
Is there a tool that can do this for me?
12
votes
4answers
493 views
iOS UI elements porting on Android
ladies and gentlemen!
Very often on my job I meet the following requirement from the client, when developing android applications: "make it look like and iPhone app".
Yes, I know, that the best way ...
12
votes
6answers
4k views
Port of Random generator from C to Java?
George Marsaglia has written an excellent random number generator that is extremely fast, simple, and has a much higher period than the Mersenne Twister. Here is the code with a description:
good C ...
12
votes
2answers
4k views
What's “in” and “out” of OpenGL-ES? (Porting from OpenGL)
It seems that all of the documentation I can find about OpenGL-ES says something to the effect of "OpenGL-ES is just like OpenGL, but without a lot of stuff. For example, there's no glBegin or ...
11
votes
5answers
3k views
BeautifulSoup's Python 3 compatibility
Does BeautifulSoup work with Python 3?
If not, how soon will there be a port? Will there be a port at all?
Google doesn't turn up anything to me (Maybe it's 'coz I'm looking for the wrong thing?)
10
votes
4answers
826 views
What are the possible pitfalls in porting Psyco to 64-bit?
The Psyco docs say:
Just for reference, Psyco does not
work on any 64-bit systems at all.
This fact is worth being noted again,
now that the latest Mac OS/X 10.6
"Snow Leopart" comes with ...
10
votes
6answers
10k views
Running a C#/WPF application on a Mac
I sell a C#/WPF application (targeting .net 3.0 at the moment) and people keep asking me for a Mac version.
The application is a time tracking application with a good GUI, there isn't that much ...
10
votes
5answers
6k views
What's the equivalent of Windows' QueryPerformanceCounter on OSX?
I'm porting a library from Windows to *NIX (currently OSX), does anyone now what function can I use instead of Microsoft's QueryPerformanceCounter and QueryPerformanceFrequency?
9
votes
3answers
1k views
Things to keep in mind when migrating from VS2008 to VS2010
So, I'll be soon working on porting two APIs (C++ and C++/CLI) to use the VS2010 compiler. I think it'd be a good idea to have a head start on this. Any tips?
9
votes
7answers
775 views
Help me to port this NetHack function to Python please!
I am trying to write a Python function which returns the same moon phase value as in the game NetHack. This is found in hacklib.c.
I have tried to simply copy the corresponding function from the ...
8
votes
5answers
2k views
Android x86 porting, unable to make it work
I'm kind of new to the whole porting issue and I got to it because of the slowness in the emulator provided with the Android SDK.
I downloaded the android-x86-3.2-RC2-eeepc and ...
8
votes
6answers
902 views
When porting Java code to ObjC, how best to represent checked exceptions?
I am working on porting a Java codebase to Cocoa/Objective-C for use on desktop Mac OS X. The Java code has lots and lots of methods with checked exceptions like:
double asNumber() throws ...
8
votes
5answers
1k views
How Compatible is GNU Smalltalk with Squeak
I'm working on an app in squeak that requires no graphics at all, its all just data manipulation. The problem is that I work in a fairly conservative environment and I dont think I'll be able to sell ...
8
votes
15answers
2k views
Migrating a project from C# to Java
With some changes in the staffing at the office, the levels of C# expertise has dropped off precipitously and there are now more Java developers. It has gotten to the point where the higher-ups are ...
7
votes
4answers
390 views
Porting Java class and methods to Android. (TextLayout, Font, Graphics2D, & more)
I've been toying around in Android and attempting to port over a Java app. Below are some questions regarding to issues I've run into and would like some guidance on.
It is a rather large question ...
7
votes
3answers
198 views
C++ coming from Java and Objective-C
So, I know both Java and Objective-C quite well, but (perhaps strangely) never really learned C++. Obviously, the languages are all related, but there are syntactical differences that I don't fully ...
7
votes
2answers
695 views
Are there any benchmarks on J2MEPolish converting a J2ME app to Android?
J2ME Polish claims to support porting of existing J2ME applications to Android. Has anyone tested the quality of such a port. How reliable is it?
6
votes
8answers
2k views
Are there any huge differences between objective-c and Java, or iPhone and Android?
Edit: My bad, I meant objective-c, not c#. Some reason I got it into my head it was c# the iphone used. So the answers for c# were great, thanks, but theyre a bit irrelevant, sorry about that.
I've ...
6
votes
3answers
3k views
WaitForSingleObject and WaitForMultipleObjects equivalent in linux
I am migrating an applciation from windows to linux.
I am facing problem w.r.t WaitForSingleObject and WaitForMultipleObjects interfaces
In my application I spawn multiple threads where all threads ...
6
votes
3answers
851 views
Switch from Google AppEngine to another server
Currently I'm building my Java Web Application on Google AppEngine (GAE), but due to a lot of limitations they have I'm afraid that I'm going to have to switch from GAE to my own server which is ...
6
votes
4answers
468 views
Guidelines to write C# applications for .NET and mono
Mono claims to be compatible with .NET.
Have you tried it?
Can you share any tips or guidelines for making a running .NET application compatible with mono?
5
votes
2answers
178 views
Convert C++ function to C#
I am trying to port the following C++ function to C#:
QString Engine::FDigest(const QString & input)
{
if(input.size() != 32) return "";
int idx[] = {0xe, 0x3, 0x6, 0x8, 0x2},
...
5
votes
2answers
84 views
Reading the route table on FreeBSD
I'm porting an application from Linux to FreeBSD that needs to look at the table of network routes ("route" on Linux or "netstat -r" on FreeBSD).
On Linux, the application simply reads ...
5
votes
1answer
462 views
Understanding TBitmap.Scanline in Delphi & C++ Builder
Delphi & C++ Builder have a TBitmap class with a Scanline property which returns the memory of pixels of the bitmap. This seems to be different when I look in a hex editor of the BMP file.
I'm ...
5
votes
3answers
122 views
Porting a C++ map with std::accumulate to PHP
I'm not terribly well versed with array manipulation in PHP, so I have a simple porting question. In C++ I have a map std::map<int, int>, for which the implicit ordering on the key is a crucial ...
5
votes
3answers
993 views
Porting jQuery to CoffeeScript?
CoffeeScript seems like a promising new technology, and I'll definitely give it a try in my next project.
It seems like jQuery can be used easily with CoffeeScript as is - however will it make any ...
5
votes
1answer
320 views
How to reference segment beginning and size from C code
I am porting a program for an ARM chip from a IAR compiler to gcc.
In the original code, IAR specific operators such as __segment_begin and __segment_size are used to obtain the beginning and size ...
5
votes
6answers
379 views
How to make Silverlight version of existing C# code that relies on System.Drawing namespace
We have pretty much C# 2.0 code that heavily relies on System.Drawing namespace. Also there is some WinGDI dependencies (via interop).
How would you recommend to tackle the problem of making ...
5
votes
3answers
962 views
Converting Actionscript syntax to Objective C
I have a game I wrote in Actionscript 3 I'm looking to port to iOS. The game has about 9k LOC spread across 150 classes, most of the classes are for data models, state handling and level generation ...
5
votes
3answers
340 views
Porting iphone app. If you were to start your app again from scratch what would you do differently?
If you were to start your app again from scratch what would you do differently, knowing the platforms you were going to port to?
This questions comes as my team is about to under-go development for a ...
5
votes
1answer
241 views
g++ template problem
I'm porting my c++ windows code (msvc & intel) to Linux (g++). The code uses lots of templates (I like metaprogramming ;-). But I can't compile this code:
template <class TA>
struct A
{
...
5
votes
1answer
216 views
How to approach porting a game engine to another platform?
I've run into this problem several times before and wanted to hear what other's experience and advice is. Assume you have a working and stable but relatively small game engine that works on only one ...
5
votes
2answers
191 views
How would I translate this C# code into PHP? Solve the mystery of someone's crappy API doc!
I was handed an software doc (or what passes for proper documentation nowadays). Much to my chagrin, it might as well have been gently used piece of toilet paper from the men's room. Needless to ...
5
votes
4answers
115 views
Programming time schedule for porting a program
I'm working on a large program which has an abstracted GUI API. It is very GUI based, many dialogs and a few nasty features which rely heavily on the message flow of the GUI (correct sequences of ...
5
votes
7answers
668 views
Which language would you port COBOL programs to and why?
When selecting a language to port COBOL programs from what language would you chose and why? I am not looking for the answer "because I am familiar with language X".
I am looking for features in a ...
5
votes
2answers
820 views
How can I help port Google Chrome to Linux?
I really enjoy Chrome, and the sheer exercise of helping a port would boost my knowledge-base.
Where do I start?
What are the fundamental similarities and differences between the code which will ...
5
votes
5answers
617 views
What is the best approach to moving a preexisting project from Flash 7/AS2 to Flex/AS3?
I have a large codebase that targetted Flash 7, with a lot of AS2 classes. I'm hoping that I'll be able to use Flex for any new projects, but a lot of new stuff in our roadmap is additions to the old ...
4
votes
6answers
234 views
Any better options than porting from C# to Java?
I have an existing library written in C# which wraps a much lower-level TCP/IP API and exposes messages coming down the wire from a server (proprietary binary protocol) as .NET events. I also provide ...
4
votes
2answers
413 views
Mono with C# - Converting a WinForms interface over to Cocoa? (or whatever the default OS X interface is)
I have a C# app that I've managed to get working with Mono and running on OS X. The application itself runs just fine, but it doesn't really look all that good when run on OS X. The button fonts look ...
4
votes
5answers
241 views
Porting C++ to C# - templates
I'm porting a C++ application to C#, and have run across templates. I've read up a little on these, and I understand that some templates are akin to .Net generics. I read the SO answer to this case ...
4
votes
2answers
194 views
Connect C/C++ with .NET
I'm considering porting an application C / C + + in C + + / CLI.
Mainly I would like to exploit the potential of reflection, XML serialization and in general all the features in. NET framework ...
4
votes
1answer
581 views
Porting Borland C++ Builder to Qt
I have to port a project from Borland C++ Builder 5.0 under Windows XP to Qt 4.7.1 using g++ under Windows 7/mingw. The libraries and command-line utilities are done, and now I have to tackle the GUI ...
4
votes
4answers
185 views
Translate C++ Constructor into Java
I'm working on translating a small package from C++ to Java. I've never really used C++, so some of the syntax is a bit of a mystery. In particular, I'm having difficulty working out what the Java ...
4
votes
1answer
132 views
Mapping C data structures and typedefs to .Net
I'm trying to write an interface for communicating with a network protocol, but the IEEE document describes the protocol at the bit level with information split accross a single byte.
What would be ...
4
votes
1answer
338 views
OS X Vs Linux - Serial port handling
I am trying to port (or rather customize) a pure Linux application to OS X Snow Leopard (10.6.4). It is an application that sends a binary to a target hardware over the serial port. The app is almost ...