0
votes
2answers
71 views
Is there an equivalent to Boost::Python for Java?
I've been working with Boost::Python to expose some high-performance code to python recently, and it's just a dream to work with. I'd like to be able to maintain a single C++ codebase and expose it …
1
vote
3answers
82 views
Tree Transformations Using Visitor Pattern
(Disclaimer: these examples are given in the context of building a compiler, but this question is all about the Visitor pattern and does not require any knowledge of compiler theory.) I'm going …
1
vote
2answers
50 views
Get data back from Jython scripts using JSR-223
Hello. I am using Jython 2.5.1 with JSR-223 (i.e. javax.script package) and I expect the last line of the Python script to be returned. For example, after evaluating this script:
class Multiplier:
…
1
vote
7answers
299 views
How can I convert Java, Python, and C++ code into standalone executables? [closed]
I apologize if I'm asking a few questions in one, but they all go together, especially Python and Java, since they aren't natively meant to be exe files.
I am a huge fan of standalone redistributable …
2
votes
10answers
317 views
Python vs. Java — Which would you pick to do concurrent programming and why?
Also, if not python or java, then would you more generally pick a statically-typed language or a dynamic-type language?
3
votes
9answers
326 views
What is Jython and is it useful at all?
I know Python. When will I need Jython? What are the drawbacks. I assume it is slow? Please detail it out! thanks.
0
votes
8answers
135 views
Learn Java from Python background
I have been programming in Python for a while now, and I'd like to learn a more "hireable" language like Java or the C/C++/C# family. I'm acquainted with (though not necessarily good at) all of them. …
0
votes
2answers
40 views
PKI verification across Java and Python
I am trying to implement a PKI verification scheme, where a message string is signed with a private key on server, the signature is stored on the client along with the message string. The client then …
5
votes
3answers
113 views
What is the best way to call Java code from Python?
I have a Java class library (3rd party, proprietary) and I want my python script to call its functions. I already have java code that uses this library. What is the best way to achieve this?
1
vote
4answers
101 views
Project Ideas for medium level Java/Python developer
I am a Python and Java developer with about 1.5 years of coding experience and I am looking for a fun but challenging project to engage myself in.
What are some fun and interesting project ideas that …
0
votes
0answers
64 views
python vs c#,java Technology Preference ? [closed]
When we try to compare python with java or C# like language, python program will be like,
typically 3-5 times shorter than equivalent Java program.
Python's built-in high-level data types and its …
3
votes
12answers
776 views
Algorithm - How to delete duplicate elements in a list efficiently?
There is a list L. It contains elements of arbitrary type each.
How to delete all duplicate elements in such list efficiently? ORDER must be preserved
Just an algorithm is required, so no import any …
0
votes
3answers
71 views
Pulling HTML from a Webpage in Java
I want to pull the entire HTML source code file from a website in Java (or Python or PHP if it is easier in those languages to display). I wish only to view the HTML and scan through it with a few …
4
votes
8answers
234 views
Calculate percent at runtime
I have this problem where I have to "audit" a percent of my transtactions.
If percent is 100 I have to audit them all, if is 0 I have to skip them all and if 50% I have to review the half etc.
The …
1
vote
4answers
121 views
is there a Java equivalent of Python’s defaultdict?
In Python, the defaultdict class provides a convenient way to create a mapping from key -> [list of values], in the following example,
from collections import defaultdict
d = defaultdict(list)
…
