User Dustin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:24:44Z http://stackoverflow.com/feeds/user/39975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1690882/how-do-i-see-if-memcached-is-already-running-on-my-chosen-port/1694090#1694090 0 Answer by Dustin for How do I see if memcached is already running on my chosen port? Dustin 2009-11-07T19:10:50Z 2009-11-07T19:10:50Z <p>If you're asking this question, it sounds like you're running a really old version. If you did this on a recent version, you'd see this:</p> <pre><code>% ./memcached failed to listen on TCP port 11211: Address already in use </code></pre> http://stackoverflow.com/questions/1692346/adding-authentication-to-beanstalkd-from-python-or-any-unix-client/1692516#1692516 0 Answer by Dustin for Adding authentication to beanstalkd from Python (or any UNIX) client Dustin 2009-11-07T09:15:05Z 2009-11-07T09:15:05Z <p>This question really belongs on the <a href="http://groups.google.com/group/beanstalk-talk/" rel="nofollow">beanstalkd talk list</a>.</p> <p>I added SASL support to memcached recently for a similar reason. The overhead is almost irrelevant in practice since you only authenticate at connect time (and you hold connections open indefinitely).</p> <p>If authentication is something you need, I'd recommend bringing it up there where people are likely to help you solve your problems.</p> http://stackoverflow.com/questions/1678848/accessing-memcached-stats-via-cmemcache-or-django-returns-warning/1678977#1678977 0 Answer by Dustin for accessing memcached stats via cmemcache or django returns warning Dustin 2009-11-05T07:49:30Z 2009-11-05T07:49:30Z <p>First, you should not run those versions of memcached. They have lots and lots of known bugs and are many years old.</p> <p>Secondly, we add stats to memcached quite frequently, so if these libraries are complaining when they encounter new stats, you should complain to their authors.</p> <p>Also, I don't believe cmemcache is maintained. It's based on a deprecated memcached C library that has several known bugs. Users of that library are encouraged to migrate to libmemcached.</p> http://stackoverflow.com/questions/1672322/how-to-get-the-current-node-name-in-an-erlang-cluster/1672365#1672365 2 Answer by Dustin for How to get the current node name in an erlang cluster? Dustin 2009-11-04T08:27:10Z 2009-11-04T08:27:10Z <p>The problem that you ran into was that you're trying to use <code>if</code> to perform a match without a default condition (and one of your predefined conditions isn't being met).</p> <p>I don't think I've ever used <code>if</code> in an erlang app, but I think there are much more simple ways to do what you're trying here (and you won't have to rewrite your code when you add a fourth node).</p> <p>Are you sure you aren't trying to write this?</p> <pre><code>lists:foreach(fun(N) -&gt; message(N, H) end, nodes()). </code></pre> <p>Or, perhaps this:</p> <pre><code>lists:foreach(fun(N) -&gt; message(N, H) end, [node1, node2, node3] -- [node()]). </code></pre> http://stackoverflow.com/questions/1670970/how-to-cherry-pick-multiple-commits/1671606#1671606 1 Answer by Dustin for How to cherry-pick multiple commits Dustin 2009-11-04T03:59:07Z 2009-11-04T03:59:07Z <pre><code>git rev-list --reverse b..f | xargs -n 1 git cherry-pick </code></pre> http://stackoverflow.com/questions/1666441/a-multithreaded-queue-in-python/1668863#1668863 0 Answer by Dustin for A multithreaded queue in Python Dustin 2009-11-03T17:22:43Z 2009-11-03T17:22:43Z <p>I'd recommend you look at <a href="http://kr.github.com/beanstalkd/" rel="nofollow">beanstalkd</a> or <a href="http://gearman.org/" rel="nofollow">gearman</a>.</p> <p>Let your web server be a web server, and scale your long-running jobs independently and more safely by moving them through a queue to an external worker.</p> http://stackoverflow.com/questions/1658698/erlang-list-manipulation/1658919#1658919 2 Answer by Dustin for erlang list manipulation Dustin 2009-11-02T00:33:33Z 2009-11-02T00:33:33Z <p>For your specific example case, you can define the following function:</p> <pre><code>group3([], Acc) -&gt; Acc; group3([A,B,C|Tl], Acc) -&gt; group3(Tl, [[A,B,C]] ++ Acc). group3(L) -&gt; lists:reverse(group3(L, [])). </code></pre> <p>and invoke it like this:</p> <pre><code>group3(lists:flatten(lists:map(fun({_, B}) -&gt; B end, L))). </code></pre> <p>Hopefully that's enough to give you a general strategy.</p> http://stackoverflow.com/questions/1653245/git-merge-results-in-duplicate-commits-on-published-branch/1653355#1653355 1 Answer by Dustin for git merge results in duplicate commits on published branch Dustin 2009-10-31T03:58:48Z 2009-10-31T03:58:48Z <p>If it's non fast-forward, it's not identical. The duplicates are commits that look like yours, but aren't the same as yours.</p> <p>If you rebase your branch over origin, it will fast-forward.</p> <pre><code>git rebase remote_name/upstream_branch_name </code></pre> http://stackoverflow.com/questions/1647179/getting-mmix-repo-for-cvs-git/1647434#1647434 3 Answer by Dustin for Getting MMIX repo for CVS/Git Dustin 2009-10-30T00:45:50Z 2009-10-30T00:45:50Z <p>It's not clear what you expected that to do. git is not magic that drives CVS, it's an entirely different thing altogether.</p> <p>git does have a <code>cvsimport</code> tool that will make a git repository out of a CVS repository, but do note that this will be an entirely different thing.</p> <p>An example import:</p> <pre><code>mkdir mmixmasters cd mmixmasters git cvsimport -d:pserver:anonymous@mmixmasters.cvs.sourceforge.net:/cvsroot/mmixmasters mmixmasters </code></pre> <p>I'd recommend you understand both git and cvs better before trying to work with one gating the other, though.</p> http://stackoverflow.com/questions/1640305/git-question-how-can-i-push-1-commit-without-the-other/1640955#1640955 4 Answer by Dustin for git question. How can I push 1 commit without the other? Dustin 2009-10-29T00:20:03Z 2009-10-29T00:20:03Z <p>All of the commits leading up to a particular commit are what defines that new commit.</p> <p>That is, if you have a master → dev → bugfix as shown in the image below:</p> <p><img src="http://img.skitch.com/20091029-tbffrg53q73mdipiwcr3g2ywuh.png" alt="master → dev → bugfix" title="" /></p> <p>you can push <code>dev</code> alone but not <code>bugfix</code> alone, but the definition of <code>bugfix</code> includes <code>dev</code>, so <code>dev</code> has no meaning without <code>bugfix</code></p> <p>However, if you build this bugfix out as a feature branch, you'd have something that looked more like this:</p> <p><img src="http://img.skitch.com/20091029-t3w5qk3bhj3ftx1d9xnk32ibkb.png" alt="feature branch" title="" /></p> <p>You could still retroactively do that (create a new branch from <code>origin/master</code>, cherry-pick the change, and then <code>git reset --hard HEAD^</code> on your development branch to get the bugfix change off of it).</p> <p>Once that's complete, you can forward-port your dev branch with a simple <code>git rebase master</code> and it'll look like this:</p> <p><img src="http://img.skitch.com/20091029-1ts3enwsmsr29imcu7tyk75ett.png" alt="new master" title="" /></p> <p>In practice, starting bug fixes from a branch will make this kind of thing a lot easier in general.</p> http://stackoverflow.com/questions/1623411/is-there-a-memcache-catalog/1623496#1623496 4 Answer by Dustin for Is there a memcache "catalog"? Dustin 2009-10-26T07:33:19Z 2009-10-26T07:33:19Z <p>No, we have no intention of supporting such functionality.</p> <p>Currently, all memcached operations are O(1) (that includes flush). Having an operation that gives you a list of keys can't satisfy that constraint. It would require locks that will be held for the duration of the request, and give you information that may be inaccurate at the very moment you see it.</p> <p>It's the kind of thing people ask for frequently, but nobody has ever presented a use case where a) they needed it and b) they were using memcached in a way that wasn't harmful to their environment.</p> <p>Think Heisenberg uncertainty principal meets ephemeral storage.</p> http://stackoverflow.com/questions/1621167/how-do-i-know-if-a-branch-has-already-been-merged-in-svn-mercurial-git/1622180#1622180 2 Answer by Dustin for How do I know if a branch has already been merged in SVN/Mercurial/Git? Dustin 2009-10-25T21:43:39Z 2009-10-25T21:43:39Z <p>In git, you can use <code>--contains</code> to list branches that contain other branches:</p> <pre><code>git branch -a --contains feature </code></pre> <p>will show all branches (with <code>-a</code>, that includes remote branches) that have merged the given feature.</p> <p><code>git show-branch</code> will show lots of details of the relationships between branches. It takes a bit of time to learn to read it effectively, but it's very valuable and will show you a lot in a small amount of space.</p> http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598937#1598937 0 Answer by Dustin for Git and Mercurial - Compare and Contrast Dustin 2009-10-21T05:51:00Z 2009-10-21T05:51:00Z <p>Check out <a href="http://jointheconversation.org/2008/11/24/on-mercurial.html" rel="nofollow">Scott Chacon's post</a> from a while back.</p> <p>I think git has a reputation for being "more complicated", though in my experience it's not more complicated than it needs to be. IMO, the git model is <em>way</em> easier to understand (tags contain commits (and pointers to zero or more parent commits) contain trees contain blobs and other trees... done).</p> <p>It's not just my experience that git is not more confusing than mercurial. I'd recommend again reading <a href="http://jointheconversation.org/2008/11/24/on-mercurial.html" rel="nofollow">this blog post from Scott Chacon</a> on the matter.</p> http://stackoverflow.com/questions/1583904/what-are-gits-thin-packs/1584007#1584007 0 Answer by Dustin for What are git's thin packs? Dustin 2009-10-18T04:22:33Z 2009-10-18T04:22:33Z <p>My understanding is that it's an optimization for transmitting objects between two repositories.</p> <p>I think you'd only use it when implementing your own git services not using send and receive pack.</p> http://stackoverflow.com/questions/1555517/sending-a-non-blocking-http-post-request/1555718#1555718 0 Answer by Dustin for sending a non-blocking HTTP POST request Dustin 2009-10-12T16:57:46Z 2009-10-12T16:57:46Z <p><a href="http://github.com/progrium/hookah" rel="nofollow">Hookah</a> is designed to solve your problem.</p> http://stackoverflow.com/questions/1535708/can-git-status-be-configured-so-that-it-wont-provide-help-text/1535755#1535755 5 Answer by Dustin for Can 'git status' be configured so that it won't provide help text? Dustin 2009-10-08T05:22:04Z 2009-10-08T05:22:04Z <p>Type this on your local commandline:</p> <pre><code>git config --global advice.statushints false </code></pre> http://stackoverflow.com/questions/1535261/how-to-write-an-efficient-hit-counter-for-websites/1535408#1535408 1 Answer by Dustin for How to write an efficient hit counter for websites Dustin 2009-10-08T03:06:30Z 2009-10-08T03:06:30Z <p>There are two really easy ways:</p> <ol> <li>Parse it out of your web logs in batch.</li> <li>Run the hits through <a href="http://kr.github.com/beanstalkd/" rel="nofollow">beanstalkd</a> or <a href="http://gearman.org/" rel="nofollow">gearmand</a> and have a worker do the hard stuff in a controlled way.</li> </ol> <p>Option 1 works with off-the-shelf tools. Option 2 requires just a bit of programming, but gives you something closer to realtime updates without causing you to fall over when the traffic spikes (such as you'll find in your direct mysql case).</p> http://stackoverflow.com/questions/1529896/debugging-a-scripting-language-like-ruby/1529996#1529996 10 Answer by Dustin for Debugging a scripting language like ruby Dustin 2009-10-07T07:09:05Z 2009-10-07T07:09:05Z <p>Your sequence seems entirely backwards to me. Here's how I do it:</p> <ol> <li>I write a test for the functionality I want.</li> <li>I start writing the script, executing bits and verifying test results.</li> <li>I review what I'd done to document and publish.</li> </ol> <p>Specifically, I execute <em>before</em> I complete. It's way too late by then.</p> <p>There are debuggers, of course, but with good tests and good design, I've almost never needed one.</p> http://stackoverflow.com/questions/1480105/how-to-correctly-preserve-branch-merge-history-of-an-svn-repository-when-migratin/1480180#1480180 1 Answer by Dustin for How to correctly preserve branch/merge history of an SVN repository when migrating to GIT Dustin 2009-09-26T01:25:31Z 2009-09-26T01:25:31Z <p>svn only very recently added merge tracking. Does your version of subversion support it? If it does, do you know how it actually communicates that to git so that git could model it as well?</p> http://stackoverflow.com/questions/1469198/version-control-has-me-stumped/1469416#1469416 5 Answer by Dustin for Version control has me stumped Dustin 2009-09-24T01:41:25Z 2009-09-24T01:41:25Z <p>git is one of the easiest things out there, honestly. subversion has a very large mindshare right now, and many of the people who have been using it have trouble learning git (different is hard), but if you don't have experience with either, one is not harder than the other.</p> <p>The basic model with git is that you do some work and you record a snapshot of your work with a description of what makes it different from the previous snapshot.</p> <p>It's trivial to see the difference between any two of these snapshots or perhaps "go back in time" and look at the entire state of your project at any prior point. All of these operations are roughly instant, and none require access to any particular server.</p> <p>Being instant means that you gain a new freedom of experimentation. You will never fear doing some wild and crazy experiment that involves things like removing all of the css files and starting fresh. If it isn't working out quickly, you just toss the work away and go back. But being able to even try this will get you really far.</p> <p>I like to describe this to newcomers as a well-managed undo coupled with a really awesome backup system. When you push your changes to another repository (e.g. github), you effectively have two copies of every state in your project. <strong>It quickly becomes impossible to lose work</strong>.</p> <p>I'd like to emphasize that last point: If you have one computer you work on and you push your snapshots to github, the only way you can lose data is if <strong>both</strong> github is unavailable (or lost your data somehow) <strong>and</strong> your computer broke at the same time. If you have two computers you work on, three systems have to break. If you use git to deploy your tree somewhere, four computers have to break.</p> http://stackoverflow.com/questions/1451670/using-git-or-some-other-vcs-at-your-company/1451749#1451749 3 Answer by Dustin for Using git (or some other VCS) at your company Dustin 2009-09-20T19:06:48Z 2009-09-20T19:06:48Z <p>We use git for all of our source code. It just makes sense.</p> <ul> <li>It's quite nearly impossible for us to lose anything since at the point where two people touch a project, we have three complete copies of it (and our backups of those repos).</li> <li>We do not rely on any centralized infrastructure -- including network. I've worked on projects in BART tunnels.</li> </ul> <p>In <em>theory</em> these commercial systems should save you from broken repositories and all kinds of wonderful things with their support.</p> <p>In <em>practice</em> I've lost more code and time to centralized repositories than distributed.</p> http://stackoverflow.com/questions/1450348/git-equivalents-of-most-common-mercurial-commands/1450483#1450483 4 Answer by Dustin for Git equivalents of most common Mercurial commands? Dustin 2009-09-20T07:03:59Z 2009-09-20T07:03:59Z <p>Mercurial:</p> <pre><code>hg init . # start a project in the current directory hg addremove # look for any added or deleted files hg commit -m "comment" # commit any uncomitted changes hg status # what have i changed since the last commit? </code></pre> <p>Git Equivalents:</p> <pre><code>git init git add -A git commit -am "comment" # -a is not necessary along with the above add -A git status </code></pre> http://stackoverflow.com/questions/1450038/which-queue-is-most-appropriate/1450118#1450118 0 Answer by Dustin for Which queue is most appropriate? Dustin 2009-09-20T02:24:21Z 2009-09-20T02:24:21Z <p><a href="http://gearman.org/" rel="nofollow">Gearman</a> is good in that it optionally allows you to synchronize multiple jobs executed on multiple workers.</p> <p>I've used <a href="http://xph.us/software/beanstalkd/" rel="nofollow">beanstalkd</a> successfully in a few high-volume applications.</p> <p>The latter is better-suited to async jobs, and the former gives you more flexibility when you'd like to block on job execution.</p> http://stackoverflow.com/questions/1425149/reverse-geocoding-without-web-access/1425312#1425312 0 Answer by Dustin for Reverse Geocoding Without Web Access Dustin 2009-09-15T05:38:49Z 2009-09-15T05:38:49Z <p>I have a database with all of this data and some access tools. I made mine from the census tiger data. I imagine it'd basically be an export of my database to sqlite and a bit of code translation.</p> http://stackoverflow.com/questions/1331385/how-can-i-see-incoming-commits-in-git/1331753#1331753 3 Answer by Dustin for How can I see incoming commits in git? Dustin 2009-08-26T00:30:09Z 2009-08-26T00:30:09Z <p><code>incoming</code> isn't quite a direct mapping in git because you can (and I often do) have multiple repos you're pulling from, and each repo has multiple branches.</p> <p>If there were an equivalent of hg's incoming command, it'd probably be this:</p> <pre><code>git fetch &amp;&amp; git log ..origin/master </code></pre> <p>That is, "go grab all of the stuff from the upstream, and then compare my current branch against the upstream master branch."</p> <p>Similarly, outgoing would be this:</p> <pre><code>git fetch &amp;&amp; git log origin/master.. </code></pre> <p>In practice, I just type those manually (even though I created an alias for one of them) because it's easy to have lots of local branches tracking and being tracked by lots of remote branches and have no trouble keeping it together.</p> http://stackoverflow.com/questions/1314950/git-get-all-commits-and-blobs-they-created/1315148#1315148 0 Answer by Dustin for GIt - get all commits and blobs they created Dustin 2009-08-22T04:35:46Z 2009-08-22T04:35:46Z <p>You can get everything but size out of the box. This one is pretty close:</p> <pre><code>git log --name-status </code></pre> http://stackoverflow.com/questions/1123200/how-to-lock-a-critical-section-in-django/1151797#1151797 1 Answer by Dustin for How to lock a critical section in Django? Dustin 2009-07-20T05:10:29Z 2009-07-20T05:10:29Z <p>You need a distributed lock manager at the point where your app suddenly needs to run on more than one service. I wrote <a href="http://github.com/dustin/elock" rel="nofollow">elock</a> for this purpose. There are <a href="http://hadoop.apache.org/zookeeper/" rel="nofollow">bigger ones</a> and others have chosen to ignore every suggestion and done the same with memcached.</p> <p>Please don't use memcached for anything more than light advisory locking. It is designed to forget stuff.</p> <p>I like to pretend like filesystems don't exist when I'm making web apps. Makes scale better.</p> http://stackoverflow.com/questions/1149692/cpython-or-ironpython/1150371#1150371 1 Answer by Dustin for CPython or IronPython ? Dustin 2009-07-19T17:23:25Z 2009-07-19T17:23:25Z <p>I can only think of about one "cross platform" GUI app that's remotely tolerable (firefox), and people are complaining wildly about it everywhere I look.</p> <p>If you want to do cross platform, build a nice, solid model that can do the work you need done and build platform-specific GUIs that use it.</p> <p>I don't know how tolerable wxpython or pyqt are on Windows and Linux, but the further you get from plain cocoa on OS X, the harder it gets to build and the less pleasant it gets to use.</p> http://stackoverflow.com/questions/1114312/how-do-i-check-if-a-process-is-alive-in-python-on-linux/1114435#1114435 4 Answer by Dustin for How do I check if a process is alive in Python on Linux? Dustin 2009-07-11T19:12:22Z 2009-07-11T19:12:22Z <p><code>os.kill</code> does not kill processes, it sends them signals (it's poorly named).</p> <p>If you send signal 0, you can determine whether you are allowed to send other signals. An error code will indicate whether it's a permission problem or a missing process.</p> <p>See <code>man 2 kill</code> for more info.</p> <p>Also, if the process is your child, you can get a <code>SIGCHLD</code> when it dies, and you can use one of the <code>wait</code> calls to deal with it.</p> http://stackoverflow.com/questions/1085050/how-do-i-use-tls-with-asyncore/1085862#1085862 2 Answer by Dustin for How do I use TLS with asyncore? Dustin 2009-07-06T07:54:16Z 2009-07-06T07:54:16Z <p>Definitely check out twisted and wokkel. I've been building tons of xmpp bots and components with it and it's a dream.</p> http://stackoverflow.com/questions/1672322/how-to-get-the-current-node-name-in-an-erlang-cluster Comment by Dustin on How to get the current node name in an erlang cluster? Dustin 2009-11-04T08:28:21Z 2009-11-04T08:28:21Z Please note that people come here to have conversations, leave evidence to help others, and build reputation by providing good answers. Asking someone to email you an answer out of the system is somewhat rude. http://stackoverflow.com/questions/1662205/how-to-make-a-git-repository-read-only/1662244#1662244 Comment by Dustin on How to make a git repository read-only? Dustin 2009-11-02T22:50:32Z 2009-11-02T22:50:32Z 666 is world readable and writable files. 776 is world and group readable, writable and executable and other users read and write. Not sure where you got the numbers you're recommending, but they're generally dangerous. http://stackoverflow.com/questions/1659752/identifying-sub-class-at-run-time/1659764#1659764 Comment by Dustin on identifying sub-class at run time Dustin 2009-11-02T06:51:40Z 2009-11-02T06:51:40Z I think instanceof is a better approach, but you get my vote for pointing out that this is really a sign that the design is quite wrong. http://stackoverflow.com/questions/1645672/local-branches-with-bazaar/1645709#1645709 Comment by Dustin on Local branches with Bazaar? Dustin 2009-10-29T21:08:39Z 2009-10-29T21:08:39Z I think the &quot;cd&quot; part of that validated the &quot;branches just being separate directories&quot; part of the question. Branches are less useful if I have to reconfigure my tools when I change branches. http://stackoverflow.com/questions/1623411/is-there-a-memcache-catalog/1623496#1623496 Comment by Dustin on Is there a memcache "catalog"? Dustin 2009-10-26T16:42:48Z 2009-10-26T16:42:48Z (and sorry for spelling principle wrong) http://stackoverflow.com/questions/1623411/is-there-a-memcache-catalog/1623496#1623496 Comment by Dustin on Is there a memcache "catalog"? Dustin 2009-10-26T16:41:13Z 2009-10-26T16:41:13Z Memory for a particular application comes and goes in memcached. The app taking up most memory can change throughout the day. The one that's the most active is likely to be using more memory than the one that's the least active. It's pretty easy to get rails to log access so you can at least get a feel. Watch eviction stats and you'll know whether it even matters. http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598937#1598937 Comment by Dustin on Git and Mercurial - Compare and Contrast Dustin 2009-10-24T04:30:06Z 2009-10-24T04:30:06Z Martin, I'm sorry, but hg tags are confusing: <a href="http://pastebin.com/f34398ad8" rel="nofollow">pastebin.com/f34398ad8</a> http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1599930#1599930 Comment by Dustin on Git and Mercurial - Compare and Contrast Dustin 2009-10-22T01:26:13Z 2009-10-22T01:26:13Z @Steve I don't see why you feel that git requires naming branches, but hg does not. Is that because you can't easily have multiple anonymous heads? To be honest, I don't see a big fuss in putting a name on a branch when I intend to have more than one. http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1599930#1599930 Comment by Dustin on Git and Mercurial - Compare and Contrast Dustin 2009-10-22T01:24:41Z 2009-10-22T01:24:41Z @tonfa I was quite a heavy mq user when I used hg a lot. I can see that it was possible, but it's harder to safely use mq than it is to safely use rebase, etc... (since everything is undoable by default). http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1599930#1599930 Comment by Dustin on Git and Mercurial - Compare and Contrast Dustin 2009-10-21T15:31:49Z 2009-10-21T15:31:49Z I think &quot;rewriting history&quot; is unnecessarily negative sounding. What <i>I</i> encourage in git is people to consider the history they publish. Other people need to consume that history. Nobody (not even you) is interested in all of your &quot;oops, forgot a file&quot; commits. Nor does anyone care about the series of inbound merges you went through while you were tracking an upstream branch while working on a new feature. That kind of stuff makes history (and related tools) much harder to understand and provides no value. http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598937#1598937 Comment by Dustin on Git and Mercurial - Compare and Contrast Dustin 2009-10-21T15:21:44Z 2009-10-21T15:21:44Z Well, that simplified model ignores tagging which is considerably clunkier in practice in hg (though I do argue that git tag is a bit confusing because it doesn't create a tag object by default). The on-disk format was particularly expensive for both projects that had a history of a lot of filenames. http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast/1598812#1598812 Comment by Dustin on Git and Mercurial - Compare and Contrast Dustin 2009-10-21T05:43:04Z 2009-10-21T05:43:04Z I'd recommend reading all of the comments on that google code page. The information does feel somewhat biased and doesn't match my experience well. I like hg, and used it <i>extensively</i> for a year or so. I use git almost exclusively now. There are things I need to accomplish that git makes easy and hg makes nearly impossible (though some like to call this by means of &quot;complication.&quot;) Basic git is as easy as base hg. http://stackoverflow.com/questions/1537616/handling-renames-svn-vs-git-vs-mercurial Comment by Dustin on Handling renames: svn vs. git vs. mercurial Dustin 2009-10-08T16:52:16Z 2009-10-08T16:52:16Z bzr may very well do that one thing right, but I find nearly every other aspect of the system horribly frustrating. The only stuff I work on that uses bzr uses it because of launchpad which is also horribly frustrating and locks you into their revision control system. It's the one thing that canonical does that makes me really not like them. http://stackoverflow.com/questions/1535708/can-git-status-be-configured-so-that-it-wont-provide-help-text/1535755#1535755 Comment by Dustin on Can 'git status' be configured so that it won't provide help text? Dustin 2009-10-08T16:49:02Z 2009-10-08T16:49:02Z I didn't find it in the documentation, I found it in the source code. It was added in v1.6.4.2-270-gedf563f. No docs were updated to reflect this change: <a href="http://github.com/git/git/commit/edf563fbaa2ab50734db4a61e9092f25fbb5a417" rel="nofollow">github.com/git/git/&hellip;</a> http://stackoverflow.com/questions/1535261/how-to-write-an-efficient-hit-counter-for-websites/1535302#1535302 Comment by Dustin on How to write an efficient hit counter for websites Dustin 2009-10-08T03:02:38Z 2009-10-08T03:02:38Z I'm a huge fan of SQLite, and simple text files, but both are unsuitable for this task. Assume more than one server, more than one image, more than one concurrent hit, etc...