User Robert Rossney - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T09:08:06Zhttp://stackoverflow.com/feeds/user/19403http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870044/python-string-parse/1871037#18710370Answer by Robert Rossney for Python String parseRobert Rossney2009-12-09T01:14:35Z2009-12-09T01:14:35Z<p>As mjv points out, there's not the least sense in inventing an XML-like format if you can just use XML.</p>
<p>But: If you're going to use XML for your packet format, you need to really use XML for it. You should use an XML library to <em>create</em> your packets, not just to parse them. Otherwise you will come to grief the first time one of your field values contains an XML markup character. </p>
<p>You can, of course, write your own code to do the necessary escaping, filter out illegal characters, guarantee well-formedness, etc. For a format this simple, that may be all you need to do. But going down that path is a way to learn things about XML that you perhaps would rather not have to learn.</p>
<p>If using an XML library to create your packets is a problem, you're probably better off defining a custom format (and I'd define one that didn't look anything like XML, to keep people from getting ideas) and building a parser for it using <code>pyparsing</code>.</p>
http://stackoverflow.com/questions/1866343/removing-an-element-from-a-list-based-on-a-predicate/1868341#18683410Answer by Robert Rossney for Removing an element from a list based on a predicateRobert Rossney2009-12-08T17:00:39Z2009-12-08T22:55:50Z<p>If you're dealing with extremely large lists, you want to use methods that don't involve traversing the entire list any more than you absolutely need to. </p>
<p>Your best bet is likely to be creating a filter function, and using <code>itertools.ifilter</code>, e.g.:</p>
<pre><code>new_seq = itertools.ifilter(lambda x: 'X' in x or 'N' in x, seq)
</code></pre>
<p>This defers actually testing every element in the list until you actually iterate over it. Note that you can filter a filtered sequence just as you can the original sequence:</p>
<pre><code>new_seq1 = itertools.ifilter(some_other_predicate, new_seq)
</code></pre>
<p><strong>Edit:</strong></p>
<p>Also, a little testing shows that memoizing found entries in a set is likely to provide enough of an improvement to be worth doing, and using a regular expression is probably not the way to go:</p>
<pre><code>seq = ['AAT','XAC','ANT','TTA']
>>> p = re.compile('[X|N]')
>>> timeit.timeit('[x for x in seq if not p.search(x)]', 'from __main__ import p, seq')
3.4722548536196314
>>> timeit.timeit('[x for x in seq if "X" not in x and "N" not in x]', 'from __main__ import seq')
1.0560532134670666
>>> s = set(('XAC', 'ANT'))
>>> timeit.timeit('[x for x in seq if x not in s]', 'from __main__ import s, seq')
0.87923730529996647
</code></pre>
http://stackoverflow.com/questions/1864422/re-format-items-inside-list-read-from-csv-file-in-python/1864926#18649261Answer by Robert Rossney for Re-format items inside list read from CSV file in PythonRobert Rossney2009-12-08T06:08:12Z2009-12-08T06:08:12Z<p>You should absolutely use the <code>csv</code> module. If you use a <code>csv.reader</code>, you only have one very small problem: testing fields to see if they're numbers, and stripping commas if they are. I've packaged it as a generator:</p>
<pre><code>import csv
def read_and_fix_numbers(f):
"""Iterate over a file object that returns CSV data, stripping commas out of numbers."""
for row in csv.reader(f):
for field in row:
try:
x = float(field)
field.replace(",", "")
except ValueError:
pass
fixed.append(field)
yield fixed
</code></pre>
<p>Usage:</p>
<pre><code>>>> data = '1000001234,Account Name,0,0,"3,711.32",0,0,"18,629.64","22,340.96",COD,"20,000.00",Some string,Some string 2'
>>> import StringIO
>>> f = StringIO.StringIO(data)
>>> for row in read_and_fix_numbers(f):
print row
['1000001234', 'Account Name', '0', '0', '3711.32', '0', '0', '18629.64', '22340.96', 'COD', '20000.00', 'Some string', 'Some string 2']
</code></pre>
http://stackoverflow.com/questions/1858117/flexible-numeric-string-parsing-in-python/1858636#18586360Answer by Robert Rossney for Flexible numeric string parsing in PythonRobert Rossney2009-12-07T08:35:05Z2009-12-07T08:35:05Z<p>It should be pretty straightforward to build one in pyparsing - in fact, one of the tutorial pyparsing projects does some of this (<code>wordsToNum.py</code> on <a href="http://pyparsing.wikispaces.com/Examples" rel="nofollow">this page</a>) does some of it already. You're talking about things that don't really have standard representations (standard in the sense of ISO 8602, not standard in the sense of "what everybody knows"), so it could easily be that nobody's done just what you're looking for.</p>
http://stackoverflow.com/questions/1855839/what-is-the-most-efficient-way-to-do-look-up-table-in-c/1856250#18562501Answer by Robert Rossney for What is the most efficient way to do look-up table in C#Robert Rossney2009-12-06T19:05:43Z2009-12-06T19:05:43Z<p>The absolute fastest way to do lookups of integer values in C# is with an array. This will be preferable to using a dictionary, maybe, if you are trying to do tens of thousands of lookups at a time. For most purposes, this is overkill; it's more likely that you need to optimize developer time than processor time.</p>
<p>If the reserved keys are not simply all keys that aren't in the lookup table (i.e. if a lookup for a key can return the found value, a not-found status, or a reserved status), you'll need to save the reserved keys somewhere. Saving them as dictionary entries with magic values (e.g. the key of any dictionary entry whose value is null is reserved) is OK unless you write code that iterates over the dictionary's entries without filtering them.</p>
<p>A way to solve that problem is to use a separate <code>HashSet<int></code> to store the reserved keys, and maybe bake the whole thing into a class, e.g.:</p>
<pre><code>public class LookupTable
{
public readonly Dictionary<int, string> Table { get; }
public readonly HashSet<int> ReservedKeys { get; }
public LookupTable()
{
Table = new Dictionary<int, string>();
ReservedKeys = new HashSet<int>();
}
public string Lookup(int key)
{
return (ReservedKeys.Contains(key))
? null
: Table[key];
}
}
</code></pre>
<p>You'll note that this still has the magic-value issue - <code>Lookup</code> returns null if the key is reserved, and throws an exception if it's not in the table - but at least now you can iterate over <code>Table.Values</code> without filtering magic values.</p>
http://stackoverflow.com/questions/1847475/in-xmldocument-appendchild/1853231#18532310Answer by Robert Rossney for & in XmlDocument.AppendChildRobert Rossney2009-12-05T19:45:01Z2009-12-05T19:45:01Z<p>If you're trying to add a <code>sup</code> element to your XML output, just create a <code>sup</code> element:</p>
<pre><code>XmlElement sup = doc.CreateElement("sup");
sup.InnerText = value;
doc.DocumentElement.AppendChild(sup);
</code></pre>
http://stackoverflow.com/questions/1852571/xpath-function-to-remove-white-space/1853211#18532112Answer by Robert Rossney for Xpath function to remove white spaceRobert Rossney2009-12-05T19:39:23Z2009-12-05T19:39:23Z<p>As Tim Robinson points out, <code>translate</code> will do the trick. (I wouldn't call it a "hack," but then I've long been at the identifying-with-my-torturers stage of my relationship with XSLT.) Your code will be a lot more readable if you use something like this:</p>
<pre><code><xsl:variable name="uc" value="ABCDEFGHIJKLMNOPQRSTUVWXYZ"/>
<xsl:variable name="lc" value="abcdefghijklknopqrstuvwxyz"/>
<xsl:variable name="ws" value=" &#13;&#10;&#09"/>
</code></pre>
<p>...which is part of the <code>globals.xslt</code> file that I include at the top of most transforms I write. Then this:</p>
<pre><code><xsl:value-of select="translate(x, concat($uc, $ws), $lc)"/>
</code></pre>
<p>translates each upper-case letter into its lower-case equivalent, and each whitespace character into nothing.</p>
<p>Usually the reason you use <code>xsl:variable</code> is to make code more readable (as in the above example), or to store intermediate results that can't otherwise be effectively calculated. A fourth way of getting data into the output is one you didn't mention, and that's pretty darned useful: the attribute value template. All of these do the same thing:</p>
<pre><code><link>
<xsl:attribute name="name">
<xsl:value-of select="translate(name, concat($uc, $ws), $lc)"/>
</xsl:attribute>
</link>
<link>
<xsl:attribute name="name" value="translate(name, concat($uc, $ws), $lc)"/>
</link>
<xsl:variable name="linkName" value="translate(name, concat($uc, $ws), $lc)"/>
<link name="{$linkName}"/>
</code></pre>
<p>In this particular case, it's arguable which of the last two is simpler and clearer. Most of the time, though, it's not: separating the calculation of values from how they get inserted into the output makes both easier to understand, as does using an AVT instead of more verbose XSLT constructs that do the same thing.</p>
http://stackoverflow.com/questions/1849924/looking-for-feedback-on-my-program-design/1851938#18519383Answer by Robert Rossney for Looking for feedback on my program designRobert Rossney2009-12-05T11:24:10Z2009-12-05T11:24:10Z<p>I think your approach makes for a lot of complexity: you're trying to solve the hard problem (parsing the input) at the same time you're solving the less-hard problem (doing the dice-rolling). It's easier if you separate the problems.</p>
<p>A class to roll dice is relatively easy to write. Two things I'm doing that you're not: the mapping of signs to operations (using a map means not having to write logic, plus it's reusable), and letting <code>Roller</code> objects be chained together in a simple linked list, so that calling <code>roll</code> on the head of the list rolls all of them and sums up the result.</p>
<pre><code>import random
R = random.Random()
class Roller(object):
# map signs to operations
op = { "+" : lambda a,b: a+b,
"-" : lambda a,b: a-b,
"*" : lambda a,b: a*b,
"/" : lambda a,b: a/b }
def __init__(self, dice, sides, sign=None, modifier=0):
self.dice = dice
self.sides = sides
self.sign = sign
self.modifier = modifier
self.next_sign = None
self.next_roller = None
def roll(self):
self.dice_rolled = [R.randint(1, self.sides) for n in range(self.dice)]
result = sum(dice_rolled)
if self.sign:
result = self.op[self.sign](result, self.modifier)
if self.next_sign and self.next_roller:
result = self.op[self.next_sign](result, self.next_roller.roll())
return result
</code></pre>
<p>It's relatively easy to test that. Note that <code>dice_rolled</code> is saved as an attribute so that you can write unit tests more easily.</p>
<p>The next step is to figure out how to parse the input. This sort of works:</p>
<pre><code>>>> p = """
(?P<next_sign>[-+*/])?
(?P<dice>[\d]+)
[\s]*D[\s]*
(?P<sides>[\d]+)
# trailing sign and modifier are optional, but if one is present both must be
([\s]*(?P<sign>[-+/*])[\s]*(?P<modifier>[\d]+))?"""
>>> r = re.compile(p, re.VERBOSE+re.IGNORECASE)
>>> m=r.match('2 d 20 +1')
>>> m.group('dice'), m.group('sides'), m.group('sign'), m.group('modifier')
('2', '20', '+', '1')
>>> r.findall('3D6*2-1D4+1*2D6-1')
[('', '3', '6', '*2', '*', '2'), ('-', '1', '4', '+1', '+', '1'), ('*', '2', '6', '-1', '-', '1')]
</code></pre>
<p>There's a lexical ambiguity that the syntax allows - <code>2D6+1D4</code> gets parsed as <code>2D6+1</code> followed by the unmatched <code>D4</code>, and it's not obvious to me how to fix that in the regular expression. Maybe that can be fixed with a negative lookahead assertion.</p>
<p>At any rate, once the regular expression gets fixed, the only thing left to do is process the results of <code>r.findall</code> to create a chain of <code>Roller</code> objects. And make that a class method if you really dig encapsulation.</p>
http://stackoverflow.com/questions/1846833/matching-stored-keywords-phrases-in-text/1849025#18490250Answer by Robert Rossney for matching stored keywords/phrases in textRobert Rossney2009-12-04T19:06:24Z2009-12-04T19:53:11Z<p>If you have 1000 phrases, and you're searching an input string to find which of those phrases are substrings, you're probably not going to be happy with the performance you get from using a big regular expression. A <a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">trie</a> is a bit more work to implement, but it's a lot more efficient: the regular expression <code>a|b|c|d|e</code> does five tests on each character in a given input string, while a trie only does one. You could conceivably also use a lexer, like <a href="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Plex/version/doc/index.html" rel="nofollow">Plex</a>, that produces a DFA.</p>
<p><strong>Edit:</strong></p>
<p>I appear to be procrastinating this morning. Try this:</p>
<pre><code> class Trie(object):
def __init__(self):
self.children = {}
self.item = None
def add(self, item, remainder=None):
"""Add an item to the trie."""
if remainder == None:
remainder = item
if remainder == "":
self.item = item
else:
ch = remainder[0]
if not self.children.has_key(ch):
self.children[ch] = Trie()
self.children[ch].add(item, remainder[1:])
def find(self, word):
"""Return True if word is an item in the trie."""
if not word:
return True
ch = word[0]
if not self.children.has_key(ch):
return False
return self.children[ch].find(word[1:])
def find_words(self, word, results=None):
"""Find all items in the trie that word begins with."""
if results == None:
results = []
if self.item:
results.append(self.item)
if not word:
return results
ch = word[0]
if not self.children.has_key(ch):
return results
return self.children[ch].find_words(word[1:], results)
</code></pre>
<p>A quick test (<code>words.txt</code> is the BSD words file, a very handy thing to have around - it contains about 240,000 words):</p>
<pre><code>>>> t = Trie()
>>> with open(r'c:\temp\words.txt', 'r') as f:
for word in f:
t.add(word.strip())
</code></pre>
<p>That takes about 15 seconds on my machine. This, however, is almost instantaneous:</p>
<pre><code>>>> s = "I played video games in a drunken haze."
>>> r = []
>>> for i in range(len(s)):
r.extend(t.find_words(s[i:]))
>>> r
['I', 'p', 'play', 'l', 'la', 'lay', 'a', 'ay', 'aye', 'y', 'ye', 'yed', 'e', 'd', 'v', 'video', 'i', 'id', 'ide', 'd', 'de', 'e', 'o', 'g', 'ga', 'gam', 'game', 'a', 'am', 'ame', 'm', 'me', 'e', 'es', 's', 'i', 'in', 'n', 'a', 'd', 'drunk', 'drunken', 'r', 'run', 'u', 'un', 'unken', 'n', 'k', 'ken', 'e', 'en', 'n', 'h', 'ha', 'haze', 'a', 'z', 'e']
</code></pre>
<p>Yes, <code>unken</code> is in words.txt. I have no idea why.</p>
<p>Oh, and I did try to compare with regular expressions:</p>
<pre><code> >>> import re
>>> with open(r'c:\temp\words.txt', 'r') as f:
p = "|".join([l.strip() for l in f])
>>> p = re.compile(p)
Traceback (most recent call last):
File "<pyshell#250>", line 1, in <module>
p = re.compile(p)
File "C:\Python26\lib\re.py", line 188, in compile
return _compile(pattern, flags)
File "C:\Python26\lib\re.py", line 241, in _compile
p = sre_compile.compile(pattern, flags)
File "C:\Python26\lib\sre_compile.py", line 529, in compile
groupindex, indexgroup
OverflowError: regular expression code size limit exceeded
</code></pre>
http://stackoverflow.com/questions/1831733/deleting-xml-nodes-using-xslt/1841887#18418870Answer by Robert Rossney for Deleting xml nodes using xsltRobert Rossney2009-12-03T18:26:26Z2009-12-04T10:59:02Z<p>Add the following template to the identity transform:</p>
<pre><code><xsl:template match="/*/*[position() &lt; 11]"/>
</code></pre>
<p>How it works: The identity transform copies any node it matches to the result document, recursively. But the match criteria on the identity transform have the lowest possible priority; if a node is matched by any template with a higher priority, that template will be used instead. (The priority rules are obscure, but they're so well designed that you rarely need to know about them; generally speaking, if a node is matched by two templates, XSLT will select the template whose pattern is more specific.)</p>
<p>In this case, we're saying that if a node is an element that's a child of the top-level element (the top level element is the first element under the root, or <code>/*</code>, and its child elements are thus <code>/*/*</code>) and its position in that list of nodes is 11 or higher, it shouldn't be copied.</p>
<p><strong>Edit:</strong></p>
<p>Oof. Everything about the above is correct except for the most important thing. What I wrote will copy every child of the top-level element <em>except</em> for the first ten.</p>
<p>Here's a complete (and correct) version of the templates you'll need:</p>
<pre><code><xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/*/*[position() &gt; 10]"/>
</code></pre>
<p>That's it. The first template copies everything that's not matched by the second template. The second template matches all elements after the first 10 and does nothing with them, so they don't get copied to the output.</p>
http://stackoverflow.com/questions/1843219/how-to-transition-from-c-to-python/1844721#18447210Answer by Robert Rossney for how to transition from c# to python?Robert Rossney2009-12-04T03:49:54Z2009-12-04T03:49:54Z<p>I use Eclipse and PyDev, most of the time, and the limited auto-completion help that it provides is pretty useful.</p>
<p>It's not ever going to come up to the level of VS's IntelliSense, and it can't, because of the dynamic nature of Python. But there are compensations, big ones.</p>
<p>The biggest is the breaking of the code-compile-test cycle. It's so easy to write and test prototype code in IDLE that very often it's where I go first: I'll sketch out and test a couple of methods that have to interoperate, figure out that there's something I don't know, learn it, fix my test, and then port the whole thing over to PyDev and watch it work the first time.</p>
<p>Another is that it's a lot simpler. It's really important to know what the standard modules are, and what they do, but for the most part that can be picked up with a little reading. I only use a small handful of modules in my everyday programming - <code>itertools</code>, <code>os</code>, <code>csv</code> (yeah, well), <code>datetime</code>, <code>StringIO</code> - and everything else is there if I need it, but usually I don't.</p>
<p>The stuff that it's really important to know is stuff that IntelliSense couldn't help you with anyway. Auto-completion isn't going to make</p>
<pre><code>self.__dict__.update(kwargs)
</code></pre>
<p>make a damn bit of sense; you have to learn what an amazing line of code that is, and why you'd write it, by yourself. </p>
<p>Then you'll think, "how would I even begin to implement something like that in C#?" and realize that the tools these stone-age people are using are a little more sophisticated than you think.</p>
http://stackoverflow.com/questions/1831269/how-to-extract-first-30-characters-from-xml-file/1841954#18419541Answer by Robert Rossney for How to extract first 30 characters from XML file?Robert Rossney2009-12-03T18:35:57Z2009-12-03T18:35:57Z<p>In C#, after reading the XML into an <code>XmlDocument</code>:</p>
<pre><code>string s = doc.DocumentElement.InnerText.Substring(0, 30);
</code></pre>
<p>This returns the first 30 characters of the text nodes in the document, e.g.:</p>
<pre><code><foo>This is <bar>some sort of <baz>crazy</baz> markup.</bar></foo>
</code></pre>
<p>will return:</p>
<pre><code>This is some sort of crazy mar
</code></pre>
http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1841787#184178710Answer by Robert Rossney for Can someone copyright a SQL query?Robert Rossney2009-12-03T18:09:47Z2009-12-03T18:09:47Z<p>I'd love to do work for your school district. Apparently your contractors can stick whatever conditions they like into their comments and your first impulse will be to honor them rather than looking up the contract and determining what the actual conditions are.</p>
http://stackoverflow.com/questions/1836176/a-friendship-relationship-question/1836531#18365311Answer by Robert Rossney for A Friendship relationship question. Robert Rossney2009-12-02T23:08:27Z2009-12-02T23:08:27Z<p>It's not obvious that your friendship model is associative. Is my friends list the list of all friendships in which I am the <code>from_user</code>? Or is it all friendships in which I am either the <code>from_user</code> or the <code>to_user</code>?</p>
<p>If it's the former, then every friend relationship is represented by two friendship objects, one indicating that you're my friend, and one indicating that I'm your friend. Whenever a user makes a request, you'll be adding two friendships. The status will indicate whether the person making the request is the <code>from_user</code> or the <code>to_user</code>. And when a request is confirmed or rejected, you'll update both friendships to reflect this.</p>
<p>If it's the latter, then every friend relationship is represented by a single friendship object. In this case, your object design will need to record which friend in the relationship made the request, so that when you examine the object you can tell which user can turn the request into a confirmed friendship.</p>
http://stackoverflow.com/questions/1832528/is-close-necessary-when-using-iterator-on-a-python-file-object/1836411#18364110Answer by Robert Rossney for Is close() necessary when using iterator on a Python file objectRobert Rossney2009-12-02T22:45:21Z2009-12-02T22:45:21Z<p>Strange that for all the discussion in this topic of the importance of freeing system resources, nobody has mentioned what seems to me an obviously more significant reason to close a file deterministically: so that it can be opened again.</p>
<p>There are certainly cases where it doesn't matter. If a file object goes out of scope or gets deleted, the underlying file will get closed. (When it gets closed depends on the specific implementation of Python you're using.) That's generally going to be good enough - <em>if</em> you know exactly when the file variable is going to go out of scope, and <em>if</em> you know that you don't care if the file gets closed deterministically.</p>
<p>But why should you even be troubling yourself with that kind of analysis when the <code>with</code> statement exists?</p>
http://stackoverflow.com/questions/1835014/in-python-is-the-idiom-from-module-import-classname-typical/1835635#18356350Answer by Robert Rossney for In Python, is the idiom "from Module import ClassName" typical?Robert Rossney2009-12-02T20:39:41Z2009-12-02T20:39:41Z<p>I use <code>from itertools import chain, ifilter, islice, izip</code> all the time, because it allows me to program as though those were built-in methods, which to my way of thinking they really ought to be. </p>
<p>Once, in a frenzy of misguided correctness, I went through a big block of code and replaced <code>from datetime import datetime</code> with <code>import datetime</code>. This was a good example of Mark Twain's observation that a man who picks up a rat by the tail learns something that can be learned no other way. It certainly set me straight on why it's OK to use <code>from x import y</code>.</p>
http://stackoverflow.com/questions/1835018/python-check-if-an-object-is-a-list-or-tuple-but-not-string/1835599#18355990Answer by Robert Rossney for Python: check if an object is a list or tuple (but not string) Robert Rossney2009-12-02T20:33:02Z2009-12-02T20:33:02Z<p>Generally speaking, the fact that a function which iterates over an object works on strings as well as tuples and lists is more feature than bug. You certainly <em>can</em> use <code>isinstance</code> or duck typing to check an argument, but why should you?</p>
<p>That sounds like a rhetorical question, but it isn't. The answer to "why should I check the argument's type?" is probably going to suggest a solution to the real problem, not the perceived problem. Why is it a bug when a string is passed to the function? Also: if it's a bug when a string is passed to this function, is it also a bug if some other non-list/tuple iterable is passed to it? Why, or why not?</p>
<p>I think that the most common answer to the question is likely to be that developers who write <code>f("abc")</code> are expecting the function to behave as though they'd written <code>f(["abc"])</code>. There are probably circumstances where it makes more sense to protect developers from themselves than it does to support the use case of iterating across the characters in a string. But I'd think long and hard about it first.</p>
http://stackoverflow.com/questions/180551/is-there-an-online-system-to-support-donations-to-individuals-in-need2Is there an online system to support donations to individuals in need? [closed]Robert Rossney2008-10-07T21:38:13Z2009-12-02T19:21:56Z
<p>A good friend of mine had a stroke yesterday. It would be a terrible situation even if he weren't a freelancer with no health insurance: he's now looking at the near-certainty of bankruptcy and the strong probability of homelessness in addition to being disabled. Two years ago, another friend of mine, who'd been battling breast cancer, ran out of money about six months before she ran out of life.</p>
<p>I'm seeing this sort of situation happen with greater and greater frequency. It's occurring to me that there are a lot of people in my age cohort (I'm 47) who are one crisis away from being seriously in need. (I'm one. If you're a middle-aged freelancer in the US, you probably are too.)</p>
<p>Every time this has happened, the response in the online communities I'm in has been similar: people want to help but don't know how, and eventually, someone steps forward and agrees to collect donations, consolidate them, and funnel them to the person in need. I've seen this particular wheel be reinvented three times in the last two years.</p>
<p>It seems clear to me that this is a problem space that a good web-based system could be a great help in. But I haven't been able to find one. What I've been able to find are systems that support non-profit organizations' fund-raising efforts. There are a lot of reasons these systems aren't very useful for the situations I've seen, which (to use the buzzwords) have been as much about social networking as it is about e-commerce.</p>
<p>Before I decide to put all of my silly hobby projects aside and turn my attention to this problem, I'd like to be sure that I'm not reinventing the wheel myself.</p>
<p>Does anyone know of a web site or web application that supports the task of collecting and disbursing donations to individuals in need?</p>
http://stackoverflow.com/questions/1832940/is-using-eval-in-python-a-bad-practice/1834815#18348151Answer by Robert Rossney for Is Using eval In Python A Bad Practice?Robert Rossney2009-12-02T18:19:56Z2009-12-02T18:19:56Z<p>It's worth noting that for the specific problem in question, there are several alternatives to using <code>eval</code>:</p>
<p>The simplest, as noted, is using <code>setattr</code>:</p>
<pre><code>def __init__(self):
for name in attsToStore:
setattr(self, name, None)
</code></pre>
<p>A less obvious approach is updating the object's <code>__dict__</code> object directly. If all you want to do is initialize the attributes to <code>None</code>, then this is less straightforward than the above. But consider this:</p>
<pre><code>def __init__(self, **kwargs):
for name in self.attsToStore:
self.__dict__[name] = kwargs.get(name, None)
</code></pre>
<p>This allows you to pass keyword arguments to the constructor, e.g.:</p>
<pre><code>s = Song(name='History', artist='The Verve')
</code></pre>
<p>It also allows you to make your use of <code>locals()</code> more explicit, e.g.:</p>
<pre><code>s = Song(**locals())
</code></pre>
<p>...and, if you really want to assign <code>None</code> to the attributes whose names are found in <code>locals()</code>:</p>
<pre><code>s = Song(**dict([(k, None) for k in locals().keys()]))
</code></pre>
<p>Another approach to providing an object with default values for a list of attributes is to define the class's <code>__getattr__</code> method:</p>
<pre><code>def __getattr__(self, name):
if name in self.attsToStore:
return None
raise NameError, name
</code></pre>
<p>This method gets called when the named attribute isn't found in the normal way. This approach somewhat less straightforward than simply setting the attributes in the constructor or updating the <code>__dict__</code>, but it has the merit of not actually creating the attribute unless it exists, which can pretty substantially reduce the class's memory usage.</p>
<p>The point of all this: There are lots of reasons, in general, to avoid <code>eval</code> - the security problem of executing code that you don't control, the practical problem of code you can't debug, etc. But an even more important reason is that generally, you don't need to use it. Python exposes so much of its internal mechanisms to the programmer that you rarely really need to write code that writes code.</p>
http://stackoverflow.com/questions/1829470/ranking-elements-of-multiple-lists-by-their-count-in-python/1829683#18296833Answer by Robert Rossney for Ranking Elements of multiple Lists by their count in PythonRobert Rossney2009-12-01T23:29:44Z2009-12-01T23:42:49Z<p>Combining a couple of ideas already posted:</p>
<pre><code>from itertools import chain
from collections import defaultdict
def frequency(*lists):
counter = defaultdict(int)
for x in chain(*lists):
counter[x] += 1
return [key for (key, value) in
sorted(counter.items(), key=lambda kv: (kv[1], kv[0]), reverse=True)]
</code></pre>
<p>Notes:</p>
<ol>
<li>In Python 2.7, you can use <code>Counter</code> instead of <code>defaultdict(int)</code>.</li>
<li>This version takes any number of lists as its argument; the leading asterisk means they'll all be packed into a tuple. If you want to pass in a single list containing all of your lists, omit that leading asterisk.</li>
<li>This breaks if your lists contain an unhashable type.</li>
</ol>
http://stackoverflow.com/questions/1824828/list-dictionary-array/1824921#18249214Answer by Robert Rossney for list? dictionary? array?Robert Rossney2009-12-01T09:07:49Z2009-12-01T09:07:49Z<p>Neither array, nor list, nor dictionary are the right data structure for tracking the boolean status of a set of objects. The structure that does this and nothing more is <code>HashSet<T></code>. Either a <code>T</code> is in the set, or it isn't.</p>
<p>It's superior to a <code>Dictionary<T, bool></code> because that actually maintains <em>two</em> states: whether the object is in the dictionary or not, and if it is, whether its value is true or false.</p>
<p>It's superior to a <code>List<T></code> for two reasons: It's faster (though in your case, that will almost certainly be negligible), and it doesn't imply that there's some meaning to the order of the objects it contains, since the order of objects in a <code>HashSet<T></code> is arbitrary.</p>
http://stackoverflow.com/questions/1814923/python-extract-html-from-an-xml-file/1816305#18163052Answer by Robert Rossney for Python: Extract HTML from an XML fileRobert Rossney2009-11-29T18:28:44Z2009-11-29T18:28:44Z<p>There may be a better way of conditionally handling objects returned by the <code>xpath()</code> function, but I'm not sufficiently conversant with <code>lxml</code> to know what it is, so I had to write a function to return the text value of a node. But that said, this shows a general approach to the problem:</p>
<pre><code>>>> from lxml import etree
>>> from StringIO import StringIO
>>> def node_text(n):
try:
return etree.tostring(n, method='html', with_tail=False)
except TypeError:
return str(n)
>>> f = StringIO('<strings><string>This is <b>not</b> how I plan to escape.</string></strings>')
>>> x = etree.parse(f)
>>> ''.join(node_text(n) for n in x.xpath('/strings/string/node()'))
'This is <b>not</b> how I plan to escape.'
</code></pre>
http://stackoverflow.com/questions/1813450/any-mean-to-filter-dataview-with-a-custom-function/1813886#18138861Answer by Robert Rossney for Any mean to filter dataview with a custom function ?Robert Rossney2009-11-28T21:56:45Z2009-11-28T21:56:45Z<p>You can't use a custom function as a <code>RowFilter</code> in a <code>DataView</code>, you can only use an expression as defined in the documentation for the <code>DataColumn.Expression</code> property. There's a lot you can do in the context of an expression, so that's usually sufficient.</p>
<p>A quick and dirty workaround, in case your function does something that can't be done in an expression, is to add a temporary column and filter on it:</p>
<pre><code>dv.Table.Columns.Add("Flag", typeof(bool));
foreach (DataRow dr in dv.Table.Rows)
{
dr.SetField("Flag", myFunction(dr);
}
dv.RowFilter = "Flag = True";
</code></pre>
http://stackoverflow.com/questions/1813469/help-with-dictionaries/1813660#18136600Answer by Robert Rossney for Help with dictionariesRobert Rossney2009-11-28T20:14:37Z2009-11-28T20:14:37Z<p>Note that using <code>list(set(seq))</code> will likely change the ordering of the remaining items. If retaining their order is important, you need to make a copy of the list:</p>
<pre><code>items = set()
copy = []
for item in seq:
if not item in items:
copy.add(item)
items.append(item)
seq = copy
</code></pre>
http://stackoverflow.com/questions/1809280/wpf-fill-with-data-control-that-is-inside-of-another-control/1813275#18132750Answer by Robert Rossney for WPF - fill with data control, that is inside of another controlRobert Rossney2009-11-28T18:20:41Z2009-11-28T18:20:41Z<p>Just to amplify on what Dabbleml says: Writing WPF applications using Windows Forms techniques is a road to despair and misery. The happy, joyous, and free way to build WPF applications is through the MVVM pattern and data-binding. </p>
<p>The buzzwords make this sound a lot harder than it actually is. In practice it's conceptually quite simple:</p>
<ol>
<li><p>Design your WPF window. This is your view.</p></li>
<li><p>Build a class that has exposes each piece of data that your window will display as a property. This is your view model. Add a method to the class that populates it from the data source. (This, by the way, is your model. Now you can say that you're using the MVVM pattern and impress girls at parties.)</p></li>
<li><p>Create a data context in your WPF window that will hold an instance of this class, and bind the controls to the class's properties.</p></li>
</ol>
<p>What happens when you do this: the actual code you write all involves manipulating data, not the UI. When someone comes to you and asks if your window can display some kind of dancing bologna when some weird condition occurs, you don't write any UI code; you just add a property to your view model, and bind the dancing-bologna control in your view to it.</p>
http://stackoverflow.com/questions/1803302/pythonic-way-to-select-first-variable-that-is-defined/1803448#18034480Answer by Robert Rossney for Pythonic way to select first variable that is definedRobert Rossney2009-11-26T12:39:21Z2009-11-26T12:39:21Z<p>So long as <code>default</code> evaluates to True:</p>
<pre><code>result = next((x for x in (a, b, c, d , e, default) if x))
</code></pre>
http://stackoverflow.com/questions/1789574/default-text-in-the-drop-down/1799824#17998240Answer by Robert Rossney for Default Text in the Drop Down.Robert Rossney2009-11-25T20:42:18Z2009-11-25T20:42:18Z<p>Generally speaking, I find that if I need to add complexity to a WPF application, adding it to the data source is more robust than adding it to the XAML.</p>
<p>In your example, I'd fix this in my data source. If I have:</p>
<pre><code>public IEnumerable<Person> People { get {...} }
</code></pre>
<p>in my data source, I'd add this:</p>
<pre><code>public IEnumerable<Person> PeopleWithNull
{
get
{
return (new List<Person> { null }).Concat(People);
}
}
</code></pre>
http://stackoverflow.com/questions/1783771/where-do-you-put-global-variables-in-a-wpf-application/1799702#17997020Answer by Robert Rossney for Where do you put global variables in a WPF application?Robert Rossney2009-11-25T20:21:30Z2009-11-25T20:21:30Z<p>While I share the general lack of enthusiasm for globals, it's worth at least acknowledging the central WPF mechanism for global information: the application's resource dictionary. There are a lot of things you shouldn't use this for (like, you can create a singleton-like object just by putting an XML data source in your application's resource dictionary, but really, don't), but there are a lot of things that you should - global styles, global templates, etc.</p>
http://stackoverflow.com/questions/1792270/xml-element-name-with-colon/1794952#17949520Answer by Robert Rossney for xml element name with colonRobert Rossney2009-11-25T05:59:59Z2009-11-25T05:59:59Z<p>The XML document you posted is not actually well-formed, because the <code>ns2</code> abbreviation assigned to many of the elements is not associated with a namespace. Fixed, it might look like this:</p>
<pre><code><ns1:E xmlns:ns1="schema" xmlns:ns2="my-namespace">
<ns1:B>
<ns2:S>
<ns2:V>
<ns2:Bl />
</ns2:V>
</ns2:S>
</ns1:B>
</ns1:E>
</code></pre>
<p>The above XML document is semantically equivalent to this one:</p>
<pre><code><s:E xmlns:s="schema">
<s:B>
<S xmlns="my-namespace">
<m:V xmlns:m="my-namespace">
<s:Bl xmlns:s="my-namespace"/>
</m:V>
</S>
</s:B>
</s:E>
</code></pre>
<p>And to this one:</p>
<pre><code><E xmlns="schema">
<B xmlns="schema">
<S xmlns="my-namespace">
<V>
<Bl/>
</V>
</S>
</B>
</E>
</code></pre>
<p>In all three cases, the <code>E</code> and <code>B</code> elements are in the <code>schema</code> namespace, while the <code>S</code>, <code>V</code>, and <code>Bl</code> elements are in the <code>my-namespace</code> namespace.</p>
<p>Namespace prefixes are helpful, but strictly speaking they're unnecessary. You can create XML documents, like the last example, that use no prefixes, and that declare the namespace explicitly for every element.</p>
<p>If, in processing XML, you think you care what prefix a given element is using, you're almost certainly wrong. The only thing you care about is what namespace it belongs to. For instance, if I load <em>any</em> of those three documents into an <code>XmlDocument</code>, the following code will write out the 'Bl' element:</p>
<pre><code> XmlNamespaceManager ns = new XmlNamespaceManager(d.NameTable);
ns.AddNamespace("a", "schema");
ns.AddNamespace("b", "my-namespace");
Console.Write(d.SelectSingleNode("/a:E/a:B/b:S/b:V/b:Bl", ns).OuterXml);
</code></pre>
<p>When you say:</p>
<blockquote>
<p>I don't want the output to have the schema reference but I do need to have the prefix. The result I want to achieve is simply <code><ns1:E></code>.</p>
</blockquote>
<p>you are almost certainly in error. An element whose tag is <code>ns1:E</code> is meaningless unless the <code>ns1</code> prefix is mapped to a namespace, either in that element or in one of its ancestors. (Also, a namespace is not a schema reference.) If you use</p>
<pre><code>CreateElement("ns1", "E", "schema");
</code></pre>
<p>to create the element, and then append it to an element that has already declared <code>ns1</code> as being the prefix for the <code>schema</code> namespace, then the DOM will append the element without the namespace declaration, because in that context it isn't needed. If <code>ns1</code> isn't declared (or is declared as abbreviating some namespace other than <code>schema</code>), then the DOM will stick a namespace declaration onto the element as well as the prefix.</p>
<p>tl;dr: You care about namespaces, not namespace prefixes.</p>
http://stackoverflow.com/questions/1792360/what-are-the-limits-of-python/1794560#17945609Answer by Robert Rossney for What are the limits of Python?Robert Rossney2009-11-25T04:10:50Z2009-11-25T04:10:50Z<p>Here's why it's worth learning Python:</p>
<p>A comparatively small number of problems are constrained by the speed of the algorithm. A comparatively large number of problems are bounded by the speed of the developer.</p>
http://stackoverflow.com/questions/1870044/python-string-parse/1870094#1870094Comment by Robert Rossney on Python String parseRobert Rossney2009-12-09T01:04:02Z2009-12-09T01:04:02ZYou can't. See <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags" rel="nofollow" title="regex match open tags except xhtml self contained tags">stackoverflow.com/questions/1732348/…</a>.http://stackoverflow.com/questions/1866343/removing-an-element-from-a-list-based-on-a-predicate/1868341#1868341Comment by Robert Rossney on Removing an element from a list based on a predicateRobert Rossney2009-12-08T22:32:21Z2009-12-08T22:32:21ZIf you're working with extremely large lists, anywhere that you're using lists instead of iterables is likely to be a trouble spot. You can trivially convert a generator to a list - <code>list(new_seq)</code> does that - but it does that by visiting every element in the list. If you're working with a list of a couple million codons, you really only want to do that once.http://stackoverflow.com/questions/1854216/raise-unhandled-exceptions-in-a-thread-in-the-main-thread/1854263#1854263Comment by Robert Rossney on Raise unhandled exceptions in a thread in the main thread?Robert Rossney2009-12-07T17:19:43Z2009-12-07T17:19:43ZI suspect the issue is not so much the mechanics of knowing how to re-raise the exception as when to, i.e. how does the main thread know that there's an exception waiting to be re-raised?http://stackoverflow.com/questions/1849924/looking-for-feedback-on-my-program-design/1853100#1853100Comment by Robert Rossney on Looking for feedback on my program designRobert Rossney2009-12-05T21:22:39Z2009-12-05T21:22:39ZI <i>clearly</i> need to learn <code>pyparsing</code>.http://stackoverflow.com/questions/1846833/matching-stored-keywords-phrases-in-text/1849025#1849025Comment by Robert Rossney on matching stored keywords/phrases in textRobert Rossney2009-12-05T19:14:42Z2009-12-05T19:14:42ZAho-Corasick is faster. But the speed difference between the two is a function of the length of the string being searched, not the size of the dictionary. If you're searching relatively long strings, it's probably worth the extra complexity.http://stackoverflow.com/questions/1849324/do-python-dicts-preserve-iteration-order-if-they-are-not-modified/1849397#1849397Comment by Robert Rossney on Do Python Dicts preserve iteration order if they are not modified?Robert Rossney2009-12-05T10:05:39Z2009-12-05T10:05:39ZIt's a good question, but this isn't the right answer.http://stackoverflow.com/questions/1831733/deleting-xml-nodes-using-xslt/1844144#1844144Comment by Robert Rossney on Deleting xml nodes using xsltRobert Rossney2009-12-04T10:59:41Z2009-12-04T10:59:41ZI've edited my answer to make it a) more detailed and b) not wrong.http://stackoverflow.com/questions/182976/what-is-more-efficient-for-parsing-xml-xpath-with-xmldocuments-xslt-or-linq/184466#184466Comment by Robert Rossney on What is more efficient for parsing Xml, XPath with XmlDocuments, XSLT or Linq?Robert Rossney2009-12-04T10:47:03Z2009-12-04T10:47:03ZXPathReader is a really outstanding idea of which I was completely unaware. Thanks for pointing me at it.http://stackoverflow.com/questions/1827308/how-to-use-xslt-to-add-namespaces-to-xmlComment by Robert Rossney on How to use xslt to add namespaces to xmlRobert Rossney2009-12-03T18:38:43Z2009-12-03T18:38:43ZHow do you determine which namespace to use if the same name appears in multiple namespaces?http://stackoverflow.com/questions/1831733/deleting-xml-nodes-using-xslt/1834149#1834149Comment by Robert Rossney on Deleting xml nodes using xsltRobert Rossney2009-12-03T18:29:21Z2009-12-03T18:29:21ZThis transform will mess up any descendant element that has 11 or more elements named <code>inner</code>. http://stackoverflow.com/questions/1838161/c-immutable-classes-in-business-applications/1838180#1838180Comment by Robert Rossney on c# Immutable classes in business applicationsRobert Rossney2009-12-03T07:27:56Z2009-12-03T07:27:56ZIn an actual implementation, Invoice.Issue() would return a completely new ImmutableInvoice object.http://stackoverflow.com/questions/1832528/is-close-necessary-when-using-iterator-on-a-python-file-object/1832589#1832589Comment by Robert Rossney on Is close() necessary when using iterator on a Python file objectRobert Rossney2009-12-02T22:30:15Z2009-12-02T22:30:15ZThe <code>with</code> statement is simple enough that it's hard to justify not using it in the interest of clarity.http://stackoverflow.com/questions/1832528/is-close-necessary-when-using-iterator-on-a-python-file-object/1834766#1834766Comment by Robert Rossney on Is close() necessary when using iterator on a Python file objectRobert Rossney2009-12-02T22:28:44Z2009-12-02T22:28:44ZThis analysis is an interesting, but it's obviously incomplete. First, it doesn't pass the smell test: if there are only 52 places in the Python standard library where a file gets opened, I will cook and eat my shoe. For a trivial example, the <code>logging</code> module implements its own <code>open</code> and <code>close</code> methods, which your RE won't find. Also: it implements a <code>close</code> method. There's a reason.http://stackoverflow.com/questions/1829470/ranking-elements-of-multiple-lists-by-their-count-in-python/1829527#1829527Comment by Robert Rossney on Ranking Elements of multiple Lists by their count in PythonRobert Rossney2009-12-01T23:50:24Z2009-12-01T23:50:24ZTwo for loops is not what makes some of these answers O(n^2), which this one isn't. It's calling count(x) on each item in the chained list that makes them O(n^2).http://stackoverflow.com/questions/1829470/ranking-elements-of-multiple-lists-by-their-count-in-python/1829527#1829527Comment by Robert Rossney on Ranking Elements of multiple Lists by their count in PythonRobert Rossney2009-12-01T23:48:15Z2009-12-01T23:48:15ZBeats me. Yours is the only one (except mine, but I copied yours) that applies the second sort order, which is a nice touch.