The code-translation tag has no wiki summary.
0
votes
4answers
80 views
Small Basic Arrays to C# [closed]
I hate arrays! I have no idea how to create them or use them :/
So I wonder if you could help me...
I've got a basic understanding of arrays in Small Basic which I'm learning at school at the moment ...
2
votes
2answers
56 views
Translate Matlab's vector assignment into Python form
I'm trying to translate some Matlab code into Python (using NumPy). I'm not very familiar with Matlab, and I've encountered a line that I'm having trouble parsing:
w(idx(1:p, 1), 1) = v(idx(1:p, 1), ...
0
votes
1answer
45 views
Realtime URI-translation of HTML content in C/C++
For the development of a custom reverse proxy (written in C++) I want to do a realtime translation of URIs in HTML content. For example if I want to access a ressource on http://myserver/ using ...
0
votes
2answers
131 views
Get column where relation is not NULL
I have a database which was migrated from SQL Server to MySQL. I had an existing query in SQL Server to get the value of a column where the relation is not null, I mean, if the relation between two ...
6
votes
1answer
157 views
Is there a program that translates Scheme/Java/Ruby code to english sentences?
I found this article about converting english sentences to Scheme, but can't seem to find any efforts to do the inverse (i.e. Scheme to english sentences):
...
0
votes
6answers
99 views
translation of vb code to c#
I have some code from the 4guysfromrolla website which gives a tutorial on logging in as another user with admin credentials.
I have most of it working but i'm having some trouble translating this ...
0
votes
0answers
34 views
translate cpu instructions code
I have some code related to CPU.
What is the meaning of each of them?
0 - 2004
1 - 1005
2 - 3006
3 - 7001
4 - 0053
5 - FFE9
6 - 0000
1
vote
2answers
54 views
Are there performance downsides for using only expressions / no statements in JavaScript?
I'm working in translating a huge amount of code of certain language to JavaScript. My work would be considerably easier if I translated everything as expressions, without statements. For example, ...
0
votes
2answers
100 views
Trying to make a multivalue dictionary that inherits from Dictionary - C# to VB conversion
Hi I am trying to convert this C# code to VB
class MultiValueDictionary<TKey, TValue> : Dictionary<TKey, List<TValue>>
{
public void Add(TKey key, TValue value)
{
...
3
votes
1answer
261 views
String Template: make all variable declaration global
I am trying to implement a translator using ANTLR+StringTemplate.
I have a starting language that is java like and multiple destination language.
I used the example: ...
0
votes
0answers
146 views
Reading input from assembly in code converted from C++
Its a simple question, but I'm stuck. I'm just trying to take a user input on MARS to substitute what I have on .LC0 so I can use it on my function. The function is a basic Taylor series that was ...
1
vote
0answers
106 views
Dynamic Language to Dynamic Language “translation” using Reflection? [closed]
I am actively working on a project to translate over 5,000 of lines of a Ruby back-end project to Dart. (It has taken over a week to translate the first 800 lines - its a lot of work to do manually, ...
1
vote
3answers
65 views
printing array values in js
I'm trying to create a function that will run through an array and collect it's value to a string that looks like this: '[1,2,3]'. I also need it to present only part of the array in some cases, ...
0
votes
0answers
108 views
Unable to translate Python code for working with google protocol buffer data to Haskell [closed]
I have google protocol buffer data that I need to read. I tried to write it in Haskell, but it didn't work, so I reverted to using python. I have no control over the gpb binary file and the rest of my ...
13
votes
1answer
577 views
C99 printf formatters vs C++11 user-defined-literals
This code:
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
int main(int argc,char **argv)
{
uint64_t ...
1
vote
1answer
214 views
Qt creating new translation (ts) using Visual gives error - (ExitCode 1)
I am using QTranslator in VS 2010. When using the process below I get an error saying the add-on has exited with an error (Exitcode 1). I have been through the whole process (code to executable with ...
0
votes
1answer
48 views
Instruction detection at run-time
I would like to identify and analyze different machine instruction executed and required clock cycle for each of them, throughout running of a code.
Is there any way to do this simply? Dynamic ...
4
votes
2answers
547 views
Modern Ada to C/C++ translator
Is there any source-to-source converter (translator) from Ada (95, 2005) to C?
How full they are (can they convert every feature of Ada into gnu c99 + pthreads + POSIX)?
Is it possible to use such ...
11
votes
3answers
368 views
Java code transform at compile time
I would like to transform java source code at compile time just before passing the source code to the compiler. In other word I would like to create a preprocessor able to transform
"bla bla bla"
...
5
votes
3answers
252 views
Translating code from Python to Smalltalk
Let me say first that I'm NOT searching for automagical solutions here. I want to translate code from Python to Smalltalk because I've noticed some very simple sentences can be automatically ...
3
votes
1answer
169 views
Automatically translate (non-English) comments to English?
I have a matlab code-base whose comments are written in Swedish.. it's something like this
% Syntax: result = ocr(DOC, METHOD, fname)
% DOC - bild som ska processas
% METHOD - ann eller knear
% ...
3
votes
2answers
258 views
Translate JMonkey Tutorial to JRuby
I've got all the tutorials up to beginner #5 translated and working, but I don't know Java well enough to know how to port the lines:
private ActionListener actionListener = new ActionListener() {
...
1
vote
2answers
179 views
SQL Script converted to MySQL
I am trying to fix this migration history problem but can't get this to work in MySQL
SELECT *
INTO [TempMigrationHistory]
FROM [__MigrationHistory]
DROP TABLE [__MigrationHistory]
EXEC sp_rename ...
0
votes
1answer
221 views
Replacement for java bitwise operator in objective c
How can I translate the following code to objective c? (Value is an int)
while (value != 0) {
value >>>= 1;
And is there a general replacement for the >>> operator?
1
vote
3answers
57 views
Is there a language that is designed with one-way translation into more than one other popular language?
CoffeeScript gets converted to JavaScript, Groovy to Java.
Is there a language that was designed to allow its functions to be converted into multiple languages?
One could write string manipulation ...
0
votes
1answer
231 views
Small errors when translating code from C# to VB.NET
I have almost completed a translation from C# to VB.NET, however, I run into some small errors:
'issuerId' is already declared as 'Private Shared issuerid() As String' in this class. line 17
...
0
votes
2answers
173 views
Can someone translate this simple function into Javascript?
I'm reading a tutorial on Perlin Noise, and I came across this function:
function IntNoise(32-bit integer: x)
x = (x<<13) ^ x;
return ( 1.0 - ( (x * (x * x * 15731 + ...
0
votes
1answer
148 views
Is there any way to generate Scala code from a .java file [duplicate]
Possible Duplicate:
Automated Java to Scala source code conversion?
Since the Scala language has all features of Java, theoretically it should be possible to generate a Scala code ...
1
vote
1answer
4k views
How to handle Translation in twig file using variables?
I have a twig file and a yml in which i define the variables for translation, For ex. :
YML File -
variable.for.translation: Disponible, para tÃ
Content of Twig File -
<h2>"Hola, Follow ...
2
votes
3answers
244 views
Translation of Scheme code for Sierpinski carpet
I found code for generating Sierpinski carpet at http://rosettacode.org/wiki/Sierpinski_carpet#Scheme - but it won't run in the DrRacket environment or WeScheme. Could someone provide solutions for ...
2
votes
1answer
340 views
ANTLR How to get rewrited code source? (using TokenRewriteStream)
I am trying to create simple translator translating something like:
aaa | bbb | ccc
to
1 : aaa
2 : bbb
c : ccc
Here is grammar test01.g:
grammar test01;
options {
output=AST;
}
@members{
...
1
vote
1answer
107 views
Comma at the end of True Basic if statement
I've been working on translating a simulation written in True Basic to C, and eventually into CUDA. Considering I have never worked with True Basic, let alone basic, everything has been going smooth. ...
1
vote
1answer
186 views
Empowering language by writing code translator: why is it a bad idea? [closed]
When I was learning C++ may years before, I had a few ideas like: "Why not to add some useful lexical structures in language by writing a unified program with unified syntax that would get a ...
1
vote
1answer
422 views
AST to XML in generally (maybe ANTLR)
I need to parse files written in some languages(Java, C, C#...) and then trace the AST(Abstract syntax tree) to xml. (Actually the aim is to manipulate it and trace to another language - this second ...
0
votes
2answers
311 views
Assembly How to translate opcode DIV to C Code
Hey I know I been asking alot of questions.. but not much resources on this on google so hopefully this will help future people who attempt to do similar projects, I always google solutions as well, ...
0
votes
1answer
2k views
Assembly How to convert REP STOS to C code
I been debugging REP STOS DWORD PTR ES:[EDI] for a while now
From my conclusion it always uses
ECX as counter.
EAX as the value that will be copied over EDI and then appended ECX times
so after ...
1
vote
1answer
259 views
Assembly how to translate JNE to C Code without ZF flag access
ASM to C Code emulating nearly done.. just trying to solve these second pass problems.
Lets say I got this ASM function
401040 MOV EAX,DWORD PTR [ESP+8]
401044 MOV EDX,DWORD PTR [ESP+4]
401048 ...
2
votes
1answer
2k views
Assembly Converting MOV / MOVZX and MOVSX to C code (no inline asm)
For the asm emulator i'm trying to write to convert ASM code to equivalent working code just working.. best code would be the one that can either be done in one line or two-three the most, don't care ...
1
vote
1answer
877 views
Assembly How to translate IMUL opcode (with only one oprand) to C code
Say I got
EDX = 0xA28
EAX = 0x0A280105
I run this ASM code
IMUL EDX
which to my understand only uses EAX.. if one oprand is specified
So in C code it should be like
EAX *= EDX;
correct?
After ...
1
vote
1answer
157 views
translate c# code to R
I have a table like:
12 34 45 45 56
23 45 56 77 77
14 94 15 45 56
15 38 25 84 65
72 35 35 4 57
18 14 45 47 56
42 34 55 55 59
I would like to get in a vector the sum of the columns ...
2
votes
1answer
38 views
Translate a project under Git
I have a small Python project (a few hundred lines) in a Git repository. I started it myself, and wrote it in French. That is, all identifiers, comments, and text strings.
Now, in order for other, ...
1
vote
1answer
183 views
Help me translate this Java to Scheme to get things going in my head
I am learning Scheme, and I've read the basics but I still can't figure how to "map" a Java class to Scheme code. Could any of you guys help me out here? I just need someone to show me how this looks ...
0
votes
1answer
444 views
Menu dropdown messed up after translating page using Google translator
My menu drop-down is now messed up, after I translated the page using on-the-fly Google translater. It refuses to recognize CSS classes I have created and used for exclusion (e.g, I have a class like ...
0
votes
1answer
365 views
How do I convert an iGoogle gadget into an Android widget?
I'm trying to recreate this progress bar clock gadget I built in iGoogle as a widget for Android devices.
It seems like it should be pretty straightforward, especially considering the code is only 75 ...
2
votes
2answers
148 views
Is there any way to write a compiler front end without using syntax-directed translation?
My question is the same as the title. I just want to know if there are any other translation techniques to get the intermediate code that doesn't rely on embedding actions into the parser (that is, ...
0
votes
1answer
269 views
Translation of some Classic ASP (vbScript) into PHP
I'm trying to translate a block of Classic ASP (vbScript) into PHP. I've made an honest attempt, but my translation doesn't appear to be correct. Could anybody help me out?
First, the vbScript ...
3
votes
1answer
274 views
Unable to identify some C# syntax for translation to VB.NET
I'm translating some example code line by line from C# to VB.NET.
The lines which confuse me looks like this:
[Kernel(CustomFallbackMethod = "AddCpu")]
I see in the code that these lines appear ...
5
votes
2answers
248 views
C++ to F# smooth translation
Hey folks, I have the following piece of code from C++.
for (int i=0; i < nObstacles; i++)
{
int x,y;
bool bAlreadyExists;
do {
x = rand() % nGridWidth;
y = rand() % ...
0
votes
2answers
3k views
Multi-language Translation on Web Site
i want to know how did facebook do it, did they add two different html+css or its just css only for changing there theme for different language or is there any special html attribute that changes the ...
0
votes
2answers
286 views
Need help translating some Java encryption to PHP
I'm trying to port a "simple" string encryption algorithm from Java to PHP and it uses just enough obscure bits of specific Java libraries that I'm bashing my head against the wall. I'm hoping the SO ...

