1
vote
2answers
32 views
What is wrong with the pearson algoritm from “Programming Collective Intelligence”?
This function is from the book "Programming Collective Intelligence”, and is supposed to calculate the Pearson correlation coefficient for p1 and p2, which is supposed to be a numb …
0
votes
1answer
12 views
Where can I find a (current) example of code to bulk upload data to Google AppEngine? (For localhost, too.)
I've tried to do it like they describe in the AppEngine docs but I can't get it to accept my upload. (I haven't tried to download.) I want to get it working in the development envi …
0
votes
0answers
2 views
Is Entity-Framework designer and features going to be supported with Python in VS 2010?
Is Entity-Framework designer and features going to be supported with Python in VS 2010?
1
vote
2answers
32 views
Python float - str - float weirdness
>>> float(str(0.65000000000000002))
0.65000000000000002
>>> float(str(0.47000000000000003))
0.46999999999999997 ???
What is going on here and how do I con …
0
votes
5answers
93 views
If you had the time and inclination to create a programming language, what characteristics would it have? [closed]
Just curious. If you had the time and inclination to create a programming language, what characteristics would it have?
One language I would like to see would borrow as much from …
3
votes
5answers
411 views
Decomposing HTML to link text and target
Given an HTML link like
<a href="urltxt" class="someclass" close="true">texttxt</a>
how can I isolate the url and the text?
Updates
I'm using Beautiful Soup, and …
1
vote
2answers
63 views
Is there precision in this number that Python isn’t showing me?
I've run into something odd, here, and I'm at a loss -- I have a feeling this has something to do with floating precision, but I'm surprised Python would not display the approximat …
2
votes
5answers
62 views
Automatically pick tags from context using Python
How can I pick tags from an article or a user's post using Python?
Is the following method ok?
Build a list of word frequency from the text and sort them.
Remove some common wor …
1
vote
5answers
33 views
Module import path
I'm unable to test-run a cssparser that I'd like to use.
test.py:
from css.parse import parse
data = """
em {
padding: 2px;
margin: 1em;
border-width: medium;
…
2
votes
2answers
37 views
Invoking context menu in QTreeWidget
I would like to popup a menu, when user clicks on an object in QTreeWidgetItem. I though about catching signal contextMenuRequested from QWidget and then retrieving index from the …
0
votes
3answers
30 views
Python importing modules differently when run interactively/non-interactively
One of my Python scripts runs in interactive mode but fails when run from the command line. The difference is that when run from the command line, it imports modules from a bad .eg …
0
votes
1answer
20 views
expand users table with django
I'm using the authentication that ships with django, and as such, it comes with its own SQL table. I have a few more attributes I'd like to use with the User model that are custom …
0
votes
2answers
35 views
Redirecting Command-line Arguments for Bootstrapping
I am trying to rewrite the following program in C instead of C# (which is less portable). It is obvious that "int system ( const char * command )" will be necessary to complete the …
0
votes
6answers
52 views
postgresql and python or pphp
I need to visualize spatial data (20 polygons) from "postgis" database (postgresql), with python. I know how to connect postgresql database with python only, but I don`t how to vis …
1
vote
2answers
21 views
Python importing & using cdll (with a linux .so file)
Hi all!
After one of my last questions about python&c++ integration i was told to use dlls at windows.
(Previous question)
That worked ok doing:
cl /LD A.cpp B.cpp C.pp
in …
