User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T12:01:03Z http://stackoverflow.com/feeds/user/7666 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/63488/which-is-the-most-useful-mercurial-hook-for-programming-in-a-loosely-connected-te 0 Which is the most useful Mercurial hook for programming in a loosely connected team? arnebab 2008-09-15T14:38:58Z 2008-12-01T11:13:07Z <p>I recently discovered the notify extension in Mercurial which allows me quickly send out emails whenever I push changes, but I'm pretty sure I'm still missing out on a lot of functionality which could make my live a lot easier. </p> <ul> <li>notify-extension: <a href="http://www.selenic.com/mercurial/wiki/index.cgi/NotifyExtension" rel="nofollow">http://www.selenic.com/mercurial/wiki/index.cgi/NotifyExtension</a></li> </ul> <p>Which Mercurial hook or combination of interoperating hooks is the most useful for working in a loosely connected team? </p> <p>Please add links to non-standard parts you use and/or add the hook (or a description how to set it up), so others can easily use it. </p> http://stackoverflow.com/questions/50194/source-control-for-everyone/63834#63834 2 Answer by arnebab for Source Control for Everyone? arnebab 2008-09-15T15:16:23Z 2008-09-15T15:16:23Z <p>I would try Mercurial with <a href="http://tortoisehg.sf.net" rel="nofollow">TortoiseHG</a> for Explorer integration. </p> <p>It's easy enough to use that I could without problems: </p> <ul> <li>teach it to a not-that-computer-savvy-collegue for writing text together. </li> <li>guide a friend by phone through installing Mercurial (TortoiseHG), creating a repository and setting it up for working together using seperate push (his) and pull (mine) repositories - after installing it only once on a Windows machine (I only run GNU/Linux).</li> </ul> <p>And since it is fully distributed, they can't break your repository when they break theirs - you can simply decide not to pull their changes or to pull only the good changes (for example avoiding these huge binary files beginners tend to put under version control). </p> <p>I since then switched to also managing all my static websites via Mercurial (and a push-upload hook which automatically uploads the website to my FTP-server, so I don't have to worry about that anymore). </p> http://stackoverflow.com/questions/237/distributed-source-control-options/63576#63576 2 Answer by arnebab for Distributed source control options arnebab 2008-09-15T14:50:02Z 2008-09-15T15:06:38Z <p>I use Mercurial on GNU/Linux, but with </p> <ul> <li><a href="http://tortoisehg.sf.net" rel="nofollow">http://tortoisehg.sf.net</a> (full Mercurial GUI integration in the explorer), </li> <li><a href="http://bitbucket.org/" rel="nofollow">http://bitbucket.org/</a> and <a href="http://freehg.org" rel="nofollow">http://freehg.org</a> (a collaboration platform for Mercurial projects and a simpler repository platform) and </li> <li>all code except speed critical parts written in Python, </li> </ul> <p>Mercurial works very nice on Windows. </p> <p>It's easy enough to use that I could without problems: </p> <ul> <li>teach it to a not-that-computer-savvy-collegue for writing text together. </li> <li>guide a friend by phone through installing Mercurial (TortoiseHG), creating a repository and setting it up for working together using seperate push (his) and pull (mine) repositories - after installing it only once on a Windows machine (I only run GNU/Linux). </li> </ul> http://stackoverflow.com/questions/63086/is-there-a-way-around-coding-in-python-without-the-tab-indent-whitespace-crite/63403#63403 2 Answer by arnebab for Is there a way around coding in Python without the tab, indent & whitespace criteria? arnebab 2008-09-15T14:28:27Z 2008-09-15T14:28:27Z <p>Tabs and spaces confusion can be fixed by setting your editor to use spaces instead of tabs. </p> <p>To make whitespace completely intuitive, you can use a stronger code editor or an IDE (though you don't need a full-blown IDE if all you need is proper automatic code indenting). </p> <p>A list of editors can be found in the Python wiki, though that one is a bit too exhausting: - <a href="http://wiki.python.org/moin/PythonEditors" rel="nofollow">http://wiki.python.org/moin/PythonEditors</a></p> <p>There's already a question in here which tries to slim that down a bit: </p> <ul> <li><a href="http://stackoverflow.com/questions/60784/poll-which-python-ideeditor-is-the-best">http://stackoverflow.com/questions/60784/poll-which-python-ideeditor-is-the-best</a></li> </ul> <p>Maybe you should add a more specific question on that: "Which Python editor or IDE do you prefer on Windows - and why?"</p> http://stackoverflow.com/questions/63488/which-is-the-most-useful-mercurial-hook-for-programming-in-a-loosely-connected-te/63636#63636 Comment by on Which is the most useful Mercurial hook for programming in a loosely connected team? 2009-04-14T09:45:42Z 2009-04-14T09:45:42Z Could you post your hook somewhere and link it here?