User Ryan Cox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T15:57:39Z http://stackoverflow.com/feeds/user/620 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1783669/any-python-support-vector-machine-library-around-that-allows-online-learning/1784156#1784156 2 Answer by Ryan Cox for Any python Support Vector Machine library around that allows online learning? Ryan Cox 2009-11-23T16:09:44Z 2009-11-23T16:09:44Z <p><a href="http://www.csie.ntu.edu.tw/~cjlin/libsvm/" rel="nofollow">LibSVM</a> includes a python wrapper that works via SWIG.</p> <p>Example svm-test.py from their distribution:</p> <pre><code>#!/usr/bin/env python from svm import * # a three-class problem labels = [0, 1, 1, 2] samples = [[0, 0], [0, 1], [1, 0], [1, 1]] problem = svm_problem(labels, samples); size = len(samples) kernels = [LINEAR, POLY, RBF] kname = ['linear','polynomial','rbf'] param = svm_parameter(C = 10,nr_weight = 2,weight_label = [1,0],weight = [10,1]) for k in kernels: param.kernel_type = k; model = svm_model(problem,param) errors = 0 for i in range(size): prediction = model.predict(samples[i]) probability = model.predict_probability if (labels[i] != prediction): errors = errors + 1 print "##########################################" print " kernel %s: error rate = %d / %d" % (kname[param.kernel_type], errors, size) print "##########################################" param = svm_parameter(kernel_type = RBF, C=10) model = svm_model(problem, param) print "##########################################" print " Decision values of predicting %s" % (samples[0]) print "##########################################" print "Numer of Classes:", model.get_nr_class() d = model.predict_values(samples[0]) for i in model.get_labels(): for j in model.get_labels(): if j&gt;i: print "{%d, %d} = %9.5f" % (i, j, d[i,j]) param = svm_parameter(kernel_type = RBF, C=10, probability = 1) model = svm_model(problem, param) pred_label, pred_probability = model.predict_probability(samples[1]) print "##########################################" print " Probability estimate of predicting %s" % (samples[1]) print "##########################################" print "predicted class: %d" % (pred_label) for i in model.get_labels(): print "prob(label=%d) = %f" % (i, pred_probability[i]) print "##########################################" print " Precomputed kernels" print "##########################################" samples = [[1, 0, 0, 0, 0], [2, 0, 1, 0, 1], [3, 0, 0, 1, 1], [4, 0, 1, 1, 2]] problem = svm_problem(labels, samples); param = svm_parameter(kernel_type=PRECOMPUTED,C = 10,nr_weight = 2,weight_label = [1,0],weight = [10,1]) model = svm_model(problem, param) pred_label = model.predict(samples[0]) </code></pre> http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/1780201#1780201 0 Answer by Ryan Cox for Do you listen to anything while programming? Ryan Cox 2009-11-22T22:17:38Z 2009-11-22T22:17:38Z <p>Atlas' <a href="http://www.digitalwell.washington.edu/dw/1/51/e0/e031fe21-e658-4678-b9bf-be38c221b245.mp3" rel="nofollow">Battles</a> (mp3 link) can be good....</p> <p>Also <a href="http://somafm.com/play/spacestation" rel="nofollow">Space Station - SomaFM</a> is effective...</p> <p><img src="http://somafm.com/img/sss.jpg" alt="space station soma"></p> http://stackoverflow.com/questions/1776378/strategy-to-collect-analytics-from-a-large-app/1778618#1778618 2 Answer by Ryan Cox for Strategy to collect Analytics from a large app Ryan Cox 2009-11-22T12:48:43Z 2009-11-22T13:41:59Z <p>It's tough to say without more information about your infrastructure and desired scaling targets. You may find this slide deck about <a href="http://www.slideshare.net/kevinweil/hadoop-pig-and-twitter-nosql-east-2009" rel="nofollow">How Twitter Uses Hadoop</a> to be instructional. It was presented by <a href="http://twitter.com/kevinweil" rel="nofollow">Kevin Weil</a> at the recent <a href="http://paulstamatiou.com/recap-nosql-east-conference-2009" rel="nofollow">NoSQL East conference</a>.</p> <p><img src="http://paulstamatiou.com/wp-content/uploads/2009/11/nosqleast%5Fweil%5Ftwitterpig.jpg" alt="alt text"></p> <p>Borrowing ideas from what Twitter is doing you could consider an architecture split into collection, analysis and render phases.</p> <p><strong>Collection Phase</strong>: Super low latency. Very scalable. Lots of binding choices. Developed at <a href="http://github.com/facebook/scribe" rel="nofollow">facebook</a>.</p> <blockquote> <p>Processing Node Log Event -> <a href="http://www.cloudera.com/blog/2008/11/02/configuring-and-using-scribe-for-hadoop-log-collection/" rel="nofollow">Scribe</a> -> HDFS </p> </blockquote> <p><strong>Analysis Phase</strong>: SQL-like query language that will allow you to do exploratory ad-hoc queries as well. </p> <blockquote> <p>HDFS -> <a href="http://www.cloudera.com/hadoop-training-pig-introduction" rel="nofollow">Pig</a> -> MySQL</p> </blockquote> <p><strong>Render Phase</strong>: Implemented in your current web framework</p> <blockquote> <p>MySQL -> JSON -> Memcached -> Flash Charting</p> </blockquote> <p>There have been some posts here on SO regarding choice of Flash charting components for thew web. I personally have had good success with <a href="http://www.amcharts.com/" rel="nofollow">AmCharts</a>.</p> <ul> <li><a href="http://stackoverflow.com/questions/2543">http://stackoverflow.com/questions/2543</a></li> <li><a href="http://stackoverflow.com/questions/153303">http://stackoverflow.com/questions/153303</a></li> </ul> http://stackoverflow.com/questions/1746815/configure-nginx-for-jboss-tomcat/1748760#1748760 1 Answer by Ryan Cox for Configure nginx for jboss/tomcat Ryan Cox 2009-11-17T13:08:57Z 2009-11-17T13:08:57Z <p>For nginx checkout their docs <a href="http://wiki.nginx.org/NginxJavaServers" rel="nofollow">here</a>. Proxy support is built in. </p> <p>In the example below from their site, you will see that specific port 80 traffic is being sent to a <em>single</em> servlet container running on port 8080. </p> <p>Note that if you want to run <em>multiple</em> backend servlet containers ( for load balancing, scaling, etc... ) you should look at the <a href="http://wiki.nginx.org/NginxHttpUpstreamFairModule" rel="nofollow">Upstream Fair Module</a> that will send traffic to the least-busy backend server. It is not shipped by defaul w/nginx.</p> <pre><code>server { listen 80; server_name YOUR_DOMAIN; root /PATH/TO/YOUR/WEB/APPLICATION; location / { index.jsp; } location ~ \.do$ { proxy_pass http://localhost:8080; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } location ~ \.jsp$ { proxy_pass http://localhost:8080; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } location ^~/servlets/* { proxy_pass http://localhost:8080; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; } } </code></pre> http://stackoverflow.com/questions/1391034/how-do-i-properly-snapshot-an-ebs-volume-with-a-rabbitmq-instance-running/1732402#1732402 1 Answer by Ryan Cox for How do I properly snapshot an EBS volume with a RabbitMQ instance running? Ryan Cox 2009-11-13T22:52:28Z 2009-11-13T22:52:28Z <p>You first have the filesystem to be concerned with. Not sure if you're using LVM, ext3, xfs or what, but if you're on LVM, you might want to checkout the <a href="http://linux.die.net/man/8/dmsetup" rel="nofollow">dmsetup man page</a>; specifically <em>dmsetup suspend / resume</em></p> <p>You will end up with something like:</p> <pre><code>dmsetup suspend &lt;dev&gt; ec2-create-snapshot &lt;vol&gt; dmsetup resume &lt;dev&gt; </code></pre> <p>Once you've got the filesystem sync'ing / suspending, there's rabbitmq to worry about. Rabbitmq developer Matthias Radestock states in an <a href="http://old.nabble.com/Making-backups-of-RabbitMQ-state--td26177264.html" rel="nofollow">email thread</a>:</p> <blockquote> <blockquote> <p>But for the persistant messages I am not so sure. How is the rabbit_persister.LOG managed? Can I just take a backup copy of it whenever, or may I only take one of the rabbit_persister.LOG.previous? </p> </blockquote> <p>I'd back up both files. <strong>It should be possible to restore the rabbit_persister.LOG from a backup even when that backup was taken in the middle of an append - I haven't tested that though.</strong> The .previous log is needed in case the backup takes place while the log is being rolled. </p> <blockquote> <p>Where would I look to find out how often it is rolled? </p> </blockquote> <p>The logic for deciding when to roll the log is rather complex. </p> <blockquote> <p>Can I trigger a manual roll? </p> </blockquote> <p>rabbit__persister:force_snapshot() in the Erlang shell does the trick.</p> </blockquote> <p>Checkout the <strong>force-snapshot</strong> target in the <a href="https://bitbucket.org/mirror/rabbitmq-server/src/tip/Makefile" rel="nofollow">Rabbitmq Makefile</a>.</p> http://stackoverflow.com/questions/1728937/how-to-plot-a-realtime-graph-histogram-using-data-obtained-in-a-text-file/1729280#1729280 1 Answer by Ryan Cox for How to plot a realtime graph (histogram) using data obtained in a text file Ryan Cox 2009-11-13T13:45:08Z 2009-11-13T13:45:08Z <p>It sounds like you have the visualization part mostly worked out. If the dataset is too large to re-calculate, you may want to look into techniques for maintaining incremental histograms. Here are a few papers that may help:</p> <ul> <li><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.10.4839&amp;rep=rep1&amp;type=pdf" rel="nofollow">The history of histograms (abridged)</a></li> <li><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.53.1734&amp;rep=rep1&amp;type=pdf" rel="nofollow">Random Sampling for Histogram Construction: How much is enough?</a></li> <li><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.29.634&amp;rep=rep1&amp;type=pdf" rel="nofollow">Data-Streams and histograms</a></li> <li><a href="http://www.pittsburgh.intel-research.net/people/gibbons/papers/vldb97.pdf" rel="nofollow">Fast Incremental Maintenance of Approximate Histograms</a></li> </ul> http://stackoverflow.com/questions/1590676/detect-if-a-computer-is-a-netapp-filer-unmanaged-c/1592207#1592207 1 Answer by Ryan Cox for Detect if a computer is a NetApp filer? (Unmanaged C++) Ryan Cox 2009-10-20T02:52:38Z 2009-10-20T02:52:38Z <p><a href="http://en.wikipedia.org/wiki/Simple%5FNetwork%5FManagement%5FProtocol" rel="nofollow">SNMP</a> is enabled by default on filers ( though it may later be disabled ). Info on the available MIB can be found <a href="http://communities.netapp.com/docs/DOC-1075" rel="nofollow">here</a>. </p> http://stackoverflow.com/questions/1158748/creativity-in-software-development-any-book-recommendations/1166048#1166048 2 Answer by Ryan Cox for Creativity in software development: any book recommendations? Ryan Cox 2009-07-22T15:17:58Z 2009-07-22T15:17:58Z <p>Though not directly related to software, I can enthusiastically recommend <a href="http://rads.stackoverflow.com/amzn/click/0743235274" rel="nofollow">The Creative Habit</a> by <a href="http://en.wikipedia.org/wiki/Twyla%5FTharp" rel="nofollow">Twyla Tharp</a>, an American dance choreographer. </p> <p><a href="http://rads.stackoverflow.com/amzn/click/0743235274" rel="nofollow"><img src="http://assets1.snsassets.com/images/books/9780743235273.jpg?1232608360" alt="The Creative Habit" /></a></p> <p>In the introduction she addresses the broad applicability of the principles in the book:</p> <blockquote> <p>Creativity is not just for artists. It's for businesspeople looking for a new way to close a sale; it's for engineers trying to solve a problem; it's for parents who want their children to see the world in more than one way. Over the past four decades, I have been engaged in one creative pursuit or another every day, in both my professional and my personal life. I've thought a great deal about what it means to be creative, and how to go about it efficiently. I've also learned from the painful experience of going about it in the worst possible way. I'll tell you about both. And I'll give you exercises that will challenge some of your creative assumptions -- to make you stretch, get stronger, last longer. After all, you stretch before you jog, you loosen up before you work out, you practice before you play. It's no different for your mind.</p> </blockquote> <p>The author discusses many issues that directly correlate to software development. For example, here is an <a href="http://learnbyblogging.com/?p=202" rel="nofollow">excerpt</a> on sustaining creative momementum from day to day:</p> <blockquote> <p>Exercise 28: Build a bridge to the next day - to increase the chances of successive successes. Hemingway’s trick - call it a day at a point when he knew what came next (to extend the mini-groove.) Try to stop while you have a few drops left in the tank, and use that fuel to build a bridge to the next day. Give yourself a creative quota. Write the leftover idea on a notebook and put it away. Start the next day by looking at your note.</p> </blockquote> <p>A comprehensive review can be found <a href="http://www.thesimpledollar.com/2008/06/08/review-the-creative-habit/" rel="nofollow">here</a>.</p> <p>The first chapter can be found <a href="http://books.simonandschuster.com/Creative-Habit/Twyla-Tharp/9780743235273/excerpt/1" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/480267/looking-for-a-good-book-on-microprocessor-internals/480469#480469 3 Answer by Ryan Cox for Looking for a good book on microprocessor internals Ryan Cox 2009-01-26T16:48:52Z 2009-01-26T16:48:52Z <p><a href="http://nostarch.com/insidemachine.htm" rel="nofollow"><img src="http://nostarch.com/images/insidemachine_cov.jpg" alt="Inside the Machine" /></a></p> <p>This is an excellent book with fantastic illustrations. It covers in detail all three of the areas that you mention.</p> <p>From their site:</p> <blockquote> <p>Inside the Machine, from the co-founder of the highly respected Ars Technica website, explains how microprocessors operate—what they do and how they do it. The book uses analogies, full-color diagrams, and clear language to convey the ideas that form the basis of modern computing. After discussing computers in the abstract, the book examines specific microprocessors from Intel, IBM, and Motorola, from the original models up through today's leading processors. It contains the most comprehensive and up-to-date information available (online or in print) on Intel’s latest processors: the Pentium M, Core, and Core 2 Duo. Inside the Machine also explains technology terms and concepts that readers often hear but may not fully understand, such as "pipelining," "L1 cache," "main memory," "superscalar processing," and "out-of-order execution."</p> </blockquote> http://stackoverflow.com/questions/391209/techniques-for-building-recommendation-engines/405659#405659 5 Answer by Ryan Cox for Techniques for building recommendation engines? Ryan Cox 2009-01-01T23:11:55Z 2009-01-01T23:11:55Z <p>A couple suggestions:</p> <p>1) Dig through the source and examples for a couple of recommender systems. You might start with <a href="http://taste.sourceforge.net/" rel="nofollow">Taste</a> and/or <a href="http://exogen.case.edu/projects/consensus/" rel="nofollow">Consensus</a> depending on your language preferences. Try to adapt them to your dataset / domain.</p> <p>2) <a href="http://www.daniel-lemire.com/blog/" rel="nofollow">Dan Lemire</a>'s blog is a great resource</p> <p>3) The papers that come out of the <a href="http://recsys.acm.org/" rel="nofollow">ACM Recommender System</a> conference may be of interest</p> <p>4) Perhaps less directly related, you may find the <a href="http://www.stats202.com/" rel="nofollow">Stats202</a> course on Google Video of use. It was taught by a guy at Google and mirrored the course he was teaching at Stanford at the time. He dives into related subjects such as co-occurence. It is heavily biased towards R, but the concepts are broadly applicable. </p> <p>5) You might also be interested in Stanford's <a href="http://www.youtube.com/view_play_list?p=A89DCFA6ADACE599" rel="nofollow">CS 229 Machine Learning</a> course available online in various formats. </p> http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356426#356426 3 Answer by Ryan Cox for Python coding standards/best practices Ryan Cox 2008-12-10T15:17:46Z 2008-12-10T15:17:46Z <p>To add to <a href="http://stackoverflow.com/users/30289/bhadra">bhadra's</a> <a href="http://stackoverflow.com/questions/356161/python-coding-standardsbest-practices#356238">list</a> of idiomatic guides:</p> <p>Checkout Anthony Baxter's presentation on <a href="http://www.interlink.com.au/anthony/tech/talks/NCSS2008/EffectivePython%20-%20NCSS.pdf" rel="nofollow">Effective Python</a>.</p> <p>An excerpt:</p> <pre><code># dict's setdefault method turns this: if key in dictobj: dictobj[key].append(val) else: dictobj[key] = [val] # into this: dictobj.setdfault(key,[]).append(val) </code></pre> http://stackoverflow.com/questions/343671/book-recomendation-for-solr/343916#343916 2 Answer by Ryan Cox for Book recomendation for Solr Ryan Cox 2008-12-05T14:00:39Z 2008-12-05T14:11:40Z <p>Checkout <a href="http://www.manning.com/ingersoll/" rel="nofollow">Taming Text</a> by <a href="http://grantingersoll.com/" rel="nofollow">Grant Ingersoll</a> who is a committer on the project.</p> <p><a href="http://www.manning.com/ingersoll/" rel="nofollow"><img src="http://www.manning.com/ingersoll/ingersoll_cover150.jpg" alt="Taming Text" /></a> </p> <p>Also interesting is <a href="http://erikhatcher.tumblr.com/" rel="nofollow">Erik Hatcher's</a> presentation on solr over at <a href="http://rubyconf2007.confreaks.com/d3t2p2_solr_ruby.html" rel="nofollow">confreaks</a></p> http://stackoverflow.com/questions/331291/how-do-you-use-mapreduce-hadoop/333919#333919 3 Answer by Ryan Cox for How do you use MapReduce/Hadoop? Ryan Cox 2008-12-02T13:31:46Z 2008-12-02T13:31:46Z <p>Checkout the <a href="http://wiki.apache.org/hadoop/PoweredBy" rel="nofollow">PowerdBy Hadoop</a> wiki for examples of everything from Facebook to FOX News and how they are using it.</p> http://stackoverflow.com/questions/316866/ping-a-site-in-python/317172#317172 4 Answer by Ryan Cox for Ping a site in Python? Ryan Cox 2008-11-25T12:28:42Z 2008-11-25T12:28:42Z <p>You may find <a href="http://noahgift.com/" rel="nofollow">Noah Gift's</a> presentation <a href="http://code.noahgift.com/pycon2008/pycon2008_cli_noahgift.pdf" rel="nofollow">Creating Agile Commandline Tools With Python</a>. In it he combines subprocess, Queue and threading to develop solution that is capable of pinging hosts concurrently and speeding up the process. Below is a basic version before he adds command line parsing and some other features. The code to this version and others can be found <a href="http://code.noahgift.com/pycon2008/pycon2008_cli_noahgift.zip" rel="nofollow">here</a></p> <pre><code>#!/usr/bin/env python2.5 from threading import Thread import subprocess from Queue import Queue num_threads = 4 queue = Queue() ips = ["10.0.1.1", "10.0.1.3", "10.0.1.11", "10.0.1.51"] #wraps system ping command def pinger(i, q): """Pings subnet""" while True: ip = q.get() print "Thread %s: Pinging %s" % (i, ip) ret = subprocess.call("ping -c 1 %s" % ip, shell=True, stdout=open('/dev/null', 'w'), stderr=subprocess.STDOUT) if ret == 0: print "%s: is alive" % ip else: print "%s: did not respond" % ip q.task_done() #Spawn thread pool for i in range(num_threads): worker = Thread(target=pinger, args=(i, queue)) worker.setDaemon(True) worker.start() #Place work in queue for ip in ips: queue.put(ip) #Wait until worker threads are done to exit queue.join() </code></pre> <p>He is also author of: <a href="http://rads.stackoverflow.com/amzn/click/0596515820" rel="nofollow">Python for Unix and Linux System Administration</a></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0596515820" rel="nofollow"><img src="http://ecx.images-amazon.com/images/I/515qmR%2B4sjL._SL500_AA240_.jpg" alt="" /></a></p> http://stackoverflow.com/questions/311202/modern-high-performance-bloom-filter-in-python/311907#311907 5 Answer by Ryan Cox for Modern, high performance bloom filter in Python? Ryan Cox 2008-11-22T23:35:59Z 2008-11-22T23:35:59Z <p>I recently went down this path as well; though it sounds like my application was slightly different. I was interested in approximating set operations on a large number of strings. </p> <p>You do make the key observation that a <strong>fast</strong> bit vector is required. Depending on what you want to put in your bloom filter, you may also need to give some thought to the speed of the hashing algorithm(s) used. You might find this <a href="http://www.partow.net/programming/hashfunctions/index.html" rel="nofollow">library</a> useful. You may also want to tinker with the random number technique used below that only hashes your key a single time.</p> <p>In terms of non-Java bit array implementations:</p> <ul> <li>Boost has <a href="http://www.boost.org/doc/libs/1_37_0/libs/dynamic_bitset/dynamic_bitset.html" rel="nofollow">dynamic_bitset</a></li> <li>Java has the built in <a href="http://java.sun.com/javase/6/docs/api/java/util/BitSet.html" rel="nofollow">BitSet</a></li> </ul> <p>I built my bloom filter using <a href="http://cobweb.ecn.purdue.edu/~kak/dist/" rel="nofollow">BitVector</a>. I spent some time profiling and optimizing the library and contributing back my patches to Avi. Go to that BitVector link and scroll down to acknowledgments in v1.5 to see details. In the end, I realized that performance was not a goal of this project and decided against using it. </p> <p>Here's some code I had lying around. I may put this up on google code at python-bloom. Suggestions welcome.</p> <pre><code>from BitVector import BitVector from random import Random # get hashes from http://www.partow.net/programming/hashfunctions/index.html from hashes import RSHash, JSHash, PJWHash, ELFHash, DJBHash # # ryan.a.cox@gmail.com / www.asciiarmor.com # # copyright (c) 2008, ryan cox # all rights reserved # BSD license: http://www.opensource.org/licenses/bsd-license.php # class BloomFilter(object): def __init__(self, n=None, m=None, k=None, p=None, bits=None ): self.m = m if k &gt; 4 or k &lt; 1: raise Exception('Must specify value of k between 1 and 4') self.k = k if bits: self.bits = bits else: self.bits = BitVector( size=m ) self.rand = Random() self.hashes = [] self.hashes.append(RSHash) self.hashes.append(JSHash) self.hashes.append(PJWHash) self.hashes.append(DJBHash) # switch between hashing techniques self._indexes = self._rand_indexes #self._indexes = self._hash_indexes def __contains__(self, key): for i in self._indexes(key): if not self.bits[i]: return False return True def add(self, key): dupe = True bits = [] for i in self._indexes(key): if dupe and not self.bits[i]: dupe = False self.bits[i] = 1 bits.append(i) return dupe def __and__(self, filter): if (self.k != filter.k) or (self.m != filter.m): raise Exception('Must use bloom filters created with equal k / m paramters for bitwise AND') return BloomFilter(m=self.m,k=self.k,bits=(self.bits &amp; filter.bits)) def __or__(self, filter): if (self.k != filter.k) or (self.m != filter.m): raise Exception('Must use bloom filters created with equal k / m paramters for bitwise OR') return BloomFilter(m=self.m,k=self.k,bits=(self.bits | filter.bits)) def _hash_indexes(self,key): ret = [] for i in range(self.k): ret.append(self.hashes[i](key) % self.m) return ret def _rand_indexes(self,key): self.rand.seed(hash(key)) ret = [] for i in range(self.k): ret.append(self.rand.randint(0,self.m-1)) return ret if __name__ == '__main__': e = BloomFilter(m=100, k=4) e.add('one') e.add('two') e.add('three') e.add('four') e.add('five') f = BloomFilter(m=100, k=4) f.add('three') f.add('four') f.add('five') f.add('six') f.add('seven') f.add('eight') f.add('nine') f.add("ten") # test check for dupe on add assert not f.add('eleven') assert f.add('eleven') # test membership operations assert 'ten' in f assert 'one' in e assert 'ten' not in e assert 'one' not in f # test set based operations union = f | e intersection = f &amp; e assert 'ten' in union assert 'one' in union assert 'three' in intersection assert 'ten' not in intersection assert 'one' not in intersection </code></pre> <p>Also, in my case I found it useful to have a faster count_bits function for BitVector. Drop this code into BitVector 1.5 and it should give you a more performant bit counting method:</p> <pre><code>def fast_count_bits( self, v ): bits = ( 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8 ) return bits[v &amp; 0xff] + bits[(v &gt;&gt; 8) &amp; 0xff] + bits[(v &gt;&gt; 16) &amp; 0xff] + bits[v &gt;&gt; 24] </code></pre> http://stackoverflow.com/questions/296618/what-is-the-most-common-use-of-the-trie-data-structure/297065#297065 2 Answer by Ryan Cox for What is the most common use of the "trie" data structure? Ryan Cox 2008-11-17T21:45:58Z 2008-11-17T21:45:58Z <p>You will find trie structures at the heart of many bioinformatic applications ( DNA sequence alignment, etc ). See: <a href="http://citeseerx.ist.psu.edu/viewdoc/download;jsessionid=89F5C5F504C452DFA838F1E4AD659D7C?doi=10.1.1.57.2897&amp;rep=rep1&amp;type=pdf" rel="nofollow">Trie-based data structures for sequence assembly (pdf)</a></p> <p>The trie is also at the heart of one of the fastest known sorting algorithms: <a href="http://en.wikipedia.org/wiki/Burstsort" rel="nofollow">Burstsort</a>. The implementation involves building a trie and then traversing it depth-first. It's speed is attained from it's cache-efficient properties. See: <a href="http://goanna.cs.rmit.edu.au/~jz/fulltext/acsc03sz.pdf" rel="nofollow">Efficient Trie-Based Sorting of Large Sets of Strings (pdf)</a></p> <p>It's worth noting that <a href="http://hadoop.apache.org/core/" rel="nofollow">Hadoop</a> recently set a <a href="http://perspectives.mvdirona.com/2008/07/08/HadoopWinsTeraSort.aspx" rel="nofollow">sort benchmark</a> record. It's implementation uses trie structures: <a href="http://svn.apache.org/viewvc/hadoop/core/trunk/src/examples/org/apache/hadoop/examples/terasort/TeraSort.java?revision=673517&amp;view=markup" rel="nofollow">Terasort Source Code</a></p> http://stackoverflow.com/questions/17721/experience-with-hadoop/140400#140400 1 Answer by Ryan Cox for Experience with Hadoop? Ryan Cox 2008-09-26T16:01:59Z 2008-09-26T16:01:59Z <p>The best way to wrap your head around Hadoop is to download it and start exploring the include examples. Use a Linux box/VM and your setup will be much easier than Mac or Windows. Once you feel comfortable with the samples and concepts, then start to see how your problem space might map into the framework.</p> <p>A couple resources you might find useful for more info on Hadoop:</p> <p><a href="http://research.yahoo.com/node/2104" rel="nofollow">Hadoop Summit Videos and Presentations</a></p> <p><a href="http://oreilly.com/catalog/9780596521998/cover.html" rel="nofollow">Hadoop: The Definitive Guide: Rough Cuts Version</a> - This is one of the few (only?) books available on Hadoop at this point. I'd say it's worth the price of the electronic download option even at this point ( the book is ~40% complete ).</p> <p><img src="http://oreilly.com/catalog/covers/9780596521998_cat.gif" alt="Hadoop: The Definitive Guide: Rough Cuts Version" /></p> http://stackoverflow.com/questions/138680/vim-extension-via-python/140273#140273 3 Answer by Ryan Cox for Vim extension (via Python)? Ryan Cox 2008-09-26T15:34:49Z 2008-09-26T15:34:49Z <p>Checkout this excellent presentation on the topic: <a href="http://www.tummy.com/Community/Presentations/vimpython-20070225/vim.html" rel="nofollow">Python and vim: Two great tastes that go great together</a></p> http://stackoverflow.com/questions/2988/what-problems-can-be-solved-or-tackled-more-easily-using-graphs-and-trees/29226#29226 0 Answer by Ryan Cox for What problems can be solved, or tackled more easily, using graphs and trees? Ryan Cox 2008-08-26T23:56:47Z 2008-08-26T23:56:47Z <p>@DavidJoiner / all:</p> <p>FWIW: A new version of the <a href="http://rads.stackoverflow.com/amzn/click/1848000693" rel="nofollow">Algorithm Design Manual</a> is due out any day now.</p> <p>The entire course that he Prof Skiena developed this book for is also available on the web:</p> <p><a href="http://www.cs.sunysb.edu/~algorith/video-lectures/2007-1.html" rel="nofollow">http://www.cs.sunysb.edu/~algorith/video-lectures/2007-1.html</a></p> http://stackoverflow.com/questions/1171/what-is-the-most-efficient-graph-data-structure-in-python/28705#28705 13 Answer by Ryan Cox for What is the most efficient graph data structure in Python? Ryan Cox 2008-08-26T17:43:06Z 2008-08-26T23:32:42Z <p>I would strongly advocate you look at <a href="https://networkx.lanl.gov/wiki" rel="nofollow">NetworkX</a>. It's a battle-tested war horse and the first tool most 'research' types reach for when they need to do analysis of network based data. I have manipulated graphs with 100s of thousands of edges without problem on a notebook. Its feature rich and very easy to use. You will find yourself focusing more on the problem at hand rather than the details in the underlying implementation.</p> <p><strong>Example of <a href="http://en.wikipedia.org/wiki/Erd%C5%91s%E2%80%93R%C3%A9nyi_model" rel="nofollow">Erdős-Rényi</a> random graph generation and analysis</strong></p> <pre><code> """ Create an G{n,m} random graph with n nodes and m edges and report some properties. This graph is sometimes called the Erd##[m~Qs-Rényi graph but is different from G{n,p} or binomial_graph which is also sometimes called the Erd##[m~Qs-Rényi graph. """ __author__ = """Aric Hagberg (hagberg@lanl.gov)""" __credits__ = """""" # Copyright (C) 2004-2006 by # Aric Hagberg # Dan Schult # Pieter Swart # Distributed under the terms of the GNU Lesser General Public License # http://www.gnu.org/copyleft/lesser.html from networkx import * import sys n=10 # 10 nodes m=20 # 20 edges G=gnm_random_graph(n,m) # some properties print "node degree clustering" for v in nodes(G): print v,degree(G,v),clustering(G,v) # print the adjacency list to terminal write_adjlist(G,sys.stdout) </code></pre> <p>Visualizations are also straightforward:</p> <p><img src="http://www.visualcomplexity.com/vc/images/376_big01.jpg" alt="alt text" /></p> <p>More visualization: <a href="http://jonschull.blogspot.com/2008/08/graph-visualization.html" rel="nofollow">http://jonschull.blogspot.com/2008/08/graph-visualization.html</a></p> http://stackoverflow.com/questions/18120/best-programming-books-in-2008/28776#28776 6 Answer by Ryan Cox for Best Programming Books in 2008 Ryan Cox 2008-08-26T18:16:45Z 2008-08-26T18:16:45Z <p><a href="http://oreilly.com/catalog/9780596529321/" rel="nofollow"><img src="http://oreilly.com/catalog/covers/9780596529321_cat.gif" alt="pci" /></a></p> http://stackoverflow.com/questions/2543/what-are-the-best-solutions-for-flash-charts-and-graphs/28760#28760 7 Answer by Ryan Cox for What are the best solutions for flash charts and graphs? Ryan Cox 2008-08-26T18:11:48Z 2008-08-26T18:11:48Z <p>Depending on your needs, a couple others you might look at:</p> <p><strong>Flare</strong></p> <p><a href="http://flare.prefuse.org/demo" rel="nofollow"><img src="http://flare.prefuse.org/media/flare-demo.gif" alt="flare" /></a></p> <p><strong>Prefuse</strong></p> <p><a href="http://prefuse.org/" rel="nofollow"><img src="http://prefuse.org/gallery/images/t_sense.us.gif" alt="prefuse" /></a></p> http://stackoverflow.com/questions/8692/how-to-use-xpath-in-python/27974#27974 17 Answer by Ryan Cox for how to use xpath in python Ryan Cox 2008-08-26T13:06:39Z 2008-08-26T13:06:39Z <p><a href="http://xmlsoft.org/python.html" rel="nofollow">libxml2</a> has a number of advantages:</p> <ol> <li>Compliance to the <a href="http://www.w3.org/TR/xpath" rel="nofollow">spec</a></li> <li>Active development and a community participation </li> <li>Speed. This is really a python wrapper around a C implementation. </li> <li>Ubiquity. The libxml2 library is pervasive and thus well tested.</li> </ol> <p>Downsides include:</p> <ol> <li>Compliance to the <a href="http://www.w3.org/TR/xpath" rel="nofollow">spec</a>. It's strict. Things like default namespace handling are easier in other libraries.</li> <li>Use of native code. This can be a pain depending on your how your application is distributed / deployed. RPMs are available that ease some of this pain.</li> <li>Manual resource handling. Note in the sample below the calls to freeDoc() and xpathFreeContext(). This is not very Pythonic.</li> </ol> <p>If you are doing simple path selection, stick with <a href="http://effbot.org/zone/element-xpath.htm" rel="nofollow">ElementTree</a> ( which is included in Python 2.5 ). If you need full spec compliance or raw speed and can cope with the distribution of native code, go with libxml2.</p> <p><strong>Sample of libxml2 XPath Use</strong> <hr /></p> <pre><code> import libxml2 doc = libxml2.parseFile("tst.xml") ctxt = doc.xpathNewContext() res = ctxt.xpathEval("//*") if len(res) != 2: print "xpath query: wrong node set size" sys.exit(1) if res[0].name != "doc" or res[1].name != "foo": print "xpath query: wrong node set value" sys.exit(1) doc.freeDoc() ctxt.xpathFreeContext() </code></pre> <p><strong>Sample of ElementTree XPath Use</strong> <hr /></p> <pre><code> from elementtree.ElementTree import ElementTree doc = ElementTree(file='tst.xml') for e in mydata.findall('/foo/bar'): print e.get('title').text </code></pre> <p><hr /></p> http://stackoverflow.com/questions/491380/should-i-use-perl-or-python-for-network-monitoring/491469#491469 Comment by Ryan Cox on Should I use Perl or Python for network monitoring? Ryan Cox 2009-01-29T13:00:10Z 2009-01-29T13:00:10Z This is a good suggestion. This is a solved problem. Use nagios or cacti. If you have special requirements, both tools support use of a custom script for data collection; in which case you can use python or perl. http://stackoverflow.com/questions/311202/modern-high-performance-bloom-filter-in-python/311907#311907 Comment by Ryan Cox on Modern, high performance bloom filter in Python? Ryan Cox 2008-11-27T19:04:26Z 2008-11-27T19:04:26Z Hashcount depends on: # elements and acceptable false positive rate. I have an improved version of the above that I will checkin. Haven't found anything faster ( though I imagine that it would be a native implementation ). http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322742#322742 Comment by Ryan Cox on When to use LinkedList<> over ArrayList<>? Ryan Cox 2008-11-27T12:19:18Z 2008-11-27T12:19:18Z Regarding the use of Vector: There really is no need to fall back to Vector. The way to do this is with your preferred List implementation and a call to synchronizedList to give it a synchronized wrapper. See: <a href="http://java.sun.com/docs/books/tutorial/collections/implementations/wrapper.html" rel="nofollow">java.sun.com/docs/books/&hellip;</a>