User rcoup - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T06:22:16Zhttp://stackoverflow.com/feeds/user/2662http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application/490172#4901721Answer by rcoup for Getting stack trace from a running Python applicationrcoup2009-01-29T01:28:29Z2009-01-29T01:28:29Z<p>It's worth looking at <a href="http://bashdb.sourceforge.net/pydb/" rel="nofollow">Pydb</a>, "an expanded version of the Python debugger loosely based on the gdb command set". It includes signal managers which can take care of starting the debugger when a specified signal is sent.</p>
<p>A 2006 Summer of Code project looked at adding remote-debugging features to pydb in a module called <a href="http://svn.python.org/projects/sandbox/trunk/pdb/" rel="nofollow">mpdb</a>. </p>
http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/67702#6770214Answer by rcoup for What is the best resource you know to learn Dojo?rcoup2008-09-15T22:42:57Z2008-09-15T22:42:57Z<p>There are a number of useful resources for <a href="http://dojotoolkit.org/" rel="nofollow">Dojo</a> out there...</p>
<p><strong>Online documentation:</strong></p>
<ul>
<li><p><strong>Dojo Book:</strong> The <a href="http://dojotoolkit.org/book/dojo-book-1-0" rel="nofollow">online reference guide for Dojo</a> is pretty comprehensive, and is generally updated. During 2008, the docs will move to a more editable site at <a href="http://docs.dojocampus.org/" rel="nofollow">DojoCampus</a>.</p></li>
<li><p><strong>API Reference:</strong> Want to know the attributes for customising a <code>ContentPane</code>? Or the parameter order for <code>dojo.connect()</code>? Hit the <a href="http://api.dojotoolkit.org/" rel="nofollow">Dojo API Reference</a> and look it all up. Commenting is available too so leave your experiences there.</p></li>
<li><p><strong><a href="http://dojocampus.org/" rel="nofollow">Dojo Campus</a></strong> is the home of learning resources for Dojo. It includes a <a href="http://dojocampus.org/explorer" rel="nofollow">Feature Explorer</a>, the new <a href="http://docs.dojocampus.org/" rel="nofollow">Documentation</a>, podcasts, tutorials, and <a href="http://dojocampus.org/content/?cat=16" rel="nofollow">cookies</a> (helpful bite-size tips for Dojo)</p></li>
<li><p><strong>Demos & Tests</strong> are a great way to see how the different components can be used, combined, and customised. The <a href="http://archive.dojotoolkit.org/nightly/" rel="nofollow">online archive</a> has links to test pages, and they're also available in the downloads and checkouts under <code><dojo/dijit/dojox>/<module>/tests/</code></p></li>
<li><p><strong>Others:</strong> </p>
<ul>
<li>The <a href="http://sitepen.com/labs/toolbox/" rel="nofollow">Dojo Toolbox</a> is a desktop app which provides an offline version of the API reference and a number of other tools and links. </li>
<li>The <a href="http://dojotoolkit.org/key-links" rel="nofollow">Key Links</a> page on the Dojo website links to lots of tutorials around the web.</li>
</ul></li>
</ul>
<p><strong>Blogs:</strong></p>
<ul>
<li>The <a href="http://dojotoolkit.org/blog" rel="nofollow">Dojo project blog</a> covers what the contributors are working on, and what's new from the roject.</li>
<li><a href="http://dojotoolkit.org/aggregator" rel="nofollow">Planet Dojo</a> collects Dojo and Javascript/web related blogs together in a handy aggregator for the wider community. </li>
<li>SitePen employs a number of the Dojo developers, and have a fantastic blog which goes into the <a href="http://www.sitepen.com/blog/category/dojo/" rel="nofollow">nuts and bolts of new and exciting Dojo stuff</a>.</li>
</ul>
<p><strong>Books:</strong></p>
<ul>
<li><em><a href="http://rads.stackoverflow.com/amzn/click/0596516487" rel="nofollow">Dojo: The Definitive Guide</a></em> by Matthew Russell is a really comprehensive reference book on the core Dojo and Dijit libraries, but with plenty of background and useful additions so that its not just another API reference.</li>
<li><em><a href="http://www.pragprog.com/titles/rgdojo/mastering-dojo" rel="nofollow">Mastering Dojo</a></em> explains how and why Dojo is put together the way it is put together the way it is, and gets into the guts of how it all works.</li>
<li><em><a href="http://rads.stackoverflow.com/amzn/click/0132358042" rel="nofollow">Dojo: Using the Dojo JavaScript Library to Build Ajax Applications</a></em> is a really easy introduction to the toolkit to enable people who aren't overly familiar with the Web/Ajax/Javascript thing to get started.</li>
<li>There are more books coming out in 2008/2009 so keep a look-out.</li>
<li>A great <a href="http://alex.dojotoolkit.org/2008/06/books-its-raining-books/" rel="nofollow">discussion of the three Dojo books</a> by Alex Russell (Dojo's founder).</li>
<li>The <a href="http://dojocampus.org/bookcorner/" rel="nofollow">Dojo Campus book corner</a></li>
</ul>
http://stackoverflow.com/questions/24849/is-there-some-way-to-introduce-a-delay-in-javascript/24862#248624Answer by rcoup for Is there some way to introduce a delay in javascript?rcoup2008-08-24T05:29:51Z2008-08-24T05:29:51Z<p>You can also use <a href="http://www.devguru.com/Technologies/ecmascript/quickref/win_setinterval.html" rel="nofollow">window.setInterval()</a> to run some code repeatedly at a regular interval.</p>
http://stackoverflow.com/questions/1391241/free-private-bazaar-online-source-host/1396516#1396516Comment by rcoup on Free private Bazaar online source hostrcoup2009-11-08T21:18:22Z2009-11-08T21:18:22ZLaunchpad now offers private Launchpad hosting, including Bazaar repositories. It's on the order of US$250/year, and apparently they're fairly flexible since it's early days.
<a href="http://blog.launchpad.net/general/new-privacy-features-for-commercial-subscribers" rel="nofollow">blog.launchpad.net/general/…</a>