499 reputation
18
bio website
location
age
visits member for 1 year, 4 months
seen 13 hours ago
stats profile views 38

Mar
31
comment What is the most efficient way to program electric wires in a 3d grid based environment?
this model supports multi-directional currents.. Each wire can have multiple directional currents running through it. This is the closest thing to a visualization i could find. pages.cpsc.ucalgary.ca/~jacobs/Courses/cpsc331/W12/tutorials/…
Mar
29
comment What is the most efficient way to program electric wires in a 3d grid based environment?
This should be rather more efficient and able to handle your situation.
Mar
29
comment What is the most efficient way to program electric wires in a 3d grid based environment?
Editted to give an implementable solution.
Feb
4
comment How do i use apache commons HttpPost to send a file and encode parameters for the request?
This was correct, I needed to encode the parameters as GET parameters and put the XML in the POST body.
Oct
24
comment onResume() in android runtime error
Add super.onResume() first thing in onResume.....
Oct
4
comment python, regex, matching strings with repeating characters
Is there whitespace after the attack string?
Sep
14
comment Retreiving WiFi data with Python on Android
Why are you programming with python in Android? Seems like this would be much easier with the Android SDK and Java.
Sep
14
comment How to delete database value?
You can use the logical && or logical || operators. The first says if x and y, the second says if x or y.
Sep
12
comment Convert AndroidManifest.xml to Binary
This pretty much sounds like a nightmare, but have you tried checking in the bin folder in the project?
Sep
12
comment Transformation matrices only for one shape
I suggest transforming and translating the actual line coordinates rather than the whole canvas. This can be done with linear algebra. This should help: mathworks.com/support/solutions/en/data/1-8P4ZK5/…
Sep
12
comment Transformation matrices only for one shape
This is a terribly inefficient way to go about rotating a line. It would be rather simple to calculate its new x and y endpts after rotation.
Sep
12
comment Reading in from a file and drawing
Np, don't forget to accept if this worked for you
Sep
12
comment Free hand character recognition in android
So, what exactly is your question?
Sep
12
comment Can I use classes that dont extend Activity on android?
Yes, in android you can have classes that do not extend Activity. You should look at the examples or tutorials provided by Google.
Sep
12
comment Can't get an http JSON response in the post http request
Read comments..
Sep
12
comment Can I manage the AlarmClock in Android from my application?
Looks like this: stackoverflow.com/questions/9618748/…
Sep
12
comment Can't get an http JSON response in the post http request
I am a little confused here, you are not posting any json to that URl you are just encoding POST parameters, so of course it would tell you that there is no json to validate.
Sep
12
comment Changing Google Play Namespace or Signature
Well, what you guys are trying to do is impossible by design, for obvious security reasons. Your best bet would probably be to email Google and see if they are willing to work with you.
Sep
12
comment Changing Google Play Namespace or Signature
You can unpublish applications. Perhaps you could unpublish it and then republish it with the same package but different cert. I had a problem with lost certificate but I never tried this.
Sep
12
comment Changing Google Play Namespace or Signature
I believe it is impossible to do what you are asking. Why can't you just update with the test key?