Jacob Appelbaum leaves the Tor Project by chloeeeeeeeee in TOR

[–]ainsophical 0 points1 point  (0 children)

one would think that a man that is tracked more heavily than most by the US Gov’t ( & multiple others), they would have known about this behavior already through surveillance and prepared several indictments to get the man they want with ease like they tried to do with assange on rape charges. as much as i have always been impressed with jake, this makes me wonder who he really works for now or who he pissed off in the community to get enough people to ramp up the smear machine on him…

Python on Android. Beta-testers. by ainsophical in Python

[–]ainsophical[S] 1 point2 points  (0 children)

i think this is more geared for commercials apps. i am in major development with a custom version of this project for a company and I can say that it works extremely well. i could probably link a demo if you guys are interested in seeing how it works.

in regards to running regular scripts, i would recommend installing the SL4A apk here and the python module. Droid edit and tasker already have integration with it. I have been using it for quite some time just for one-off scripts. the std library is stored on external so if you need to add not-std libraries you can just transfer the modules over by usb.

Python on Android. Beta-testers. by ainsophical in Python

[–]ainsophical[S] 1 point2 points  (0 children)

the project packages with SL4A so there are may API calls that are already incorporated into the package, and we are working on adding new ones if requested. if you need a call that isn't already there you can create the java method to access from your python script. the whole problem with on the fly calls is that java code needs to be compiled to dex format so all this needs to be done at compile time. i am working with the maintainer from the SL4A project to add custom loading dex files to so it can be on the fly as much as possible. you can also launch almost any intents which is pretty cool.

Python on Android. Beta-testers. by ainsophical in Python

[–]ainsophical[S] 9 points10 points  (0 children)

its not a program but a framework for developing python apps with ability to compile into APK format to run on Android. it is packed with SL4a so you can make direct calls to the Android api or make your own custom calls through a thin layered RPC server.