User Ryan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T02:18:51Zhttp://stackoverflow.com/feeds/user/8819http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784834/unit-testing-icefaces5Unit testing icefacesRyan2009-11-23T17:52:09Z2009-12-03T18:01:02Z
<p>Can you separate components of an IceFaces application so they can be tested in isolation instead of using something like Selenium or HttpUnit on the assembled application?</p>
<p>Backing beans can be easily isolated (if written to be testable) but I am interested in testing the template/display parts of the application while using as little of the rest of the application as possible. Can this be done? How?</p>
<p>Is there a way to render an IceFaces object as text using "dummy data" that I can then run through traditional unit tests?</p>
<p>I can think of ways to do all of this, but they involve creating multiple applications (one for each component I wish to test). However, this seems like a sub-optimal way of doing things.</p>
http://stackoverflow.com/questions/490390/jsp-template-inheritance3JSP template inheritanceRyan2009-01-29T03:29:47Z2009-11-17T22:02:38Z
<p>Coming from a background in Django, I often use "template inheritance", where multiple templates inherit from a common base. Is there an easy way to do this in JSP? If not, is there an alternative to JSP that does this (besides Django on Jython that is :)</p>
<h2>base template</h2>
<pre><code><html>
<body>
{% block content %}
{% endblock %}
</body>
<html>
</code></pre>
<h2>basic content</h2>
<pre><code>{% extends "base template" %}
{% block content %}
<h1>{{ content.title }} <-- Fills in a variable</h1>
{{ content.body }} <-- Fills in another variable
{% endblock %}
</code></pre>
<p>Will render as follows (assuming that conten.title is "Insert Title Here", and content.body is "Insert Body Here")</p>
<pre><code><html>
<body>
<h1>Insert title Here <-- Fills in a variable</h1>
Insert Body Here <-- Fills in another variable
</body>
<html>
</code></pre>
http://stackoverflow.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable/818849#81884911Answer by Ryan for Is it possible to implement a Python for range loop without an iterator variable?Ryan2009-05-04T05:20:11Z2009-11-16T10:23:22Z<p>The general idiom for assigning to a value that isn't used is to name it <code>_</code>.</p>
<pre><code>for _ in range(times):
do_stuff()
</code></pre>
http://stackoverflow.com/questions/472030/cool-project-to-use-a-genetic-algorithm-for17cool project to use a genetic algorithm for?Ryan2009-01-23T06:00:36Z2009-11-04T19:01:04Z
<p>I'm looking for a practical application to use a genetic algorithm for. Some things that have thought of are:</p>
<ul>
<li>Website interface optimization</li>
<li>Vehicle optimization with a physics simulator</li>
<li>Genetic programming</li>
<li>Automatic test case generation</li>
</ul>
<p>But none have really popped out at me. So if you had some free time (a few months) to spend on a genetic algorithms project, what would you choose to tackle?</p>
http://stackoverflow.com/questions/68074/good-way-to-learn-scala13Good way to learn Scala?Ryan2008-09-15T23:59:09Z2009-10-10T17:57:30Z
<p>I've recently become interested in learning Scala, my first thought was a simple compiler, but I don't have very good knowledge of Automata theory. </p>
<p>So my question is: what's a good project or tutorial to learn scala with?</p>
http://stackoverflow.com/questions/1529002/cant-set-attributes-of-object-class/1529027#15290271Answer by Ryan for Can't set attributes of object classRyan2009-10-07T01:16:32Z2009-10-07T01:16:32Z<p>It's because object is a "type", not a class. In general, all classes that are defined in C extensions (like all the built in datatypes, and stuff like numpy arrays) do not allow addition of arbitrary attributes.</p>
http://stackoverflow.com/questions/1432485/coding-katas-for-practicing-the-refactoring-of-legacy-code/1475658#147565815Answer by Ryan for Coding Katas for practicing the refactoring of legacy codeRyan2009-09-25T06:02:15Z2009-09-30T18:20:20Z<p>I don't know of a site that catalogs them directly, but one strategy that I've used on occasion is this:</p>
<ol>
<li>Find an old, small, unmaintained open source project on sourceforge</li>
<li>Download it, get it to compile/build/run</li>
<li>Read the documentation, get a feel for the code</li>
<li>Use the techniques in <em>Working Effectively with Legacy Code</em> to get a piece of it under test</li>
<li>Refactor that piece, perhaps fixing bugs and adding features along the way</li>
<li>Repeat steps 4 through 6</li>
</ol>
<p>When you find a part that was especially challenging, throw away your work and repeat it a couple times to reinforce your skills.</p>
<p>This doesn't just practice refactoring, but other skills like code reading, testing, and dealing with build processes.</p>
<p>The hardest problem is finding a project that you're interested enough in to keep working in. The last one I worked on was a python library for genetic programming, and the current one I'm working on is a IRC library for Java.</p>
http://stackoverflow.com/questions/1325673/python-how-to-add-property-to-a-class-dynamically/1325798#13257986Answer by Ryan for python: How to add property to a class dynamically?Ryan2009-08-25T02:41:46Z2009-08-25T02:41:46Z<p>You don't need to use a property for that. Just override <code>__setattr__</code> to make them read only.</p>
<pre><code>class C(object):
def __init__(self, keys, values):
for (key, value) in zip(keys, values):
self.__dict__[key] = value
def __setattr__(self, name, value):
raise "It's read only!"
</code></pre>
<p>Tada.</p>
<pre><code>>>> c = C('abc', [1,2,3])
>>> c.a
1
>>> c.b
2
>>> c.c
3
>>> c.d
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'C' object has no attribute 'd'
>>> c.d = 42
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 6, in __setattr__
Exception: It's read only!
>>> c.a = 'blah'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 6, in __setattr__
Exception: It's read only!
</code></pre>
http://stackoverflow.com/questions/1313805/what-is-this-construct-called-in-python-x-y/1313820#13138201Answer by Ryan for What is this construct called in python: ( x, y ) Ryan2009-08-21T19:30:02Z2009-08-21T19:30:02Z<pre><code>[('/', MainPage)]
</code></pre>
<p>That's a list consisting of a two element tuple.</p>
<pre><code>()
</code></pre>
<p>That's a zero element tuple.</p>
http://stackoverflow.com/questions/1285468/python-filter-a-list-to-only-leave-objects-that-occur-once/1285810#12858101Answer by Ryan for Python filter a list to only leave objects that occur onceRyan2009-08-17T01:18:15Z2009-08-17T01:18:15Z<p>In the same spirit as Alex's solution you can use a <a href="http://code.activestate.com/recipes/576611/" rel="nofollow">Counter</a>/multiset (built in 2.7, recipe compatible from 2.5 and above) to do the same thing:</p>
<pre><code>In [1]: from counter import Counter
In [2]: L = [0, 1, 1, 2, 2]
In [3]: multiset = Counter(L)
In [4]: [x for x in L if multiset[x] == 1]
Out[4]: [0]
</code></pre>
http://stackoverflow.com/questions/1247894/coroutines-for-game-design/1247990#12479904Answer by Ryan for Coroutines for game design?Ryan2009-08-08T04:37:30Z2009-08-08T04:37:30Z<p>One way coroutines can be used in games is as light weight threads in an actor like model, like in <a href="http://www.kamaelia.org/Home" rel="nofollow">Kamaelia</a>.</p>
<p>Each object in your game would be a Kamaelia 'component'. A component is an object that can pause execution by yielding when it's allowable to pause. These components also have a messaging system that allows them to safely communicate to each other asynchronously.</p>
<p>All the objects would be concurrently doing their own thing, with messages sent to each other when interactions occur.</p>
<p>So, it's not really specific to games, but anything when you have a multitude of communicating components acting concurrently could benefit from coroutines.</p>
http://stackoverflow.com/questions/1201492/how-to-store-a-vector-of-time-value-data-in-a-database2How to store a vector of time/value data in a databaseRyan2009-07-29T16:31:53Z2009-07-29T16:39:49Z
<p>I'm gathering a vector of time/value pairs, in this case I/O latency versus time for a server. I'd like to store them in a MySQL database that is queryable by date, server and other metadata.</p>
<p>Examples:</p>
<ul>
<li>I want be able to query the I/O latencies from 1:00 PM to 3:00 PM for the server <code>Atriedes</code> on August 19th, 2007.</li>
<li>I want to also be able to query the times that the I/O latency on server <code>Harkonnen</code> where the I/O latencies are above 40 ms.</li>
<li>I want to find all the servers that had latencies above 100 ms on August 1st, 2007.</li>
</ul>
<p>How should I structure my database to easily allow this?</p>
http://stackoverflow.com/questions/1139041/how-to-verify-external-resources-are-available0How to verify external resources are availableRyan2009-07-16T17:23:16Z2009-07-16T17:32:22Z
<p>How do you verify the state of the environment for a system without drastically increasing the scope of the system?</p>
<p>I'm working on a system which talks to some remote servers. For example, it connects to a server and grabs logs of MyApp that ran on that server. These remote servers use a multitude of operating systems and are "manually" managed. Our system can't install MyApp on the remote servers, but our system can't function correctly if MyApp isn't installed.</p>
<p>I would like to check that these applications are installed on the remote server before our software does its job. And I'd like these checks to throw reasonable error messages.</p>
<p>My fear is that this can't be effectively done without our system "taking over" these remote servers and being responsible for their configuration -- which is way out of scope for our project.</p>
<p>What do you think?</p>
http://stackoverflow.com/questions/1135335/increment-int-object/1135344#11353443Answer by Ryan for increment int objectRyan2009-07-16T04:10:36Z2009-07-16T04:10:36Z<p>It would probably be easier to create a class that implements the int methods and wraps an internal integer.</p>
http://stackoverflow.com/questions/1135231/gimp-vs-inkscape-vs-fireworks-for-website-development/1135327#11353270Answer by Ryan for Gimp vs Inkscape vs Fireworks for website development?Ryan2009-07-16T04:03:28Z2009-07-16T04:03:28Z<p>Both the GIMP and Inkscape handle slice export relatively well. Inkscape definitely handles vector graphics better, while the gimp is definitely raster based.</p>
<p>In either case, you'll have to install plugins to really get the best performance out of the tools for doing web development.</p>
http://stackoverflow.com/questions/1128387/nullobject-for-file-in-java0nullobject for File in JavaRyan2009-07-14T22:23:08Z2009-07-14T22:40:41Z
<p>I have a class that occasionally gets passed <code>null</code> for <code>File</code> objects. During normal operation it uses a <code>Scanner</code> class to parse through the file.</p>
<p>Instead of littering my code with <code>null</code> checks against the <code>File</code> objects, I thought I could replace the <code>File</code>s with nullobjects (Gang of Four style).</p>
<p>However, it looks like <code>File</code> isn't really designed to be extended. Does any one have any pointers on how to do this?</p>
http://stackoverflow.com/questions/1122479/unit-testing-with-multiple-collaborators1Unit testing with multiple collaboratorsRyan2009-07-13T22:38:33Z2009-07-14T00:07:55Z
<p>Today I ran into a very difficult TDD problem. I need to interact with a server through HTTP POSTs. I found the the Apache Commons HttpClient, which does what I need.</p>
<p>However, I end up with a bunch of collaborating objects from Apache Commons:</p>
<pre><code>public void postMessage(String url, String message) throws Exception {
PostMethod post = new PostMethod(url);
RequestEntity entity = new StringRequestEntity(message,
"text/xml; charset=ISO-8859-1");
post.setRequestEntity(entity);
HttpClient httpclient = new HttpClient();
try {
int result = httpclient.executeMethod(post);
System.out.println("Response status code: " + result);
System.out.println("Response body: ");
System.out.println(post.getResponseBodyAsString());
} finally {
post.releaseConnection();
}
}
</code></pre>
<p>I have a <code>PostMethod</code> object, a <code>RequestEntity</code> object and a <code>HttpClient</code> object. I feel relatively comfortable passing in the <code>HttpClient</code> ala dependency injection, but what do I do about the other collaborators?</p>
<p>I could create a bunch of factory methods (or a factory class) to create the collaborators, but I'm a bit afraid that I'd be mocking too much.</p>
<h1>Follow Up</h1>
<p>Thanks for the answers! My remaining issue is a method like this:</p>
<pre><code>public String postMessage(String url, String message) throws Exception {
PostMethod post = new PostMethod(url);
RequestEntity entity = new StringRequestEntity(message,
"text/xml; charset=ISO-8859-1");
post.setRequestEntity(entity);
HttpClient httpclient = new HttpClient();
httpclient.executeMethod(post);
return post.getResponseBodyAsString();
}
</code></pre>
<p>How do I correctly verify that the returned value is from <code>post.getResponseBodyAsString()</code>? Would I have to mock <code>post</code> as well as <code>client</code>?</p>
http://stackoverflow.com/questions/456002/displaying-fancy-equations-with-java1Displaying fancy equations with JavaRyan2009-01-18T22:09:39Z2009-06-03T18:16:37Z
<p>I'm working on a Java applet that needs to display "fancy" equations. Is there any Java renderer for MathML or LaTeX that's open source? Ideally it would be a pure Java solution that doesn't use JNI.</p>
<p>Ideally it would also allow to animate the generated glyphs (e.g. animating adding a constant to both sides of a equation, lines going through terms for cancellation, etc.)</p>
http://stackoverflow.com/questions/809737/learning-python-on-windows-for-tdd/809779#8097792Answer by Ryan for Learning Python on Windows for TDDRyan2009-05-01T00:47:50Z2009-05-01T00:47:50Z<p>As others have said, most of the resource on line are still for Python 2.x. I'd start at the <a href="http://docs.python.org/tutorial/" rel="nofollow">official tutorial</a>. If you prefer videos, <a href="http://showmedo.com/" rel="nofollow">showmedo</a> has a large collection of tutorials. Python 3.x isn't really production ready yet.</p>
<p>IronPython is very mature, <a href="http://www.voidspace.org.uk/voidspace/index.shtml" rel="nofollow">this blogger</a> works at Resolver Systems, a company that wrote an <a href="http://www.resolversystems.com/products/" rel="nofollow">entire spreadsheet</a> program in IronPython. </p>
<p>They use test driven development extremely extensively, so I'd say that's a success story for TDD using IronPython, although the system under test wasn't written in C#.</p>
http://stackoverflow.com/questions/785667/python-tool-that-suggests-refactorings/790287#7902871Answer by Ryan for Python tool that suggests refactoringsRyan2009-04-26T05:24:43Z2009-04-26T05:24:43Z<p>I don't if that type of tool exists in any specific language, although the concept was mentioned in Martin Fowler's refactoring book (<a href="http://www.refactoring.com/" rel="nofollow">web reference</a>).</p>
<p>The best tool I know of that currently exists is cyclomatic complexity. <a href="http://www.traceback.org/2008/03/31/measuring-cyclomatic-complexity-of-python-code/" rel="nofollow">This article</a> implements a cyclomatic complexity counter for python. </p>
<p>The other easy metric to target is method/function length, number of attributes of objects/classes and number of parameters to functions, if I recall, pylint already counted those.</p>
http://stackoverflow.com/questions/788084/how-can-i-optimize-this-python-code/788168#7881683Answer by Ryan for How can I optimize this Python code?Ryan2009-04-25T03:14:32Z2009-04-25T11:43:27Z<p>How often is the distance function called with the same arguments? A simple to implement optimization would be to use <a href="http://code.activestate.com/recipes/466320/" rel="nofollow">memoization</a>. </p>
<p>You could probably also create some sort of dictionary with frozensets of letters and lists of words that differ by one and look up values in that. This datastructure could either be stored and loaded through pickle or generated from scratch at startup.</p>
<p>Short circuiting the evaluation will only give you gains if the words you are using are very long, since the hamming distance algorithm you're using is basically O(n) where n is the word length. </p>
<p>I did some experiments with timeit for some alternative approaches that may be illustrative.</p>
<h1>Timeit Results</h1>
<h2>Your Solution</h2>
<pre><code>d = """\
def distance(word1, word2):
difference = 0
for i in range(len(word1)):
if word1[i] != word2[i]:
difference += 1
return difference
"""
t1 = timeit.Timer('distance("hello", "belko")', d)
print t1.timeit() # prints 6.502113536776391
</code></pre>
<h2>One Liner</h2>
<pre><code>d = """\
from itertools import izip
def hamdist(s1, s2):
return sum(ch1 != ch2 for ch1, ch2 in izip(s1,s2))
"""
t2 = timeit.Timer('hamdist("hello", "belko")', d)
print t2.timeit() # prints 10.985101179
</code></pre>
<h2>Shortcut Evaluation</h2>
<pre><code>d = """\
def distance_is_one(word1, word2):
diff = 0
for i in xrange(len(word1)):
if word1[i] != word2[i]:
diff += 1
if diff > 1:
return False
return diff == 1
"""
t3 = timeit.Timer('hamdist("hello", "belko")', d)
print t2.timeit() # prints 6.63337
</code></pre>
http://stackoverflow.com/questions/768634/python-parse-a-py-file-read-the-ast-modify-it-then-write-back-the-modified/769199#76919912Answer by Ryan for Python - Parse a .py file, read the AST, modify it, then write back the modified source codeRyan2009-04-20T17:04:21Z2009-04-20T17:04:21Z<p><a href="http://pythoscope.org/" rel="nofollow">Pythoscope</a> does this to the test cases it automatically generates as does the <a href="http://docs.python.org/library/2to3.html" rel="nofollow">2to3</a> tool for python 2.6 (it converts python 2.x source into python 3.x source). </p>
<p>Both these tools uses the <a href="http://svn.python.org/projects/python/trunk/Lib/lib2to3/" rel="nofollow">lib2to3</a> library which is a implementation of the python parser/compiler machinery that can preserve comments in source when it's round tripped from source -> AST -> source.</p>
<p>The <a href="http://rope.sourceforge.net/" rel="nofollow">rope project</a> may meet your needs if you want to do more refactoring like transforms.</p>
<p>The <a href="http://docs.python.org/library/ast.html" rel="nofollow">ast</a> module is your other option, and <a href="http://svn.python.org/view/python/trunk/Demo/parser/unparse.py?view=markup" rel="nofollow">there's an older example of how to "unparse" syntax trees back into code</a> (using the parser module). But the ast module is more useful when doing an AST transform on code that is then transformed into a code object.</p>
http://stackoverflow.com/questions/726725/refactoring-classes-that-use-global-variables2Refactoring classes that use global variables.Ryan2009-04-07T17:15:53Z2009-04-07T18:31:02Z
<p>I'm working on some classes that get part of their configuration from global variables, e.g.</p>
<pre><code>class MyClass {
public void MyClass(Hashtable<String, String> params) {
this.foo = GlobalClass.GLOBALVAR.get("foo");
this.bar = GlobalClass.GLOBALVAR.get("bar");
this.params = params;
}
}
</code></pre>
<p>This is bad for a couple of reasons, GLOBALVAR talks to a database to get some of the variables and this makes it really hard to make unit tests. The other problem is that I have many (dozens) of classes that inherit from MyClass, so I can't easily change the constructor signature.</p>
<p>My current solution is to create an additional default constructor and setter methods for <code>params</code>, <code>foo</code> and <code>bar</code>.</p>
<pre><code>class MyClass {
// Other code still here for backwards compatibility.
public void MyClass() {
// Do nothing much.
}
public void setParams(Hashtable<String, String> params) {
this.params = params;
}
public void setFoo(Foo foo) {
this.foo = foo;
}
public void setBar(Bar bar) {
this.bar = bar;
}
}
</code></pre>
<p>Any ideas on a good way to refactor this, besides the way I did it? My other thought would be to use a factory method, but I'm afraid I'll run into polymorphic substitution problems.</p>
http://stackoverflow.com/questions/641318/test-probabilistic-functions/641342#6413422Answer by Ryan for Test Probabilistic FunctionsRyan2009-03-13T03:11:45Z2009-03-13T03:11:45Z<p><a href="http://beust.com/weblog/archives/000369.html" rel="nofollow">Cedric</a> recommends an approach where you run the function enough times to get a statistically significant sample and verify the properties of you samples.</p>
<p>So for shuffling, you'd probably want to verify that the relationship between the elements have very small covariance, that the expected position of each element is N/2, etc.</p>
http://stackoverflow.com/questions/628568/have-you-ever-had-a-business-requirement-that-turned-out-to-be-an-np-complete-pro/628631#6286315Answer by Ryan for Have you ever had a business requirement that turned out to be an NP-Complete problem?Ryan2009-03-10T01:34:19Z2009-03-10T01:34:19Z<p>As the others have stated, the knapsack (for packing cargo) and traveling salesmen problem are probably the most common "real world" NP-complete problems.</p>
<p>I tend to run into problems at work that can't be proven to be NP complete or incomplete because they're not very well defined.</p>
http://stackoverflow.com/questions/624926/how-to-detect-whether-a-python-variable-is-a-function/624948#62494811Answer by Ryan for how to detect whether a python variable is a function?Ryan2009-03-09T03:47:57Z2009-03-09T05:37:26Z<p>Builtin types that don't have constructors (e.g. functions, generators, methods) are in the <code>types</code> module. You can use <code>types.FunctionType</code> in an isinstance call.</p>
<pre><code>In [1]: import types
In [2]: types.FunctionType
Out[2]: <type 'function'>
In [3]: def f(): pass
...:
In [4]: isinstance(f, types.FunctionType)
Out[4]: True
In [5]: isinstance(lambda x : None, types.FunctionType)
Out[5]: True
</code></pre>
http://stackoverflow.com/questions/575925/how-to-convert-rational-and-decimal-number-strings-to-floats-in-python/575944#5759449Answer by Ryan for How to convert rational and decimal number strings to floats in python?Ryan2009-02-22T22:18:47Z2009-02-22T22:18:47Z<p>I'd parse the string if conversion fails:</p>
<pre><code>>>> def convert(s):
try:
return float(s)
except ValueError:
num, denom = s.split('/')
return float(num) / float(denom)
...
>>> convert("0.1234")
0.1234
>>> convert("1/2")
0.5
</code></pre>
<p>Generally using eval is a bad idea, since it's a security risk. <em>Especially</em> if the string being evaluated came from outside the system.</p>
http://stackoverflow.com/questions/560027/recording-test-data-in-hibernate1Recording test data in HibernateRyan2009-02-18T06:18:36Z2009-02-19T11:12:43Z
<p>I have an automated test framework for testing hardware widgets. Right now only pass/fail results of test cases are stored into a relational database using hibernate. I'd like to change this so that various characteristics of the test are stored in the database. (e.g. how many gerbils are running inside the widget, the inputs to various assertions in the tests, etc.). </p>
<p>Each test case is represented as a Java class, so the first thing I thought of was using hibernate to just create a table for each test case. However, we have lots and lots of test cases so I don't think that having a table for each test case is necessarily the best idea. </p>
<p>The amount and type of data for specific test cases will not change on different executions of the test case, but the data needed for each test case will be dramatically different. To use a silly example: for the gerbil-gnawing test we always want to record the age and color of the gerbils gnawing at the wires, but for the smash test we only need to record how many rocks were thrown at the widget.</p>
<p>Ideally we would be able to query this information from the database using SQL so the data can't be stored as binary blobs or other un-queryable entities.</p>
<p>Any ideas on how to structure the database to meet these requirements? Am I totally off-base on not wanting a large number of tables?</p>
http://stackoverflow.com/questions/560040/conditional-compilation-in-python/560044#56004413Answer by Ryan for Conditional compilation in PythonRyan2009-02-18T06:30:22Z2009-02-18T16:37:01Z<p>Python isn't compiled in the same sense as C or C++ or even Java, python files are compiled "on the fly", you can think of it as being similar to a interpreted language like Basic or Perl.<sub>1</sub></p>
<p>You can do something equivalent to conditional compile by just using an if statement. For example:</p>
<pre><code>if FLAG:
def f():
print "Flag is set"
else:
def f():
print "Flag is not set"
</code></pre>
<p>You can do the same for the creation classes, setting of variables and pretty much everything.</p>
<p>The closest way to mimic IFDEF would be to use the hasattr function. E.g.:</p>
<pre><code>if hasattr(aModule, 'FLAG'):
# do stuff if FLAG is defined in the current module.
</code></pre>
<p>You could also use a try/except clause to catch name errors, but the idiomatic way would be to set a variable to None at the top of your script.</p>
<ol>
<li>Python code is byte compiled into an intermediate form like Java, however there generally isn't a separate compilation step. The "raw" source files that end in .py are executable.</li>
</ol>
http://stackoverflow.com/questions/450835/how-do-you-stop-scripters-from-slamming-your-website-hundreds-of-times-a-second/544827#5448270Answer by Ryan for How do you stop scripters from slamming your website hundreds of times a second?Ryan2009-02-13T05:25:30Z2009-02-13T05:25:30Z<p>To guarantee selling items only to non-scripted humans, could you detect inhumanly quick responses between the item being displayed on the front page and an order being made? This turns the delay tactic on its head, instead of handicapping everyone artificially through a .5 second delay, allow requests as fast as possible and smack bots that are clearly superhuman:) </p>
<p>There is some physical limit to how fast a user can click and make a decision, and by detecting <em>after</em> all the requests have gone through (as opposed to purposely slowing down all interacts), you don't effect performance of non-scripted humans.</p>
<p>If only using CAPTCHAs <em>some</em> of the time is acceptable, you could increase the delay time to fast-human (as opposed to superhuman) and require a post confirmation CAPTCHA if someone clicks really fast. Akin to how some sites require CAPTCHA confirmation if someone posts multiple posts quickly.</p>
<p>Sadly I don't know of any good ways to stop screen scrapers of your product listings :(</p>
http://stackoverflow.com/questions/1784834/unit-testing-icefacesComment by Ryan on Unit testing icefacesRyan2009-12-06T01:53:33Z2009-12-06T01:53:33ZAmen to that! It is definitely a design constraint to take into account.http://stackoverflow.com/questions/1029207/interpolation-in-scipy-finding-x-that-produces-yComment by Ryan on Interpolation in SciPy: Finding X that produces YRyan2009-12-04T04:17:35Z2009-12-04T04:17:35ZCan you elaborate on what you want to be better? Performance, accuracy, conciseness?http://stackoverflow.com/questions/1784834/unit-testing-icefaces/1817256#1817256Comment by Ryan on Unit testing icefacesRyan2009-11-30T00:29:46Z2009-11-30T00:29:46ZYeah I did look at that. Sadly that's too "high level" for my needs. I want to test each piece in isolation instead of the entire stack, as JSFUnit does.http://stackoverflow.com/questions/1529002/cant-set-attributes-of-object-class/1529027#1529027Comment by Ryan on Can't set attributes of object classRyan2009-10-07T01:30:14Z2009-10-07T01:30:14ZBingo. That's exactly the issue.http://stackoverflow.com/questions/1432485/coding-katas-for-practicing-the-refactoring-of-legacy-code/1475658#1475658Comment by Ryan on Coding Katas for practicing the refactoring of legacy codeRyan2009-09-30T18:19:53Z2009-09-30T18:19:53ZYes, I mean "Working Effectively with Legacy Code". Thanks for the catch!http://stackoverflow.com/questions/1345787/your-opinions-about-ryan-hebmrees-the-complete-graphic-designer/1381974#1381974Comment by Ryan on Your opinions about Ryan Hebmree's "The Complete Graphic Designer"Ryan2009-09-04T23:52:40Z2009-09-04T23:52:40Z+1 Robin Williams books are an excellent understandable reference for design.http://stackoverflow.com/questions/1135231/gimp-vs-inkscape-vs-fireworks-for-website-development/1135327#1135327Comment by Ryan on Gimp vs Inkscape vs Fireworks for website development?Ryan2009-07-16T15:56:40Z2009-07-16T15:56:40ZYou'll end up exporting to raster images in either case. I personally prefer to use Inkscape since the original (non exported) can be more easily changed.http://stackoverflow.com/questions/1135335/increment-int-objectComment by Ryan on increment int objectRyan2009-07-16T04:11:10Z2009-07-16T04:11:10ZWhy do you want to implement a prefix operator for it? Are you going to add a custom preprocessor to convert the ++n into a method call?http://stackoverflow.com/questions/1128387/nullobject-for-file-in-java/1128448#1128448Comment by Ryan on nullobject for File in JavaRyan2009-07-14T22:41:59Z2009-07-14T22:41:59ZThere's even an implementation of this in Apache Commons: <a href="http://commons.apache.org/io/apidocs/org/apache/commons/io/input/NullInputStream.html" rel="nofollow">commons.apache.org/io/apidocs/…</a>http://stackoverflow.com/questions/1128387/nullobject-for-file-in-javaComment by Ryan on nullobject for File in JavaRyan2009-07-14T22:34:44Z2009-07-14T22:34:44ZWhat I meant was "design to be replaced with a completely different implementation with the same interface."http://stackoverflow.com/questions/785667/python-tool-that-suggests-refactoringsComment by Ryan on Python tool that suggests refactoringsRyan2009-04-26T05:25:40Z2009-04-26T05:25:40ZFor learning purposes, I'd recommend either <a href="http://www.refactoring.com/" rel="nofollow">refactoring.com</a> or the actual book by Martin Fowler, I don't know of any tool that works exactly like you described :(http://stackoverflow.com/questions/768634/python-parse-a-py-file-read-the-ast-modify-it-then-write-back-the-modifiedComment by Ryan on Python - Parse a .py file, read the AST, modify it, then write back the modified source codeRyan2009-04-23T03:04:45Z2009-04-23T03:04:45ZDefinitely, I sent you an email through Launchpad.http://stackoverflow.com/questions/768634/python-parse-a-py-file-read-the-ast-modify-it-then-write-back-the-modifiedComment by Ryan on Python - Parse a .py file, read the AST, modify it, then write back the modified source codeRyan2009-04-21T15:15:59Z2009-04-21T15:15:59ZHoly cow! I wanted to make a mutation tester for python using the same technique (specifically creating a nose plugin), are you planning on open sourcing it?http://stackoverflow.com/questions/768634/python-parse-a-py-file-read-the-ast-modify-it-then-write-back-the-modified/769113#769113Comment by Ryan on Python - Parse a .py file, read the AST, modify it, then write back the modified source codeRyan2009-04-20T17:07:28Z2009-04-20T17:07:28ZGood overview of possible solution and likely alternatives.http://stackoverflow.com/questions/768634/python-parse-a-py-file-read-the-ast-modify-it-then-write-back-the-modified/769202#769202Comment by Ryan on Python - Parse a .py file, read the AST, modify it, then write back the modified source codeRyan2009-04-20T17:06:54Z2009-04-20T17:06:54ZNeat, didn't know this existed.