User Jouni K. Seppänen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T10:23:40Zhttp://stackoverflow.com/feeds/user/26575http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1698376/what-tools-can-be-used-to-produce-beautiful-documentation-for-a-python-project/1735472#17354720Answer by Jouni K. Seppänen for What tools can be used to produce beautiful documentation for a Python project?Jouni K. Seppänen2009-11-14T20:23:41Z2009-11-14T20:23:41Z<p>Mark Pilgrim is writing Dive into Python 3 in <a href="http://diveintomark.org/archives/2009/03/27/dive-into-history-2009-edition" rel="nofollow">straight HTML</a>.</p>
http://stackoverflow.com/questions/1574303/what-statistics-can-be-maintained-for-a-set-of-numerical-data-without-iterating/1577710#15777100Answer by Jouni K. Seppänen for What statistics can be maintained for a set of numerical data without iterating?Jouni K. Seppänen2009-10-16T12:15:04Z2009-10-16T12:15:04Z<p>It does sound (even after your 2nd edit) that you are describing on-line algorithms, with the additional requirement that you want to allow "delete" operations. An example of this are the "sketch algorithms" used for <a href="http://cacm.acm.org/magazines/2009/10/42481-finding-the-frequent-items-in-streams-of-data/fulltext" rel="nofollow" title="A CACM article (must subscribe or work at a subscribing university to read the full text)">finding frequent items in a stream</a>.</p>
http://stackoverflow.com/questions/1574088/plotting-time-in-python-with-matplotlib/1577560#15775601Answer by Jouni K. Seppänen for plotting time in python with matplotlibJouni K. Seppänen2009-10-16T11:38:19Z2009-10-16T11:38:19Z<p>Look at some examples:</p>
<ul>
<li><a href="http://matplotlib.sourceforge.net/examples/pylab%5Fexamples/date%5Fdemo1.html" rel="nofollow">date_demo1</a></li>
<li><a href="http://matplotlib.sourceforge.net/examples/pylab%5Fexamples/date%5Fdemo2.html" rel="nofollow">date_demo2</a></li>
</ul>
<p>To make it only show times and not dates, pass a suitable strftime-like spec to <a href="http://matplotlib.sourceforge.net/api/dates%5Fapi.html?highlight=dateformatter#matplotlib.dates.DateFormatter" rel="nofollow">DateFormatter</a>.</p>
http://stackoverflow.com/questions/1544159/clever-way-to-estimate-url-clicks-per-hour-without-logging-every-click/1547199#15471990Answer by Jouni K. Seppänen for Clever way to estimate URL clicks per hour without logging every click ?Jouni K. Seppänen2009-10-10T06:18:12Z2009-10-10T06:18:12Z<p>This may not be a practical solution, but since you asked for a "clever" way, <a href="http://portal.acm.org/citation.cfm?doid=545381.545466" rel="nofollow">here</a> is some academic research on a question that is not exactly your problem but could probably be adapted. Some papers in the "Cited by" list might be even closer. </p>
http://stackoverflow.com/questions/1475799/octave-colorbar-and-units/1476197#14761971Answer by Jouni K. Seppänen for Octave colorbar and unitsJouni K. Seppänen2009-09-25T08:54:57Z2009-09-26T11:57:38Z<p>The matplotlib answer (using pylab) is</p>
<pre><code>imshow(random((20,20)))
colorbar(format='%.2f V/nm')
</code></pre>
<p>In Octave it seems that the following works (but I'm no Octave expert so maybe there's a better way):</p>
<pre><code>c=colorbar();
labels = {};
for v=get(c,'ytick'), labels{end+1} = sprintf('%.2f V/nm',v); end
set(c,'yticklabel',labels);
</code></pre>
http://stackoverflow.com/questions/1429907/workflow-for-statistical-analysis-and-report-writing/1431016#14310160Answer by Jouni K. Seppänen for Workflow for statistical analysis and report writingJouni K. Seppänen2009-09-16T04:53:55Z2009-09-16T04:53:55Z<p>At a more "meta" level, you might be interested in the <a href="http://www.crisp-dm.org" rel="nofollow">CRISP-DM</a> process model.</p>
http://stackoverflow.com/questions/1311991/latex-avoid-new-paragraph/1423160#14231601Answer by Jouni K. Seppänen for LaTeX: Avoid new paragraph?Jouni K. Seppänen2009-09-14T18:23:08Z2009-09-14T18:23:08Z<p>Set <code>\endlinechar=-1</code> to make empty lines have no effect. You will need to use <code>\par</code> to separate paragraphs, which I think is a bigger irritation than having to type <code>%</code> on separator lines, but that's what you're asking for.</p>
http://stackoverflow.com/questions/1327270/how-to-represent-class-names-in-latex/1423034#14230342Answer by Jouni K. Seppänen for How to represent class names in LaTeX?Jouni K. Seppänen2009-09-14T18:02:10Z2009-09-14T18:02:10Z<p>You could use the <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=setURL" rel="nofollow">url</a> package, which despite its name can be used to typeset any kind of text in a typewriter font, allowing for linebreaks.</p>
http://stackoverflow.com/questions/1342670/using-regexp-to-replace-math-expression-inside-latex-file/1423018#14230180Answer by Jouni K. Seppänen for Using Regexp to replace math expression inside Latex FileJouni K. Seppänen2009-09-14T17:59:51Z2009-09-14T17:59:51Z<p>To really solve this, you need to write a parser. Parsing general TeX is a task that might euphemistically be called nontrivial (try running <a href="http://www.maths.abdn.ac.uk/tex/latex%5Fcourse/obscure.txt" rel="nofollow">this file</a> through TeX), but for typical LaTeX math expressions you could start from <a href="http://matplotlib.sourceforge.net/api/mathtext%5Fapi.html#matplotlib.mathtext.MathTextParser" rel="nofollow">matplotlib's parser</a> and hack it to do the replacements you want. It still won't be trivial but shouldn't be insurmountable either.</p>
http://stackoverflow.com/questions/1421542/find-file-with-a-hint/1422784#14227840Answer by Jouni K. Seppänen for Find-file with a hint?Jouni K. Seppänen2009-09-14T17:02:48Z2009-09-14T17:02:48Z<p>Set up <a href="http://www.emacswiki.org/emacs/RecentFiles" rel="nofollow">recentf</a>, and when you want to open a file on the server, go through the recentf menu; if the exact file you want is not there, just open something else in the same directory, then type <code>C-x C-f</code> and the directory should be filled in for you.</p>
http://stackoverflow.com/questions/1418980/emacs-ftp-not-working-for-certain-sites-in-ubuntu/1419834#14198341Answer by Jouni K. Seppänen for Emacs FTP not working for certain sites in UbuntuJouni K. Seppänen2009-09-14T05:35:57Z2009-09-14T05:35:57Z<p>You could set <code>debug-on-quit</code> and type <code>C-g</code> when Emacs gets stuck to see what's happening at elisp level, and then see if there are any settings you can toggle for your particular situation. But if you can access the host with ssh, you could just skip the debugging and start using <a href="http://www.emacswiki.org/emacs/TrampMode" rel="nofollow">Tramp</a>.</p>
http://stackoverflow.com/questions/1408897/connecting-gnu-r-to-postgresql/1410038#14100381Answer by Jouni K. Seppänen for Connecting GNU R to PostgreSQLJouni K. Seppänen2009-09-11T09:51:38Z2009-09-11T09:51:38Z<p>Maybe you need to run <code>require(RPostgreSQL)</code> before you can use <code>dbConnect</code>?</p>
http://stackoverflow.com/questions/1403560/whats-the-best-trick-to-speed-up-a-monte-carlo-simulation/1403677#14036776Answer by Jouni K. Seppänen for What's the best trick to speed up a monte carlo simulation?Jouni K. Seppänen2009-09-10T06:32:52Z2009-09-10T06:32:52Z<p>Go read Dirk Eddelbuettel's <a href="http://dirk.eddelbuettel.com/presentations.html" rel="nofollow">talks</a> and <a href="http://www.jstatsoft.org/v31/i01" rel="nofollow">parallel computing survey</a>.</p>
http://stackoverflow.com/questions/1394227/how-to-center-a-string-in-elisp/1399253#13992530Answer by Jouni K. Seppänen for How to center a string in elisp?Jouni K. Seppänen2009-09-09T11:58:34Z2009-09-09T11:58:34Z<p>There's a <code>center-line</code>, which works in a buffer (and uses the buffer's value of <code>fill-column</code> as the line length), so if your goal is to produce a nicely formatted file, you could do something like</p>
<pre><code>(defun insert-centered (x)
(insert "\n" x)
(center-line)
(insert "\n"))
</code></pre>
http://stackoverflow.com/questions/1392868/using-rspython-in-macosx/1393805#13938051Answer by Jouni K. Seppänen for using RSPython in MacOSXJouni K. Seppänen2009-09-08T12:44:32Z2009-09-08T12:44:32Z<p>To debug this, simply unpack the tar file yourself (<code>tar xzvf RSPython_0.7-1.tar.gz</code>) and run <code>./configure</code> in the directory created. You should get a config.log file that you can examine.</p>
http://stackoverflow.com/questions/1328903/what-does-eg-do-in-r/1390408#13904085Answer by Jouni K. Seppänen for What does eg %+% do? in RJouni K. Seppänen2009-09-07T18:00:09Z2009-09-07T18:00:09Z<p>The ultimate reason is that if you do both general-purpose programming and numerical computations, it is useful to have a large complement of binary operators available. For example, if you store numbers in two-dimensional arrays, you may want to multiply the arrays elementwise, or you may want to compute the matrix product of two arrays. In Matlab these two operators are <code>.*</code> and <code>*</code>; in R they are <code>*</code> and <code>%*%</code>. Python has <a href="http://www.python.org/dev/peps/pep-0211/" rel="nofollow">resisted</a> <a href="http://www.python.org/dev/peps/pep-0225/" rel="nofollow">attempts</a> to add new operators, and so <a href="http://numpy.scipy.org/" rel="nofollow">numpy</a> differentiates between the two kinds of product by having two classes: the array class is multiplied elementwise, the matrix class is multiplied in the linear-algebra sense.</p>
<p>Another example from Python is that for lists, plus means concatenation: <code>[1,2,3]+[4,5] == [1,2,3,4,5]</code>. But for numpy arrays, plus means elementwise addition: <code>array([1,2]) + array([4,5]) == array([5,7])</code>. If your code needs to do both, you have to convert between classes or use function notation, which can lead to cumbersome-looking code, especially where mathematics is involved.</p>
<p>So it would sometimes be convenient to have more operators available for use, and you might not know in advance what sorts of operators a particular application calls for. Therefore, the implementors of R have chosen to treat as operators anything named like <code>%foo%</code>, and several examples exist: <code>%in%</code> is set membership, <code>%x%</code> is Kronecker product, <code>%o%</code> is outer product. For an example of a language that has taken this to the extreme, see <a href="http://projectfortress.sun.com" rel="nofollow">Fortress</a> (section 16 of the specification starts with the rules for operator names).</p>
<p>In the blog post you mentioned, the author is using the <a href="http://had.co.nz/ggplot2/" rel="nofollow">ggplot2</a> graphing package, which defines <code>%+%</code> to mean some kind of combination of two plot elements. Really it seems to add a method to the bare <code>+</code> (which is a generic function so you can define what it means for user-defined objects), but it also defines <code>%+%</code> so that you can use the ggplot2 meaning of <code>+</code> (whatever it is) for other objects. If you install ggplot2, type <code>require(ggplot2)</code> and <code>?`%+%`</code> to see the documentation of that operator, and <code>methods(`+`)</code> to see that a new definition has been added to <code>+</code>.</p>
http://stackoverflow.com/questions/1388450/giving-graphs-a-subtitle-in-matplotlib/1390138#13901380Answer by Jouni K. Seppänen for Giving graphs a subtitle in matplotlibJouni K. Seppänen2009-09-07T16:38:49Z2009-09-07T16:38:49Z<p>I don't think there is anything built-in, but you can do it by leaving more space above your axes and using <a href="http://matplotlib.sourceforge.net/api/pyplot%5Fapi.html#matplotlib.pyplot.figtext" rel="nofollow"><code>figtext</code></a>:</p>
<pre><code>axes([.1,.1,.8,.7])
figtext(.5,.9,'Foo Bar', fontsize=18, ha='center')
figtext(.5,.85,'Lorem ipsum dolor sit amet, consectetur adipiscing elit',fontsize=10,ha='center')
</code></pre>
<p><code>ha</code> is short for <a href="http://matplotlib.sourceforge.net/api/artist%5Fapi.html#matplotlib.text.Text.set%5Fhorizontalalignment" rel="nofollow"><code>horizontalalignment</code></a>. </p>
http://stackoverflow.com/questions/1377003/how-can-i-compute-the-probability-at-a-point-given-a-normal-distribution-in-perl/1383070#13830701Answer by Jouni K. Seppänen for How can I compute the probability at a point given a normal distribution in Perl?Jouni K. Seppänen2009-09-05T11:13:00Z2009-09-07T14:09:07Z<p>As others have pointed out, you probably want the cumulative distribution function. This can be obtained via the <a href="http://en.wikipedia.org/wiki/Error%5Ffunction" rel="nofollow">error function</a> (shifted by the mean and scaled by the standard deviation of your normal distribution), which exists in the standard math library and is made accessible in Perl by <a href="http://search.cpan.org/perldoc?Math%3A%3ALibm" rel="nofollow">Math::Libm</a>.</p>
http://stackoverflow.com/questions/1381741/converting-latex-code-to-images-or-other-displayble-format-with-python/1382986#13829861Answer by Jouni K. Seppänen for Converting latex code to Images (or other displayble format) with PythonJouni K. Seppänen2009-09-05T10:37:59Z2009-09-05T10:37:59Z<p>Take a look at <a href="http://code.google.com/p/mathtex/" rel="nofollow">mathtex</a>.</p>
http://stackoverflow.com/questions/1306785/best-way-to-statistically-detect-anomalies-in-data/1380879#13808790Answer by Jouni K. Seppänen for best way to statistically detect anomalies in dataJouni K. Seppänen2009-09-04T18:40:19Z2009-09-04T18:40:19Z<p>This question is impossible to answer without knowing much more about the particular data you have. For an overview of what kinds of approaches exist, see <a href="http://www-users.cs.umn.edu/~kumar/papers/anomaly-survey.php" rel="nofollow">Anomaly Detection: A Survey</a> by Chandola, Banerjee, and Kumar.</p>
http://stackoverflow.com/questions/1274927/algorithm-to-match-time-dependent-1d-signals/1380833#13808330Answer by Jouni K. Seppänen for Algorithm to Match Time Dependent (1D) SignalsJouni K. Seppänen2009-09-04T18:30:54Z2009-09-04T18:30:54Z<p><a href="http://en.wikipedia.org/wiki/Dynamic%5Ftime%5Fwarping" rel="nofollow">Dynamic Time Warping</a> is an approach you can use if the signals should be matched by speeding up and slowing down time at different positions.</p>
http://stackoverflow.com/questions/1304469/understanding-ukkonens-algorithm-for-suffix-trees/1351687#13516871Answer by Jouni K. Seppänen for Understanding Ukkonen's algorithm for suffix treesJouni K. Seppänen2009-08-29T15:18:45Z2009-08-29T15:18:45Z<p>Find a copy of Gusfield's <a href="http://books.google.com/books?id=STGlsyqtjYMC&lpg=PP1&ots=kiQ7zxM%5Fr8&dq=gusfield%20algorithms%20strings&pg=PP1#v=onepage&q=&f=false" rel="nofollow">string algorithms textbook</a>. It's got the best exposition of the suffix tree construction I've seen. The linearity is a surprising consequence of a number of optimizations of the high-level algorithm.</p>
http://stackoverflow.com/questions/1349202/show-hide-a-plots-legend/1351678#13516781Answer by Jouni K. Seppänen for Show/hide a plot's legend.Jouni K. Seppänen2009-08-29T15:15:00Z2009-08-29T15:15:00Z<p>Here's something you can try on the command line:</p>
<pre><code>plot([3,1,4,1],label='foo')
lgd=legend()
# when you want it to be invisible:
lgd.set_visible(False)
draw()
# when you want it to be visible:
lgd.set_visible(True)
draw()
</code></pre>
<p>In a GUI program it's best to avoid pyplot and use the object-oriented API, i.e., <code>ax.legend</code> and <code>canvas.draw</code>.</p>
http://stackoverflow.com/questions/1249182/python-leaking-memory-while-using-pyqt-and-matplotlib/1253972#12539720Answer by Jouni K. Seppänen for Python leaking memory while using PyQt and matplotlibJouni K. Seppänen2009-08-10T09:44:18Z2009-08-10T09:44:18Z<p>The pyplot interface is meant for easy interactive use, but for embedding in an application the object-oriented API is better. For example, pyplot keeps track of all figures you have created. Your <code>plot.close(figure)</code> <em>should</em> get rid of them, but maybe it doesn't get executed -- try putting it inside <code>finally</code> or reusing the same figure object.</p>
<p>See <a href="http://matplotlib.sourceforge.net/examples/user%5Finterfaces/embedding%5Fin%5Fqt4.html" rel="nofollow">this example</a> of embedding matplotlib in a PyQt4 application using the object-oriented API. It's more work, but since everything is explicit, you shouldn't get memory leaks from the behind-the-scenes automation that pyplot does.</p>
http://stackoverflow.com/questions/1228315/how-to-scale-matplotlib-subplot-heights-individually/1241093#12410931Answer by Jouni K. Seppänen for How to scale matplotlib subplot heights individuallyJouni K. Seppänen2009-08-06T20:06:59Z2009-08-06T20:06:59Z<p>Don't use <a href="http://matplotlib.sourceforge.net/api/pyplot%5Fapi.html#matplotlib.pyplot.subplot" rel="nofollow">subplot</a> but <a href="http://matplotlib.sourceforge.net/api/pyplot%5Fapi.html#matplotlib.pyplot.axes" rel="nofollow">axes</a> to create your subplots - the latter allows arbitrary positioning of the subplot.</p>
http://stackoverflow.com/questions/1221108/barchart-with-vertical-labels-in-python-matplotlib/1241078#12410780Answer by Jouni K. Seppänen for Barchart with vertical labels in python/matplotlibJouni K. Seppänen2009-08-06T20:03:58Z2009-08-06T20:03:58Z<p>I would suggest looking at <a href="http://matplotlib.sourceforge.net/gallery.html" rel="nofollow">the matplotlib gallery</a>. At least two of the examples seem to be relevant:</p>
<ul>
<li><a href="http://matplotlib.sourceforge.net/examples/pylab%5Fexamples/text%5Frotation.html" rel="nofollow">text_rotation.py</a> for understanding how text layout works</li>
<li><a href="http://matplotlib.sourceforge.net/examples/pylab%5Fexamples/barchart%5Fdemo2.html" rel="nofollow">barchart_demo2.py</a>, an example of a bar chart with somewhat more complicated layout than the most basic example.</li>
</ul>
http://stackoverflow.com/questions/900273/what-would-a-pnp-proof-be-like-hypothetically/900832#90083212Answer by Jouni K. Seppänen for What would a P=NP proof be like, hypothetically?Jouni K. Seppänen2009-05-23T04:13:47Z2009-08-03T10:39:47Z<p>There are some <a href="http://en.wikipedia.org/wiki/P%5F%3D%5FNP%5Fproblem#Results%5Fabout%5Fdifficulty%5Fof%5Fproof" rel="nofollow">meta-results</a> about what a P=NP or P≠NP proof can <em>not</em> look like. The details are quite technical, but it is known that the proof cannot be</p>
<ul>
<li><p><a href="http://en.wikipedia.org/wiki/Oracle%5Fmachine#Complexity%5Fclasses%5Fof%5Foracle%5Fmachines" rel="nofollow"><em>relativizing</em></a>, which kind of means that the proof must make use of the exact definition of Turing machine used, because with some modifications ("oracles", like very powerful CISC instructions added to the instruction set) P=NP, and with some other modifications, P≠NP. See also <a href="http://terrytao.wordpress.com/2009/08/01/pnp-relativisation-and-multiple-choice-exams/" rel="nofollow">this blog post</a> for a nice explanation of relativization.</p></li>
<li><p><a href="http://en.wikipedia.org/wiki/Natural%5Fproof" rel="nofollow"><em>natural</em></a>, a property of several classic <a href="http://en.wikipedia.org/wiki/Circuit%5Fcomplexity" rel="nofollow">circuit complexity</a> proofs,</p></li>
<li><p>or <a href="http://scottaaronson.com/blog/?p=272" rel="nofollow"><em>algebrizing</em></a>, a generalization of relativizing.</p></li>
</ul>
http://stackoverflow.com/questions/1216602/how-are-programming-related-papers-published/1216646#12166462Answer by Jouni K. Seppänen for How are programming-related papers published?Jouni K. Seppänen2009-08-01T13:54:02Z2009-08-01T14:03:12Z<p><a href="http://www.acm.org/publications" rel="nofollow">ACM</a> and <a href="http://www.ieee.org/web/publications/home/index.html" rel="nofollow">IEEE</a> are two of the most important publishers of computing-related journals and conference proceedings. It would probably help to work with someone who has experience in academic publishing, both to select the most appropriate forum and to make sure the paper gets written in the right kind of style.</p>
<p>Regarding how difficult it is to get published: if you have a brilliant idea and can write it up in a basically readable article, you will get it published. But usually you will have something that is perhaps interesting but not really exceptional, and then it will matter a lot to find the right forum and to write up the paper in a way that the reviewers will like.</p>
http://stackoverflow.com/questions/1153960/inverted-beta-in-mysql/1163951#11639511Answer by Jouni K. Seppänen for Inverted beta in MySQLJouni K. Seppänen2009-07-22T08:53:14Z2009-07-22T08:53:14Z<p>Look at the <a href="http://www.netlib.org/cephes/" rel="nofollow">cephes</a> library, specifically <code>cprob.tgz</code>. Be warned that the licensing situation of that code seems to be unclear. The source code just says "free", which was a problem for <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=287507" rel="nofollow">Debian</a> so apparently they got the author to relicense it under the GPL for them.</p>
http://stackoverflow.com/questions/1072364/how-to-set-cscope-database-set-init-directory/1073297#10732970Answer by Jouni K. Seppänen for How to set Cscope->database-> Set init directoryJouni K. Seppänen2009-07-02T09:08:11Z2009-07-02T09:08:11Z<p>If you're using <a href="http://www.mail-archive.com/gnu-emacs-sources@gnu.org/msg00205.html" rel="nofollow">this cscope mode</a> it looks like you could do <code>M-x customize-variable RET cscope-last-directory RET</code>, set the variable to your favorite directory, and save the value. If not, you'll have to be more specific about how you are using cscope with Emacs.</p>
http://stackoverflow.com/questions/1677571/matplotlib-multiple-figure-arrangement/1685423#1685423Comment by Jouni K. Seppänen on matplotlib multiple figure arrangementJouni K. Seppänen2009-11-14T16:51:30Z2009-11-14T16:51:30ZIf it's the right answer for you, please mark it accepted.http://stackoverflow.com/questions/1586861/any-xml-based-alternative-of-texComment by Jouni K. Seppänen on Any XML based alternative of TEX?Jouni K. Seppänen2009-10-19T06:29:08Z2009-10-19T06:29:08ZNaggum was an outspoken opponent of XML, but he also listed TeX among the technologies boycotted by his consulting company: <a href="http://web.archive.org/web/20000829131954/www.naggum.no/profile.html" rel="nofollow">web.archive.org/web/20000829131954/…</a>http://stackoverflow.com/questions/1475799/octave-colorbar-and-units/1476197#1476197Comment by Jouni K. Seppänen on Octave colorbar and unitsJouni K. Seppänen2009-09-28T18:06:58Z2009-09-28T18:06:58ZI have version 3.2.2 so it could well be a version problem. Does get(c,'yticklabel') return anything on your version? Can you use set(c,'yticklabel') to make tick labels by hand?http://stackoverflow.com/questions/1481337/latex-kerning-between-footnote-marks-and-punctuation-marks/1481365#1481365Comment by Jouni K. Seppänen on Latex: kerning between footnote marks and punctuation marks.Jouni K. Seppänen2009-09-26T15:49:35Z2009-09-26T15:49:35ZNo, the reason \! makes things italic is that it is a math-mode command, and TeX thinks you forgot a $ and ever so helpfully inserts one for you. The very commonly used amsmath package redefines \! to work also in text mode.http://stackoverflow.com/questions/1465726/latex-how-do-i-know-to-stop-building-programatically/1465794#1465794Comment by Jouni K. Seppänen on LaTeX: How do I know to stop building (programatically)?Jouni K. Seppänen2009-09-23T17:23:34Z2009-09-23T17:23:34ZAlso, it is possible it will never converge: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=rerun" rel="nofollow">tex.ac.uk/cgi-bin/texfaq2html?label=rerun/…</a>http://stackoverflow.com/questions/1459454/latex-sequence/1459479#1459479Comment by Jouni K. Seppänen on Latex sequence \/ ?Jouni K. Seppänen2009-09-22T12:30:22Z2009-09-22T12:30:22ZYes, \emph does italic correction automatically.http://stackoverflow.com/questions/1442559/call-latex-on-a-named-pipe-fifo/1442621#1442621Comment by Jouni K. Seppänen on Call LaTeX on a named pipe (fifo)?Jouni K. Seppänen2009-09-18T15:50:52Z2009-09-18T15:50:52ZDoes replacing the blank line by a line containing only \relax work better? I seem to recall that some TeX introduction recommended that when you are entering commands interactively.http://stackoverflow.com/questions/1311991/latex-avoid-new-paragraphComment by Jouni K. Seppänen on LaTeX: Avoid new paragraph?Jouni K. Seppänen2009-09-17T13:58:52Z2009-09-17T13:58:52ZThere's \unskip to remove the last horizontal space, but the paragraph separator is a whole different story.http://stackoverflow.com/questions/1311991/latex-avoid-new-paragraph/1423160#1423160Comment by Jouni K. Seppänen on LaTeX: Avoid new paragraph?Jouni K. Seppänen2009-09-17T13:57:22Z2009-09-17T13:57:22ZI don't think that's going to be easy. When TeX has already taken the last blank line as a paragraph separator, it has finalized the previous paragraph and added it to the list of boxes for the page, and possibly decided that the page was full and called the output routine for the page. I hesitate to say that undoing this is an impossible request given the tricks that TeX wizards can do, but I do think you need to find someone intimately familiar with TeX to help you with this.http://stackoverflow.com/questions/1092243/programmatic-control-of-python-optimization/1097256#1097256Comment by Jouni K. Seppänen on Programmatic control of python optimization ?Jouni K. Seppänen2009-09-13T06:27:52Z2009-09-13T06:27:52ZBut -OO removes all docstrings, which can lead to surprises. Matplotlib uses programmatically constructed docstrings, e.g. %s escapes in the docstring that are substituted with f.__doc__ = f.__doc__ % kwdict, which causes an error when running with -OO.http://stackoverflow.com/questions/1401102/python-with-matplotlib-drawing-multiple-figures-in-parallel/1401191#1401191Comment by Jouni K. Seppänen on Python with matplotlib - drawing multiple figures in parallelJouni K. Seppänen2009-09-10T06:21:35Z2009-09-10T06:21:35ZThat's the pylab "state machine" style interface. A better option for serious software development is to use the object-oriented way where you have figure objects containing axes objects whose plot methods you call. But the pylab approach is much simpler for interactive command-line usage.http://stackoverflow.com/questions/1400213/3d-least-squares-planeComment by Jouni K. Seppänen on 3D Least Squares PlaneJouni K. Seppänen2009-09-09T15:19:08Z2009-09-09T15:19:08ZYou should define what exactly you mean by "least squares". See e.g. <a href="http://en.wikipedia.org/wiki/Least_squares" rel="nofollow">en.wikipedia.org/wiki/Least_squares</a> for various ways of defining it.http://stackoverflow.com/questions/1091751/what-is-your-recommended-emacs-lispComment by Jouni K. Seppänen on What is your recommended Emacs Lisp?Jouni K. Seppänen2009-07-08T12:10:34Z2009-07-08T12:10:34ZAlso www.emacswiki.org has lots of code.http://stackoverflow.com/questions/1095172/emacs-tramp-plinkComment by Jouni K. Seppänen on emacs + tramp + plinkJouni K. Seppänen2009-07-08T12:04:01Z2009-07-08T12:04:01ZIt might help to explain what you have tried already, and what sort of problems you are having when following the documentation you mentioned. E.g. is there something specific about EC2 that is significantly different from other environments?http://stackoverflow.com/questions/1072364/how-to-set-cscope-database-set-init-directory/1073297#1073297Comment by Jouni K. Seppänen on How to set Cscope->database-> Set init directoryJouni K. Seppänen2009-07-03T08:38:29Z2009-07-03T08:38:29ZWhere did you get the Cscope mode you are using with Emacs? If it came with Emacs, which version of Emacs do you have?