Converting existing code or executables to another programming language, environment, or architecture.
4
votes
1answer
130 views
What are the points to be kept in mind while porting c++ code from Linux to Windows? [closed]
I have started to port a project which involves C++, qt , MySql codes.These codes are written for Linux and I am porting them to Windows. So my question, are there any general points to be kept in ...
1
vote
3answers
367 views
Qt migrating code from Linux to Windows
I use id3Tag library for my project. I set headers and libraries successfully on Linux and compiled without troubles, but I have some troubles with moving code to Windows. (I only started to study ...
5
votes
2answers
124 views
How should I build a list and return it in clojure?
I'm still learning this alien functional paradigm...
How would I write the following code in Clojure, and in a functional way?
assume this missing parts are defined elsewhere and behave as described ...
0
votes
1answer
76 views
Ported GPL library should be under GPL as well?
I'm interested in the following situation:
There's GPL library written in one programming language.
I want to port parts of the library to another programming language from scratch.
Should I ...
0
votes
1answer
229 views
What is the /proc/self/cmdline / GetCommandLine equivalent on Mac OS X?
How can I access the command line on Mac OS X without using argc, argv? On Linux, I would simply read /proc/self/cmdline or use GetCommandLine on Windows, but I can't find the equivalent for Mac OS X.
...
3
votes
1answer
270 views
Catching derived exceptions types fails on Clang/MacOS X
I have a C++ library which I'm trying to get running on Mac OS X with Clang. The library consists of a DLL and a Unit-Test executable. It compiles fine with GCC and MSVC, with GCC, I use the following ...
0
votes
2answers
2k views
My Particle Swarm Optimization code generates different answers in C++ and MATLAB
I have written a global version of Particle Swarm Optimization algorithm in C++.
I tried to write it exactly as same as my MATLAB PSO code that have written before, but this code generates different ...
0
votes
3answers
726 views
To get IP Address from interface name in Windows
I like to know, winapi from which i can get ipaddress using interface name. The Linux version of which is as below.
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
...
3
votes
3answers
575 views
How to update Format function from VB to VB.NET
I am trying to port a VB function to VB.NET, but I cannot get the function to work correctly and update properly.
rFormat = Format(Format(Value, fmt), String$(Len(fmt), "@"))
It seems like the ...
1
vote
1answer
338 views
Solution-Wide Defines in Visual Studio?
I've got a very large application built using Visual Studio 2008 which is designed to run on Windows XP. The code consists of one solution file which contains six separate projects. My job is to ...
0
votes
1answer
270 views
Set default file/directory permissions for /data/sdcard in Android
I'm currently creating a custom build of Android-gingerbread for one of my device by making some modifications I need on the source-code of Android.
I wanted to know if there is any way by which I ...
3
votes
2answers
91 views
VBA: incompatible with .NET regex balancing groups?
I have been checking around as to whether I can use .NET regex balancing groups in an excel spreadsheet VBA function.
However, it appears that VBA is not compatible with, nor is it a part of .NET. ...
1
vote
3answers
102 views
java to objective c with malloc
How to port this code in Objective-C? Anyone please help.
return data.length != 0 ? new Byte(data[0]) : null; // In Java
I am doing it this way, but this does not show the proper result
...
2
votes
1answer
142 views
Java to Objective c
My problem:
I have code in Java that I need to port to Objective-C where
Obj[i] is byte[],
Buffer is byte[],
index is int
In my Objective C I have declared
Obj[i] is char**
Buffer ...
0
votes
1answer
326 views
Alternative for std::exception(const char*) non-standard constructor
My Visual C++ code uses the std::exception constructor that accepts a string and I'm trying to port the code to Linux / G++. What exception class should I use?
1
vote
1answer
51 views
Getting error in app porting
I am porting an app from HVGA (Bada 2.0.2 device ) to WVGA( Bada 1.2) using ecllipse( version 2.0.2 ).
For this I have done the following changes in my project
Project-> Properties/Bada build
Set ...
0
votes
4answers
456 views
special character in #define macro
I am new to C++ and facing one easy problem mention below.
in visual C++ 2008, i am trying to #define something like
#define fromThis* toThisPtr
#define fromThis toThisObj
I am porting some ...
0
votes
2answers
529 views
matlab to python code conversion
I am trying to convert a matlab code to python due to lack of matlab. I will be grateful if you kindly tell me the python equivalents of the following functions which I could not find:
...
1
vote
0answers
104 views
How to port a NetBeans project on a different computer?
I developed a C++ project with NetBeans on Linux, and it is working fine.
Now I would like to rebuild it on a different computer, with a different directory structure.
However, the path of every file ...
1
vote
1answer
87 views
Porting Regex Code
I have some regex code originally written in PHP and I need to port this to ASP. Here is the original PHP code:
$contents = file_get_contents("http://localhost/source.txt");
$title = 'My Title';
...
0
votes
2answers
763 views
Running .NET app and DLLs on an Android phone?
I've got a .NET app and some related third party DLLs, that I would like to run on an Android phone. The .NET app is written in C# and the DLLs are fully mananged, although they contain some unsafe ...
1
vote
1answer
740 views
System.Drawing.Bitmap in the .NET Portable Framework
As exercise, I'm trying to port Overv/SteamWebAPI to a Portable Class Library. However, one of the functions returns a System.Drawing.Bitmap, which is not available in the .NET Portable subset.
...
2
votes
3answers
76 views
Porting @optional selectors in protocols to Java interfaces
So, let's say you have this:
if ([foo respondsToSelector:@selector(bar:)]) {
[foo bar:abc];
} else {
[qux mux:abc];
}
And both bar: and mux: have side effects.
How would you port that to ...
0
votes
2answers
245 views
Linux/64-bit /LARGEADDRESSAWARE equivilant
Windows enables you to restrict address-space usage to a 32-bit resolution by setting a flag in the PE header (/LARGEADDRESSAWARE). To elaborate: When set, this flag effectively emulates a 32-bit ...
0
votes
0answers
28 views
porting a program to Windows from Linux, how to fix the difference between '/' and '\'?
porting a program to Windows from Linux, how to fix the difference between '/' and '\'?
ex. /etc/tmp under Linux, so how can I port it to Windows? and so on
thx
0
votes
2answers
104 views
What's DirectX9's equivalent of LPDIRECT3DDEVICE8 etc?
I have a game written for DirectX8, which I'm trying to update to build under DirectX9. I hear DirectX8 isn't supported by MS and DirectX9 is supposed to allow me to do what was done in DirectX8. So ...
4
votes
2answers
77 views
Attribute Targets C# - How to port the code with attribute targets into Java?
First of all, we are talking about Keepass here.
The file in question is: KeePass-2.19-Source\KeePass\Native\NativeMethods.cs
The code.. well, is the file itself. But here is a snippet:
...
0
votes
1answer
110 views
OpenSSL ERR_GET_LIB numeric values to human understandable clues
I'm porting a project written in C onto an OpenWRT mipsel system. Cross-compiling and library linking is all fine, the project builds and runs on the mipsel system, but there's a runtime problem with ...
3
votes
2answers
244 views
Are there any tools that assist in porting F# to OCaml?
Unfortunately, due to .NET's lack of an incremental GC (either in the MS or Mono implementation), building soft real-time software such as games with F# is problematic. I've written a language in F# ...
2
votes
0answers
116 views
Building own Android with own UI for Vodafone Smart Tab
We are working on experimental project and we need to build own Android and replace it with our own UI for Vodafone Smart Tab which comes with Android 3.2. As a resource I am using ...
0
votes
2answers
254 views
MFC header file under Linux g++: expected ‘{’ before ‘<’ token
I have an old MFC based C++ project that I am trying to compile with g++ in eclipse on Linux (Centos 6.2).
I'm getting the following errors from header files:
RawData.h:54: error: expected ...
1
vote
1answer
3k views
porting libcurl on android with ssl support
I am trying to port libCurl to android with SSL support,
step one would be to port the curl without ssl support I guess so I started doing that. but I run into a problem.
as I read on the dev ...
2
votes
2answers
215 views
Find a polynomial for a set of integers
I've been working on a function in Mathematica which generates and then alters a set of integers, and then finds the interpolating polynomial of that set. I can do the set generation in C++ fine, but ...
0
votes
2answers
102 views
MongoDB port to node.js [closed]
Does it make sense that MongoDB would be ported to node.js? I would have thought it would make a lot of sense to implement MongoDB in JavaScript within node.js; and have performance benefits.. has ...
1
vote
2answers
1k views
Can you make a universal storyboards app with only a single storyboard file?
Can you make a universal app with storyboards without the ipad storyboard file, just the iphone storyboard file and use the iPhone storyboard file for iPad too?
2
votes
1answer
140 views
compiling+distributing Linux code on Windows
I have a larger code running in Linux, written in c++ (c++11) and python and using numerous libraries (VTK, boost, pyqt, OpenGL) and compiles to python extension modules (and plugins of those modules) ...
1
vote
2answers
141 views
Translate Matlab code to Numpy
I just started to translate a Matlab code to numpy, how can I write the following code in python
InputVec = [2,3,4]
InputVariable(1,:)=InputVec;
0
votes
0answers
402 views
Porting a simple free iOS app to Android
I'm curious about efficient strategies for porting simple iOS apps to Android. In this case "simple" means an app with one full-screen UITableViewController that's populated with an XML file ...
1
vote
1answer
150 views
Porting Javascript string building code to Objective C
I have this code in Javascript:
var f = chr(50) + chr(0) + chr(1) + chr(64) + chr(24) + chr(0) + chr(0) + chr(1) + chr(159) + chr(13) + chr(0) + chr(0) + chr(224) + chr(7);
function chr(AsciiNum) {
...
2
votes
1answer
148 views
Which are the good Cocoa API ports for Delphi
Are there any good Cocoa API port for Delphi.
I know JCL has a good Windows API port for Delphi but it seems I miss which is the best port of Cocoa API.
-3
votes
1answer
119 views
How do I write this matlab example to python
I am trying to convert this to python. I just really need help with 1 line. I nevered learn matlab
function [xc,yc,R,a] = circfit(x,y)
%
% [xc yx R] = circfit(x,y)
%
% fits a circle in x,y ...
1
vote
1answer
214 views
Porting Java: C++ --> Class types
I'm considering porting the java library Artemis. An entity system framework. I havn't started yet. Instead I have been analyzing the internal works of how the java code is put together. I know there ...
3
votes
3answers
196 views
Porting C# Func<> to Java- Math Equation
I'm porting a C# Library to Java (for nonlinear regression, original code here). The library uses the Func<> class, which doesn't exist in Java. I.E. (A, B, C, and D, and time are parameters used ...
0
votes
1answer
152 views
Routes library for python 3
Can somebody skilled look at Routes library in python and tell me why there is not python 3 support?
I need Routes functionality for use with Cherrypy on python 3. And I am curious if it will be ...
0
votes
1answer
193 views
MATLAB to C++ Programming Help Please
I have the MATLAB Code created but I am wondering if I can convert this MATLAB Code to C++ in a simplistic form.
%# Plotting T coordinates which represent the temperature
%# in the vertical
...
3
votes
0answers
628 views
Port RSA encryption Java code to C#
I'm trying to port the following Java code to a C# equivalent:
public static String encrypt(String value, String key) throws InvalidKeySpecException, NoSuchAlgorithmException, NoSuchPaddingException, ...
0
votes
2answers
179 views
Getting the environment variables for current process in linux
I am trying to port an application from windows to linux. In windows I have a
GetEnvironmentStrings() function in windows.h which provides me the environment variables and their values in the current ...
0
votes
1answer
152 views
How do you do list slicing equivalent to python in Ruby?
I am tryiing to port some python code to ruby, and I am doing pretty well, using equivelent ruby functions, even removing / altering some to use ruby features more.
However at a core point I need to ...
3
votes
1answer
105 views
Porting WPF controls to Silverlight
I'd like to port one of Syncfusion's (a third-party .NET controls vendor) WPF controls to Silverlight.
I understand that Silverlight is a subset of WPF and thus there will be limitations and ...
1
vote
1answer
56 views
Ruby's && operator with regards to arrays
I'm porting Amp's DiffLib implementation to C# and stumbled upon this very line (#114):
@b2j[@a[i,1]] && @b2j[@a[i,1]].each do |j|
Now, I got everything else ported and most tests seem to ...

