Tagged Questions
0
votes
2answers
25 views
Convert unicode string into hex to compare each char with range of hex in python
I am having file having lines written in Gujarati Language with some erroneous char into it, I know the range of Gujarati char in hex as well as decimal and detect the chars from string which are not ...
1
vote
0answers
16 views
list all android shortcuts
I want to list all the shortcuts that appear on the android device screen. So, it will display all the apps, games, settings, everything that displays on the screen of the android mobile device.
I ...
1
vote
0answers
18 views
Python request login is not working
I am trying to post a request to log in to a website using the Requests module in Python but its not really working. I need to change stuff automaticaly in iomega home media network. Here is the login ...
0
votes
0answers
32 views
Using an android application to upload a file to my Google API project
I need some help here.
I have been working on an android game where some information about your progress is sent to the server. Also you neeed to record your voice and the game will sent to our ...
3
votes
1answer
27 views
Is there something like Django debug page or DjDT in Java?
When I get an error while working with JSP/servlets it is shown a page like this:
Despite being sufficient to track the majority of the problems, I was wondering if there is some components that ...
1
vote
2answers
47 views
Android to Playstation and other consoles
i am trying to find if it is possible to send a message over Bluetooth to consoles like playstation 3 to make it turn on or off? since it is possible to be done from controllers. I been reading around ...
0
votes
2answers
95 views
Game which allows to test AI algorithms [closed]
I'm looking for a game which will allow me to test various artificial intelligence, reinforcement learning and machine learning algorithms. It would be great, if there will be good documentation or ...
0
votes
1answer
46 views
Error passing parameters from Java to Python?
This is my Java code for the click event of a button. What I'm trying to do is to pass a parameter to a python file which I am calling ... But I am getting error for args[0] and args[1] (cannot find ...
-4
votes
0answers
46 views
Convert python to java [closed]
can someone tell me the java equivalent of this line of code it is in python.
T_ARITHMETIC = (T_ADD, T_SUB, T_NEG, T_EQ, T_GT, T_LT, T_AND, T_OR, T_NOT)
T_ADD = 'add'
T_SUB = 'sub'
etc
-3
votes
0answers
26 views
Is there a difference, in terms of stability and features, between AWS's Python sdk vs JAVA sdk? [closed]
I was wondering if there are significant known differences in python sdk vs Java sdk for Amazon AWS. Comparison based on:
- Stability
- Features
- Frequency of release / bug fixes
- Amazon's ...
1
vote
2answers
43 views
How to create query string with a map in it? (Java)
I need to call this service in Java -
https://api.semantics3.com/test/v1/products?q={"cat_id": "13658", "brand": "Toshiba", "model": "Satellite"}
I've managed to do this in python as follows -
...
0
votes
1answer
29 views
Apache Thrift Python-Java 'Connection Refused'
I've recently tried to connect Python to Java using Thrift.
I've written a server on Python (PyPy). I've also written a reference client which works.
Then I've written a Java client which produces ...
0
votes
1answer
21 views
Which platform as a service/infrastructure as a server provider gives the most backend resources for their free tier?
I realize there is quite a difference between IaaS and PaaS, but there is some overlap. I'm particularly interested in getting the most number of "backend" server instances at the free tier (or for ...
2
votes
1answer
57 views
How do I decode data from a TCP socket
I am trying to make a very simplistic chat program with a server made in python and the client in java. However I have no idea how to decode the data which the server receives from the client. The ...
2
votes
1answer
33 views
Using Flow layout for Check-Boxes
I'm trying to use grid layout in my gui to align the Check-boxes one below the other in Jython, even if i use setLocation function, i can't align them properly, is there any other way to do that?
...