Robert Rossney

9,485
Reputation
337 views

Registered User

name Robert Rossney
member for 1 year
seen 1 hour ago
website
location San Francisco
age 49

This reminds me of the ludicrous account which he gave Mr. Langton, of the despicable state of a young Gentleman of good family. 'Sir, when I heard of him last, he was running about town shooting cats.' And then in a sort of kindly reverie, he bethought himself of his own favourite cat, and said, 'But Hodge shan't be shot; no, no, Hodge shall not be shot.'

-- James Boswell, The Life of Samuel Johnson
53m
answered Python String parse
1h
comment Python String parse
You can't. See stackoverflow.com/questions/1732348/….
3h
revised Removing an element from a list based on a predicate
Added timeit results.
3h
comment Removing an element from a list based on a predicate
If 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 - list(new_seq) 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.
9h
answered Removing an element from a list based on a predicate
14h
awarded  Nice Answer
20h
answered Re-format items inside list read from CSV file in Python
1d
comment Raise unhandled exceptions in a thread in the main thread?
I 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?
1d
answered Flexible numeric string parsing in Python
2d
awarded  Mortarboard
2d
answered What is the most efficient way to do look-up table in C#
2d
revised How to find/replace text in html while preserving html tags/structure
Fixed typo.
2d
accepted Xpath function to remove white space
Dec
5
comment Looking for feedback on my program design
I clearly need to learn pyparsing.
Dec
5
answered & in XmlDocument.AppendChild
Dec
5
answered Xpath function to remove white space
Dec
5
comment matching stored keywords/phrases in text
Aho-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.
Dec
5
answered Looking for feedback on my program design
Dec
5
comment Do Python Dicts preserve iteration order if they are not modified?
It's a good question, but this isn't the right answer.
Dec
4
revised matching stored keywords/phrases in text
added 2741 characters in body
Dec
4
answered matching stored keywords/phrases in text
Dec
4
awarded  Popular Question
Dec
4
comment Deleting xml nodes using xslt
I've edited my answer to make it a) more detailed and b) not wrong.
Dec
4
revised Deleting xml nodes using xslt
Updated as shown
Dec
4
comment What is more efficient for parsing Xml, XPath with XmlDocuments, XSLT or Linq?
XPathReader is a really outstanding idea of which I was completely unaware. Thanks for pointing me at it.
Dec
4
accepted XSLT output to HTML
Dec
4
answered how to transition from c# to python?
Dec
3
comment How to use xslt to add namespaces to xml
How do you determine which namespace to use if the same name appears in multiple namespaces?
Dec
3
answered How to extract first 30 characters from XML file?
Dec
3
comment Deleting xml nodes using xslt
This transform will mess up any descendant element that has 11 or more elements named inner.
Dec
3
answered Deleting xml nodes using xslt
Dec
3
answered Can someone copyright a SQL query?
Dec
3
comment c# Immutable classes in business applications
In an actual implementation, Invoice.Issue() would return a completely new ImmutableInvoice object.
Dec
2
answered A Friendship relationship question.
Dec
2
answered Is close() necessary when using iterator on a Python file object
Dec
2
comment Is close() necessary when using iterator on a Python file object
The with statement is simple enough that it's hard to justify not using it in the interest of clarity.
Dec
2
comment Is close() necessary when using iterator on a Python file object
This 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 logging module implements its own open and close methods, which your RE won't find. Also: it implements a close method. There's a reason.
Dec
2
answered In Python, is the idiom “from Module import ClassName” typical?
Dec
2
answered Python: check if an object is a list or tuple (but not string)
Dec
2
answered Is Using eval In Python A Bad Practice?
Dec
1
comment Ranking Elements of multiple Lists by their count in Python
Two 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).
Dec
1
comment Ranking Elements of multiple Lists by their count in Python
Beats me. Yours is the only one (except mine, but I copied yours) that applies the second sort order, which is a nice touch.
Dec
1
comment Ranking Elements of multiple Lists by their count in Python
You're iterating over the chain of lists twice here. If you sort the histogram, you only need to iterate over it once. (Also, you don't need to build a set, because you already did.)
Dec
1
revised Ranking Elements of multiple Lists by their count in Python
Was returning the wrong thing.
Dec
1
comment Ranking Elements of multiple Lists by their count in Python
This one's also O(n^2).
Dec
1
comment Ranking Elements of multiple Lists by their count in Python
True, but the problem with O(n^2) is that the leap from "not lightning fast" to "unusably slow" is really easy to make.
Dec
1
answered Ranking Elements of multiple Lists by their count in Python
Dec
1
comment list? dictionary? array?
Choosing HashSet<T> is YAGNI in action.
Dec
1
accepted list? dictionary? array?
Dec
1
answered list? dictionary? array?