Posts by André Ramos • 175 points
8 posts
-
0
votes1
answer75
viewsA: Passing J2ME application for mobile accessoriesMotorola i465 and i418
I managed to fix it. I downloaded the Myjal and he’s already packed everything I need.
-
0
votes1
answer75
viewsQ: Passing J2ME application for mobile accessoriesMotorola i465 and i418
Guys, I’m developing an application in j2me for two old Nextel cell phones, but I can’t pass the application to any of the cell phones. Apparently it has software to perform this task, Iden Java…
-
6
votes3
answers425
viewsA: Get the first 3 results in a query mysql_query
If I understand correctly, just change your SQL query. Try this: $query = mysql_query("SELECT * FROM indicadores WHERE id_indicado = '$id' LIMIT 3 ORDER BY id_indicado DESC");…
-
3
votes1
answer1553
viewsA: How to extract data from Linkedin with python?
To use such an API, simply register your APP on Linkedin Developers and create a script that performs http requests to get website data (More details in the documentation itself). Fortunately, there…
-
3
votes2
answers525
viewsA: Convert search with Pymongo: Dictionary in JSON
The python Standard Library provides the module json, responsible for performing the conversion of Dict to json and vice versa. The code would look like this: import json resultado =…
-
2
votes1
answer95
viewsQ: Problem with JSON - Python3.4
I am working with the Buscapé API in order to get information from some products on the site, the problem is that I cannot manipulate one of the values of the returned json. Below follows some…
-
0
votes1
answer114
viewsA: Communication between database and the Python app - mini password-taking system
If VC is using Django, you can use Signals. Otherwise, the same can be done with an independent ORM, such as Sqlalchemy, which has the Events as the equivalent of Django’s Signals.…
-
0
votes1
answer58
viewsA: problems with emulator
Make sure your OS is x64, because google is kind of forcing developers to use this architecture to develop Android apps. Until a while ago, I was running Avd through the terminal using this command:…
android-studioanswered André Ramos 175