User Gregg Lind - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T18:36:34Z http://stackoverflow.com/feeds/user/15842 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point 0 Standard library - higher-precision floating point? Gregg Lind 2009-11-27T23:37:42Z 2009-11-27T23:57:18Z <p>So, I'm having some precision issues in Python.</p> <p>I would like to calculate functions like this:</p> <pre><code>P(x,y) = exp(-x)/(exp(-x) + exp(-y)) </code></pre> <p>Where x and y might be >1000. Python's math.exp(-1000) (in 2.6 at least!) doesn't have enough floating point precision to handle this. </p> <ol> <li>this form looks like logistic / logit / log-odds, but it's not, right? Is there some algebraic simplification I'm missing here?</li> <li>I know about Decimal, but am not sure if it applies here</li> <li>looks like homework, but it's not, I promise!</li> </ol> <p>(Also, I'm open to titles! I couldn't think of a good one for this question!)</p> http://stackoverflow.com/questions/1784632/designing-a-multi-process-spider-in-python/1784889#1784889 1 Answer by Gregg Lind for Designing a multi-process spider in Python Gregg Lind 2009-11-23T18:01:00Z 2009-11-23T18:01:00Z <p>You might want to look into <a href="http://scrapy.org/" rel="nofollow">Scrapy</a>, an asynchronous (based on <a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted</a>) web-scraper. It looks like for your task, the XPath description for the spider would be pretty easy to define! </p> <p>Good luck!</p> <p>(If you really want to do it yourself, maybe consider having small sqlite db that keeps track of whether each page has been hit or not... or if it's reasonable size, just do it in memory... Twisted in general might be your friend for hit.)</p> http://stackoverflow.com/questions/648429/typesetting-music-in-latex/1749838#1749838 1 Answer by Gregg Lind for Typesetting music in LaTeX Gregg Lind 2009-11-17T15:56:56Z 2009-11-17T15:56:56Z <p>If you have simple notations (folk tunes and the like), something like <a href="http://abcnotation.com/software.html" rel="nofollow">ABC</a> might be a good fit. Simple markup-based notation, but prints to LaTeX. Wikipedia has a <a href="http://en.wikipedia.org/wiki/Abc%5Fnotation" rel="nofollow">good example</a></p> <pre><code>X:1 T:The Legacy Jig M:6/8 L:1/8 R:jig K:G GFG BAB | gfg gab | GFG BAB | d2A AFD | GFG BAB | gfg gab | age edB |1 dBA AFD :|2 dBA ABd |: efe edB | dBA ABd | efe edB | gdB ABd | efe edB | d2d def | gfe edB |1 dBA ABd :|2 dBA AFD |] </code></pre> <p>Which produces </p> <p><a href="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Legacy%5Fjig.png/700px-Legacy%5Fjig.png" rel="nofollow"><img src="http://en.wikipedia.org/wiki/File%3ALegacy%5Fjig.png" alt="ABC example png"></a></p> http://stackoverflow.com/questions/223032/tf-idf-and-previously-unseen-terms 1 tf-idf and previously unseen terms Gregg Lind 2008-10-21T18:53:35Z 2009-11-02T23:02:42Z <p><a href="http://en.wikipedia.org/wiki/Tf-idf" rel="nofollow">TF-IDF (term frequency - inverse document frequency)</a> is a staple of information retrieval. It's not a proper model though, and it seems to break down when new terms are introduced into the corpus. How do people handle it when queries or new documents have new terms, especially if they are high frequency. Under traditional cosine matching, those would have no impact on the total match. </p> http://stackoverflow.com/questions/163923/methods-for-geotagging-or-geolabelling-text-content 4 Methods for Geotagging or Geolabelling Text Content Gregg Lind 2008-10-02T18:44:32Z 2009-11-02T16:30:14Z <p>What are some good algorithms for automatically labeling text with the city / region or origin? That is, if a blog is about New York, how can I tell programatically. Are there packages / papers that claim to do this with any degree of certainty? </p> <p>I have looked at some tfidf based approaches, proper noun intersections, but so far, no spectacular successes, and I'd appreciate ideas! </p> <p>The more general question is about assigning texts to topics, given some list of topics.</p> <p>Simple / naive approaches preferred to full on Bayesian approaches, but I'm open.</p> http://stackoverflow.com/questions/1617038/modern-non-trivial-pygame-tutorials 4 Modern, Non-trivial, Pygame Tutorials? Gregg Lind 2009-10-24T05:16:14Z 2009-10-24T14:16:41Z <p>What are some 'good', non-trivial Pygame tutorials? </p> <p>I realize good is relative. As an example, a good one (to me) is the one that describes how to use <a href="http://www.pygame.org/docs/tut/camera/CameraIntro.html" rel="nofollow"><strong>pygame.camera</strong></a>. It's</p> <ul> <li>recent</li> <li>uses a modern PyGame (1.9)</li> <li>non-trivial, in that it shows how to use it the module for a real application.</li> </ul> <p>I'd like to find others. A lot of the ones on the Pygame site are from 1.3 era or earlier!</p> <p>Info on related projects, like <a href="http://www.tuxradar.com/gloss" rel="nofollow">Gloss</a> is welcome as well.</p> <p>(If your answer is "read the source of some pygame games", please link to the source of particular ones and note what is good about them)</p> http://stackoverflow.com/questions/1567371/wrapping-an-interactive-command-line-application-in-a-python-script/1567447#1567447 2 Answer by Gregg Lind for Wrapping an interactive command line application in a python script Gregg Lind 2009-10-14T16:29:12Z 2009-10-14T16:29:12Z <p>Maybe you want something from <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">Subprocess</a> (<a href="http://blog.doughellmann.com/2007/07/pymotw-subprocess.html" rel="nofollow">MOTW</a>).</p> <p>I use code like this to make calls out to the shell:</p> <pre><code>from subprocess import Popen, PIPE ## shell out, prompt def shell(args, input=''): ''' uses subprocess pipes to call out to the shell. args: args to the command input: stdin returns stdout, stderr ''' p = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE) stdout, stderr = p.communicate(input=input) return stdout, stderr </code></pre> http://stackoverflow.com/questions/1538589/how-to-sort-all-possible-words-out-of-a-string/1538799#1538799 5 Answer by Gregg Lind for How to sort all possible words out of a string? Gregg Lind 2009-10-08T16:06:34Z 2009-10-08T16:06:34Z <p>People talk about this as though the Order of the problem is the number of possible substrings. This is incorrect. The correct order of this problem is:</p> <p>O( min ( number-of-words-in-dict, number-of-substring-combinations) * comparison_cost)</p> <p>So, another approach to the problem, to build on Vinko, is to index the heck out of the <em>dictionary</em> (e.g., for each work in the dict, determine the letters in that word, the length of the word, etc). This can speed things up dramatically. As an example, we know that target "queen" can't match "zebra" (no z's!) ( or any word containing z,r,b,a...), and the like. Also, store each word in the dict as a sorted string ('zebra' -> 'aberz') and do "string in string" (longest common substring) matching. 'eenuq' vs 'abarz' (no match). </p> <p>(Note: I am assuming that the order of the letters in the original word don't matter -- it's a 'bag of letters', if they do, then adjust accordingly) </p> <p>If you have lots of words to compare at once, the comparison cost can be lowered further using something like <a href="http://en.wikipedia.org/wiki/Knuth%E2%80%93Morris%E2%80%93Pratt%5Falgorithm" rel="nofollow">KMP</a>. </p> <p>(Also, I dove right in, and made some assumptions that Alex didn't, so if they're wrong, then shut my mouth!)</p> http://stackoverflow.com/questions/1538656/dimension-reduction/1538702#1538702 3 Answer by Gregg Lind for Dimension Reduction Gregg Lind 2009-10-08T15:53:11Z 2009-10-08T15:53:11Z <p>SVD is a fine approach (probably). LSA (Latent Semantic Analysis) is based around it, and has basically the same dimensionality approach. I've talked about that (at length) at: <a href="http://stackoverflow.com/questions/1014927/lsa-latent-semantic-analysis-how-to-code-it-in-php">lsa-latent-semantic-analysis-how-to-code-it-in-php</a> or check out the LSA tag here on SO.</p> <p>I realize it's an incomplete answer. Holler if you want more help!</p> http://stackoverflow.com/questions/1428110/non-repeating-pseudo-random-number-stream-with-clumping/1528831#1528831 0 Answer by Gregg Lind for Non-repeating pseudo random number stream with 'clumping' Gregg Lind 2009-10-07T00:12:54Z 2009-10-07T14:07:57Z <p><strike>For the record, I'm in the "non-repeating, non-random, non-tracking is a lethal combination" camp</strike>, and I hope some simple though experiments will shed some light. This is not formal proof by any means. Perhaps someone will shore it up. </p> <p>So, I can generate a sequence that has some randomness easily:</p> <p>Given x_i, x_(i+1) ~ U(x_i, r), where r > x_i. </p> <p>For example:</p> <p>if x_i = 6, x_(i+1) is random choice from (6+epsilon, some_other_real>6). This guarantees non-repeating, but at the cost that the distribution is monotonically increasing. </p> <p>Without some condition (like monotonicity), inherent to the sequence of generated numbers themselves, how else can you guarantee uniqueness <em>without</em> carrying state?</p> <p><strong>Edit</strong>: So after researching RBarryYoung's claim of "<a href="http://en.wikipedia.org/wiki/Linear%5Fcongruential%5Fgenerator" rel="nofollow">Linear Congruential <em>Generators</em></a>" (not differentiators... is this what RBY meant), and clearly, I was wrong! These sequences exist, and by necessity, any PRNG whose next number is dependent only on the current number and some global, non changing state can't have repeats within a cycle (after some initial burn it period).</p> http://stackoverflow.com/questions/1522564/how-do-i-run-a-python-program/1527012#1527012 2 Answer by Gregg Lind for How do I run a Python program? Gregg Lind 2009-10-06T17:37:26Z 2009-10-06T17:37:26Z <p>I'm very glad you asked! I was just working on explaining this very thing <a href="http://en.wikibooks.org/wiki/Choose%5FYour%5FOwn%5FPyventure" rel="nofollow">in our wikibook</a> (which is obviously incomplete). We're working with Python novices, and had to help a few through exactly what you're asking! </p> <p><strong>Command-line Python in Windows:</strong> </p> <ol> <li><p>Save your python code file somewhere, using "Save" or "Save as" in your editor. Lets call it 'first.py' in some folder, like "pyscripts" that you make on your Desktop.</p></li> <li><p>Open a <strong>prompt</strong> (a Windows 'cmd' shell that is a text interface into the computer): </p> <p>start > run > "cmd" (in the little box). OK. </p></li> <li><p>Navigate to where your python file is, using the commands 'cd' (change directory) and 'dir' (to show files in the directory, to verify your head). For our example something like, </p> <p>> cd C:\Documents and Settings\Gregg\Desktop\pyscripts</p></li> <li><p>try:</p> <p>> python first.py</p></li> </ol> <p>If you get this message: </p> <blockquote> <p>'python' is not recognized as an internal or external command, operable program or batch file.</p> </blockquote> <p>then <strong>python</strong> (the <em>interpreter</em> program that can translate Python into 'computer instructions') isn't on your path (see Putting Python in Your Path below). Then try calling it like this (assuming Python2.6, installed in the usual location):</p> <p>> C:\Python26\python.exe first.py</p> <p>(Advanced users: instead of first.py, you could write out first.py's full path of C:\Documents and Settings\Gregg\Desktop\pyscripts\first.py)</p> <p><strong>Putting Python In Your Path</strong></p> <p><em>Windows</em></p> <p>In order to run programs, your operating system looks in various places, and tries to match the name of the program / command you typed with some programs along the way. </p> <p>In windows:</p> <p>control panel > system > advanced > |Environmental Variables| > system variables -> Path</p> <p>this needs to include: C:\Python26; (or equivalent). If you put it at the front, it will be the first place looked. You can also add it at the end, which is possibly saner.</p> <p>Then restart your prompt, and try typing 'python'. If it all worked, you should get a ">>>" prompt.</p> http://stackoverflow.com/questions/1522386/put-bar-at-the-end-of-every-line-that-includes-foo/1522461#1522461 1 Answer by Gregg Lind for Put bar at the end of every line that includes foo Gregg Lind 2009-10-05T21:21:44Z 2009-10-06T14:05:38Z <p>Are you sure this isn't a little homeworky :) If so, it's okay to fess up. Without going into too much detail, think about the tasks you're trying to do:</p> <p>For each line:</p> <ol> <li>read it</li> <li>split it into words (on whitespace - .split() )</li> <li>convert the middle word into a color (based on a mapping -> cf: python dict()</li> <li>print the first word, arrow, third word and the color</li> </ol> <p>Code using NetworkX (networkx.lanl.gov/)</p> <pre><code>''' plot relationships in a social network ''' import networkx ## make a fake file 'ex.txt' in this directory ## then write fake relationships to it. example_relationships = file('ex.txt','w') print &gt;&gt; example_relationships, '''\ Jane Doe likes Fred Chris dislikes Joe Nate knows Jill \ ''' example_relationships.close() rel_colors = { 'likes': 'blue', 'dislikes' : 'black', 'knows' : 'green', } def split_on_verb(sentence): ''' we know the verb is the only lower cased word &gt;&gt;&gt; split_on_verb("Jane Doe likes Fred") ('Jane Does','Fred','likes') ''' words = sentence.strip().split() # take off any outside whitespace, then split # on whitespace if not words: return None # if there aren't any words, just return nothing verbs = [x for x in words if x.islower()] verb = verbs[0] # we want the '1st' one (python numbers from 0,1,2...) verb_index = words.index(verb) # where is the verb? subject = ' '.join(words[:verb_index]) obj = ' '.join(words[(verb_index+1):]) # 'object' is already used in python return (subject, obj, verb) def graph_from_relationships(fh,color_dict): ''' fh: a filehandle, i.e., an opened file, from which we can read lines and loop over ''' G = networkx.DiGraph() for line in fh: if not line.strip(): continue # move on to the next line, # if our line is empty-ish (subj,obj,verb) = split_on_verb(line) color = color_dict[verb] # cf: python 'string templates', there are other solutions here # this is the print "'%s' -&gt; '%s' [color='%s'];" % (subj,obj,color) G.add_edge(subj,obj,color) # return G G = graph_from_relationships(file('ex.txt'),rel_colors) print G.edges() # from here you can use the various networkx plotting tools on G, as you're inclined. </code></pre> http://stackoverflow.com/questions/1521784/cost-of-list-functions-in-python/1522519#1522519 0 Answer by Gregg Lind for Cost of list functions in Python Gregg Lind 2009-10-05T21:31:34Z 2009-10-05T21:31:34Z <p>Fwiw, there is a faster (for some ops... insert is O(log n)) <a href="http://www.python.org/dev/peps/pep-3128/" rel="nofollow">list implementation</a> called BList if you need it. <a href="http://stutzbachenterprises.com/blist/" rel="nofollow">BList</a></p> http://stackoverflow.com/questions/1517102/replace-newlines-with-br-tags-but-only-inside-pre-tags 2 Replace newlines with BR tags, but only inside PRE tags Gregg Lind 2009-10-04T18:51:37Z 2009-10-05T15:52:17Z <p>In stock PHP5, what is a good <code>preg_replace</code> expression for making this transformation:</p> <p><strong>replace newlines with <code>&lt;br /&gt;</code>, but only within <code>&lt;pre&gt;</code> blocks</strong></p> <p>(Feel free to make simplifying assumptions, and ignore corner cases. For example, we can assume that tags will be one line, and not pathological things like )</p> <p>Input text:</p> <pre><code>&lt;div&gt;&lt;pre class='some class'&gt;1 2 3 &lt;/pre&gt; &lt;pre&gt;line 1 line 2 line 3 &lt;/pre&gt; &lt;/div&gt; </code></pre> <p>Output:</p> <pre><code>&lt;div&gt;&lt;pre&gt;1&lt;br /&gt;2&lt;br /&gt;3&lt;br /&gt;&lt;/pre&gt; &lt;pre&gt;line 1&lt;br /&gt;line 2&lt;br /&gt;line 3&lt;br /&gt;&lt;/pre&gt; &lt;/div&gt; </code></pre> <p>(Motivating context: trying to close out bug 20760 in a wikimedia SyntaxHighlight_GeSHI extension, and finding the my PHP skills (I mostly do python) aren't up to snuff).</p> <p>I'm open to other solutions, besides regexen, but small is preferred (as an example, building html parse machinery is overkill).</p> http://stackoverflow.com/questions/1517102/replace-newlines-with-br-tags-but-only-inside-pre-tags/1520898#1520898 0 Answer by Gregg Lind for Replace newlines with BR tags, but only inside PRE tags Gregg Lind 2009-10-05T15:52:17Z 2009-10-05T15:52:17Z <p>Based on something SilentGhost said (which isn't showing up here for some reason):</p> <pre><code>&lt;?php $str = "&lt;div&gt;&lt;pre class='some class' &gt;1 2 3 &lt; / pre&gt; &lt;pre&gt;line 1 line 2 line 3 &lt;/pre&gt; &lt;/div&gt;"; $out = "&lt;div&gt;&lt;pre class='some class' &gt;1&lt;br /&gt;2&lt;br /&gt;3&lt;br /&gt;&lt; / pre&gt; &lt;pre&gt;line 1&lt;br /&gt;line 2&lt;br /&gt;line 3&lt;br /&gt;&lt;/pre&gt; &lt;/div&gt;"; function protect_newlines($str) { // \n -&gt; &lt;br /&gt;, but only if it's in a pre block // protects newlines from Parser::doBlockLevels() /* split on &lt;pre ... /pre&gt;, basically. probably good enough */ $str = " ".$str; // guarantee split will be in even positions //$parts = preg_split('/(&lt;pre .* pre&gt;)/Umsxu',$str,-1,PREG_SPLIT_DELIM_CAPTURE); $parts = preg_split("/(&lt; \s* pre .* \/ \s* pre \s* &gt;)/Umsxu",$str,-1,PREG_SPLIT_DELIM_CAPTURE); foreach ($parts as $idx=&gt;$part) { if ($idx % 2) { $parts[$idx] = preg_replace("/\n/", "&lt;br /&gt;", $part); } } $str = implode('',$parts); /* chop off the first space, that we had added */ return substr($str,1); } assert(protect_newlines($str) === $out); ?&gt; </code></pre> http://stackoverflow.com/questions/1504717/python-vs-is-comparing-strings-is-fails-sometimes-why/1505779#1505779 1 Answer by Gregg Lind for Python '==' vs 'is' comparing strings, 'is' fails sometimes, why? Gregg Lind 2009-10-01T18:51:32Z 2009-10-01T19:13:54Z <p>This is a side note, but in idiomatic python, you will often see things like:</p> <pre><code>if x is None: # some clauses </code></pre> <p>This is safe, because <a href="http://docs.python.org/library/stdtypes.html#the-null-object" rel="nofollow">there is guaranteed to be one instance of the Null Object (i.e., None)</a>.</p> http://stackoverflow.com/questions/1505131/visual-representation-of-nodes-in-python/1505746#1505746 2 Answer by Gregg Lind for Visual representation of nodes in Python Gregg Lind 2009-10-01T18:45:42Z 2009-10-01T18:45:42Z <p>Instead of using graphviz directly, consider using the visualization tools included in <a href="http://networkx.lanl.gov/" rel="nofollow">NetworkX</a>. The graph objects there are excellent for many purposes.</p> http://stackoverflow.com/questions/95007/explain-the-quantile-function-in-r 3 Explain the quantile() function in R Gregg Lind 2008-09-18T17:59:19Z 2009-09-23T14:44:04Z <p>I've been mystified by the R quantile function all day. </p> <p>I have an intuitive notion of how quantiles work, and an M.S. in stats, but boy oh boy, the documentation for it is confusing to me. </p> <p>From the docs:</p> <blockquote> <p>Q[i](p) = (1 - gamma) x[j] + gamma x[j+1],</p> </blockquote> <p>I'm with it so far. For a type <em>i</em> quantile, it's an interpolation between x[j] and x [j+1], based on some mysterious constant <em>gamma</em></p> <blockquote> <p>where 1 &lt;= i &lt;= 9, (j-m)/n &lt;= p &lt; (j-m+1)/ n, x[j] is the jth order statistic, n is the sample size, and m is a constant determined by the sample quantile type. Here gamma depends on the fractional part of g = np+m-j. </p> </blockquote> <p>So, how calculate j? m?</p> <blockquote> <p>For the continuous sample quantile types (4 through 9), the sample quantiles can be obtained by linear interpolation between the kth order statistic and p(k): </p> <p>p(k) = (k - alpha) / (n - alpha - beta + 1), where α and β are constants determined by the type. Further, m = alpha + p(1 - alpha - beta), and gamma = g.</p> </blockquote> <p>Now I'm really lost. p, which was a constant before, is now apparently a function. </p> <p>So for Type 7 quantiles, the default...</p> <blockquote> <p>Type 7</p> <p>p(k) = (k - 1) / (n - 1). In this case, p(k) = mode[F(x[k])]. This is used by S. </p> </blockquote> <p>Anyone want to help me out? In particular I'm confused by the notation of p being a function and a constant, what the heck <em>m</em> is, and now to calculate j for some particular <em>p</em>. </p> <p>I hope that based on the answers here, we can submit some revised documentation that better explains what is going on here. </p> <p><a href="https://svn.r-project.org/R/trunk/src/library/stats/R/quantile.R" rel="nofollow">quantile.R source code</a> or type: quantile.default</p> http://stackoverflow.com/questions/1449255/options-for-publishing-programming-education-materials 0 Options for Publishing Programming Education Materials Gregg Lind 2009-09-19T19:06:15Z 2009-09-19T21:04:29Z <p>I'm working on a programming class through the <a href="http://www.excotc.org/content/bits-and-bites-programming-first-steps" rel="nofollow">Twin Cities Experimental College</a>. I'd like to publish the curriculum materials, and I'm open for ideas about how to do so.</p> <p>Pluses: </p> <ul> <li>collaborative editing </li> <li>CC license</li> <li>some sense of "book"-ness</li> <li>able to easily format code (python, specifically)</li> </ul> <p>I don't want to manage the server myself. </p> <p>The options I've seen so far:</p> <ul> <li>Google Docs</li> <li>Wikibooks</li> </ul> <p>I'm quite open to others! I don't care about money, or paper publishing or any of that.</p> http://stackoverflow.com/questions/1393849/need-advice-how-to-represent-a-certain-datastructure-in-python/1402287#1402287 0 Answer by Gregg Lind for Need advice how to represent a certain datastructure in Python Gregg Lind 2009-09-09T21:44:55Z 2009-09-09T21:44:55Z <p>To echo Alex's answer.... these nested classes reek of code smell to me. </p> <p>Simpler maybe:</p> <pre><code>def Group(name=None,description=None,members=None): if name is None: name = "UNK!" # some reasonable default if members is None: members = dict() return dict(name = ...., members = ....) </code></pre> <p>In your original proposal, your objects are just glorified dicts anyway, and the only reason to use objects (in this code) are to get a cleaner <strong>init</strong> to handle empty attributes. Making them into functions that return actual dicts is nearly as clean, and much easier. Named-tuples seem like an even better solution though, as previously pointed out. </p> <p>This (nested dicts approach) has the benefit of being trivial to construct from /dump to json.</p> http://stackoverflow.com/questions/1381186/fulltext-search-with-innodb/1381209#1381209 0 Answer by Gregg Lind for Fulltext Search with InnoDB Gregg Lind 2009-09-04T19:48:13Z 2009-09-04T19:48:13Z <p>Sphinx, as you point out, is quite nice for this stuff. All the work is in the configuration file. Make sure whatever your table is with the strings has some unique integer id key, and you should be fine. </p> http://stackoverflow.com/questions/520963/pagination-with-the-python-cmd-module/1380570#1380570 0 Answer by Gregg Lind for pagination with the python cmd module Gregg Lind 2009-09-04T17:31:11Z 2009-09-04T17:31:11Z <p>I had the same question. There is a pager built in to the <a href="http://docs.python.org/library/pydoc" rel="nofollow"><strong>pydoc</strong> module</a>. I incorporated it thusly (which I find hackish and unsatisfying... I'm open to better ideas though).</p> <p>I like the idea that it would autopage if there are more than <em>x</em> results and paging is on, which is possible to implement, but not done here. </p> <pre><code>import cmd from pydoc import pager from cStringIO import StringIO import sys PAGER = True class Commander(cmd.Cmd): prompt = "&gt; " def do_pager(self,line): global PAGER line = line + " 1" tokens = line.lower().split() if tokens[0] in ("on","true","t", "1"): PAGER = True print "# setting PAGER True" elif tokens[0] in ("off","false","f","0"): PAGER = False print "# setting PAGER False" else: print "# can't set pager: don't know -&gt; %s" % tokens[0] def do_demo(self,line): results = dict(a=1,b=2,c=3) self.format_commandline_results(results) def format_commandline_results(self,results): if PAGER: ofh = StringIO() else: ofh = sys.stdout for (k,v) in sorted(results.items()): print &gt;&gt; ofh, "%s -&gt; %s" % (k,v) if PAGER: ofh.seek(0) pager(ofh.read()) return None def do_EOF(self,line): print "", return True if __name__ == "__main__": Commander().cmdloop("# try: \n&gt; pager off \n&gt; demo \n&gt; pager on \n&gt; demo \n\n") </code></pre> http://stackoverflow.com/questions/1344677/solving-a-picture-jumble/1364951#1364951 0 Answer by Gregg Lind for Solving a picture jumble! Gregg Lind 2009-09-01T22:25:46Z 2009-09-01T22:25:46Z <p>To elaborate on Ira Baxter's answer, another way of conceptualizing the problem is to think about the jigsaw puzzle as a graph, where each piece is a node and each iterface with another piece is an edge. </p> <p>For example if you were designing a puzzle game, storing the "answer" this way would make "check if this fits" code a lot faster, since it could be reduced to some sort of hash-lookup. </p> http://stackoverflow.com/questions/1284782/how-to-correct-the-user-input-kind-of-google-did-you-mean/1360204#1360204 0 Answer by Gregg Lind for How to correct the user input (Kind of google "did you mean?") Gregg Lind 2009-09-01T01:57:03Z 2009-09-01T01:57:03Z <p>For people who are recommending Soundex, it is very out of date. Metaphone (simpler) or Double Metaphone (complex) are much better. If it really is name data, it should work fine, if the names are European-ish in origin, or at least phonetic. </p> <p>As for the search, if you care to roll your own, rather than use Aspell or some other smart data structure... pre-calculating possible matches is O(n^2), in the naive case, but we know in order to be matching at all, they have to have a "phoneme" overlap, or may even two. This pre-indexing step (which has a low false positive rate) can take down the complexity a lot (to in the practical case, something like O(30^2 * k^2), where k is &lt;&lt; n). </p> http://stackoverflow.com/questions/674494/problems-wrapping-patricia-tries-using-swig-python 0 problems Wrapping Patricia Tries using Swig, python Gregg Lind 2009-03-23T17:52:17Z 2009-08-26T20:58:55Z <p>Hello all! </p> <p>I'm trying to wrap the Patricia Tries (Perl's NET::Patricia) to be exposed in python. I am having difficulty with one of the classes.</p> <p>So instances the patricia node (below) as viewed from python have a "data" property. Reading it goes fine, but writing to it breaks.</p> <pre><code>typedef struct _patricia_node_t { u_int bit; /* flag if this node used */ prefix_t *prefix; /* who we are in patricia tree */ struct _patricia_node_t *l, *r; /* left and right children */ struct _patricia_node_t *parent;/* may be used */ void *data; /* pointer to data */ void *user1; /* pointer to usr data (ex. route flap info) */ } patricia_node_t; </code></pre> <p>Specifically:</p> <pre><code>&gt;&gt;&gt; N = patricia.patricia_node_t() &gt;&gt;&gt; assert N.data == None &gt;&gt;&gt; N.data = 1 TypeError: in method 'patricia_node_t_data_set', argument 2 of type 'void *' </code></pre> <p>Now my C is weak. From what I read in the SWIG book, I think this means I need to pass it a pointer to data. According to <a href="http://www.swig.org/Doc1.3/Python.html#Python%5Fnn18" rel="nofollow">the book</a> :</p> <blockquote> <p>Also, if you need to pass the raw pointer value to some external python library, you can do it by casting the pointer object to an integer... However, the inverse operation is not possible, i.e., you can't build a Swig pointer object from a raw integer value. </p> </blockquote> <p>Questions:</p> <ol> <li>am I understanding this correctly?</li> <li>how do I get around this? Is %extends? typemap? Specifics would be very helpful.</li> </ol> <p>Notes:</p> <ol> <li>I can't change the C source, but I can extend it in additional .h files or the interface .i file. </li> <li>From what I understand, that "data" field should be able to contain "anything" for some reasonable value of "anything" that I don't really know.</li> </ol> http://stackoverflow.com/questions/1281385/doctestargv0-as-a-convention/1285309#1285309 0 Answer by Gregg Lind for DOCTEST==argv[0] as a convention? Gregg Lind 2009-08-16T20:46:09Z 2009-08-16T20:46:09Z <p>Another <em>hackish</em> way to avoid namespace conflicts with the environment: looks for myprogname_DEBUG or the like. </p> http://stackoverflow.com/questions/948815/python-web-framework-with-low-barrier-to-entry/1267400#1267400 2 Answer by Gregg Lind for Python web framework with low barrier to entry Gregg Lind 2009-08-12T16:55:35Z 2009-08-12T16:55:35Z <p>For low barrier to entry, <a href="http://webpy.org/" rel="nofollow">web.py</a> is very very light and simple. </p> <p>Features:</p> <ul> <li>easy (dev) deploy... copy web.py folder into your app directory, then start the server</li> <li>regex-based url mapping</li> <li>very simple class mappings</li> <li>built-in server (most frameworks have this of course)</li> <li><em>very thin</em> (as measured by lines of code, at least) layer over python application code. </li> </ul> <p>Here is its <strong>hello world</strong>:</p> <pre><code>import web urls = ( '/(.*)', 'hello' ) app = web.application(urls, globals()) class hello: def GET(self, name): if not name: name = 'world' return 'Hello, ' + name + '!' if __name__ == "__main__": app.run() </code></pre> <p>As much as I like Werkzeug conceptually, writing wsgi plumbing in the Hello, World! is deeply unpleasant, and totally gets in the way of actually demoing an app. </p> <p>That said, web.py isn't perfect, and for big jobs, it's probably not the right tool, since:</p> <ul> <li>routes style systems are (imho) better than pure regex ones</li> <li>integrating web.py with other middlewares might be adventurous</li> </ul> http://stackoverflow.com/questions/1257413/iterate-over-pairs-in-a-list-circular-fashion-in-python/1257966#1257966 0 Answer by Gregg Lind for Iterate over pairs in a list (circular fashion) in Python Gregg Lind 2009-08-11T00:42:37Z 2009-08-11T00:42:37Z <p>This infinitely cycles, for good or ill, but is algorithmically very clear. </p> <pre><code>from itertools import tee, cycle def nextn(iterable,n=2): ''' generator that yields a tuple of the next n items in iterable. This generator cycles infinitely ''' cycled = cycle(iterable) gens = tee(cycled,n) # advance the iterators, this is O(n^2) for (ii,g) in zip(xrange(n),gens): for jj in xrange(ii): gens[ii].next() while True: yield tuple([x.next() for x in gens]) def test(): data = ((range(10),2), (range(5),3), (list("abcdef"),4),) for (iterable, n) in data: gen = nextn(iterable,n) for j in range(len(iterable)+n): print gen.next() test() </code></pre> <p>gives:</p> <pre><code>(0, 1) (1, 2) (2, 3) (3, 4) (4, 5) (5, 6) (6, 7) (7, 8) (8, 9) (9, 0) (0, 1) (1, 2) (0, 1, 2) (1, 2, 3) (2, 3, 4) (3, 4, 0) (4, 0, 1) (0, 1, 2) (1, 2, 3) (2, 3, 4) ('a', 'b', 'c', 'd') ('b', 'c', 'd', 'e') ('c', 'd', 'e', 'f') ('d', 'e', 'f', 'a') ('e', 'f', 'a', 'b') ('f', 'a', 'b', 'c') ('a', 'b', 'c', 'd') ('b', 'c', 'd', 'e') ('c', 'd', 'e', 'f') ('d', 'e', 'f', 'a') </code></pre> http://stackoverflow.com/questions/1249165/portable-command-execution-syntax-implemented-in-python/1249183#1249183 2 Answer by Gregg Lind for Portable command execution syntax implemented in Python Gregg Lind 2009-08-08T15:49:25Z 2009-08-08T15:49:25Z <p>Sounds like you need some combination of <a href="http://pyparsing.wikispaces.com/" rel="nofollow">PyParsing</a> and <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">Python Subprocess</a>.</p> <p>I find subprocess a little confusing, despite the <a href="http://blog.doughellmann.com/2007/07/pymotw-subprocess.html" rel="nofollow">MOTW</a> about it, so I use this kind of wrapper code a lot.</p> <pre><code>from subprocess import Popen, PIPE def shell(args, input=None): p = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE) stdout, stderr = p.communicate(input=input) return stdout, stderr </code></pre> http://stackoverflow.com/questions/1078599/deploying-a-web-py-application-with-wsgi-several-servers/1245928#1245928 0 Answer by Gregg Lind for Deploying a Web.py application with WSGI, several servers Gregg Lind 2009-08-07T17:12:58Z 2009-08-07T17:12:58Z <p>As of July 21 2009, there is a much fuller installation guide at <a href="http://webpy.org/install" rel="nofollow">the webpy install site</a>, that discusses <strong>flup</strong>, <strong>fastcgi</strong>, <strong>apache</strong> and more. I haven't yet <em>tried</em> it, but it seems like it's much more detailed. </p> http://stackoverflow.com/questions/1014927/lsa-latent-semantic-analysis-how-to-code-it-in-php/1039035#1039035 Comment by Gregg Lind on LSA - Latent Semantic Analysis - How to code it in PHP? Gregg Lind 2009-12-08T13:45:37Z 2009-12-08T13:45:37Z Not by me, alas! I'm a python/R hacker :) http://stackoverflow.com/questions/1836061/python-universal-database-interface/1836266#1836266 Comment by Gregg Lind on Python universal database interface? Gregg Lind 2009-12-03T20:50:45Z 2009-12-03T20:50:45Z Even if you don't use the ORM, stuff like create_engine <a href="http://www.sqlalchemy.org/docs/05/sqlexpression.html#connecting" rel="nofollow">sqlalchemy.org/docs/05/&hellip;</a> and friends are very helpful for making connecting to different dbs pretty seamless. Of course you have to install pycopg2 and friends for the last mile, as you point out. http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point Comment by Gregg Lind on Standard library - higher-precision floating point? Gregg Lind 2009-11-28T16:28:52Z 2009-11-28T16:28:52Z Fwiw, that documentation is different between 2.5 and 2.6, so good on python-doc maintainers. I didn't think the exp part would be relevant in my internal model, honestly, and it pleasantly surprises me that Decimal() has its own math functions as methods, but it's not expected, considering it's at odds with cmath. I was expecting the idiom something more like exp(SpecialType()), not SpecialType().exp. I'm glad to be educated on it. http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point/1811030#1811030 Comment by Gregg Lind on Standard library - higher-precision floating point? Gregg Lind 2009-11-28T02:46:40Z 2009-11-28T02:46:40Z I would accept yours as well. I don't know why I just couldn't see it! Thanks! http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point Comment by Gregg Lind on Standard library - higher-precision floating point? Gregg Lind 2009-11-28T02:45:57Z 2009-11-28T02:45:57Z Well, for one, as I pointed out below, I didn't realize that Decimal() had a exp method. Doing math.exp(Decimal()) doesn't work. If you want to give me the RTFM treatment, then at least link to TFM. http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point/1811052#1811052 Comment by Gregg Lind on Standard library - higher-precision floating point? Gregg Lind 2009-11-28T02:44:44Z 2009-11-28T02:44:44Z Thank you for demonstrating how to actually use Decimal here. I didn't realize it had a 'exp' method. http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point/1811020#1811020 Comment by Gregg Lind on Standard library - higher-precision floating point? Gregg Lind 2009-11-28T02:44:08Z 2009-11-28T02:44:08Z Good to know, but not part of standard library. Thanks for linking though! http://stackoverflow.com/questions/1811010/standard-library-higher-precision-floating-point/1811026#1811026 Comment by Gregg Lind on Standard library - higher-precision floating point? Gregg Lind 2009-11-28T02:42:57Z 2009-11-28T02:42:57Z Thank you! I knew there was something i was missing here. Jeepers, I feel like a moron! I tried to take the log of all of it, which obviously fails. http://stackoverflow.com/questions/1784632/designing-a-multi-process-spider-in-python/1784889#1784889 Comment by Gregg Lind on Designing a multi-process spider in Python Gregg Lind 2009-11-23T19:16:12Z 2009-11-23T19:16:12Z I'm imagining (in a synchronous system), you'd keep a queue or stack (adding pages when look a group page, or whatever) and when it gets to empty, you're done. http://stackoverflow.com/questions/1678192/is-there-a-programming-language-where-the-static-data-type-is-optional/1678230#1678230 Comment by Gregg Lind on Is there a programming language where the static data type is optional? Gregg Lind 2009-11-11T23:09:14Z 2009-11-11T23:09:14Z In what sense do you claim &quot;Python works in a similar fashion&quot; to this? http://stackoverflow.com/questions/91810/is-there-a-pretty-printer-for-python-data/91972#91972 Comment by Gregg Lind on Is there a pretty printer for python data? Gregg Lind 2009-11-05T14:27:29Z 2009-11-05T14:27:29Z Well, can also import an ipython shell into your program. I point out ipython because it has many many other useful features besides pretty-printing. http://stackoverflow.com/questions/1617038/modern-non-trivial-pygame-tutorials/1617080#1617080 Comment by Gregg Lind on Modern, Non-trivial, Pygame Tutorials? Gregg Lind 2009-10-24T14:03:31Z 2009-10-24T14:03:31Z Excellent start Eli! http://stackoverflow.com/questions/1157245/creating-a-board-game-simulator-python-pygame/1160754#1160754 Comment by Gregg Lind on Creating a board game simulator (Python?) (Pygame?) Gregg Lind 2009-10-24T05:26:01Z 2009-10-24T05:26:01Z The point of separating things out is to make it simpler to actually get working bits done. Then when it comes time to learn Pygame, the author just has to learn Pygame, as an interface. Otherwise sprites end up storing game state. Pygame is hard to debug, a text interface isn't. http://stackoverflow.com/questions/1537616/handling-renames-svn-vs-git-vs-mercurial/1542702#1542702 Comment by Gregg Lind on Handling renames: svn vs. git vs. mercurial Gregg Lind 2009-10-21T07:18:58Z 2009-10-21T07:18:58Z That 'git log --follow' is a hidden gem. http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598812#1598812 Comment by Gregg Lind on Git and Mercurial - Compare and Contrast Gregg Lind 2009-10-21T07:04:33Z 2009-10-21T07:04:33Z Dustin, maybe list some of those &quot;git easy, hg not so much&quot; cases?