User Richard Levasseur - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:11:28Z http://stackoverflow.com/feeds/user/36805 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1898698/search-in-more-than-one-table-give-result-as-one-column/1898705#1898705 0 Answer by Richard Levasseur for Search in more than one table - give result as one column. Richard Levasseur 2009-12-14T03:08:21Z 2009-12-14T03:08:21Z <p>you want to use SQL UNION</p> <pre><code>select id, artist, count FROM table1 UNION select id, title, artistid from table2 </code></pre> <p>It basically concats the two result sets vertically. There are some restrictions and modifications, but generally thats all you need to do.</p> http://stackoverflow.com/questions/1879657/whats-the-best-way-to-manage-keys-in-memcache-to-prevent-stale-cached-values/1894582#1894582 1 Answer by Richard Levasseur for Whats the best way to manage keys (in memcache ) to prevent stale cached values? Richard Levasseur 2009-12-12T20:21:00Z 2009-12-12T20:21:00Z <p>Couple simple things you can do:</p> <p>First, if you really want to use the query string as a cache key, make it more deterministic and predictable. I'd do this by sorting the query string, e.g, : <code>?zed=7&amp;alpha=1</code> is transformed to <code>?alpha=1&amp;zed=7</code>. Also strip out variables that aren't relevant to the caching key.</p> <p>To handle the problem of the ?page parameter, and items not showing up because the cache hasn't refreshed, I've got a couple ideas:</p> <p>Folke's idea of adding a 'version' to the cache key would work well. The same trick is used to easily make links like unvisited.</p> <p>Another approach would be to store the number of pages in the cache value, and then, when the database is updated, iterate through the cache keys.</p> <pre><code>cache.put("keyword,page=3", array(num_pages=7, value=...)) ...later... update_entry() num_pages, value = cache.get("keyword,page=3") for i in num_pages: cache.flush("keyword,page="+i) </code></pre> <p>Whether this is a good idea or not depends on how many pages there are, and the chance of updates coming in while the loop is running.</p> <p>A third idea is to cache the entire result set instead of just that page of results. This may or may not be an option depending up on the size of the result set. When that result set is updated, you just flush the cache for that keyword.</p> <pre><code>cache.put("keyword", array(0="bla", 1=foo", ...) ...later... cache.get("keyword")[page_num] </code></pre> <p>A fourth idea is to change your caching backend and use something built to handle this situation. I dunno what other cache servers are out there, so you'll have to look around.</p> <p>Finally, to supplement all this, you can try and be smarter about the expire time on cache entries. e.g., use the mean time between updates, or the number of queries per second for the keyword, etc.</p> http://stackoverflow.com/questions/1892152/json-js-to-java-and-vice-versa-and-other-languages/1892168#1892168 0 Answer by Richard Levasseur for JSON, JS to Java and Vice Versa, and other languages. Richard Levasseur 2009-12-12T03:28:16Z 2009-12-12T03:28:16Z <p>If you mean over some sort connection (network, local pipe, etc), it would be called data serialization. You'd use a library to encode your objects. <a href="http://www.json.org" rel="nofollow">json.org</a> has a list of libraries that can do what you want.</p> <p>If you're writing a Java server with a JS front end, there's always <a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a>, too (I've never used, but heard great things about it)</p> http://stackoverflow.com/questions/1864393/python-selector-url-routing-library-experience-opinions 1 Python Selector (URL routing library), experience/opinions? Richard Levasseur 2009-12-08T03:33:34Z 2009-12-08T15:09:57Z <p>Does anyone have opinions about or experience with <a href="http://lukearno.com/projects/selector/" rel="nofollow">Python Selector</a>? It looks great, but I'm a bit put off by its "Alpha" status on pypi and lack of unit tests.</p> <p>I mostly like that its simple, self contained, and pure WSGI. All other url routers I've found assume I'm using django, or pylons, or paste, or pull in lots of other dependencies, or just don't let me create a simple <em>mapping</em> of url patterns to wsgi apps. Really, all I want to do is:</p> <pre><code>mapper.add("/regex/{to}/{resource}", my_wsgi_app) mapper.add("/another/.*", other_wsgi_app) ...etc... </code></pre> <p>Anyways, has anyone used it before, or know of projects that have?</p> http://stackoverflow.com/questions/1837883/session-help-is-it-my-fault/1837958#1837958 1 Answer by Richard Levasseur for Session Help: is it my fault? Richard Levasseur 2009-12-03T06:03:15Z 2009-12-03T06:03:15Z <p>Some ideas:</p> <ol> <li>Make sure sessions can be written to the <code>save_path</code> (<code>/var/php_sessions</code>, in your case), and read by the Apache user</li> <li>Are there Apache configs modifying something?</li> <li>Try <code>var_dump($_SESSION);</code></li> <li>Try inspecting the session file (typically "sess_XXXXX" in the save_path)</li> <li>Increase the error logging and check any error logs</li> <li>Try using non-cookie sessions</li> <li>Try using a different session saving method (custom or sqlite)</li> <li>Is it a shared host? If so, do sessions work for other people?</li> </ol> http://stackoverflow.com/questions/1787893/number-of-memcache-connections-never-drops-keeps-growing/1831393#1831393 1 Answer by Richard Levasseur for Number of memcache connections never drops, keeps growing Richard Levasseur 2009-12-02T08:17:37Z 2009-12-02T08:17:37Z <p>Persistent connections in PHP will allocate a connection for every apache worker process. Is Apache setup to allow ~354 worker processes?</p> http://stackoverflow.com/questions/1813117/making-a-python-script-object-oriented/1813177#1813177 0 Answer by Richard Levasseur for Making a Python script Object-Oriented Richard Levasseur 2009-11-28T17:39:41Z 2009-11-28T17:39:41Z <p>You can get away with creating a function and putting all your logic in it. For full "object orientedness" though, you can do something like this:</p> <p>ps - your posted code has a bug on the <code>continue</code> line - it is always executed and the last 2 lines will never execute.</p> <pre><code>class Cleaner: def __init__(...): ...init logic... def Clean(self): for line in open(self.tokenList): ...cleaning logic... return cleanedInput def main(argv): cleaner = Cleaner(argv[1]) print cleaner.Clean() return 0 if '__main__' == __name__: sys.exit(main(sys.argv)) </code></pre> http://stackoverflow.com/questions/1779317/best-way-to-handle-concurrency-issues/1783752#1783752 1 Answer by Richard Levasseur for Best way to handle concurrency issues Richard Levasseur 2009-11-23T15:16:06Z 2009-11-26T18:33:04Z <p>Donnie's answer (polling) is probably your best option - simple and works. It'll cover almost every case (its unlikely a simple PK lookup would hurt performance, even on a very popular site).</p> <p>For completeness, and if you wanted to avoid polling, you can use a <a href="http://en.wikipedia.org/wiki/Push%5Ftechnology#HTTP%5Fserver%5Fpush" rel="nofollow">push-model</a>. There's various ways described in the Wikipedia article. If you can maintain a write-through cache (everytime you update the record, you update the cache), then you can almost completely eliminate the database load.</p> <p>Don't use a timestamp "last_updated" column, though. Edits within the same second aren't unheard of. You could get away with it if you add extra information (server that did the update, remote address, port, etc) to ensure that, if two requests came in at the same second, to the same server, you could detect the difference. If you need that precision, though, you might as well use a unique revision field (it doesn't necessarily have to be an incrementing integer, just unique within that record's lifespan).</p> <p>Someone mentioned persistent connections - this would reduce the setup cost of the polling queries (every connection consumes resources on the database and host machine, naturally). You would keep a single connection (or as few as possible) open all the time (or as long as possible) and use that (in combination with caching and memoization, if desired).</p> <p>Finally, there are SQL statements that allow you to add a condition on UPDATE or INSERT. My SQl is really rusting, but I think its something like <code>UPDATE ... WHERE ...</code>. To match this level of protection, you would have to do your own row locking prior to sending the update (and all the error handling and cleanup that might entail). Its unlikely you'd need this; I'm just mentioning it for completness.</p> <p><strong>Edit:</strong></p> <p>Your solution sounds fine (cache timestamps, proxy polling requests to a another server). The only change I'd make is to update the cached timestamps on every save. This will keep the cache fresher. I'd also check the timestamp directly from the db when saving to prevent a save sneaking in due to stale cache data.</p> <p>If you use APC for caching, then a second HTTP server doesn't make sense - you'd have to run it on the same machine (APC uses shared memory). The same physical machine would be doing the work, but with the additional overhead of a second HTTP server. If you want to off load the polling requests to a second server (lighttpd, in your case), then it would be better to setup lightttpd in front of Apache on a second physical machine and use a shared caching server (memcache) so that the lighttpd server can read the cached timestamps, and Apache can update the cached timestamps. The rationale for putting lighttpd in front of Apache is, if most requests are polling requests, to avoid the heavier-weight Apache process usage.</p> <p>You probably don't need a second server at all, really. Apache should be able to handle the additional requests. If it can't, then I'd revisit your configuration (specifically the directives that control how many worker processes you run and how many requests they are allowed to handle before being killed).</p> http://stackoverflow.com/questions/1768057/how-should-one-provide-links-in-restful-service-using-a-non-xml-data-representati/1769368#1769368 1 Answer by Richard Levasseur for How should one provide links in RESTful service using a non-XML data representation? Richard Levasseur 2009-11-20T09:37:00Z 2009-11-20T09:37:00Z <p>I struggled with this same question for a long time. I came to two conclusions: a) re-invent XML with a different syntax (basically what those links propose), or b) decide upon some simple fixed conventions.</p> <p>I went with b. For the api I'm working on now, there are two ways to specify a link as where you can fetch the information.</p> <p>The first is that the value is always assumed to be a URI in certain cases. The application knows its a URI because thats what our media type says it has to be.</p> <pre><code>{"form_type": "whatever", "validator": "http://example.com/validatorA"} </code></pre> <p>The second is that values for a returned structured can either be the typical standard type (int, string, list, object, etc), or an object with the "magic" <code>__ref__</code> key. This is part of our how we define the media type to look, too ("__" is also illegal in property names by our app's rules, so it should never occur). Its up to the app to dereference the value at its leisure.</p> <pre><code>{"owner": "john", "attachment": {"__ref__": "http://..."}} </code></pre> <p>This works for us. Most of the time we care about that the value is the string "john", and less about the abstract concept of "john" is an Owner resource (with more than just the unique identifier "john" as its content).</p> <p>For our needs, we traded simplicity and performance for expressiveness and REST-correctness. In the real world, its not too big a deal to have out-of-band information that says, "go to /users/$username for more information" when the result provides all the information desired 99% of the time.</p> <p>Our plan - if necessary in the future - is to attach a link by adding a <code>__ref__</code> attribute.</p> <pre><code>{"owner": "john", "owner.__ref__": "http://ex.com/users/83j9io"} </code></pre> <p>While this isn't as comprehensive as the links you provide, I think its a reasonable balance. While I like the idea that every value can have a link to its unique resource and other meta data (such as described in the json-collections doc you link to), I think that information would be extraneous most of the time. A simple list of values balloons in size, but do you really need to know each value's addressable URI, version, id, etc?</p> <p>It also introduces annoying complications in the code, having to type ".value" or ".members" (and all the semantics an extra access implies) instead of being able to use language-native constructs. This ".value" model is actually what we do on the server side, and its tolerable only because of all the effort to make them look like standard data types instead of wrappers.</p> http://stackoverflow.com/questions/1767504/separating-business-layer-errors-from-api-errors 0 Separating Business Layer Errors from API errors Richard Levasseur 2009-11-20T00:06:30Z 2009-11-20T01:49:13Z <p>The title is horrible, i know; I'm terrible at titles on SO here.</p> <p>I'm wondering what would be the best way to present unified error responses in a webapi when errors could be raised deep inside the application.</p> <p>The errors deep down in the app don't know anything about the web layer (nor should they), so how can the web layer classify <code>myapp.PermissionError</code> into a 403, <code>json.DecodeError</code> into a 400, <code>myapp.driver.InvalidValue</code> into 500, etc.</p> <p>I have a few ideas, but I'm not a big fan of any of them.</p> <p>(As the snippets might imply, this is a python app on linux)</p> <ol> <li><p>Use a lot of <code>except</code> blocks to match the exception type i want. This is what i'm currently doing but its growing unwieldy (i'm already up to 8, and there are plenty more to go).</p> <pre><code>try business.DoIt() except DecodingError: respond(400) except PermissionError: response(403) ...etc... </code></pre></li> <li><p>Creating a mapping or list of exception types and map them to response codes. This doesn't seem much better than (1) in the end, but it does clean up the code.</p> <pre><code>error_map = [(DecodingError, 400), (PermissionError, 403)] try: DoIt() except Exception, exc: for type, code in error_map: if isinstance(exc, type): response(code) return </code></pre></li> <li><p>Add an interface to every exception class that provides the response code, but I don't like this because then the exceptions are carrying web-layer specific information (even if they live deep down in a driver that doesn't care about the web layer at all). I do like how "automatic" the web error response is, though.</p> <pre><code>class PermissionError(Exception): web_status_code = 403 try: Doit() except: response(exc.web_status_code) </code></pre></li> </ol> http://stackoverflow.com/questions/1741552/rest-and-localized-resources/1743888#1743888 1 Answer by Richard Levasseur for REST and localized resources Richard Levasseur 2009-11-16T18:11:52Z 2009-11-16T18:11:52Z <p>For updating the data, the language should be provided in the payload of data, just as you've described. That works great.</p> <p>For fetching, it depends on if you want to allow 1) linkability, and 2) clients to change their selected language. I'd argue you want both - its much easier and preferable to change the URL or toggle the language within your app then futz around in the browser and change the browser-wide locale settings.</p> <p>So, check your url, application cookies, or application user data for the language, and use the Accept-Language headers as a fallback.</p> <p>I don't understand your PUT request question. The data structure you describe would handle multiple language updates just fine, no? You can treat PUTs pretty much however you want, so long as the URL that is PUT to remains an addressable resource.</p> http://stackoverflow.com/questions/1743745/count-new-lines-in-textarea-to-resize-container-in-php/1743777#1743777 2 Answer by Richard Levasseur for count new lines in textarea to resize container in PHP? Richard Levasseur 2009-11-16T17:52:12Z 2009-11-16T17:52:12Z <p>You want the <a href="http://us.php.net/manual/en/function.substr-count.php" rel="nofollow">substr_count function</a>.</p> http://stackoverflow.com/questions/1655310/how-to-build-an-application-that-requires-both-libstdc-so-5-and-libstdc-so-6 3 How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? Richard Levasseur 2009-10-31T19:15:44Z 2009-11-07T19:15:24Z <p>I want to preface this with the important notice that <em>I am not a C/C++ programmer</em>, and know <em>very little</em> about how linkage of libraries works in C.</p> <p>Our code uses libstdc++.so.6 (gcc 3.4, i think). We have third-party precompiled (closed source) libraries that use libstdc++.so.5 (gcc 2.something or 3.2, i think). This is on linux. We have both a .a and .so version of the third party lib.</p> <p>Is it possible to build our app with the 3rd party libs? How? Is it possible to build/run our app without having libstdc++.so.5 installed our our machines, how?</p> <p>If I've forgotten some critical information, please let me know - I hardly know whats relevant with this stuff. I realize that a complete answer probably won't be possible; I'm really looking for direction and guidance. Static link this, dynamic that, rebuild that, prebuild so-and-so, switch to version x, or symlink the quizdoodle, etc.</p> <p>Update:</p> <p>We tried using <code>dlopen</code> with <code>RTLD_LOCAL</code> to isolate the 3rd party library from the rest of our app. This seems to have <em>mostly</em> worked, however, we are left with large memory leaks for unknown reasons. We suspect that, when we call <code>dlopen</code>, the third party library pulls in symbols like <code>malloc</code> from the already loaded .so.6, and things get muddled up.</p> <p>For giggles, we tried putting the third-party library into <code>LD_PRELOAD</code>, then ran our app, and the memory leaks seems to completely disappear.</p> http://stackoverflow.com/questions/1672025/http-modify-verb-for-rest/1672140#1672140 0 Answer by Richard Levasseur for HTTP MODIFY verb for REST ? Richard Levasseur 2009-11-04T07:12:45Z 2009-11-04T07:12:45Z <p>I wish there were verbs like...</p> <ul> <li>FIND, SEARCH, or QUERY - so its clear the request is not for <em>a</em> resource, but the locations of <em>other</em> resources. Maybe only limited usefulness.</li> <li>MOVE, COPY, LINK - just damn handy, they'd act similar to the command line tools.</li> <li>DISCOVER, MAP, INDEX, or SITEMAP - so you can get a layout of resources, similar in concept to a wsdl file, or xmlrpc's system.listMethods.</li> <li>BEGIN, ACQUIRE, or LOCK, and COMMIT, END, DONE, or RELEASE - to make it clear when you're starting and ending transactions, or using intermediate resources.</li> <li>MODIFY, UPDATE, PATCH - because we all want it</li> </ul> http://stackoverflow.com/questions/1665260/verifying-that-an-object-in-python-adheres-to-a-specific-structure/1665290#1665290 1 Answer by Richard Levasseur for Verifying that an object in python adheres to a specific structure Richard Levasseur 2009-11-03T04:40:40Z 2009-11-03T04:40:40Z <p>Short answer, no, you have to create your own function.</p> <p>Long answer: its not pythonic to do what you're asking. There might be some special cases (e.g, marshalling a dict to xmlrpc), but by and large, assume the objects will act like what they're documented to be. If they don't, let the AttributeError bubble up. If you are ok with coercing values, then use <code>str()</code> and <code>int()</code> to convert them. They could, afterall, implement <code>__str__</code>, <code>__add__</code>, etc that makes them not descendants of int/str, but still usable.</p> <pre><code>def dict_of_string_and_ints(obj): assert isinstance(obj, dict) for key, value in obj.iteritems(): # py2.4 assert isinstance(key, basestring) assert isinstance(value, list) assert sum(isinstance(x, int) for x in value) == len(list) </code></pre> http://stackoverflow.com/questions/1507566/how-and-when-to-appropriately-use-weakref-in-python 5 How and when to appropriately use weakref in Python Richard Levasseur 2009-10-02T03:03:40Z 2009-10-06T02:48:22Z <p>I have some code where instances of classes have parent&lt;->child references to each other, e.g.:</p> <pre><code>class Node(object): def __init__(self): self.parent = None self.children = {} def AddChild(self, name, child): child.parent = self self.children[name] = child def Run(): root, c1, c2 = Node(), Node(), Node() root.AddChild("first", c1) root.AddChild("second", c2) Run() </code></pre> <p>I <em>think</em> this creates circular references such that <code>root</code>, <code>c1</code> and <code>c2</code> won't be freed after Run() is completed, right?. So, how do get them to be freed? I think I can do something like <code>root.children.clear()</code>, or <code>self.parent = None</code> - but what if I don't know when to do that?</p> <p>Is this an appropriate time to use the weakref module? What, exactly, do I weakref'ify? the <code>parent</code> attribute? The <code>children</code> attribute? The whole object? All of the above? I see talk about the WeakKeyDictionary and weakref.proxy, but its not clear to me how they should be used, if at all, in this case.</p> <p>This is also on python2.4 (can't upgrade).</p> <p><strong>Update: Example and Summary</strong></p> <p>What objects to weakref-ify depends on which object can live without the other, and what objects depend on each other. The object that lives the longest should contain weakrefs to the shorter-lived objects. Similarly, weakrefs should not be made to dependencies - if they are, the dependency could silently disappear even though it is still needed.</p> <p>If, for example, you have a tree structure, <code>root</code>, that has children, <code>kids</code>, but can exist <em>without</em> children, then the <code>root</code> object should use weakrefs for its <code>kids</code>. This is also the case if the child object depends on the existence of the parent object. Below, the child object <em>requires</em> a parent in order to compute its depth, hence the strong-ref for <code>parent</code>. The members of the <code>kids</code> attribute are optional, though, so weakrefs are used to prevent a circular reference.</p> <pre><code>class Node: def __init__(self) self.parent = None self.kids = weakref.WeakValueDictionary() def GetDepth(self): root, depth = self, 0 while root: depth += 1 root = root.parent return count root = Node() root.kids["one"] = Node() root.kids["two"] = Node() # do what you will with root or sub-trees of it. </code></pre> <p>To flip the relationship around, we have something like the below. Here, the <code>Facade</code> classes require a <code>Subsystem</code> instance to work, so they use a strong-ref to the subsystem they need. <code>Subsystem</code>s, however, don't require a <code>Facade</code> to work. <code>Subsystem</code>s just provide a way to notify <code>Facade</code>s about each other's actions.</p> <pre><code>class Facade: def __init__(self, subsystem) self.subsystem = subsystem subsystem.Register(self) class Subsystem: def __init__(self): self.notify = [] def Register(self, who): self.notify.append(weakref.proxy(who)) sub = Subsystem() f1 = CliFacade(sub) f2 = WebFacade(sub) # Go on to reading from POST, stdin, etc </code></pre> http://stackoverflow.com/questions/1408818/getting-the-the-keyword-arguments-actually-passed-to-a-python-method/1408856#1408856 0 Answer by Richard Levasseur for Getting the the keyword arguments actually passed to a Python method Richard Levasseur 2009-09-11T03:37:09Z 2009-09-11T03:37:09Z <p>Perhaps raise an error if they pass any *args?</p> <pre><code>def func(*args, **kwargs): if args: raise TypeError("no positional args allowed") arg1 = kwargs.pop("arg1", "default") if kwargs: raise TypeError("unknown args " + str(kwargs.keys())) </code></pre> <p>It'd be simple to factor it into taking a list of varnames or a generic parsing function to use. It wouldn't be too hard to make this into a decorator (python 3.1), too:</p> <pre><code>def OnlyKwargs(func): allowed = func.__code__.co_varnames def wrap(*args, **kwargs): assert not args # or whatever logic you need wrt required args assert sorted(allowed) == sorted(kwargs) return func(**kwargs) </code></pre> <p>Note: i'm not sure how well this would work around already wrapped functions or functions that have <code>*args</code> or <code>**kwargs</code> already.</p> http://stackoverflow.com/questions/1384715/is-concurrent-computing-important-for-web-development/1384774#1384774 0 Answer by Richard Levasseur for Is concurrent computing important for web development? Richard Levasseur 2009-09-06T03:01:17Z 2009-09-06T03:01:17Z <p>In the article, he seems to single out the GIL as the cause of holding back concurrent processing in web applications in Python, which I simply don't understand. As you get larger, eventually you're going to have another server, and, GIL or not GIL, it won't matter - you have multiple machines.</p> <p>If he's talking about being able to squeeze more out of a single computer, then I don't think thats as relevant, especially to large-scale <em>distributed</em> computing - different machines don't share a GIL. And, really, if you going to have lots of computers in a cluster, it's better to have a more mid-range servers instead of a single super server for a lot of reasons.</p> <p>If he means as a way for better supporting functional and asynchronous approaches, then I somewhat agree, but it seems tangential to his "we need better concurrency" point. Python can has it now (which he acknowledges), but, apparently, its not good <em>enough</em> (all because of the GIL, naturally). To be honest, it seems more like bashing on the GIL than a justification of the importance of concurrency in web development.</p> <p>One important point, with regards to concurrency and web development, is that concurrency is <em>hard</em>. The beauty of something like PHP is that there <em>is</em> no concurrency. You have a process, and you are stuck in that process. Its so simple and easy. You don't have to worry about any sort of concurrency problems - suddenly programming is <em>much</em> easier.</p> http://stackoverflow.com/questions/613954/the-case-against-checked-exceptions/614122#614122 20 Answer by Richard Levasseur for The case against checked exceptions Richard Levasseur 2009-03-05T09:40:37Z 2009-08-07T17:53:57Z <p>Well, it's not about displaying a stacktrace or silently crashing. It's about being able to communicate errors between layers.</p> <p>The problem with checked exceptions is they encourage people to swallow important details (namely, the exception class). If you choose not to swallow that detail, then you have to keep adding throws declarations across your whole app. This means 1) that a new exception type will affect lots of function signatures, and 2) you can miss a specific instance of the exception you actually -want- to catch (say you open a secondary file for a function that writes data to a file. The secondary file is optional, so you can ignore its errors, but because the signature <code>throws IOException</code>, it's easy to overlook this).</p> <p>I'm actually dealing with this situation now in an application. We repackaged almost exceptions as AppSpecificException. This made signatures really clean and we didn't have to worry about exploding <code>throws</code> in signatures.</p> <p>Of course, now we need to specialize the error handling at the higher levels, implementing retry logic and such. Everything is AppSpecificException, though, so we can't say "If an IOException is thrown, retry" or "If ClassNotFound is thrown, abort completely". We don't have a reliable way of getting to the <em>real</em> exception because things get repackaged again and again as they pass between our code and third-party code.</p> <p>This is why I'm a big fan of the exception handling in python. You can catch only the things you want and/or can handle. Everything else bubbles up as if you rethrew it yourself (which you have done anyways).</p> <p>I've found, time and time again, and throughout the project I mentioned, that exception handling falls into 3 categories:</p> <ol> <li>Catch and handle a <em>specific</em> exception. This is to implement retry logic, for example.</li> <li>Catch and rethrow <em>other</em> exceptions. All that happens here is usually logging, and its usually a trite message like "Unable to open $filename". These are errors you can't do anything about; only a higher levels knows enough to handle it.</li> <li>Catch everything and display an error message. This is usually at the very root of a dispatcher, and all it does it make sure it can communicate the error to the caller via a non-Exception mechanism (popup dialogue, marshaling an RPC Error object, etc).</li> </ol> http://stackoverflow.com/questions/1228158/python-ctype-recursive-structures/1228204#1228204 0 Answer by Richard Levasseur for python ctype recursive structures Richard Levasseur 2009-08-04T15:33:59Z 2009-08-04T15:33:59Z <p>You'll have to access <code>_fields_</code> statically after you've created it.</p> <pre><code>class EthercatDatagram(Structure) _fields_ = [...] EthercatDatagram._fields_.append(("next_command", EthercatDatagram)) </code></pre> http://stackoverflow.com/questions/1162592/iterate-over-a-string-2-or-n-characters-at-a-time-in-python 3 Iterate over a string 2 (or n) characters at a time in Python Richard Levasseur 2009-07-22T01:24:53Z 2009-08-02T15:00:33Z <p>Earlier today I needed to iterate over a string 2 characters at a time for parsing a string formatted like <code>"+c-R+D-E"</code> (there are a few extra letters).</p> <p>I ended up with this, which works, but it looks ugly. I ended up commenting what it was doing because it felt non-obvious. It almost seems pythonic, but not quite.</p> <pre><code># Might not be exact, but you get the idea, use the step # parameter of range() and slicing to grab 2 chars at a time s = "+c-R+D-e" for op, code in (s[i:i+2] for i in range(0, len(s), 2): print op, code </code></pre> <p>Are there some better/cleaner ways to do this?</p> http://stackoverflow.com/questions/1191213/authorization-system-design-question/1204312#1204312 2 Answer by Richard Levasseur for Authorization System Design Question Richard Levasseur 2009-07-30T03:26:56Z 2009-07-30T03:26:56Z <p>The idea of using AD for permissions isn't flawed unless your AD can't scale. If using a local database would be faster/more reliable/flexible, then use that.</p> <p>Using the naming convention for finding the correct security roles is pretty fragile, though. You will inevitably run into situations where your natural mapping doesn't correspond to the real mapping. Silly things like you want the URL to be "finbiz", but its already in AD as "business-finance" - do you duplicate the group and keep them synchronized, or do you do the remapping within your application...? Sometimes its as simple as "FinBiz" vs "finbiz".</p> <p>IMO, its best to avoid that sort of problem to begin with, e.g, use group "185" instead of "finbiz" or "business-finance", or some other key that you have more control over.</p> <p>Regardless of <em>how</em> your getting your permissions, if end up having to cache it, you'll have to deal with stale cache data.</p> <p>If you have to use ldap, it would make more sense to create a permissions ou (or whatever the AD equivalent of "schema" is) so that you can map arbitrary entities to those permissions. Cache that data, and you should ok.</p> <p>Edit:</p> <p>Part of the question seems to be to avoid an intermediary database - why not make the intermediary the primary? Sync the local permissions database to AD regularly (via a hook or polling), and you can avoid two important issues 1) fragile naming convention, 2) external datasource going down.</p> http://stackoverflow.com/questions/1147842/how-to-use-javascript-math-on-a-version-number/1147998#1147998 0 Answer by Richard Levasseur for How to use Javascript math on a version number Richard Levasseur 2009-07-18T16:49:59Z 2009-07-18T16:49:59Z <p>You need to treat each portion of the string as a seperate integer, so split and iterate, and cmp:</p> <pre><code>// perform cmp(a, b) // -1 = a is smaller // 0 = equal // 1 = a is bigger function versionCmp(a, b) { a = a.split("."); b = b.split("."); for(var i=0; i &lt; a.length; i++) { av = parseInt(a[i]); bv = parseInt(b[i]); if (av &lt; bv) { return -1; } else if (av &gt; bv) { return 1; } } return 0; } console.log(versionCmp("1.1.2.3", "1.2.1.0")); // should be -1 console.log(versionCmp("1.19.0.1", "1.2.0.4")); // should be 1 console.log(versionCmp("1.2.3.4", "1.2.3.4")); // should be 0 </code></pre> http://stackoverflow.com/questions/1087296/agile-practices-to-avoid-deprecated-code/1087744#1087744 0 Answer by Richard Levasseur for Agile practices to avoid deprecated code? Richard Levasseur 2009-07-06T15:51:49Z 2009-07-06T15:51:49Z <p>For deprecation, there's basically 3 types of APIs: internal, external, and public.</p> <p>Internal is when its only your team working on the code. Deprecating these APIs isn't a big deal. Your team is the only one using it, so they aren't around long, there's pressure to change them, people aren't afraid to change them, and people know how to change them.</p> <p>External is when its the same code base, but different teams are using it. This might be some common libraries in a large company, or a popular open source library. The point is, people can choose the version of code they compile with. The ease of deprecating an API depends on the size of the organization and how well they communicate. IMO, its the <em>deprecator's</em> job to update old code, rather than mark it deprecated and let warnings fly throughout the code base. Why the deprecator instead of the deprecatee? Because the depcarator is in the know; they know what changed and why.</p> <p>Those two cases are pretty easy. So long as there is backwards compatibility, you can generally do whatever you'd like, update the clients yourself, or convince the maintainers to do it.</p> <p>Then there are public api's. These are basically external API's that the clients don't have much control over, such as a web API. These are incredibly hard to update or deprecate. Most won't notice its broken, won't have someone to fix it, won't get notifications that its changing, and will <em>only</em> fix it once its broken (after they've yelled at <em>you</em> for breaking it, over course).</p> <p>I've had to do the above a few times, and it is such a chore. I think the best you can do is purposefully break it <em>early</em>, wait a bit, and then restore it. You send out the usual warnings and deprecations first, of course, but - trust me - nothing will happen until something breaks.</p> <p>An idea I've yet to try is to let people register simple apps that run small tests. When you want to do an API update, you run the external tests and contact the affected people.</p> http://stackoverflow.com/questions/1029917/what-is-your-wishlist-for-python-3-2-or-python-3-x/1077611#1077611 1 Answer by Richard Levasseur for What is your wishlist for Python 3.2 (or Python 3.x)? Richard Levasseur 2009-07-03T03:01:56Z 2009-07-03T03:01:56Z <p>The ability to specify that arguments can be passed <em>only</em> by keyword.</p> <p>A dict.get() method that takes a callable instead of an object, the callable's result would be returned if the key doesn't exist.</p> http://stackoverflow.com/questions/1072623/naming-functions-for-the-past-present-and-future-tense 0 Naming functions for the past, present, and future tense? Richard Levasseur 2009-07-02T05:18:25Z 2009-07-02T06:13:29Z <p>I'm trying to come up with some clear and concise names for a Permission class that lets you check if a permission is, was, or will be, allowed/denied. I'm at a loss for what to call the future tense.</p> <pre><code>class Permission: def can_read() def could_read() def will_read()? def will_be_readable()? </code></pre> <p>I'm most partial to <code>will_read()</code>, but it sounds funny. <code>will_be_readable()</code> is clear, but its kinda long, and <code> will_be_read()</code> sounds misleading.</p> http://stackoverflow.com/questions/1067044/push-email-to-a-apache-php-server/1067070#1067070 1 Answer by Richard Levasseur for Push email to a apache/php server Richard Levasseur 2009-07-01T02:53:26Z 2009-07-01T02:53:26Z <p>I've no experience with IMAP, but had to do the same thing. If I were you, I'd install Postfix and use the pipe command (basically lets you run an arbitrary script) to invoke a small http client that parses the email and sends it to your server.</p> <p>You can replace postfix with whatever MTA you'd like, of course. The point is: don't implement your own email server. Use an existing one and use its hooks to send the mail off to where ever it is you want, however it is you want.</p> http://stackoverflow.com/questions/1046873/can-a-slow-network-cause-a-python-app-to-use-more-cpu/1047088#1047088 6 Answer by Richard Levasseur for Can a slow network cause a Python app to use *more* CPU? Richard Levasseur 2009-06-26T02:36:54Z 2009-06-27T08:22:41Z <p>In theory, no, in practice, its possible; it depends on what you're doing.</p> <p>There's a full <a href="http://blip.tv/file/2232410" rel="nofollow">hour-long video</a> and <a href="http://www.dabeaz.com/python/GIL.pdf" rel="nofollow">pdf about it</a>, but essentially it boils down to some unforeseen consequences of the GIL with CPU vs IO bound threads with multicores. Basically, a thread waiting on IO needs to wake up, so Python begins "pre-empting" other threads every Python "tick" (instead of every 100 ticks). The IO thread then has trouble taking the GIL from the CPU thread, causing the cycle to repeat.</p> <p>Thats grossly oversimplified, but thats the gist of it. The video and slides has more information. It manifests itself and a larger problem on multi-core machines. It could also occur if the process received signals from the os (since that triggers the thread switching code, too).</p> <p>Of course, as other posters have said, this goes away if each has its own process.</p> <p>Coincidentally, the slides and video explain why you can't CTRL+C in Python sometimes.</p> http://stackoverflow.com/questions/1020037/how-to-walk-up-a-linked-list-using-a-list-comprehension 0 How to walk up a linked-list using a list comprehension? Richard Levasseur 2009-06-19T21:12:29Z 2009-06-20T00:55:55Z <p>I've been trying to think of a way to traverse a hierarchical structure, like a linked list, using a list expression, but haven't come up with anything that seems to work.</p> <p>Basically, I want to convert this code:</p> <pre><code>p = self.parent names = [] while p: names.append(p.name) p = p.parent print ".".join(names) </code></pre> <p>into a one-liner like:</p> <pre><code>print ".".join( [o.name for o in &lt;???&gt;] ) </code></pre> <p>I'm not sure how to do the traversal in the <code>???</code> part, though, <em>in a generic way</em> (if its even possible). I have several structures with similar <code>.parent</code> type attributes, and don't want to have write a yielding function for each.</p> <p>Edit:</p> <p>I can't use the <code>__iter__</code> methods of the object itself because its already used for iterating over the values contained within the object itself. Most other answers, except for liori's, hardcode the attribute name, which is what I want to avoid.</p> <p>Here's my adaptation based upon liori's answer:</p> <pre><code>import operator def walk(attr, start): if callable(attr): getter = attr else: getter = operator.attrgetter(attr) o = getter(start) while o: yield o o = getter(o) </code></pre> http://stackoverflow.com/questions/1015963/how-do-i-achieve-something-like-mysqls-latin1generalci-collation-in-php/1016146#1016146 0 Answer by Richard Levasseur for How do I achieve something like MySQL's latin1_general_ci collation in PHP? Richard Levasseur 2009-06-19T02:46:26Z 2009-06-19T02:46:26Z <p>You can also try the <a href="http://us.php.net/manual/en/function.iconv.php" rel="nofollow">iconv</a> functions to help normalize the strings. That'll handle the accented e to normal e situations. See this related question about <a href="http://stackoverflow.com/questions/120334/how-to-sort-an-array-of-utf-8-strings/120361">sorting utf8 strings</a>, too.</p> http://stackoverflow.com/questions/1879657/whats-the-best-way-to-manage-keys-in-memcache-to-prevent-stale-cached-values/1894582#1894582 Comment by Richard Levasseur on Whats the best way to manage keys (in memcache ) to prevent stale cached values? Richard Levasseur 2009-12-13T07:55:48Z 2009-12-13T07:55:48Z Do you mean the &quot;key index&quot; maps keywords to a list of page numbers? That would optimize the loop and remove the guessing required. The increment() functions would be useful for that. Or do you mean maps a keyword to a list of other keys that have to be flushed? That'd work just as well (same thing, really) http://stackoverflow.com/questions/1864393/python-selector-url-routing-library-experience-opinions/1867590#1867590 Comment by Richard Levasseur on Python Selector (URL routing library), experience/opinions? Richard Levasseur 2009-12-10T20:03:24Z 2009-12-10T20:03:24Z Thanks, this is what I was hoping to hear! http://stackoverflow.com/questions/1871110/agile-myths-and-misconceptions/1871119#1871119 Comment by Richard Levasseur on Agile Myths and Misconceptions Richard Levasseur 2009-12-09T06:10:45Z 2009-12-09T06:10:45Z It also means you <i>do</i> write design docs (of whatever sort), not just jump in willy-nilly. http://stackoverflow.com/questions/1864393/python-selector-url-routing-library-experience-opinions/1864468#1864468 Comment by Richard Levasseur on Python Selector (URL routing library), experience/opinions? Richard Levasseur 2009-12-08T04:39:38Z 2009-12-08T04:39:38Z Perhaps I'm dense, but how does the Map invoke the wsgi app associated with a rule? From browsing the source, it seems you make rules, add them to a map, then write your own dispatcher for the map. http://stackoverflow.com/questions/1775782/does-anyone-know-of-an-example-of-a-restful-client-that-follows-the-hateoas-princ/1776243#1776243 Comment by Richard Levasseur on Does anyone know of an example of a RESTful client that follows the HATEOAS principle? Richard Levasseur 2009-11-27T00:36:41Z 2009-11-27T00:36:41Z oh! How are you representing your model objects and transforming them to xml, json, and xhtml? Do you think the additional work of supporting all those formats has been worth it? Can XML/JSON clients enable the related links in the output? If so, how are you returning that data in xml/json? re: performance, have you considered using the HTTP caching-related headers? In general, I agree that HATEOAS is great, except for the performance implications. http://stackoverflow.com/questions/1775782/does-anyone-know-of-an-example-of-a-restful-client-that-follows-the-hateoas-princ/1776243#1776243 Comment by Richard Levasseur on Does anyone know of an example of a RESTful client that follows the HATEOAS principle? Richard Levasseur 2009-11-27T00:32:58Z 2009-11-27T00:32:58Z @Jim: you say the clients download a template, then take the data in responses to fill in the complete URI? Why not just return the complete URI? (I'm assuming that you mean the server returns <code>{'name': 'john'}</code> which clients template into &quot;<a href="http://example.com/users/john&quot" rel="nofollow">example.com/users/john&quot</a>;.). Also, how does the templating work? e.g, how does a client know to take &quot;john&quot; and apply the &quot;name&quot; template? The template sorta sounds like out-of-band information? http://stackoverflow.com/questions/1768057/how-should-one-provide-links-in-restful-service-using-a-non-xml-data-representati/1769368#1769368 Comment by Richard Levasseur on How should one provide links in RESTful service using a non-XML data representation? Richard Levasseur 2009-11-21T18:53:27Z 2009-11-21T18:53:27Z (forgot to add, by &quot;media type&quot;, i'm assuming you mean something like &quot;application/json&quot;, not the &quot;self&quot; or &quot;rel&quot; I've seen in atom examples) http://stackoverflow.com/questions/1768057/how-should-one-provide-links-in-restful-service-using-a-non-xml-data-representati/1769368#1769368 Comment by Richard Levasseur on How should one provide links in RESTful service using a non-XML data representation? Richard Levasseur 2009-11-21T18:51:01Z 2009-11-21T18:51:01Z The definition is informal and largely self-descriptive (the data is highly dynamic, so &quot;its an object with key:value pairs&quot; about sums it up). btw, I found this through your links: <a href="http://json-schema.org/" rel="nofollow">json-schema.org</a>. For media types in links, i personally think that should be left out (and left to the Accept header). The URI is, after all, the <i>concept</i> of that resource, not the specific JSON, XML, HTML, etc representation (at least, thats how i like to think of it). http://stackoverflow.com/questions/1741552/rest-and-localized-resources/1743888#1743888 Comment by Richard Levasseur on REST and localized resources Richard Levasseur 2009-11-17T03:20:45Z 2009-11-17T03:20:45Z Yes, that would work. You can also &quot;overload&quot; PUT /chapter/1 to look for the <code>localizations</code> structure you define in your question (to allow multiple updates in 1 request, which could be important in some situations). http://stackoverflow.com/questions/1672530/oauths-tokens-and-sessions-in-rest/1703992#1703992 Comment by Richard Levasseur on OAuth's tokens and sessions in REST Richard Levasseur 2009-11-16T01:43:18Z 2009-11-16T01:43:18Z +1 for bringing the Real World into REST http://stackoverflow.com/questions/613954/the-case-against-checked-exceptions/614122#614122 Comment by Richard Levasseur on The case against checked exceptions Richard Levasseur 2009-11-08T06:33:31Z 2009-11-08T06:33:31Z Thats not what I'm saying at all. Your last sentence actually agrees with me. If everything is wrapped in AppSpecificException, then it doesn't bubble up (and meaning/context is lost), and, yes, the API client is not being informed - this is exactly what happens with checked exceptions (as they are in java), because people don't want to deal with functions with lots of <code>throws</code> declarations. http://stackoverflow.com/questions/1655310/how-to-build-an-application-that-requires-both-libstdc-so-5-and-libstdc-so-6/1682402#1682402 Comment by Richard Levasseur on How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? Richard Levasseur 2009-11-06T03:21:03Z 2009-11-06T03:21:03Z And we <i>do</i> allocate in on our side, and the 3rd party lib deallocates. e.g.: ThirdPartyStruct * foo = malloc(...); ThirdPartyApiCall(foo); ThirdPartyFreeStruct(foo); - Are you saying that just plain won't be possible if we're using .6, and its using .5? What if we used .5 with our wrapper functions, and did all allocation/deallocation through the wrapper lib? http://stackoverflow.com/questions/1655310/how-to-build-an-application-that-requires-both-libstdc-so-5-and-libstdc-so-6/1682402#1682402 Comment by Richard Levasseur on How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? Richard Levasseur 2009-11-06T03:16:46Z 2009-11-06T03:16:46Z Can you explain how to properly hide the symbols, and what you're saying about the memory operations? We tried wrapping the 3rd party lib in functions that would use dlopen(lib, RTLD_LOCAL) to load the 3rd party lib. This kept our code from linking in .so.5, but, we suspected, that the 3rd party code was picking up symbols (like malloc) from the already loaded .so.6 (loaded by our code), and was causing memory leaks. We tried using LD_PRELOAD to loud the 3rdparty lib first, and the memory leaks pretty much went away. http://stackoverflow.com/questions/1672025/http-modify-verb-for-rest/1672140#1672140 Comment by Richard Levasseur on HTTP MODIFY verb for REST ? Richard Levasseur 2009-11-05T17:14:44Z 2009-11-05T17:14:44Z Correct, I'm not talking about the SQL-specific concept of transactions. I'm talking about a process that has multiple steps and can't be completed in a single request. A client should have a way of saying &quot;I need to edit this, I want a private copy I can edit as I go along&quot;, whether its backed by compensating txns, buffering, or (cringe) table locks is up to the app. I wouldn't say it handles it perfectly well; the limited verbs force you to overload one with special action flags to be passed with the normal request. http://stackoverflow.com/questions/1672025/http-modify-verb-for-rest/1672140#1672140 Comment by Richard Levasseur on HTTP MODIFY verb for REST ? Richard Levasseur 2009-11-05T04:38:59Z 2009-11-05T04:38:59Z @Darrel: Just because it raises questions doesn't meant it shouldn't be done. Also, its a wishlist, not an ISO/W3C/OMG/IEEE spec. By your logic, browser vendors shouldn't try to support PUT or DELETE in &lt;form&gt;. An &quot;auto save draft&quot; feature is a transaction, and that has to be exposed somehow. BEGIN /msgs/001 is clearer than POST /msgs/001?action=draft or POST /msgs/drafts/001.