User Kobold - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T16:51:52Z http://stackoverflow.com/feeds/user/36092 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1894365/haskell-how-to-type-cast/1895756#1895756 3 Answer by Kobold for Haskell: How to type cast Kobold 2009-12-13T06:34:18Z 2009-12-14T07:56:54Z <p>Dario's right, generally in Haskell you want to create a type class to dispatch on something's type. That being said, there <em>is</em> a type safe way to cast in Haskell. This is part of the <a href="http://www.cs.vu.nl/boilerplate/" rel="nofollow">Scrap your boilerplate</a> generic programming library that allows you to write the "interesting" parts of manipulations of complex nested data types while SYB fills in the blanks. Brain meltingly awesome. Here's a presentation on it in <a href="http://research.microsoft.com/en-us/um/people/simonpj/Papers/hmap/Boilerplate%20v3.ppt" rel="nofollow">ppt</a> or <a href="http://74.125.95.132/search?q=cache%3AX59XzxKV2LYJ%3Aresearch.microsoft.com/en-us/um/people/simonpj/Papers/hmap/Boilerplate%2520v3.ppt+haskell+generic+cast&amp;cd=9&amp;hl=en&amp;ct=clnk&amp;gl=us" rel="nofollow">html</a>.</p> <p>Here's what the cast looks like:</p> <pre><code>cast :: (Typeable a, Typeable b) =&gt; a -&gt; Maybe b ghci&gt; (cast 'a') :: Maybe Char Just 'a' ghci&gt; (cast 'a') :: Maybe Bool Nothing ghci&gt; (cast True) :: Maybe Bool Just True </code></pre> http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le/569429#569429 5 Answer by Kobold for Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? Kobold 2009-02-20T12:39:22Z 2009-12-11T09:43:49Z <p>tl;dr: My original explanation looks complicated, but I hope it fully explains how to use a patch queue. Here's the short version:</p> <pre><code>$ hg qnew -m "migration notes" -f migration.patch my_migration.sql $ hg qnew -f working-code.patch $ hg qrefresh # update the patch with the changes you just made $ hg qfinish -a # turn all the applied patches into normal hg commits </code></pre> <p><hr></p> <p>Mercurial Queues makes this sort of thing a breeze, and it makes more complex manipulation of changesets possible. It's worth learning.</p> <p>In this situation first you'd probably want to save what's in your current directory before pulling down the changes:</p> <pre><code># create a patch called migration containing your migration $ hg qnew -m "migration notes" -f migration.patch my_migration.sql $ hg qseries -v # the current state of the patch queue, A means applied 0 A migration.patch $ hg qnew -f working-code.patch # put the rest of the code in a patch $ hg qseries -v 0 A migration.patch 1 A working-code.patch </code></pre> <p>Now let's do some additional work on the working code. I'm going to keep doing <code>qseries</code> just to be explicit, but once you build up a mental model of patch queues, you won't have to keep looking at the list.</p> <pre><code>$ hg qtop # show the patch we're currently editing working-code.patch $ ...hack, hack, hack... $ hg diff # show the changes that have not been incorporated into the patch blah, blah $ hg qrefresh # update the patch with the changes you just made $ hg qdiff # show the top patch's diff </code></pre> <p>Because all your work is saved in the patch queue now, you can unapply those changes and restore them after you've pulled in the remote changes. Normally to unapply all patches, just do <code>hg qpop -a</code>. Just to show the effect upon the patch queue I'll pop them off one at a time.</p> <pre><code>$ hg qpop # unapply the top patch, U means unapplied $ hg qseries -v 0 A migration.patch 1 U working-code.patch $ hg qtop migration.patch $ hg qpop $ hg qseries -v 0 U migration.patch 1 U working-code.patch </code></pre> <p>At this point, it's as if there are no changes in your directory. Do the <code>hg fetch</code>. Now you can push your patch queue changes back on, and merge them if there are any conflicts. This is conceptually somewhat similar to git's rebase.</p> <pre><code>$ hg qpush # put the first patch back on $ hg qseries -v 0 A migration.patch 1 U working-code.patch $ hg qfinish -a # turn all the applied patches into normal hg commits $ hg qseries -v 0 U working-code.patch $ hg out migration.patch commit info... blah, blah $ hg push # push out your changes </code></pre> <p>At this point, you've pushed out the migration while keeping your other local changes. Your other changes are in an patch in the queue. I do most of my personal development using a patch queue to help me structure my changes better. If you want to get rid of the patch queue and go back to a normal style you'll have to export your changes and reimport them in "normal" mercurial.</p> <pre><code>$ hg qpush $ hg qseries -v 0 A working-code.patch $ hg export qtip &gt; temp.diff $ rm -r .hg/patches # get rid of mq from the repository entirely $ hg import --no-commit temp.diff # apply the changes to the working directory $ rm temp.diff </code></pre> <p><hr></p> <p>I'm hugely addicted to patch queues for development and <code>mq</code> is one of the nicest implementations out there. The ability to craft several changes simultaneously really does improve how focused and clean your commits are. It takes a while to get used to, but it goes incredibly well with a DVCS workflow.</p> http://stackoverflow.com/questions/1163574/fast-ish-python-jython-ipc 7 fast-ish python/jython IPC? Kobold 2009-07-22T07:14:36Z 2009-07-23T01:21:02Z <p>All I want to do is make some RPC calls over sockets. I have a server that does backendish stuff running jython 2.5. I need to make some calls from a frontend server running Django on CPython. I've been beating my head against a wall getting any form of IPC going.</p> <p>The list of things I've tried:</p> <ul> <li><a href="http://incubator.apache.org/thrift/" rel="nofollow">Apache Thrift</a> doesn't have any actual releases, just snapshots. I'd like to use something stable.</li> <li><a href="http://json-rpc.org/" rel="nofollow">JSON-RPC</a> is interesting, and it should be able to run over sockets, but in practice most of the <a href="http://json-rpc.org/wiki/implementations" rel="nofollow">implementations</a> only seem to work over HTTP. HTTP overhead is exactly what I'm trying to avoid.</li> <li><a href="http://code.google.com/p/protobuf/" rel="nofollow">Protocol Buffers</a> is really only a serialization protocol. From what I gather protobuf provides interface generation for RPC, but it's only the interface. Actually writing all the connection code is up to the user. If I'm going to be stuck using sockets, I'll just use JSON for serialization. It's simpler and <a href="http://www.eishay.com/2009/03/thrift-vs-protocol-buffers-in-python.html" rel="nofollow">faster</a>.</li> <li><a href="http://pyro.sourceforge.net/" rel="nofollow">Pyro</a> doesn't work properly with Jython as a server. Some sort of socket timeout issue. I've sent a message to the mailing list.</li> <li><a href="http://code.google.com/p/pysage/" rel="nofollow">pysage</a> Yay for message passing! Only it requires python 2.6 or the processing module (which has compiled extensions). Jython is version 2.5 and doesn't allow compiled extensions. Shit.</li> <li><a href="http://candygram.sourceforge.net/" rel="nofollow">Candygram</a> is an interesting alternative to pysage, but as far as I can tell it's unmaintained. I haven't even tried it out with Jython. Any experiences with it?</li> <li><a href="http://twistedmatrix.com/projects/core/documentation/howto/pb-intro.html" rel="nofollow">Twisted Perspective Broker</a> Twisted doesn't work on Jython.</li> </ul> <p>I know that it'd be a snap doing this with XML-RPC, which makes me even more cranky. I want to avoid the overhead of HTTP, but at the same time I really don't want to get down and dirty with sockets to implement my own protocol. I'll do it wrong if I do.</p> <p>Any ideas? I'm probably going to cry for about 20 minutes and then just use XML-RPC.</p> http://stackoverflow.com/questions/508817/a-replacement-for-pythons-httplib/508858#508858 12 Answer by Kobold for A replacement for python's httplib? Kobold 2009-02-03T20:53:12Z 2009-02-03T20:53:12Z <blockquote> <p>Users are complainging that the application is slow. I suspect that this may be partly due to the HTTP client I am using.</p> <p>Could I improve performance by replacing httplib with something else?</p> </blockquote> <p>Do you <em>suspect</em> it or are you <em>sure</em> that that it's <code>httplib</code>? Profile before you do anything to improve the performance of your app.</p> <p>I've found my own intuition on where time is spent is often pretty bad (given that there isn't some code kernel executed millions of times). It's really disappointing to implement something to improve performance then pull up the app and see that it made no difference.</p> <p>If you're not profiling, you're shooting in the dark!</p> http://stackoverflow.com/questions/407798/when-might-you-not-want-to-use-garbage-collection/408991#408991 0 Answer by Kobold for When might you not want to use garbage collection? Kobold 2009-01-03T12:35:24Z 2009-01-03T12:35:24Z <p>Just about all of these answers come down to performance and control. One angle I haven't seen in earlier posts is that skipping GC gives your application more predictable cache behavior in two ways.</p> <ol> <li>In certain cache sensitive applications, having the language automatically trash your cache every once in a while (although this depends on the implementation) can be a problem.</li> <li>Although GC is orthogonal to allocation, most implementations give you less control over the specifics. A lot of high performance code has data structures tuned for caches, and implementing stuff like <a href="http://en.wikipedia.org/wiki/Cache-oblivious_algorithm" rel="nofollow">cache-oblivious algorithms</a> requires more fine grained control over memory layout. Although conceptually there's no reason GC would be incompatible with manually specifying memory layout, I can't think of a popular implementation that lets you do so.</li> </ol> http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le/569429#569429 Comment by Kobold on Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? Kobold 2009-12-11T09:45:04Z 2009-12-11T09:45:04Z hehe, good call. I wrote the short, sweet answer to his solution up top. http://stackoverflow.com/questions/1163574/fast-ish-python-jython-ipc/1163737#1163737 Comment by Kobold on fast-ish python/jython IPC? Kobold 2009-07-22T17:54:40Z 2009-07-22T17:54:40Z Hessian uses HTTP, which I'd like to avoid. http://stackoverflow.com/questions/1163574/fast-ish-python-jython-ipc/1164219#1164219 Comment by Kobold on fast-ish python/jython IPC? Kobold 2009-07-22T17:53:13Z 2009-07-22T17:53:13Z Currently we're using carrot/RabbitMQ to make calls to this server asynchronously, but now we'd like to make synchronous calls. I'm sure I could build that over the queue, but it's not obvious how to do that in a good way. http://stackoverflow.com/questions/1163574/fast-ish-python-jython-ipc/1165579#1165579 Comment by Kobold on fast-ish python/jython IPC? Kobold 2009-07-22T17:50:31Z 2009-07-22T17:50:31Z Ice does look very interesting. We're not an open project, so I'll look into how much it costs for a commercial license. http://stackoverflow.com/questions/1163574/fast-ish-python-jython-ipc/1163852#1163852 Comment by Kobold on fast-ish python/jython IPC? Kobold 2009-07-22T17:47:54Z 2009-07-22T17:47:54Z It may very well come to that. Right now our interface is evolving pretty fast, and CORBA seems too heavyweight. But yes, the thought has occurred to me.