User Ben - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T14:43:21Zhttp://stackoverflow.com/feeds/user/11522http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1785858/facebook-api-php-photos-upload-not-working/1785962#17859621Answer by Ben for Facebook API + php, photos.upload() not working?Ben2009-11-23T21:06:12Z2009-11-23T21:06:12Z<p>I don't know too much about this, I'm afraid, but the following link suggests that other people have had the same problem. Maybe this forum will be helpful:</p>
<pre><code>http://forum.developers.facebook.com/viewtopic.php?pid=93450
</code></pre>
<p>It also links to this page, which seems like it might help:</p>
<pre><code>http://wiki.auzigog.com/Facebook_Photo_Uploads
</code></pre>
<p>Ben</p>
http://stackoverflow.com/questions/520865/has-anyone-installed-mysqldb-for-python-on-cygwin0Has anyone installed MySQLDB for Python on Cygwin?Ben2009-02-06T16:01:35Z2009-11-23T19:19:45Z
<p>Hi,</p>
<p>I'm trying to install MySQLDB for python on Cygwin. Unfortunately, when I run python setup.py build, I get the following error:</p>
<pre><code>$ python setup.py build
/bin/sh: /usr/local/bin/mysql_config: No such file or directory
Traceback (most recent call last):
File "setup.py", line 16, in <module>
metadata, options = get_config()
File "/home/Ben/python/MySQL-python-1.2.2/setup_posix.py", line 43, in get_config
libs = mysql_config("libs_r")
File "/home/Ben/python/MySQL-python-1.2.2/setup_posix.py", line 24, in mysql_config
raise EnvironmentError, "%s not found" % mysql_config.path
EnvironmentError: /usr/local/bin/mysql_config not found
</code></pre>
<p>Clearly I don't have mysql_config installed, which I guess is the problem. This is mentioned in the README for MySQLDB, but it doesn't explain how to either get around it or how to install mysql_config.</p>
<p>So maybe this is as easy as: How can I install mysql_config for Cygwin?</p>
<p>Or maybe it's harder than that.</p>
<p>FYI: I have python 2.5.2 and MySQL 5.1.30, running under Cygwin.</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/1755703/averaging-an-average-in-mysql/1755731#17557313Answer by Ben for Averaging an average in mySQLBen2009-11-18T12:46:29Z2009-11-18T12:46:29Z<pre><code>SELECT person_id, AVG(mpg) from car group by person_id;
</code></pre>
<p>If you want to get an average for the group, you should probably do this:</p>
<pre><code>SELECT AVG(mpg) from car;
</code></pre>
<p>Unless you really want to average the averages, which seems a bit dubious to me:</p>
<pre><code>SELECT AVG(average) from (SELECT person_id, AVG(mpg) as average from car group by person_id);
</code></pre>
http://stackoverflow.com/questions/473099/python-how-to-check-if-a-given-index-in-a-dict-exists-yet7python: how to check if a given index in a dict exists yetBen2009-01-23T14:35:39Z2009-11-18T01:11:00Z
<p>Hi,</p>
<p>given a dict, how can I find out if a given index in that dict has already been set to a non-None value?</p>
<p>I.e., I want to do this:</p>
<pre><code>my_dict = {}
if (my_dict[some_value] != None):
my_dict[some_value] = 1
else:
my_dict[some_value] += 1
</code></pre>
<p>I.e., I want to increment the value if there's already one there, or set it to 1 otherwise.</p>
<p>Thanks!</p>
<p>Ben</p>
http://stackoverflow.com/questions/576933/how-can-i-reference-columns-by-their-names-in-python-calling-sqlite1How can I reference columns by their names in python calling SQLite?Ben2009-02-23T08:50:12Z2009-10-18T23:04:35Z
<p>Hi,</p>
<p>I have some code which I've been using to query MySQL, and I'm hoping to use it with SQLite. My real hope is that this will not involve making too many changes to the code. Unfortunately, the following code doesn't work with SQLite:</p>
<pre><code>cursor.execute(query)
rows = cursor.fetchall()
data = []
for row in rows
data.append(row["column_name"])
</code></pre>
<p>This gives the following error:</p>
<pre><code> TypeError: tuple indices must be integers
</code></pre>
<p>Whereas if I change the reference to use a column number, it works fine:</p>
<pre><code> data.append(row[1])
</code></pre>
<p>Can I execute the query in such a way that I can reference columns by their names?</p>
<p>Thanks!</p>
<p>Ben</p>
http://stackoverflow.com/questions/383692/what-is-json-and-why-would-i-use-it22What is JSON and why would I use it?Ben2008-12-20T20:19:11Z2009-09-17T22:50:19Z
<p>Sorry for asking what may well seem like a dumb question. I've looked on wikipedia and Googled it and read the official documentation, but I've still not got to the point where I really understand what JSON is, and why I'd use it. </p>
<p>I have been building applications using PHP, MySQL and Javascript / HTML for a while, and if JSON can do something to make my life easier or my code better or my user interface better, then I'd like to know about it. Can someone give me a succinct explanation?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/1368594/is-it-a-good-idea-to-build-a-web-user-interface-using-flash4Is it a good idea to build a web user interface using Flash?Ben2009-09-02T16:00:33Z2009-09-07T10:25:56Z
<p>Hi,</p>
<p>the company I work for has a web-based user interface which paying clients log in to to get access to data and control mechanisms.</p>
<p>We're planning to launch a completely new version of this interface, and one option we're considering is whether to build it in Flash.</p>
<p>The argument for using Flash is that it would enable us to build a really innovative, engaging interface.</p>
<p>My worries about this are:</p>
<ol>
<li>None of the developers currently know anything much about Flash.</li>
<li>It seems to me like it will make maintaining the system harder (the current incarnation is built using PHP / HTML / JavaScript / AJAX).</li>
<li>I don't know enough about Flash to be able to estimate what impact it will have on initial development or on maintenance.</li>
<li>I fear it will worsen the user experience -- slow download times, for one thing, and it won't work at all for people who don't have Flash installed.</li>
<li>It feels like overkill. We want to show some pretty graphs, which I think we should build using something like Fusion Charts, but otherwise it will just be fairly straightforwad text and graphics. It feels like we'd be in danger of adding pizzazz just for the sake of it, because we can.</li>
</ol>
<p>Anyone have any thoughts on this? I'm not asking about public web sites, but is Flash a good idea for an online user interface?</p>
<p>Incidentally, I know very little about Flash, so I apologise if I've made any horrifically wrong assumptions here!</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/643699/how-can-i-use-numpy-correlate-to-do-autocorrelation4How can I use numpy.correlate to do autocorrelation?Ben2009-03-13T17:07:53Z2009-09-02T16:33:42Z
<p>Hi,</p>
<p>I need to do auto-correlation of a set of numbers, which as I understand it is just the correlation of the set with itself. </p>
<p>I've tried it using numpy's correlate function, but I don't believe the result, as it almost always gives a vector where the first number is <em>not</em> the largest, as it ought to be.</p>
<p>So, this question is really two questions:</p>
<p>1) What exactly is numpy.correlate doing?</p>
<p>2) How can I use it (or something else) to do auto-correlation?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/307089/php-coding-standards2PHP coding standardsBen2008-11-20T22:23:24Z2009-08-11T20:05:45Z
<p>I've been looking for some guidelines on how to layout PHP code. I've found some good references, such as the following:</p>
<p><a href="http://www.dagbladet.no/development/phpcodingstandard/" rel="nofollow">http://www.dagbladet.no/development/phpcodingstandard/</a></p>
<p>and <a href="http://stackoverflow.com/questions/5214/whats-a-good-standard-code-layout-for-a-php-application">this question</a> on SO.</p>
<p>However, none of that quite gets to what I'm specifically wondering about, which is the integration of HTML and PHP. For example:</p>
<ol>
<li>is it OK to have a PHP file that starts out with HTML tags and only has PHP inserted where needed? Or should you just have one section of php that contains everything?</li>
<li>If you have a chunk of PHP code in the middle of which is a set of echo's that just output a fixed bit of HTML, is it better to break out of php and just put the HTML directly? </li>
<li>Should functions all be defined in dedicated php files, or is it ok to define a bunch of functions at the top of a file and call them later on in that same file?</li>
</ol>
<p>There's probably other questions I'd like to ask, but really I'm looking for someone to point me at some kind of resource online that offers guidance on the general idea of how HTML and PHP should be combined together.</p>
<p>Thanks!</p>
<p>Ben </p>
http://stackoverflow.com/questions/198721/converting-a-word-document-into-usable-html-in-php3Converting a Word document into usable HTML in PHPBen2008-10-13T19:20:43Z2009-08-10T13:30:59Z
<p>Hi,</p>
<p>I have a set of Word documents which I want to publish using a PHP tool I've written. I copy and paste the Word documents into a text box and then save them into MySQL using the PHP program. The problem I Have arises from all the non-standard characters that Word documents have, like curly quotes and ellipses ("..."). What I do at the moment is manually search and replace these kinds of things (and also foreign symbols such as e-acute) with either plain text or HTML entities (&eacute ; etc) Is there a function in PHP I can call that will take the output of a Word document and convert everything that should be entities into entities, and other symbols that don't display properly in Firefox into symbols that do display.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/565806/is-anyone-using-64-bit-build-of-octave1Is anyone using 64 bit build of Octave?Ben2009-02-19T15:22:00Z2009-08-05T23:00:01Z
<p>Hi,</p>
<p>I'm wondering if anyone has a 64-bit build of Octave? If so, do you know if it has full access to the 64 bit memory range -- i.e., can you create a matrix which uses up more than 4GB of memory?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/1183243/legal-considerations-when-proposing-business-idea-to-employer/1183259#11832591Answer by Ben for Legal considerations when proposing business idea to employerBen2009-07-25T22:42:10Z2009-07-25T22:42:10Z<p>To answer your first question: no. There's nothing you can do that will stop someone from exploiting an idea you have. Apart from patenting it. (Which you aren't really supoposed to be able to do unless you've already at least partly implemented it in the first place).</p>
<p>My advice would be: if you know someone you trust not to steal your idea, tell them. If not, don't.</p>
<p>Also, if you have an idea and you tell your boss, you're not really entitled to anything in terms of ownership of X% of profits. That's just supposed to be part of your job.</p>
<p>Sorry: this probably seems like a negative answer, but I'm trying to be realistic.</p>
<p>Ben</p>
http://stackoverflow.com/questions/438684/how-to-convert-a-list-of-longs-into-a-comma-separated-string-in-python1How to convert a list of longs into a comma separated string in pythonBen2009-01-13T11:24:45Z2009-07-23T02:01:13Z
<p>Hi,</p>
<p>I'm new to python, and have a list of longs which I want to join together into a comma separated string.</p>
<p>In PHP I'd do something like this:</p>
<pre><code>$output = implode(",", $array)
</code></pre>
<p>In Python, I'm not sure how to do this. I've tried using join, but this doesn't work since the elements are the wrong type (i.e., not strings). Do I need to create a copy of the list and convert each element in the copy from a long into a string? Or is there a simpler way to do it?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/910978/charting-package-that-can-handle-huge-amounts-of-data2Charting package that can handle huge amounts of dataBen2009-05-26T14:26:55Z2009-05-26T16:37:33Z
<p>Hi,</p>
<p>There've been a number of questions on here in the past about charting packages, but I'm looking for one with a specific set of properties. In particular:</p>
<ul>
<li>Ability to handle many thousands of data points</li>
<li>Ability to allow users to pan and zoom</li>
<li>Ability to do live update of the charts (i.e. to reflect new data)</li>
</ul>
<p>Ideally, it will work with PHP (and / or JavaScript) and I'm guessing will produce Flash-based charts. I have a feeling that the right way to handle the requirements is to have a system that can determine which data points it needs to fetch for the required view. So when a user zooms in, the front-end fetches a new set of points from a different range. Only enough points are fetched at any given point (e.g. one data point per pixel). </p>
<p>Does anyone know of a charting package that works in this way?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/907689/sorting-multi-dimensional-array-using-arraymultisort-where-you-dont-know-the-d0Sorting multi-dimensional array using array_multisort, where you don't know the dimensions of the arrayBen2009-05-25T18:42:33Z2009-05-25T18:54:20Z
<p>Hi,</p>
<p>I have a multi-dimensional array, which basically consists of one sub-array for each year. So, for example, if I had three year's worth of data, it might look like this:</p>
<pre><code>$data[0] = Array(0,1,2,3,4,5,6,7);
$data[1] = Array(6,5,4,3,6,7,8,9);
$data[2] = Array(1,4,2,5,7,3,1,4);
</code></pre>
<p>Now I want to be able to sort those arrays on the basis of one of the years. E.g., I might want to sort based on the second year, in which case they'd all be sorted based on the re-ordering of $data[1].</p>
<p>I can do this easily with array_multisort:</p>
<pre><code>array_multisort($data[1],SORT_ASC,$data[0],$data[2]);
</code></pre>
<p>That's fine, but I don't know how many years of data there will be. I want some way of specifying just the right number of arguments, but I don't know how to do that in php, unless I just have to have an if statement for each possible number of years, which seems incredibly painful:</p>
<pre><code>if ($num_years == 1)
{
array_multisort($data[$which_year],SORT_ASC);
}
else if ($num_years == 2)
{
array_multisort($data[$which_year],SORT_ASC,$data[0],$data[1]); // this does work, interestingly, in spite of the repetition...
}
</code></pre>
<p>Anyone know of a better way?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/378204/how-can-you-compare-to-what-extent-two-lists-are-in-the-same-order4How can you compare to what extent two lists are in the same order?Ben2008-12-18T15:36:29Z2009-05-21T06:29:33Z
<p>I have two arrays containing the same elements, but in different orders, and I want to know the extent to which their orders differ.</p>
<p>The method I tried, didn't work. it was as follows:</p>
<p>For each list I built a matrix which recorded for each pair of elements whether they were above or below each other in the list. I then calculated a pearson correlation coefficient of these two matrices. This worked extremely badly. Here's a trivial example:</p>
<p>list 1:
1
2
3
4</p>
<p>list 2:
1
3
2
4</p>
<p>The method I described above produced matrices like this (where 1 means the row number is higher than the column, and 0 vice-versa):</p>
<p>list 1:</p>
<pre><code> 1 2 3 4
1 1 1 1
2 1 1
3 1
4
</code></pre>
<p>list 2:</p>
<pre><code> 1 2 3 4
1 1 1 1
2 0 1
3 1
4
</code></pre>
<p>Since the only difference is the order of elements 2 and 3, these should be deemed to be very similar. The Pearson Correlation Coefficient for those two matrices is 0, suggesting they are not correlated at all. I guess the problem is that what I'm looking for is not really a correlation coefficient, but some other kind of similarity measure. Edit distance, perhaps?</p>
<p>Can anyone suggest anything better?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/888256/delimiting-user-input/888282#8882822Answer by Ben for Delimiting User InputBen2009-05-20T14:29:59Z2009-05-20T14:29:59Z<p>I guess one approach is to use a comma, and then to escape commas within the user input. It's probably not safe to assume any character (or even a sequence of characters) can't appear in user input -- if you can enter it in your code, then there's a way the user can enter it into a text box!</p>
http://stackoverflow.com/questions/321375/mysql-column-with-various-types3MySQL column with various typesBen2008-11-26T16:47:41Z2009-04-20T21:31:02Z
<p>I seem to often find myself wanting to store data of more than one type (usually specifically integers and text) in the same column in a MySQL database. I know this is horrible, but the reason it happens is when I'm storing responses that people have made to questions in a questionnaire. Some questions need an integer response, some need a text response and some might be an item selected from a list.</p>
<p>The approaches I've taken in the past have been:</p>
<p>1) Store everything as text and convert to int (or whatever) when needed later.</p>
<p>2) Have two columns - one for text and one for int. Then you just fill one in per row per response, and leave the other one as null.</p>
<p>3) Have two tables - one for text responses and one for integer responses.</p>
<p>I don't really like any of those, though, and I have a feeling there must be a much better way to deal with this kind of situation.</p>
<p>To make it more concrete, here's an example of the tables I might have:</p>
<pre><code>CREATE TABLE question (
id int(11) NOT NULL auto_increment,
text VARCHAR(200) NOT NULL default '',
PRIMARY KEY ('id')
)
CREATE TABLE response (
id int(11) NOT NULL auto_increment,
question int (11) NOT NULL,
user int (11) NOT NULL,
response VARCHAR(200) NOT NULL default ''
)
</code></pre>
<p>or, if I went with using option 2 above:</p>
<pre><code>CREATE TABLE response (
id int(11) NOT NULL auto_increment,
question int (11) NOT NULL,
user int (11) NOT NULL,
text_response VARCHAR(200),
numeric_response int(11)
)
</code></pre>
<p>and if I used option 3 there'd be a responseInteger table and a responseText table.</p>
<p>Is any of those the right approach, or am I missing an obvious alternative?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/755332/can-anyone-help-with-this-problem-i-am-having-with-finditer-in-python1Can anyone help with this problem I am having with finditer in python?Ben2009-04-16T09:14:26Z2009-04-16T10:17:38Z
<p>Hi,</p>
<p>I have a somewhat complex regular expression which I'm trying to match against a long string (65,535 characters). I'm looking for multiple occurrences of the re in the string, and so am using finditer. It works, but for some reason it hangs after identifying the first few occurrences. Does anyone know why this might be? Here's the code snippet:</p>
<pre><code>pattern = "(([ef]|([gh]d*(ad*[gh]d)*b))d*b([ef]d*b|d*)*c)"
matches = re.finditer(pattern, string)
for match in matches:
print "(%d-%d): %s" % (match.start(), match.end(), match.group())
</code></pre>
<p>It prints out the first four occurrences, but then it hangs. When I kill it using Ctrl-C, it tells me it was killed in the iterator:</p>
<pre><code>Traceback (most recent call last):
File "code.py", line 133, in <module>
main(sys.argv[1:])
File "code.py", line 106, in main
for match in matches:
KeyboardInterrupt
</code></pre>
<p>If I try it with a simpler re, it works fine.</p>
<p>I'm running this on python 2.5.4 running on Cygwin on Windows XP.</p>
<p>I managed to get it to hang with a very much shorter string. With this 50 character string, it never returned after about 5 minutes:</p>
<pre><code>ddddddeddbedddbddddddddddddddddddddddddddddddddddd
</code></pre>
<p>With this 39 character string it took about 15 seconds to return (and display no matches):</p>
<pre><code>ddddddeddbedddbdddddddddddddddddddddddd
</code></pre>
<p>And with this string it returns instantly:</p>
<pre><code>ddddddeddbedddbdddddddddddddd
</code></pre>
<p>Ben</p>
http://stackoverflow.com/questions/755332/can-anyone-help-with-this-problem-i-am-having-with-finditer-in-python/755436#7554362Answer by Ben for Can anyone help with this problem I am having with finditer in python?Ben2009-04-16T09:56:54Z2009-04-16T09:56:54Z<p>Thanks to all the responses, which were very helpful. In the end, surprisingly, it was easy to speed it up. Here's the original regex:</p>
<pre><code>(([ef]|([gh]d*(ad*[gh]d)*b))d*b([ef]d*b|d*)*c)
</code></pre>
<p>I noticed that the |d* near the end was not really what I needed, so I modified it as follows:</p>
<pre><code>(([ef]|([gh]d*(ad*[gh]d)*b))d*b([ef]d*bd*)*c)
</code></pre>
<p>Now it works almost instantaneously on the 65,536 character string. I guess now I just have to make sure that the regex is really matching the strings I need it to match...</p>
<p>(Incidentally, I'm going to accept the answer from someone else that was most helpful to me, rather than accepting my own answer).</p>
<p>Ben</p>
http://stackoverflow.com/questions/381885/how-do-i-make-php-nicer-to-the-cpu1How do I make php nicer to the CPU?Ben2008-12-19T19:04:57Z2009-04-15T19:57:39Z
<p>I'm running on a shared *NIX server (run by Site5). I have a php script that runs in the background occasionally doing some offline calculations. It uses around 100% CPU while it runs. I've tried nice-ing it, like this:</p>
<pre><code>nice -n 19 php script.php
</code></pre>
<p>but that doesn't seem to make any difference.</p>
<p>Can anyone help?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/724856/picking-out-items-from-a-python-list-which-have-specific-indexes1Picking out items from a python list which have specific indexesBen2009-04-07T09:43:33Z2009-04-07T14:33:09Z
<p>I'm sure there's a nice way to do this in Python, but I'm pretty new to the language, so forgive me if this is an easy one!</p>
<p>I have a list, and I'd like to pick out certain values from that list. The values I want to pick out are the ones whose indexes in the list are specified in another list.</p>
<p>For example:</p>
<pre><code>indexes = [2, 4, 5]
main_list = [0, 1, 9, 3, 2, 6, 1, 9, 8]
</code></pre>
<p>the output would be:</p>
<pre><code>[9, 2, 6]
</code></pre>
<p>(i.e., the elements with indexes 2, 4 and 5 from main_list).</p>
<p>I have a feeling this should be doable using something like list comprehensions, but I can't figure it out (in particular, I can't figure out how to access the index of an item when using a list comprehension).</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/705434/what-encoding-do-i-need-to-display-a-gbp-sign-pound-sign-using-python-on-cygwin2What encoding do I need to display a GBP sign (pound sign) using python on cygwin in Windows XP?Ben2009-04-01T13:18:23Z2009-04-01T23:22:19Z
<p>Hi,</p>
<p>I have a python (2.5.4) script which I run in cygwin (in a DOS box on Windows XP). I want to include a pound sign (£) in the output. If I do so, I get this error:</p>
<pre><code>SyntaxError: Non-ASCII character '\xa3' in file dbscan.py on line 253, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
</code></pre>
<p>OK. So I looked at that PEP, and now tried adding this to the beginning of my script:</p>
<pre><code># coding=cp437
</code></pre>
<p>That stopped the error, but the output shows ú where it should show £.</p>
<p>I've tried ISO-8859-1 as well, with the same result.</p>
<p>Does anyone know which encoding I need?</p>
<p>Or where I could look to find out?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/690622/whats-a-standard-way-to-do-a-no-op-in-python2What's a standard way to do a no-op in python?Ben2009-03-27T17:04:19Z2009-03-27T18:06:46Z
<p>Hi,</p>
<p>I often find myself writing if / elif / else constructs in python, and I want to include options which can occur, but for which the corresponding action is to do nothing. I realise I could just exclude those if statements, but for readability I find it helps to include them all, so that if you are looking through the code you can see what happens as a result of each option. How do I code the no-op? Currently, I'm doing it like this:</p>
<pre><code>no_op = 0
if x == 0:
y = 2 * a
elif x == 1:
z = 3 * b
elif x == 3:
no_op
</code></pre>
<p>(The code is actually quite a bit longer than that, and more complicated. This is just to illustrate the structure).</p>
<p>I don't like using a variable as a no-op, but it's the neatest way I could think of. Is there a better way?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/515344/excel-countif-based-on-multiple-cells1Excel -- COUNTIF based on multiple cellsBen2009-02-05T10:35:39Z2009-03-23T12:57:49Z
<p>Hi,</p>
<p>I have two columns in Excel, like this:</p>
<pre><code> A B
0.5 0.4
0.6 0.59
0.1 0.2
0.3 0.29
</code></pre>
<p>I want to count how many of the values in B are less than their corresponding values in A. In this case, the answer is 3.</p>
<p>I can do this by adding an extra column, B-A and then doing COUNTIF(RANGE, "<0"), but I am wondering if there's a way to do it without adding an extra column.</p>
<p>I realise this is on the fringes of what one might consider programming, but hopefully it's just on the right side of the line, rather than the wrong side... </p>
<p>Ben</p>
http://stackoverflow.com/questions/638048/how-do-i-sum-the-first-value-in-each-tuple-in-a-list-of-tuples-in-python2How do I sum the first value in each tuple in a list of tuples in python?Ben2009-03-12T10:37:27Z2009-03-12T12:06:04Z
<p>Hi,</p>
<p>I have a list of tuples (always pairs) like this:</p>
<pre><code>[(0, 1), (2, 3), (5, 7), (2, 1)]
</code></pre>
<p>I'd like to find the sum of the first items in each pair, i.e.:</p>
<pre><code>0 + 2 + 5 + 2
</code></pre>
<p>How can I do this in python? At the moment I'm iterating through the list: </p>
<pre><code>sum = 0
for pair in list_of_pairs:
sum += pair[0]
</code></pre>
<p>but I have a feeling there must be a more pythonic way.</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/630217/how-can-i-use-pythons-telnetlib-to-fetch-data-from-a-device-for-a-fixed-period-o1How can I use python's telnetlib to fetch data from a device for a fixed period of time?Ben2009-03-10T13:41:54Z2009-03-10T14:03:25Z
<p>Hi,</p>
<p>I'm connecting to a hardware device via telnet. That device is pretty simple in terms of I/O. So I submit a command to it, and after that the device pumps out data one line at a time, once per second. Each line just contains a number.</p>
<p>So my question is this: if I connect to this device using python's telnetlib, how can I fetch data for a fixed period of time (or a fixed number of lines of data)?</p>
<p>I've tried using all the various read_ commands, but they all seem to block indefinitely, apart from read_until, which I can't use as the output can't be used to determine when to stop.</p>
<p>(I'm running python 2.5 under Cygwin, btw).</p>
<p>Any suggestions welcomed!</p>
<p>Edit: Maybe the real question is, should I be using telnetlib at all for this, or should I just use the socket module?</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/606069/expand-a-link-to-show-image-without-using-javascript/606081#6060812Answer by Ben for Expand a link to show image without using javascriptBen2009-03-03T11:48:32Z2009-03-03T11:48:32Z<p>This is entirely possible, but you have to tolerate the fact that when the user clicks on the link, the page will have to reload in order to show the image.</p>
<p>So, basically, your links will be something like this:</p>
<p><a href="http://myserver/myscript.php?id=0" rel="nofollow">http://myserver/myscript.php?id=0</a></p>
<p>And then your PHP will include an IMG tag for the appropriate image, perhaps like this:</p>
<pre><code>$id = $_GET['id'];
echo "<img src='/images/image_$id.jpg'>\n";
</code></pre>
<p>If you were able to use Javascript you could have it work without needing to reload the page, but apart from that, doing it with PHP should be fine.</p>
http://stackoverflow.com/questions/605953/javascript-not-being-called/605964#6059641Answer by Ben for javascript not being calledBen2009-03-03T11:07:06Z2009-03-03T11:07:06Z<p>I wonder if there's an error being detected in your JS code? If your Javascript has a syntax error in it, the browser will probably just not run any of it. If you're using a debugger like Firebug, this will help you track down the error.</p>
<p>Alternatively, try adding one function at a time, which will tell you which one is breaking things.</p>
http://stackoverflow.com/questions/605821/how-to-parse-a-tab-separated-line-of-text-in-ruby/605882#6058822Answer by Ben for How to parse a tab-separated line of text in Ruby?Ben2009-03-03T10:28:10Z2009-03-03T10:28:10Z<p>I'm not sure I quite understand your question, but if you want to split the lines on tab characters, you can specify that as an argument to split:</p>
<pre><code>line.split("\t").each ...
</code></pre>
<p>or you can specify it as a regular expression:</p>
<pre><code>line.split(/\t/).each ...
</code></pre>
<p>Each basically just iterates through all the items in an array, and split produces an array from a string.</p>
http://stackoverflow.com/questions/1665927/php-regex-and-compare-variables-in-a-stringComment by Ben on PHP regex and compare variables in a stringBen2009-11-03T13:21:04Z2009-11-03T13:21:04ZI think you need to be a bit more specific about what you want to achieve. How are the new values calculated? How do you know, for example, that villain3's call stays as $3.00, but the subsequent calls are changed?http://stackoverflow.com/questions/1600294/mysql-add-sequence-column-based-on-another-field/1600347#1600347Comment by Ben on MySQL: Add sequence column based on another fieldBen2009-10-21T12:06:39Z2009-10-21T12:06:39ZAssuming the OP has MySQL 5...http://stackoverflow.com/questions/907689/sorting-multi-dimensional-array-using-arraymultisort-where-you-dont-know-the-d/907717#907717Comment by Ben on Sorting multi-dimensional array using array_multisort, where you don't know the dimensions of the arrayBen2009-05-26T19:51:35Z2009-05-26T19:51:35ZIt works! One thing: you need to add the arrays into the $params array by reference, otherwise it doesn't work. So: $params[] = &$year;http://stackoverflow.com/questions/907689/sorting-multi-dimensional-array-using-arraymultisort-where-you-dont-know-the-d/907717#907717Comment by Ben on Sorting multi-dimensional array using array_multisort, where you don't know the dimensions of the arrayBen2009-05-25T21:00:30Z2009-05-25T21:00:30ZAh! Cool. That sounds like exactly what I need. I'll try it out.http://stackoverflow.com/questions/755332/can-anyone-help-with-this-problem-i-am-having-with-finditer-in-python/755378#755378Comment by Ben on Can anyone help with this problem I am having with finditer in python?Ben2009-04-16T09:54:18Z2009-04-16T09:54:18Z@Gumbo: Ah! Yes. I tried that. Unfortunately, I need to know the exact position in the original string where the matches occur.http://stackoverflow.com/questions/755332/can-anyone-help-with-this-problem-i-am-having-with-finditer-in-python/755378#755378Comment by Ben on Can anyone help with this problem I am having with finditer in python?Ben2009-04-16T09:42:29Z2009-04-16T09:42:29ZThanks -- that's quite helpful. I can eliminate the | just by having a few separate regexes. I might ask a new question about removing the d*'s -- I basically want the regex to accept 'd' in any position.http://stackoverflow.com/questions/755332/can-anyone-help-with-this-problem-i-am-having-with-finditer-in-python/755351#755351Comment by Ben on Can anyone help with this problem I am having with finditer in python?Ben2009-04-16T09:31:31Z2009-04-16T09:31:31ZWow - what a great link. Very interesting. Thank you.http://stackoverflow.com/questions/724856/picking-out-items-from-a-python-list-which-have-specific-indexes/724881#724881Comment by Ben on Picking out items from a python list which have specific indexesBen2009-04-07T10:04:47Z2009-04-07T10:04:47ZThis is really nice. Exactly the kind of thing I wanted, without realising it!http://stackoverflow.com/questions/724856/picking-out-items-from-a-python-list-which-have-specific-indexes/724880#724880Comment by Ben on Picking out items from a python list which have specific indexesBen2009-04-07T10:04:06Z2009-04-07T10:04:06ZAh! That's the kind of thing I was thinking of. Very neat!http://stackoverflow.com/questions/705434/what-encoding-do-i-need-to-display-a-gbp-sign-pound-sign-using-python-on-cygwin/705447#705447Comment by Ben on What encoding do I need to display a GBP sign (pound sign) using python on cygwin in Windows XP?Ben2009-04-01T13:34:08Z2009-04-01T13:34:08ZYour edit has solved my problem! I get a £ sign by printing \x9c, without specifying any encoding. Weird, but fine by me! :-)http://stackoverflow.com/questions/705434/what-encoding-do-i-need-to-display-a-gbp-sign-pound-sign-using-python-on-cygwin/705447#705447Comment by Ben on What encoding do I need to display a GBP sign (pound sign) using python on cygwin in Windows XP?Ben2009-04-01T13:28:04Z2009-04-01T13:28:04ZAh! Thank you. So now I have to figure out what encoding to use in a Windows dos-box...http://stackoverflow.com/questions/704194/how-to-hash-passwords-in-mysql/704198#704198Comment by Ben on How to hash passwords in MySQL?Ben2009-04-01T08:17:46Z2009-04-01T08:17:46ZThis doesn't seem to answer the OP's question, as it hashes <i>every</i> row, and the OP wants to hash every row <i>except one</i>.http://stackoverflow.com/questions/690622/whats-a-standard-way-to-do-a-no-op-in-python/690625#690625Comment by Ben on What's a standard way to do a no-op in python?Ben2009-03-27T17:09:27Z2009-03-27T17:09:27ZThank you! That's what I was looking for.http://stackoverflow.com/questions/638048/how-do-i-sum-the-first-value-in-each-tuple-in-a-list-of-tuples-in-python/638055#638055Comment by Ben on How do I sum the first value in each tuple in a list of tuples in python?Ben2009-03-12T10:42:38Z2009-03-12T10:42:38ZThat did the trick! Thanks.http://stackoverflow.com/questions/630217/how-can-i-use-pythons-telnetlib-to-fetch-data-from-a-device-for-a-fixed-period-o/630258#630258Comment by Ben on How can I use python's telnetlib to fetch data from a device for a fixed period of time?Ben2009-03-10T13:53:41Z2009-03-10T13:53:41ZSpot on. My mistake was thinking I needed to use telnet in the first place!