0
votes
0answers
28 views
java source parsing library for python
Ive been searching for a while and can't seem to find what im looking for. What I want to do is write a python script to report problems and enforce code standards in Java code. Everything I have ...
0
votes
3answers
48 views
In python, is “args = [temp[n] for n in array(index)]” doing a check of temp[n]?
I am converting from Python into Java.
My question is what is the 'args' doing?
args = [this.scrath[c] for c in this.connections(n)]; //Python
Is it:
[this.scrath[c] //get data at index c of ...
-1
votes
2answers
32 views
Writing a GUI to manipulate the variables in a Python program and then run the Program [on hold]
So I have a gui that I'm working on (http://pastebin.com/0fPLHyHw) that I want to manipulate a program in Python that I don't quite understand (http://pastebin.com/uruxJXLx). But basically what I want ...
0
votes
1answer
27 views
From Python, to Java, Split ArrayList using Set()
This is the code in Python I'm trying to convert to Java:
self.active = set(self.genes[-self.output_length:]):
Reading up on the sets in Python, I believe that this is splitting the ArrayList at ...
0
votes
1answer
36 views
Java method which can provide the same output as Python method for HMAC-SHA256 in Hex
I am now trying to encode the string using HMAC-SHA256 using Java. The encoded string required to match another set of encoded string generated by Python using hmac.new(mySecret, myPolicy, ...
-11
votes
0answers
102 views
Python, Java, C# - best suitable for corporate web-based application [on hold]
I hate opening another language vs language thread, but I can't figure out what language should my team use for next project. I would like to hear your opinions very much.
I'm currently working on a ...
1
vote
1answer
52 views
Unable to complete HttpRequest - Error 500/403
I am trying to post a HttpRequest from my android application to python based backend abd encountering 500 request code error.At times, it gives 403
App POST request
private String Register(String ...
-4
votes
2answers
75 views
Generating one permutation of a string [on hold]
I'm reading this paper (page 3 and page 8): http://acl.ldc.upenn.edu/P/P05/P05-1077.pdf where it defines a permutation function to generate a permutation of a signature. The signature is a string of ...
0
votes
0answers
14 views
Trouble consuming XLedger's SOAP/WSDL interface
I'm having trouble figuring out how to consume this WSDL interface. I have zero experience with WSDL (and SOAP in general) and to top it off the consumer has to run on Google AppEngine. This leaves me ...
1
vote
1answer
18 views
Jython UnboundLocalError - Tried the global type but still won't work
I'm working on a emulator for Star Wars Galaxies and the scripting language that we're using is Jython. I'm having trouble figuring out how I define a variable outside the def. Here is the error..
...
-4
votes
0answers
32 views
Webserver, language and database choice for a high-performance Webapp [on hold]
I am starting a new Webapp project and I am looking for which technology I should use with respect to webserver, programming language, database and maybe a framework. And as I expect that many people ...
-5
votes
0answers
52 views
which language would be easy to make a cloud app? [on hold]
I know python,c,c++,java. I am going to to take part in cloud computation. would you guys please give me some suggestions for this.
thank you
0
votes
1answer
24 views
Separate japanese words in python, javascript or java? [duplicate]
Background: I'm gonna attempt to make a list of the most used words/kanji on different message boards on 2ch.net so that japanese learners quckly can participate in online discussion and thus become ...
-2
votes
2answers
62 views
Parsing Tree Structure to If statements [closed]
The attached file represents a tree structure, that I want to convert into java source code, representing the tree as nested if statements
STOP_WORDS > 0
| NEXT_TYPE > 5: X
| NEXT_TYPE <= 5: ...
-3
votes
0answers
71 views
How install python when java is still there on the computer? [migrated]
I need to install python in my computer. I searched some articles on the internet and it says to set the environment variables as follows.
set path=%path%;C:\Python27\
So the problem is that the ...