User tsg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T00:58:32Z http://stackoverflow.com/feeds/user/15685 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1468779/extjs-grid-callback-on-load-and-reload/1470099#1470099 1 Answer by tsg for ExtJS grid callback on load and reload tsg 2009-09-24T06:44:34Z 2009-09-24T06:44:34Z <p>You need to register callbacks to the <a href="http://www.extjs.com/deploy/dev/docs/source/Store.html#event-Ext.data.Store-load" rel="nofollow">load</a> and <a href="http://www.extjs.com/deploy/dev/docs/source/Store.html#event-Ext.data.Store-exception" rel="nofollow">exception</a> events of the JsonStore. Something like this:</p> <pre><code> var grid = new Ext.grid.GridPanel({ store: new Ext.data.JsonStore({ [...] listeners: { load: this.onLoadSuccess.crateDelegate(this), exception: this.onLoadException.createDelegate(this) } }), onLoadSuccess: function () { // success }, onLoadException: function () { // error }, [...] } </code></pre> http://stackoverflow.com/questions/1468443/per-thread-cpu-statistics-in-linux/1468511#1468511 2 Answer by tsg for Per thread CPU statistics in Linux tsg 2009-09-23T21:04:02Z 2009-09-23T21:04:02Z <p>getrusage(2) with RUSAGE_THREAD. From the man page:</p> <pre><code>int getrusage(int who, struct rusage *usage); getrusage() returns resource usage measures for who, which can be one of the following: [...] RUSAGE_THREAD (since Linux 2.6.26) Return resource usage statistics for the calling thread. </code></pre> http://stackoverflow.com/questions/1460010/best-c-rtp-rtsp-library/1461615#1461615 0 Answer by tsg for Best C++ RTP/RTSP library tsg 2009-09-22T18:00:40Z 2009-09-22T18:00:40Z <p><a href="http://www.voxgratia.org/docs/opal/opal%5Fv2%5F1%5F0/" rel="nofollow">OPAL</a> is a pretty complete VoIP library, written in C++.</p> <p>Also, while not really a library, you can write great media applications on top of <a href="http://www.iptel.org/sems" rel="nofollow">SEMS</a>, in C++ or python.</p> http://stackoverflow.com/questions/1433563/sample-code-or-projects-using-simple-reference-counter-in-c/1434390#1434390 1 Answer by tsg for sample code or projects using simple reference counter in C tsg 2009-09-16T17:28:29Z 2009-09-16T17:28:29Z <p><a href="http://xmlrpc-c.sourceforge.net/" rel="nofollow">XMLRPC-c</a> and <a href="http://oss.metaparadigm.com/json-c/" rel="nofollow">json-c</a> are examples of C libraries that use reference counting (and have slightly different approaches as to when to increment them behind the scenes) . If you are in a multi-threaded environment, you might also be interested in the <a href="http://lxr.linux.no/#linux+v2.6.31/Documentation/kref.txt" rel="nofollow">kref</a> usage in the Linux kernel.</p> http://stackoverflow.com/questions/1236133/shared-objects-within-a-struct-between-a-calling-program-and-library-in-c/1236212#1236212 3 Answer by tsg for shared objects within a struct: between a calling program and library (in c) tsg 2009-08-05T23:03:52Z 2009-08-06T00:08:45Z <p>In general, it's important that the library documents the 'contract' it makes with the applications that are using its service. The library writer documents all the allocations made by the library and what needs to be freed by the application. Like any contract, it's good when it is simple and consistent.</p> <p>In this particular case, I suppose the library should also offer:</p> <pre><code>void free_bs(bs *b) { if (b-&gt;d) { /* free b-&gt;d here */ } /* free rest of the structure */ } </code></pre> <p>which frees the structure. It makes sense to also free the d array here. The application has pointer to all the <code>bs</code> structures and is responsible for calling <code>free_bs</code> on them when no longer needed.</p> <p>If, for example, you want to keep d for future usage, after you're done with the library operation, the contract is a bit more complex. The library could also provide:</p> <pre><code>double** bs_get_data(bs *b) { double **d = b-&gt;d; b-&gt;d = NULL; return b-&gt;d; } </code></pre> <p>which returns a pointer to <code>d</code>, and leaves the field empty so that the free routine knows to skip it.</p> <p>The docs for the <code>bs_get_data()</code> have to explain that it can be called only once, and that the application takes the responsibility of freeing the array in this case.</p> <p><strong>UPDATE:</strong> In answer to your comment below: First of all, please note that I simplified the problem by assuming (at least) the following: the <code>d</code> is referenced either by a single <code>bs</code> structure or by the application. The application and the library "pass" a single reference to the array from one to the other. If you want the same <code>d</code> array in more <code>bs</code> structures, for example, than my approach is not enough.</p> <p>The flag that you propose in the comment might help, but is not standard practice, FWIK. In this case, I would suggest to implement some simple <strong>reference counting</strong>. If <code>d</code> is the resource that needs to be shared around, make it an "object":</p> <pre><code> typedef struct { double **d; int ref; } d_t; </code></pre> <p>Initialize <code>ref</code> with 1. In <code>new_bs()</code> and in all functions that receive a "copy" of <code>d</code>, increment the reference count. When the <code>bs</code> structure gets deleted, or when you no longer need <code>d</code> in your application, decrement it's reference count. If it gets to zero, free it. In a way, it is what the high level languages do for you, and is very efficient in keeping the resource management sane.</p> <p>So no one is owning the array, but whoever needs it last, frees it.</p> <p>Of course, this requires more work and complicates code, so try to put in balance. It's not needed for every structure you have, but only for those you need to keep multiple references to.</p> http://stackoverflow.com/questions/1227037/substitutions-inside-links-in-rest-sphinx/1232671#1232671 1 Answer by tsg for Substitutions inside links in reST / Sphinx tsg 2009-08-05T11:28:34Z 2009-08-05T11:28:34Z <p>You can write a Sphinx <a href="http://sphinx.pocoo.org/extensions.html" rel="nofollow">extension</a> that creates a <a href="http://sphinx.pocoo.org/markup/inline.html" rel="nofollow">role</a> like</p> <pre><code>:apilink:`path` </code></pre> <p>and generates the link from that. I never did this, so I can't help more than giving this pointer, sorry. You should try to look at how the various roles are implemented. Many are very similar to what you need, I think.</p> http://stackoverflow.com/questions/1232249/setting-tcp-retransmission-timeout-in-c/1232400#1232400 1 Answer by tsg for Setting TCP Retransmission Timeout in C tsg 2009-08-05T10:34:28Z 2009-08-05T10:34:28Z <p>In Linux, you can try playing with the <code>TCP_WINDOW_CLAMP</code> and the other options from <a href="http://lxr.linux.no/linux+v2.6.30/include/linux/tcp.h#L85" rel="nofollow">http://lxr.linux.no/linux+v2.6.30/include/linux/tcp.h#L85</a> . They can be set by using <code>setsockopt</code> (man 3 setsockopt), I think.</p> http://stackoverflow.com/questions/1222574/c-main-loop-without-100-cpu/1222758#1222758 0 Answer by tsg for C Main Loop without 100% cpu tsg 2009-08-03T14:47:26Z 2009-08-03T14:47:26Z <p>If I understood right, you said in the comments that DONE can be changed from other threads. If so, condition variables make sense. With pthreads, one would do:</p> <p>In the thread that waits:</p> <pre><code>pthread_mutex_lock(&amp;mutex); while (!DONE) { pthread_cond_wait(&amp;cond, &amp;mutex); } pthread_mutex_unlock(&amp;mutex); </code></pre> <p>In other threads, when DONE is changed:</p> <pre><code>pthread_mutex_lock(&amp;mutex); DONE = 1; pthread_cond_signal(&amp;cond); pthread_mutex_unlock(&amp;mutex); </code></pre> http://stackoverflow.com/questions/1221736/c-bus-error-using-different-compilation-arguments/1221781#1221781 3 Answer by tsg for C: Bus Error using different compilation arguments tsg 2009-08-03T11:16:50Z 2009-08-03T11:16:50Z <p>The termination condition of your recursive function <code>o</code> is broken. The array of strings is not null terminated, why should it be? Why not just use a simple <code>for</code> there, instead of the recursive function? Something like:</p> <pre><code>for(i=0;i&lt;wc;i++) { if(strlen(wpp[i])&gt;av) printf("%s\n",wpp[i]); } </code></pre> <p>Here is how I found out, using <code>gdb</code>:</p> <pre> t@c:~/tmp$ gcc -g -Wall -W -ansi -pedantic test.c t@c:~/tmp$ gdb ./a.out GNU gdb 6.8-debian Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "i486-linux-gnu"... (gdb) r Starting program: /home/tudor/tmp/a.out sdafasd sadsa sasaaaaaaaa saaaaaaaaaa asss sasaaaaaaaa saaaaaaaaaa Program received signal SIGSEGV, Segmentation fault. 0xb7eba1e3 in strlen () from /lib/i686/cmov/libc.so.6 (gdb) bt #0 0xb7eba1e3 in strlen () from /lib/i686/cmov/libc.so.6 #1 0x08048618 in o (wpp=0xbffad51c, av=7.5999999999999996, i=5) at test.c:13 #2 0x08048662 in o (wpp=0xbffad51c, av=7.5999999999999996, i=5) at test.c:14 #3 0x08048662 in o (wpp=0xbffad51c, av=7.5999999999999996, i=4) at test.c:14 #4 0x08048662 in o (wpp=0xbffad51c, av=7.5999999999999996, i=3) at test.c:14 #5 0x08048662 in o (wpp=0xbffad51c, av=7.5999999999999996, i=2) at test.c:14 #6 0x08048662 in o (wpp=0xbffad51c, av=7.5999999999999996, i=1) at test.c:14 #7 0x0804876c in main () at test.c:25 (gdb) frame 1 #1 0x08048618 in o (wpp=0xbffad51c, av=7.5999999999999996, i=5) at test.c:13 13 if(strlen(wpp[i])>av)printf("%s\n",wpp[i]); (gdb) p i $1 = 5 (gdb) p wpp $2 = (char **) 0xbffad51c (gdb) p *wpp[i] Cannot access memory at address 0x8 </pre> http://stackoverflow.com/questions/1214735/good-school-type-projects-or-assignments-for-re-learning-c/1214806#1214806 3 Answer by tsg for Good school-type projects or assignments for (re)-learning C? tsg 2009-07-31T20:45:29Z 2009-07-31T20:50:36Z <p>Some ideas for larger programs. You said similar to class assignments, so they are educative but not very useful :-)</p> <ul> <li><p>Create a simple shell, which can be used to start other programs. Implement pipes ("|"), background execution ("&amp;"), sequential execution ("&amp;"), conditional execution ("&amp;&amp;" and "||"). You will learn about the OS environment, process creation and communication between processes.</p></li> <li><p>Implement some RFC defined protocol, like <a href="http://www.faqs.org/rfcs/rfc1305.html" rel="nofollow">NTP</a>. This will learn you networking programing, and they way to read and understand RFCs.</p></li> <li><p>Implement a multi-threaded web server or an ftp server. This will learn you network programming, to deal with files and multi-threading.</p></li> </ul> <p>In all cases, try to have performance in mind, from speed and memory usage point of view. Choose the best data structures and algorithms. That's the point of running C. After you are done, compare your solution with open source variants of the same. You will learn a lot. Also, run your programs in valgrind to check for memory errors.</p> http://stackoverflow.com/questions/1207052/how-to-use-shell-script-checking-last-changed-time-of-a-file/1207165#1207165 1 Answer by tsg for how to use shell script checking last changed time of a file tsg 2009-07-30T14:57:42Z 2009-07-30T14:57:42Z <p>You can get the last modification time of a file with <code>stat</code>, and the current date with <code>date</code>. You can use format strings for both to get them in "seconds since the epoch":</p> <pre><code>current=`date +%s` last_modified=`stat -c "%Y" $file` </code></pre> <p>Then, it's pretty easy to put that in a condition. For example:</p> <pre><code>if [ $(($current-$last_modified)) -gt 180 ]; then echo "old"; else echo "new"; fi </code></pre> http://stackoverflow.com/questions/1192632/how-to-convert-restructuredtext-to-plain-text/1192964#1192964 0 Answer by tsg for How to convert reStructuredText to plain text tsg 2009-07-28T09:28:22Z 2009-07-28T09:28:22Z <p>Sphinx has a <a href="http://sphinx.pocoo.org/builders.html#sphinx.builders.text.TextBuilder" rel="nofollow">TextBuilder</a> for txt output format. Just tried it and it seems to do what you are looking for. </p> <p>However, it might be a little outdated because it is not in the default Makefile. But it worked well on my fairly complex documentation (150 pdf pages). To use it, just add the following target to it:</p> <pre><code>text: $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) _build/text @echo @echo "Build finished." </code></pre> <p>Also, keep in mind that Sphinx implements only a subset of the rst specs.</p> http://stackoverflow.com/questions/1188229/web-application-image-processing/1188306#1188306 1 Answer by tsg for web application image processing tsg 2009-07-27T13:58:44Z 2009-07-27T17:12:33Z <p>Have a look at <a href="http://www.imagemagick.org/script/api.php" rel="nofollow">ImageMagick</a> and <a href="http://www.libgd.org" rel="nofollow">gd</a>. They have bindings to a lot of higher level languages, and provide good performance because they are written in C.</p> http://stackoverflow.com/questions/996540/content-for-linux-operating-systems-class/996701#996701 0 Answer by tsg for Content for Linux Operating Systems Class tsg 2009-06-15T15:15:07Z 2009-06-15T15:15:07Z <p>The networking sub-system is also quite interesting. You could follow a packet as it goes from the socket system call to the wire and the other way around.</p> <p>Fun assignments could be: </p> <ul> <li>create a state-full firewall by using netfilter</li> <li>create an HTTP load balancer</li> <li>design and implement a simple tunneling protocol</li> </ul> http://stackoverflow.com/questions/981513/can-u-pls-help-me-for-how-to-get-the-process-id-of-the-particular-cmd-in-a-shell/981637#981637 0 Answer by tsg for can u pls help me for how to get the process id of the particular cmd in a shell script tsg 2009-06-11T14:59:13Z 2009-06-11T14:59:13Z <p>In bash, the pid is in the $! variable after launching the command. E.g.:</p> <pre><code>$ sleep 20 &amp; [1] 14167 $ echo $! 14167 </code></pre> <p>Of course, if you run other command after it, the $! gets overridden.</p> http://stackoverflow.com/questions/943826/how-to-simulate-exceptions-in-c-with-goto/943871#943871 5 Answer by tsg for How to simulate exceptions in C with goto? tsg 2009-06-03T09:45:12Z 2009-06-04T12:30:32Z <p>If typing the IFs is the problem, you could use a macro, like:</p> <pre><code>#define trans_rcv_CHK do { \ if (!trans_rcv()) \ { \ goto abort_code; \ } \ } while(0) </code></pre> <p>If trans_rcv has parameters, this should work (in gcc, at least):</p> <pre><code>#define trans_rcv_CHK(...) do { \ if (!trans_rcv(__VA_ARGS__)) \ { \ goto abort_code; \ } \ } while (0) </code></pre> http://stackoverflow.com/questions/158875/low-energy-low-cost-24-7-hardware-linux-box/158925#158925 0 Answer by tsg for Low energy, low cost 24/7 hardware linux box? tsg 2008-10-01T18:07:58Z 2008-10-01T18:07:58Z <p>A very low-energy and low-cost solution would be the <a href="http://reviews.cnet.com/routers/asus-wl-500g-premium/4505-3319_7-30650222.html" rel="nofollow">Asus wl-500 gP</a>. It doesn't have SSD, but it does have USB ports so you can attach external harddisks. </p> <p>It's normally used with OpenWRT, but you can also <a href="http://wpkg.org/Running_Debian_on_ASUS_WL-500G_deluxe" rel="nofollow">run debian on it</a>, with some work. </p> http://stackoverflow.com/questions/132121/what-makes-a-pthread-defunct/133550#133550 0 Answer by tsg for What makes a pthread defunct ? tsg 2008-09-25T14:08:02Z 2008-09-25T14:14:27Z <p>Not the most elegant design but maybe you could block the main thread before exiting with:</p> <pre><code> while(1) { pause(); } </code></pre> <p>Then you can install a signal handler for SIGINT and SIGTERM that breaks the loop. The easiest way for that is: exit(0) :-).</p> http://stackoverflow.com/questions/110760/report-generation/110936#110936 0 Answer by tsg for Report generation tsg 2008-09-21T12:45:46Z 2008-09-21T12:45:46Z <p>You can build some fancy PDFs from Python with the <a href="http://www.reportlab.org/rl_toolkit.html" rel="nofollow">ReportLab</a> toolkit.</p> http://stackoverflow.com/questions/108523/how-should-i-best-emulate-and-or-avoid-enums-in-python/108549#108549 2 Answer by tsg for How should I best emulate and/or avoid enum's in Python? tsg 2008-09-20T15:52:20Z 2008-09-20T15:52:20Z <p>The builtin way to do enums is:</p> <pre><code>(FOO, BAR, BAZ) = range(3) </code></pre> <p>which works fine for small sets, but has some drawbacks:</p> <ul> <li>you need to count the number of elements by hand</li> <li>you can't skip values </li> <li>if you add one name, you also need to update the range number</li> </ul> <p>For a complete enum implementation in python, see: <a href="http://code.activestate.com/recipes/67107/" rel="nofollow">http://code.activestate.com/recipes/67107/</a></p> http://stackoverflow.com/questions/108043/closing-cleaning-up-mixed-file-descriptors-sockets/108058#108058 4 Answer by tsg for Closing/cleaning up "mixed" file descriptors / sockets. tsg 2008-09-20T12:48:51Z 2008-09-20T12:48:51Z <p>From man fdopen:</p> <blockquote> <p>The file descriptor is not dup’ed, and will be closed when the stream created by fdopen() is closed</p> </blockquote> <p>So I would just use fclose(), which also closes the underlying file descriptor. I don't know whether shutdown() is needed, either.</p> http://stackoverflow.com/questions/107616/xml-rpc-best-way-to-handle-64-bit-values/108032#108032 6 Answer by tsg for XML-RPC: best way to handle 64-bit values? tsg 2008-09-20T12:29:16Z 2008-09-20T12:29:16Z <p>Some libraries support 64 bits extensions, indeed, but there doesn't seem to be a standard. <a href="http://xmlrpc-c.sourceforge.net/" rel="nofollow">xmlrpc-c</a>, for example, has a so called i8 but it doesn't work with python (at least not by default).</p> <p>I would recommend to either:</p> <ul> <li>Convert the integer to string by hand and send it as such. XMLRPC will convert it to string anyway, so I would say this is reasonable.</li> <li>Break it in two 32 bits integers and send it as such.</li> </ul> http://stackoverflow.com/questions/106419/whats-a-good-source-code-search-engine/106441#106441 2 Answer by tsg for What's a good source code search engine? tsg 2008-09-19T23:44:35Z 2008-09-19T23:44:35Z <p><a href="http://sourceforge.net/projects/lxr" rel="nofollow">Lxr</a> works great on big code bases, as proved with the <a href="http://lxr.linux.no/" rel="nofollow">linux kernel</a>. I think it's only for C (you didn't specify the languages used).</p> http://stackoverflow.com/questions/106112/popup-window-similar-to-modal-window/106265#106265 0 Answer by tsg for Popup Window similar to Modal Window tsg 2008-09-19T22:55:55Z 2008-09-19T22:55:55Z <p>You could use a fake window built via javascript. Several widget libraries have support for this. For example, see <a href="http://extjs.com/deploy/dev/examples/#sample-3" rel="nofollow">ExtJS</a>, which also supports modal windows but it might be overkill for your application. For jQuerry, browse through the <a href="http://plugins.jquery.com/project/Plugins/category/43" rel="nofollow">plugins</a>, like <a href="http://www.ericmmartin.com/simplemodal/" rel="nofollow">this one</a></p> http://stackoverflow.com/questions/90181/width-issue-with-ext-panel-bbar-in-ie-6/103756#103756 1 Answer by tsg for Width issue with Ext.Panel bbar in IE 6 tsg 2008-09-19T17:09:05Z 2008-09-19T17:09:05Z <p>The problem comes from the custom bodyStyle padding. It makes the panel content larger, but not the toolbar.</p> <p>One possible solution is to further nest an Ext panel, like:</p> <pre><code> var main = new Ext.Panel({ renderTo: 'content', width: 500, items: { bodyStyle: 'padding: 1em;', border: false, html: "Now alignment is fine." }, bbar: [ "-&gt;", {id: "continue", text: 'Continue'} ] }); </code></pre> <p>The border: false is needed to avoid double bordering.</p> http://stackoverflow.com/questions/1468443/per-thread-cpu-statistics-in-linux/1468511#1468511 Comment by tsg on Per thread CPU statistics in Linux tsg 2009-09-23T21:18:04Z 2009-09-23T21:18:04Z Strange, I have it on Debian testing. It's from package manpages-dev version 3.22-1. http://stackoverflow.com/questions/1343666/is-there-a-fileio-in-python/1343676#1343676 Comment by tsg on Is there a FileIO in Python? tsg 2009-08-27T20:54:03Z 2009-08-27T20:54:03Z The file object is documented here: <a href="http://docs.python.org/library/stdtypes.html#bltin-file-objects" rel="nofollow">docs.python.org/library/&hellip;</a> http://stackoverflow.com/questions/1238682/how-to-detect-which-mutex-gives-largest-amount-of-time-to-the-os/1238699#1238699 Comment by tsg on How to detect which mutex gives largest amount of time to the OS? tsg 2009-08-06T13:10:09Z 2009-08-06T13:10:09Z Can you suggest an appropriate profiler for this task? I assume that's what OP was really asking for, as well. Oprofile and callgrind, for example, are probably not helpful to measure this kind of stuff. Correct if I'm wrong. The intel and amd profilers might be better, but I never tried them. So that's why I am curious about the question as well. http://stackoverflow.com/questions/1236133/shared-objects-within-a-struct-between-a-calling-program-and-library-in-c/1236212#1236212 Comment by tsg on shared objects within a struct: between a calling program and library (in c) tsg 2009-08-06T00:13:46Z 2009-08-06T00:13:46Z I edited my answer in response, so I can write more :-). In short, you might want to consider reference counting. http://stackoverflow.com/questions/1227037/substitutions-inside-links-in-rest-sphinx/1232671#1232671 Comment by tsg on Substitutions inside links in reST / Sphinx tsg 2009-08-05T13:58:37Z 2009-08-05T13:58:37Z @martin: cool, we have a nice sample now. http://stackoverflow.com/questions/1232249/setting-tcp-retransmission-timeout-in-c Comment by tsg on Setting TCP Retransmission Timeout in C tsg 2009-08-05T10:36:02Z 2009-08-05T10:36:02Z What is the operating system? The mechanism likely varies between OS-es. http://stackoverflow.com/questions/1223539/compound-boolean-expressions-in-c-php-and-variable-assignment/1223558#1223558 Comment by tsg on Compound boolean expressions in C/PHP and variable assignment tsg 2009-08-03T17:41:09Z 2009-08-03T17:41:09Z No, that's not it. If it is in the same thread, any sequence of operations has a well defined behavior. http://stackoverflow.com/questions/1223539/compound-boolean-expressions-in-c-php-and-variable-assignment/1223562#1223562 Comment by tsg on Compound boolean expressions in C/PHP and variable assignment tsg 2009-08-03T17:36:58Z 2009-08-03T17:36:58Z +1. Same thing happened to the C code sample. If you put i += 1 in brackets, it does what OP expected. http://stackoverflow.com/questions/1221736/c-bus-error-using-different-compilation-arguments/1221746#1221746 Comment by tsg on C: Bus Error using different compilation arguments tsg 2009-08-03T11:22:09Z 2009-08-03T11:22:09Z That's not really the problem, the pointers are malloc'ed, aren't they? Indeed, if they were implicitly zeroed this would have worked because the termination condition would work, but the logic is broken if you ask me. http://stackoverflow.com/questions/1212255/what-is-the-best-way-to-do-a-search-in-a-large-file/1212326#1212326 Comment by tsg on What is the best way to do a search in a large file? tsg 2009-07-31T13:01:17Z 2009-07-31T13:01:17Z +1 for using mmap. It should just be noted that you will still need to mmap in blocks, on 32 bits machines, because the address space is not enough. http://stackoverflow.com/questions/1192632/how-to-convert-restructuredtext-to-plain-text/1192964#1192964 Comment by tsg on How to convert reStructuredText to plain text tsg 2009-07-30T13:28:40Z 2009-07-30T13:28:40Z I don't know of any documentation regarding this, either. You can look in cmdline.py from the Sphinx source code for an example. Seems doable, if you really want that. http://stackoverflow.com/questions/943826/how-to-simulate-exceptions-in-c-with-goto/943871#943871 Comment by tsg on How to simulate exceptions in C with goto? tsg 2009-06-04T12:32:08Z 2009-06-04T12:32:08Z @sharth: good point, thanks. I added the loop to the answer.