2
votes
how to take a matrix in python?
Or just use Numerical Python if you want to do some mathematical stuff on matrix too (like multiplication, ...). If they use row major order for …
9
votes
Create zip archive for instant download
Check this Serving dynamically generated ZIP archives in Django
…
1
vote
How do I wait for an image to load after an ajax call using jquery?
Image Loading
Wait for ajaxReq …
2
votes
webob cookies
Changing the cookies in the request does nothing to the cookie on the client.
You need to set the "Set-Cookie" header in the response to the client.
You could use something like thi …
7
votes
Using Perl, Python, or Ruby, how to write a program to “click” on the screen at scheduled time?
In Python there is ctypes and in Perl there is …
1
vote
How can I accurately program an automated “click” on Windows?
I guess 2 things:
I bet ruby doesn't and can't guarantee that sleep 0.1 really sleeps only 0.1 seconds. As this is probably out of rubys control and OS controlled
The call to …
1
vote
1
vote
Dump stacktraces of all active Threads
2.4. Too bad. From pyhton 2.5 on there is sys._current_frames().
But you could try threadframe. …
17
votes
2
votes
How can I convert a Perl regex with named groups to Python?
I found the offending part but can't figure out what exactly is wrong without wrapping my mind around the whole thing.
r = re.compile(r'^(?:(?P<name>.*?)[\/\s._-]*)?(?P<ope …
5
votes
Are there programmatic tools for Perl to Python conversion?
I never tried it and it seems unmaintained, but maybe PyPerl is an option?
How big is this API? If it really this useful then …
5
votes
1
vote
is there a way to generate pdf containing non-ascii symbols with pisa from django template?
Try replacing
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")), result)
with
pdf = pisa.pisaDocument(StringIO.StringIO(html), result …
0
votes
Jython 2.5.1: “ImportError: No Module named os”
What do you mean with "the jar that comes with the 2.5 download"? Did you extract the contents and use jython.jar or did you run the installer? If you just extracted and didn' …
1
vote
javascript error: “data.getElementsByTagName is not a function”
Try to force jQuery to recognize the returned data as xml by using
jQuery.post(toLoad, formInput,
function(data, textStatus) {
// now check if data is set and what the status …
