User Jon Ericson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:09:10Zhttp://stackoverflow.com/feeds/user/1438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice23How do you read a file line by line in your language of choice?Jon Ericson2009-03-24T18:46:05Z2009-12-11T20:19:36Z
<p>I got inspired to try out Haskell again based on a <a href="http://stackoverflow.com/questions/644246/how-do-you-create-a-function-that-returns-a-function-in-your-language-of-choice/644270#644270">recent answer</a>. My big block is that reading a file line by line (a task made simple in languages such as Perl) seems complicated in a functional language. How do you read a file line by line in your favorite language?</p>
<p><hr /></p>
<p>So that we are comparing apples to other types of apples, please write a program that numbers the lines of the input file. So if your input is:</p>
<pre><code>Line the first.
Next line.
End of communication.
</code></pre>
<p>The output would look like:</p>
<pre><code>1 Line the first.
2 Next line.
3 End of communication.
</code></pre>
<p>I will post my Haskell program as an example.</p>
<p><hr /></p>
<p><a href="http://stackoverflow.com/users/74900/ken">Ken</a> commented that this question does not specify how errors should be handled. I'm not overly concerned about it because:</p>
<ol>
<li><p>Most answers did the obvious thing and read from <code>stdin</code> and wrote to <code>stdout</code>. The nice thing is that it puts the onus on the user to redirect those streams the way they want. So if <code>stdin</code> is redirected from a non-existent file, the shell will take care of reporting the error, for instance.</p></li>
<li><p>The question is more aimed at how a language does IO than how it handles exceptions.</p></li>
</ol>
<p>But if necessary error handling is missing in an answer, feel free to either edit the code to fix it or make a note in the comments.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function3How do I write a generic memoize function?Jon Ericson2008-09-24T20:48:41Z2009-10-29T11:56:22Z
<p>I'm writing a function to find <a href="http://projecteuler.net/index.php?section=problems&id=12" rel="nofollow">triangle numbers</a> and the natural way to write it is recursively:</p>
<pre><code>function triangle (x)
if x == 0 then return 0 end
return x+triangle(x-1)
end
</code></pre>
<p>But attempting to calculate the first 100,000 triangle numbers fails with a stack overflow after a while. This is an ideal function to <a href="http://perl.plover.com/Memoize/" rel="nofollow">memoize</a>, but I want a solution that will memoize any function I pass to it.</p>
http://stackoverflow.com/questions/12647/how-do-i-tell-if-a-variable-has-a-numeric-value-in-perl/12736#127360Answer by Jon Ericson for How do I tell if a variable has a numeric value in Perl?Jon Ericson2008-08-15T20:56:36Z2009-10-21T10:32:08Z<p>A slightly more robust regex can be found in <a href="http://search.cpan.org/dist/Regexp-Common" rel="nofollow">Regexp::Common</a>.</p>
<p>It sounds like you want to know if Perl thinks a variable is numeric. Here's a function that traps that warning:</p>
<pre><code>sub is_number{
my $n = shift;
my $ret = 1;
$SIG{"__WARN__"} = sub {$ret = 0};
eval { my $x = $n + 1 };
return $ret
}
</code></pre>
<p>Another option is to turn off the warning locally:</p>
<pre><code>{
no warnings "numeric"; # Ignore "isn't numeric" warning
... # Use a variable that might not be numeric
}
</code></pre>
<p>Note that non-numeric variables will be silently converted to 0, which is probably what you wanted anyway.</p>
http://stackoverflow.com/questions/715457/how-do-you-implement-a-dispatch-table-in-your-language-of-choice3How do you implement a dispatch table in your language of choice?Jon Ericson2009-04-03T19:53:15Z2009-10-10T20:20:34Z
<p>A <a href="http://en.wikipedia.org/wiki/Dispatch%5Ftable" rel="nofollow">dispatch table</a> is a data structure that associates an index value to an action. It's a rather elegant replacement for a switch-type statement. Most languages have support for dispatch tables, but the support ranges from do-it-yourself to built-in and hidden under a layer of syntax. How does your favorite language implement dispatch tables?</p>
<p><hr /></p>
<p>I had considered using the example from the Wikipedia page, but it's a bit contrived without being clean. Instead, I recommend implementing a dispatch table to play Rock Paper Scissors. First create a data structure that stores actions that print a rock, paper or scissors. Then demonstrate how to use the structure by making a throw or two. I will post an answer in Lua for the sake of example.</p>
<p><hr /></p>
<p>Bonus: One of great things about a dispatch table is that actions may be added dynamically. There are numerous <a href="http://www.umop.com/rps101.htm" rel="nofollow">expansions</a> of the basic RPS game, including <a href="http://www.worldrps.com/article4.html" rel="nofollow">dynamite</a>, which I remember from childhood. (Dynamite blows up rock and scissors cut wick. In our games dynamite blew up paper too.) How do you extend a dispatch table in your language?</p>
http://stackoverflow.com/questions/124455/how-do-you-pre-size-an-array-in-lua2How do you pre-size an array in Lua?Jon Ericson2008-09-23T22:59:08Z2009-09-28T15:39:02Z
<p>I've got a Lua program that seems to be slower than it ought to be. I suspect the issue is that I'm adding values to an associative array one at a time and the table has to allocate new memory each time. </p>
<p>There did seem to be a table.setn function, but it fails under Lua 5.1.3:</p>
<pre><code>stdin:1: 'setn' is obsolete
stack traceback:
[C]: in function 'setn'
stdin:1: in main chunk
[C]: ?
</code></pre>
<p>I gather from the Google searching I've done that this function was depreciated in Lua 5.1, but I can't find what (if anything) replaced the functionality.</p>
<p>Do you know how to pre-size a table in Lua?</p>
<p>Alternatively, is there some other way to avoid memory allocation when you add an object to a table?</p>
http://stackoverflow.com/questions/127771/how-do-you-pre-allocate-memory-to-a-process-in-solaris/141377#1413771Answer by Jon Ericson for How do you pre allocate memory to a process in solaris?Jon Ericson2008-09-26T19:17:43Z2009-09-28T13:39:00Z<p>From a comment:</p>
<blockquote>
<p>The memory limitations are not very severe but the memory footprint easily grows to GBs and when we have competing processes for memory, it gets very slow. I want to reserve some memory from OS so that thrashing is minimal even when too many other processes come. Jagmal </p>
</blockquote>
<p>Let's take a different tack then. The problem isn't really with your Perl script in particular. Instead, all the processes on the machine are consuming too much memory for the machine to handle as configured.</p>
<p>You can "reserve" memory, but that won't prevent thrashing. In fact, it could make the problem worse because the OS won't know if you are using the memory or just saving it for later.</p>
<p>I suspect you are suffering <a href="http://en.wikipedia.org/wiki/Tragedy%5Fof%5Fthe%5Fcommons" rel="nofollow">the tragedy of the commons</a>. Am I right that many other users are on the machine in question? If so, this is more of a social problem than a technical problem. What you need is someone (probably the System Administrator) to step in and coordinate all the processes on the machine. They should find the most extravagant memory hogs and work with their programmers to reduce the cost on system resources. Further, they ought to arrange for processes to be scheduled so that resource allocation is efficient. Finally, they may need to get more or improved hardware to handle the expected system load.</p>
http://stackoverflow.com/questions/644246/how-do-you-create-a-function-that-returns-a-function-in-your-language-of-choice48How do you create a function that returns a function in your language of choice?Jon Ericson2009-03-13T19:27:01Z2009-09-17T22:08:53Z
<p>Recently I've been learning Lua and I love how easy it is to write a function that returns a function. I know it's fairly easy in Perl as well, but I don't think I can do it in C without some heartache. How do you write a function generator in your favorite language?</p>
<p><hr /></p>
<p>So that it's easier to compare one language to another, please write a function that generates a quadratic formula:</p>
<pre><code>f(x) = ax^2 + bx + c
</code></pre>
<p>Your function should take three values (<code>a</code>, <code>b</code>, and <code>c</code>) and returns <code>f</code>. To test the function, show how to generate the quadratic formula:</p>
<pre><code>f(x) = x^2 - 79x + 1601
</code></pre>
<p>Then show how to calculate <code>f(42)</code>. I'll post my Lua result as an answer for an example.</p>
<p><hr /></p>
<p>Some additional requirements that came up:</p>
<ol>
<li><p>All of <code>a</code>, <code>b</code>, <code>c</code>, <code>x</code>, and <code>f(x)</code> should be floating point numbers.</p></li>
<li><p>The function generator should be <a href="http://en.wikipedia.org/wiki/Reentrant%5F(subroutine)" rel="nofollow">reentrant</a>. That means it should be possible to generate:</p>
<pre><code>g(x) = x^2 + x + 41
</code></pre>
<p>And then use both <code>f(x)</code> and <code>g(x)</code> in the same scope.</p></li>
</ol>
<p>Most of the answers already meet those requirements. If you see an answer that doesn't, feel free to either fix it or note the problem in a comment.</p>
http://stackoverflow.com/questions/87897/can-i-answer-a-question-multiple-times2Can I answer a question multiple times? [closed]Jon Ericson2008-09-17T21:33:00Z2009-09-14T18:57:06Z
<p>If I have two separate answers to a question, should I put both in the same post or should I post first one and then the other?</p>
<p><hr /></p>
<p>For instance:</p>
<blockquote>
<p>Q: Can I eat honey and locusts?</p>
<p>A: Both are edible and nontoxic. But you should probably eat a more balanced diet.</p>
</blockquote>
<p>Versus:</p>
<blockquote>
<p>Q: How do you make a peanut butter and jelly sandwich?</p>
<p>A1: Spread the peanut butter on one slice of bread and the jelly on another. Then mash the slices together so that the peanut butter and jelly touch.</p>
<p>A2: Spread the peanut butter on a slice of bread. Spread a layer of jelly on top of the peanut butter. Then, with the peanut butter and jelly on the inside, fold the slice of bread in half.</p>
</blockquote>
http://stackoverflow.com/questions/105122/what-do-i-do-when-my-joke-non-answer-is-accepted8What do I do when my joke non-answer is accepted? [closed]Jon Ericson2008-09-19T20:11:02Z2009-09-14T18:53:23Z
<p>It appears <a href="http://stackoverflow.com/questions/68152/basic-programming#68227">my joke non-answer</a> was accepted by the questioner for some reason. Obviously, this does a disservice to anyone who might run across the question later on. Obviously, I voted up the other, better answers, but my answer will still be nailed to the top of the answer stack.</p>
<p>My guess is that the responsible thing is to delete my dumb answer. Maybe turn it into a comment. But not everyone will be willing to do that, especially if they have received a lot of upvotes on the post. Actually, I suppose it helped my reputation to have it accepted, so the system provides an incentive to stay quiet.</p>
<p>What do you think I should do?</p>
http://stackoverflow.com/questions/559216/what-is-your-experience-with-non-recursive-make12What is your experience with non-recursive make?Jon Ericson2009-02-17T23:36:42Z2009-08-31T16:03:37Z
<p>A few years ago, I read the <a href="http://miller.emu.id.au/pmiller/books/rmch/" rel="nofollow">Recursive Make Considered Harmful</a> paper and implemented the idea in my own build process. Recently, I read another article with ideas about how to <a href="http://www.xs4all.nl/~evbergen/nonrecursive-make.html" rel="nofollow">implement non-recursive <code>make</code></a>. So I have a few data points that non-recursive <code>make</code> works for at least a few projects.</p>
<p>But I'm curious about the experiences of others. Have you tried non-recursive <code>make</code>? Did it make things better or worse? Was it worth the time?</p>
http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics19What should be included in a programmer's code of ethics?Jon Ericson2008-09-17T19:29:43Z2009-07-31T08:38:17Z
<p>Recently there was an <a href="http://stackoverflow.com/questions/81797/a-programmers-code-of-ethics">ethical question asked</a>, but I'd like some input on what might be included in a comprehensive code of ethics. I'm thinking of something along the lines of the <a href="http://en.wikipedia.org/wiki/Hippocratic_Oath" rel="nofollow">Hippocratic Oath</a> that professional software developers would hold to.</p>
<p>We are in a relatively new profession, so there's likely to be debate about what should and should not be included in an ethical code. There are published ethical codes, such as <a href="http://www.acm.org/about/code-of-ethics" rel="nofollow">ACM's</a> and <a href="http://www.gnu.org/philosophy/shouldbefree.html" rel="nofollow">GNU's</a>, but there are deep philosophical differences among programmers. Perhaps we can't find a definitive answer for how programmers should behave, but we can get some consensus on what most of us feel is right and wrong.</p>
<p>Please limit yourself to one point per answer so we can vote up or down. Ideally, the most important ethical considerations will rise to the top and less important clauses will stay at the bottom. I'd say it's fair game to "borrow" points from other published lists and get inspiration from the <a href="http://stackoverflow.com/questions/tagged/ethics">ethics tag</a>. Please cite any sources. (Inspired by <a href="http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics#86725">MagicKat's answer</a>.)</p>
http://stackoverflow.com/questions/35317/why-does-vista-complain-about-a-dead-process-when-i-use-cygwin-x11-ssh-and-how-do0Why does Vista complain about a dead process when I use Cygwin X11 ssh and how do I get it to shut up?Jon Ericson2008-08-29T21:18:41Z2009-07-29T22:45:05Z
<p>When I log into a remote machine using ssh X11 forwarding, Vista pops up a box complaining about a process that died unexpectedly. Once I dismiss the box, everything is fine. So I really don't care if some process died. How do I get Vista to shut up about it?</p>
<p><hr /></p>
<p>Specifically, the message reads:</p>
<pre><code>sh.exe has stopped working
</code></pre>
<p>So it's not ssh itself that died, but some sub-process.</p>
<p>The problem details textbox reads:</p>
<pre><code>Problem signature:
Problem Event Name: APPCRASH
Application Name: sh.exe
Application Version: 0.0.0.0
Application Timestamp: 48a031a1
Fault Module Name: comctl32.dll_unloaded
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 4549bcb0
Exception Code: c0000005
Exception Offset: 73dc5b17
OS Version: 6.0.6000.2.0.0.768.3
Locale ID: 1033
Additional Information 1: fc4d
Additional Information 2: d203a7335117760e7b4d2cf9dc2925f9
Additional Information 3: 1bc1
Additional Information 4: 7bc0b00964c4a1bd48f87b2415df3372
Read our privacy statement:
http://go.microsoft.com/fwlink/?linkid=50163&clcid=0x0409
</code></pre>
<p>I notice the problem occurs when I use the <strong>-Y</strong> option to enable X11 forwarding in an X terminal under Vista.</p>
<p>The dialog box that pops up doesn't automatically gain focus, so pressing Enter serves no purpose. I have to wait for the box to appear, grab it with the mouse, and dismiss it. Even forcing the error to receive focus would be a step in the right direction.</p>
<p><hr /></p>
<p>Per <a href="#35944" rel="nofollow">DrPizza</a> I have sent an <a href="http://cygwin.com/ml/cygwin/2008-08/msg00880.html" rel="nofollow">email</a> to the Cygwin mailing list. The trimmed down subject line represents my repeated attempts to bypass an over-aggressive spam filter and highlights the need for something like StackOverflow.</p>
http://stackoverflow.com/questions/529868/can-perls-getoptlong-parse-arguments-i-dont-define-ahead-of-time/530050#53005011Answer by Jon Ericson for Can Perl's Getopt::Long parse arguments I don't define ahead of time?Jon Ericson2009-02-09T21:28:02Z2009-07-21T19:41:11Z<p>The <a href="http://search.cpan.org/perldoc?Getopt::Long" rel="nofollow"><code>Getopt::Long</code></a> documentation suggests a configuration option that might help:</p>
<pre><code>pass_through (default: disabled)
Options that are unknown, ambiguous or supplied
with an invalid option value are passed through
in @ARGV instead of being flagged as errors.
This makes it possible to write wrapper scripts
that process only part of the user supplied
command line arguments, and pass the remaining
options to some other program.
</code></pre>
<p>Once the regular options are parsed, you could use code such as that <a href="http://stackoverflow.com/questions/529868/using-perls-getoptlong-with-arbitrary-arguments/529914#529914">provided by runrig</a> to parse the ad hoc options.</p>
http://stackoverflow.com/questions/57962/whats-your-experience-with-flash-drives6What's your experience with Flash drives?Jon Ericson2008-09-11T23:55:18Z2009-07-15T20:42:10Z
<p>EMC is marketing <a href="http://www.emc.com/about/news/press/us/2008/011408-1.htm" rel="nofollow">Solid State Flash Drives</a> and my project is thinking about moving that direction in the future. Does anyone have any experience with replacing traditional disk storage with flash drives? Besides price, have you experienced any downsides to the technology?</p>
http://stackoverflow.com/questions/998224/why-does-using-ledpar-cause-a-document-to-fail0Why does using ledpar cause a document to fail?Jon Ericson2009-06-15T20:33:23Z2009-07-14T13:00:01Z
<p>Here is my minimal LaTeX document:</p>
<pre><code>\documentclass{article}
\usepackage[polutonikogreek,english]{babel}
\newcommand{\Gk}[1]{\selectlanguage{polutonikogreek}#1\selectlanguage{english}}
\usepackage{ledmac}
\newcommand{\cn}[1]{\Afootnote{#1}}
\usepackage{ledpar}
\begin{document}
\beginnumbering
\pstart
\edtext{apostle}{\cn{\Gk{apostoloc}}}
\pend
\endnumbering
\end{document}
</code></pre>
<p>Executing <code>latex test.tex</code> produces the following error:</p>
<pre><code>...
Section 1 (./test.1)
! Missing control sequence inserted.
<inserted text>
\inaccessible
l.15 \pend
?
</code></pre>
<p>Some notes:</p>
<ol>
<li><p>The <code>DVI</code> produced looks fine despite the error.</p></li>
<li><p>Commenting out the <code>\usepackage{ledpar}</code> fixes the problem.</p></li>
<li><p>Not using the <code>\Gk</code> command also solves the problem. (But sort of defeats the purpose of having a footnote.)</p></li>
</ol>
<p>What's going on here and how do I get around the error message?</p>
http://stackoverflow.com/questions/715457/how-do-you-implement-a-dispatch-table-in-your-language-of-choice/715459#7154592Answer by Jon Ericson for How do you implement a dispatch table in your language of choice?Jon Ericson2009-04-03T19:53:28Z2009-06-30T21:32:20Z<h2>Lua</h2>
<p>The dispatch table could look like:</p>
<pre><code>local throw = {
rock = function () io.write("O\n") end,
paper = function () io.write("~\n") end,
scissors = function () io.write(">8\n") end,
}
</code></pre>
<p>This works well for Bart's strategy:</p>
<pre><code>-- Bart's brain: Good ol' `rock'. Nuthin' beats that!
-- http://www.snpp.com/episodes/9F16.html
throw.rock()
</code></pre>
<p>But Lua also supports numeric indexing which works better for a random strategy:</p>
<pre><code>throw[1] = throw.rock
throw[2] = throw.paper
throw[3] = throw.scissors
-- Seed the random number generator
math.randomseed(os.time())
throw[math.random(3)]()
</code></pre>
<p>Adding a throw is easy:</p>
<pre><code>throw.dynamite = function () io.write("[]~\n") end
throw.dynamite()
</code></pre>
<p><hr /></p>
<p>Addressing Brad Gilbert's comment, there's no reason a dispatch table couldn't be multidimensional. For instance, here's one implementation of a dispatch table that plays Rock Paper Scissors:</p>
<pre><code>local player = {0, 0}
local play = {
rock = {
rock = function () io.write("push\n") end,
paper = function ()
io.write("Rock covered by paper!\n");
player[2] = player[2]+1
end,
scissors = function () io.write("Rock smashes scissors!\n");
player[1] = player[1]+1
end,
},
paper = {
rock = function ()
io.write("Paper covers rock!\n");
player[1] = player[1]+1
end,
paper = function () io.write("push\n") end,
scissors = function () io.write("Paper cut by scissors!\n");
player[2] = player[2]+1
end,
},
scissors = {
rock = function ()
io.write("Scissors smashed by rock!\n");
player[2] = player[2]+1
end,
paper = function ()
io.write("Scissors cut paper!\n");
player[1] = player[1]+1
end,
scissors = function () io.write("push\n") end,
},
}
</code></pre>
<p>A function could then be called thusly:</p>
<pre><code>results.rock.paper()
</code></pre>
<p>But more usefully:</p>
<pre><code>results["scissors"]["paper"]()
</code></pre>
<p>In this particular case, the pattern is regular enough that a data lookup might work better than a function lookup. If I were to expand the game to include other throws, I'd definitely want to create a function that generates the dispatch table rather than construct it by hand. The point is nothing prevents a dispatch table from being multidimensional.</p>
http://stackoverflow.com/questions/998224/why-does-using-ledpar-cause-a-document-to-fail/998226#9982260Answer by Jon Ericson for Why does using ledpar cause a document to fail?Jon Ericson2009-06-15T20:33:42Z2009-06-15T20:33:42Z<p>According to the <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=protect" rel="nofollow">FAQ</a>:</p>
<blockquote>
<p>Sometimes LaTeX saves data it will reread later. These data are often the argument of some command; they are the so-called moving arguments. (‘Moving’ because data are moved around.) Candidates are all arguments that may go into table of contents, list of figures, etc.; namely, data that are written to an auxiliary file and read in later. Other places are those data that might appear in head- or footlines. Section headings and figure captions are the most prominent examples; there’s a complete list in Lamport’s book (see TeX-related books).</p>
<p>What’s going on really, behind the scenes? The commands in moving arguments are normally expanded to their internal structure during the process of saving. Sometimes this expansion results in invalid TeX code, which shows either during expansion or when the code is processed again. Protecting a command, using “\protect\cmd” tells LaTeX to save \cmd as \cmd, without expanding it at all. </p>
</blockquote>
<p>So the <code>\Gk</code> command gets expanded too early in the process of TeXing the file and results in illegal code. The simplest solution is to declare the command robust:</p>
<pre><code>\usepackage{makerobust}
\DeclareRobustCommand{\Gk}[1]{\selectlanguage{polutonikogreek}#1\selectlanguage{english}}
</code></pre>
<p>As to why using the <code>ledpar</code> package produces the error, I'm less certain. In order to facilitate notes in both the left and right side of parallel text, the <code>ledpar</code> package needs to redefine virtually every command provided by the <code>ledmac</code> package. Although I have not found the offending difference, one or more of the redefinitions must cause fragile commands to be expanded prematurely.</p>
http://stackoverflow.com/questions/825672/why-doesnt-win32odbc-find-the-odbc-dll-under-perl-5-10-and-cygwin/957859#9578590Answer by Jon Ericson for Why doesn't Win32::ODBC find the ODBC.dll under Perl 5.10 and Cygwin?Jon Ericson2009-06-05T20:00:37Z2009-06-05T20:00:37Z<blockquote>
<p>I've verified that the dll file does exist.</p>
</blockquote>
<p>Do you mean that <code>/usr/lib/perl5/vendor_perl/5.10/i686-cygwin/auto/Win32/ODBC/ODBC.dll</code> exists? If so, do you have read and execute permission? </p>
<p>There's a comment just above /usr/lib/perl5/5.10/i686-cygwin/DynaLoader.pm line 201:</p>
<pre><code># Many dynamic extension loading problems will appear to come from
# this section of code: XYZ failed at line 123 of DynaLoader.pm.
# Often these errors are actually occurring in the initialisation
# C code of the extension XS file. Perl reports the error as being
# in this perl code simply because this was the last perl code
# it executed.
</code></pre>
<p>So it seems something is wrong with your installation. You could try reinstalling Win32::ODBC with:</p>
<pre><code>$ cpan Win32::ODBC
</code></pre>
http://stackoverflow.com/questions/217834/how-to-create-a-timeline-with-latex/957784#9577842Answer by Jon Ericson for How to create a timeline with LaTeX?Jon Ericson2009-06-05T19:44:52Z2009-06-05T19:44:52Z<p><a href="http://www.cs.st-andrews.ac.uk/~tws/" rel="nofollow">Tim Storer</a> wrote a more flexible and nicer looking <a href="http://www.cs.st-andrews.ac.uk/~tws/tools/latex/timeline.zip" rel="nofollow"><code>timeline.sty</code></a>. In addition, the line is horizontal rather than vertical. So for instance:</p>
<pre><code>\begin{timeline}{2008}{2010}{50}{250}
\MonthAndYearEvent{4}{2008}{First Podcast}
\MonthAndYearEvent{7}{2008}{Private Beta}
\MonthAndYearEvent{9}{2008}{Public Beta}
\YearEvent{2009}{IPO?}
\end{timeline}
</code></pre>
<p>produces a timeline that looks like this:</p>
<pre><code>2008 2010
· · April, 2008 First Podcast ·
· July, 2008 Private Beta
· September, 2008 Public Beta
· 2009 IPO?
</code></pre>
<p>Personally, I find this a more pleasing solution than the other answers. But I also find myself modifying the code to get something closer to what I think a timeline should look like. So there's not definitive solution in my opinion. </p>
http://stackoverflow.com/questions/288707/what-is-the-standard-or-best-supported-big-number-arbitrary-precision-library3What is the standard (or best supported) big number (arbitrary precision) library for Lua?Jon Ericson2008-11-13T23:10:22Z2009-05-14T14:15:45Z
<p>I'm working with large numbers that I can't have rounded off. Using Lua's standard math library, there seem to be no convenient way to preserve precision past some internal limit. I also see there are several libraries that can be loaded to work with big numbers:</p>
<ol>
<li><a href="http://oss.digirati.com.br/luabignum/" rel="nofollow">http://oss.digirati.com.br/luabignum/</a></li>
<li><a href="http://www.tc.umn.edu/~ringx004/mapm-main.html" rel="nofollow">http://www.tc.umn.edu/~ringx004/mapm-main.html</a></li>
<li><a href="http://lua-users.org/lists/lua-l/2002-02/msg00312.html" rel="nofollow">http://lua-users.org/lists/lua-l/2002-02/msg00312.html</a> (might be identical to #2)</li>
<li><a href="http://www.gammon.com.au/scripts/doc.php?general=lua_bc" rel="nofollow">http://www.gammon.com.au/scripts/doc.php?general=lua_bc</a> (but I can't find any source)</li>
</ol>
<p>Further, there are <a href="http://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic#Arbitrary-precision_software" rel="nofollow">many libraries</a> in C that could be called from Lua, if the bindings where established.</p>
<p>Have you had any experience with one or more of these libraries?</p>
http://stackoverflow.com/questions/559508/how-should-timestamps-in-last-output-be-interpreted-on-linux/859986#8599860Answer by Jon Ericson for How should timestamps in last output be interpreted on linux?Jon Ericson2009-05-13T19:37:54Z2009-05-13T19:37:54Z<p>The string between the parentheses is the duration of the session. As you note, the time is the difference between the end and start times. The 2+ is the number of days as <a href="http://stackoverflow.com/questions/559508/how-should-timestamps-in-last-output-be-interpreted-on-linux/559574#559574">hop noted</a>.</p>
<p>At some point, this question probably should be moved over to Server Fault since it's most likely to be of interest to System Administrators. </p>
<p>It's a fairly readable format once you know what you are looking at. If I were designing the output, I think I'd make the day of the week optional and put the entire end date in the string instead. Even better would be to let the date stamp be configurable. That way, the output could be more easily used by another program. </p>
<p>The actual duration, if the user has logged out of the session is fairly easy to pick out with a regular expression:</p>
<pre><code>$ last | perl -lne 'print "$2 days, $3 hours, $4 minutes" if /\(((\d+)\+)(\d{2}):(\d{2})\)$/'
17 days, 05 hours, 23 minutes
3 days, 23 hours, 16 minutes
14 days, 06 hours, 09 minutes
23 days, 04 hours, 54 minutes
16 days, 06 hours, 57 minutes
...
</code></pre>
http://stackoverflow.com/questions/822563/how-can-i-iterate-over-multiple-lists-at-the-same-time-in-perl/822574#8225740Answer by Jon Ericson for How can I iterate over multiple lists at the same time in Perl?Jon Ericson2009-05-04T23:15:38Z2009-05-05T00:45:31Z<p>Can you reduce the size of your code and example data while still reproducing the error? I can't immediately see the difference between the actual and expected output.</p>
<p>Sometimes, finding a minimal set of code and data that causes a problem will make the solution obvious.</p>
<p>Looking a bit more carefully, there's only one bit of output code that is variable:</p>
<pre><code>print FSAS "PATHLOAD PATH=TIME, MW[1]=MI.1.1, SELECTLINK=(Link=".$link."), VOL[2]=MW[1] \n";
print FSAS "PATHLOAD PATH=TIME, MW[2]=MI.1.1, SELECTLINK=(Link=".$link1."), VOL[3]=MW[2] \n";
</code></pre>
<p>Your bug is likely to be there.</p>
http://stackoverflow.com/questions/810270/what-is-the-best-ui-control-for-users-who-need-to-change-language-on-the-fly/812997#8129970Answer by Jon Ericson for What is the best UI control for users who need to change language on the fly?Jon Ericson2009-05-01T20:00:28Z2009-05-01T20:00:28Z<p>This is not an easy problem. The flag idea works fairly well, but I need to train myself to look for the Union Jack. Depending on the application, I might want the Stars and Stripes instead because there is a difference between British English and American. It can get tricky if you try to overload too much meaning onto the flag. For instance, what language is meant by the Swiss flag. Or what if I only speak Spanish, but want the application to use US date and time formats. And don't even think about what will happen if you localize into Chinese. (Example: do you have a Taiwanese flag or not?)</p>
<p>I tend to prefer the languages written out. It gives you a lot of flexibility to specify exactly what language is meant. In addition, you can have a bit of fun sometimes. Facebook has a Pirate English option which is good for a few laughs. Google has even more fun interface language choices. And everyone who needs the Español option will know what it means.</p>
http://stackoverflow.com/questions/811653/are-projects-like-cofundos-useful-to-push-open-source-programming/812916#8129162Answer by Jon Ericson for Are projects like Cofundos useful to push open-source programming?Jon Ericson2009-05-01T19:42:34Z2009-05-01T19:42:34Z<p>No.</p>
<p>Joel Spolsky has <a href="http://www.youtube.com/watch?v=NWHfY%5FlvKIQ" rel="nofollow">talked</a> about the phenomenon of people doing for free what they would never do for pay in the context of contributing to sites like Stack Overflow. People have all sorts of reasons for doing things for free:</p>
<ul>
<li>Helping out a friend or society.</li>
<li>Fame and recognition.</li>
<li>Hobby or passtime.</li>
<li>Building a resume.</li>
<li>Learning about the world around them.</li>
</ul>
<p>When you offer money it either destroys the purpose of doing something ("It's not a hobby if I get paid—it's a job.") or reduces the intrinsic value of doing it ("I'm not helping out society—I'm helping out me."). The same is true for Open Source contributions.</p>
<p>People <strong>do</strong> get paid for Open Source work. But normally by companies who are using Open Source software and need certain features and fixes. Sometimes they are full time, but often it's just submitting a bug fix or feature so that it will be carried to the next release. But that happens because the project is useful to the company.</p>
<p>So a better way to "push" Open Source is to use Open Source. If a project is missing a feature, you'll need to add it yourself or find someone else who will. Any scheme that offers money for a feature directly will likely not work. And if the feature does get added, it'll be added by someone who wants to get paid rather than someone who wants better software.</p>
http://stackoverflow.com/questions/809761/moving-files-and-folders-accidentally-to-non-existent-places/809833#8098330Answer by Jon Ericson for Moving Files and Folders Accidentally to Non-existent PlacesJon Ericson2009-05-01T01:09:52Z2009-05-01T01:09:52Z<pre><code>mv folder $something_that_does_not_exist
</code></pre>
<p>This ought to be an error: </p>
<pre><code>$ mkdir folder
$ mv folder
mv: Insufficient arguments (1)
Usage: mv [-f] [-i] f1 f2
mv [-f] [-i] f1 ... fn d1
mv [-f] [-i] d1 d2
</code></pre>
<p>The other case depends on what <code>files*</code> matched:</p>
<pre><code>mv files* $something_that_does_not_exist
</code></pre>
<p>If the final match is a directory, you will likely find your files there. Otherwise you will have either renamed the first file to be the same as the second or had another error as above.</p>
http://stackoverflow.com/questions/747868/oracle-lite-cannot-connect-to-newly-created-db-pol-3013/809803#8098031Answer by Jon Ericson for Oracle Lite - Cannot connect to newly created DB. [POL-3013]Jon Ericson2009-05-01T00:58:01Z2009-05-01T00:58:01Z<p>According to <a href="http://download.oracle.com/docs/html/A95916%5F01/emgtext.htm#i1004863" rel="nofollow">Oracle</a> the error means:</p>
<blockquote>
<p>POL-3013 Bad database or invalid password</p>
<p>Cause: The database failed to open a database or log file, or the file header was corrupted. Possibly caused by using an incorrect password to decrypt the database.</p>
<p>Action: Give the correct password, check your hard drive, or reboot the operating system.</p>
</blockquote>
<p>I don't know if it helps, but I found a similar question with an answer on an <a href="http://forums.oracle.com/forums/message.jspa?messageID=1351586" rel="nofollow">Oracle forum</a>.</p>
http://stackoverflow.com/questions/597134/how-can-i-print-intermediate-results-from-a-pipeline-to-the-screen0How can I print intermediate results from a pipeline to the screen?Jon Ericson2009-02-27T23:55:38Z2009-04-30T00:20:36Z
<p><strong>Duplicate <a href="http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out">http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out</a></strong></p>
<p>I'm trying to count the lines from a command and I'd also like to see the lines as they go by. My initial thought was to use the <code>tee</code> command:</p>
<pre><code>complicated_command | tee - | wc -l
</code></pre>
<p>But that simply doubles the line count using GNU <code>tee</code> or copies output to a file named <code>-</code> on Solaris.</p>
http://stackoverflow.com/questions/772596/black-hat-knowledge-for-white-hat-programmers/804784#8047843Answer by Jon Ericson for Black hat knowledge for white hat programmersJon Ericson2009-04-29T23:37:30Z2009-04-29T23:37:30Z<p>One word of caution: <a href="http://en.wikipedia.org/wiki/Randal%5FL.%5FSchwartz" rel="nofollow">State of Oregon vs. Randal Schwartz</a>.</p>
<p>Having been a small part of investigating two separate incidents at our site, I'd say the odds of learning about an exploit before it's used against you are vanishingly small. Perhaps if you dedicate your career to being a white hat you'll stay on top of all the potential holes in most of the popular hardware/software stacks. But for an ordinary programmer, you are more likely to be in reaction mode.</p>
<p>You do have a responsibility to know how your own software could be hacked and a responsibility to stay reasonably up-to-date with third-party software. It would be good to have an emergency plan in place to deal with an attack, especially if you are a high-profile or high-value target. Some places will want to shut a hole immediately, but our site tends to leave certain holes open to assist law enforcement in catching the perpetrators. The IT security team occasionally announces internally that it will be conducting a port scan so that SA's don't freak out about it.</p>
http://stackoverflow.com/questions/804337/a-hacking-game-for-programmers/804417#8044172Answer by Jon Ericson for A hacking game for programmers?Jon Ericson2009-04-29T21:46:56Z2009-04-29T21:46:56Z<ol>
<li><p>For the SQL aficionado, there's <a href="http://mysqlgame.appspot.com/" rel="nofollow">mySQLgame</a>. The teaching point is that it's written on the Google App Engine.</p></li>
<li><p>For the mathematically inclined, <a href="http://projecteuler.net" rel="nofollow">Project Euler</a> is worthwhile.</p></li>
<li><p>I third the Core Wars suggestion.</p></li>
</ol>
http://stackoverflow.com/questions/797998/can-i-use-ffmpeg-from-inside-a-perl-script-without-a-system-call/799732#7997320Answer by Jon Ericson for Can I use ffmpeg from inside a Perl script without a system call?Jon Ericson2009-04-28T20:43:31Z2009-04-29T19:15:58Z<p>There is a project called <a href="http://pacpl.sourceforge.net/" rel="nofollow"><code>pacpl</code></a> which does a wide variety of audio and a least some video conversions. Looking at the source, it does use the <code>system()</code> command to run third-party utilities such as <code>ffmpeg</code>. I'm interested in doing conversions similar to what you asked about and I plan on trying out <code>pacpl</code> myself.</p>
<p>So far it seem like there are no pure Perl answers. All of the methods use some other conversion software. Which tells me it's probably more efficient to use some other program written in C.</p>
<p>So I would turn the question back to you: what is your reason for not wanting to use <code>system()</code>?</p>
http://stackoverflow.com/questions/1069650/two-regex-patterns-can-they-be-one/1069766#1069766Comment by Jon Ericson on two regex patterns, can they be one?Jon Ericson2009-07-01T16:44:53Z2009-07-01T16:44:53ZIn addition, you can tell what format it was later by looking at $1 (at least in Perl). I'd never thought of that device.http://stackoverflow.com/questions/715457/how-do-you-implement-a-dispatch-table-in-your-language-of-choice/1056178#1056178Comment by Jon Ericson on How do you implement a dispatch table in your language of choice?Jon Ericson2009-07-01T16:39:25Z2009-07-01T16:39:25ZThanks! I think I understand it now.http://stackoverflow.com/questions/715457/how-do-you-implement-a-dispatch-table-in-your-language-of-choice/1056178#1056178Comment by Jon Ericson on How do you implement a dispatch table in your language of choice?Jon Ericson2009-06-30T21:49:24Z2009-06-30T21:49:24ZAs I'm (mostly) C# illiterate, would you mind adding an example how to use this? I'm guess you a) instantiate a DispatchTable variable, b) call its AddAction method for each action you want to implement, and c) call its Dispatch method when you want to lookup an action. But I'm in the dark about what the syntax would be for these steps.http://stackoverflow.com/questions/715457/how-do-you-implement-a-dispatch-table-in-your-language-of-choiceComment by Jon Ericson on How do you implement a dispatch table in your language of choice?Jon Ericson2009-06-30T21:34:45Z2009-06-30T21:34:45Z@Brad Gilbert: I added an example of playing RPS to my Lua answer. I find a dispatch table an elegant solution to the problem actually. But the real fun would be to create a function that generates the dispatch table.http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/424273#424273Comment by Jon Ericson on Best programming novel to take on holidayJon Ericson2009-05-26T22:35:35Z2009-05-26T22:35:35ZYou need to escape them as my edit shows. (Also, I moved the link into the body of the text.)http://stackoverflow.com/questions/829963/renaming-a-series-of-files/830952#830952Comment by Jon Ericson on Renaming a series of filesJon Ericson2009-05-06T19:28:37Z2009-05-06T19:28:37ZAn additional advantage to this solution is that if you leave off the <code>| sh</code> at the end you get a list of commands that will be executed. If everything looks ok, you can then pipe it to the shell to be executed.http://stackoverflow.com/questions/822563/how-can-i-iterate-over-multiple-lists-at-the-same-time-in-perl/822580#822580Comment by Jon Ericson on How can I iterate over multiple lists at the same time in Perl?Jon Ericson2009-05-04T23:24:10Z2009-05-04T23:24:10ZYes. That's probably what the questioner needs. http://stackoverflow.com/questions/808513/what-does-the-letter-on-the-oracle-release-mean/808527#808527Comment by Jon Ericson on What does the letter on the Oracle release mean?Jon Ericson2009-04-30T19:03:11Z2009-04-30T19:03:11ZPersonally, I expect the next major release to be 12c for "cloud".http://stackoverflow.com/questions/804337/a-hacking-game-for-programmers/804673#804673Comment by Jon Ericson on A hacking game for programmers?Jon Ericson2009-04-30T00:29:59Z2009-04-30T00:29:59ZThanks. I vaguely remembered that game but couldn't recall anything seachable about it. I'll have to try it out sometime.http://stackoverflow.com/questions/775882/how-can-i-skip-lines-when-slurping-a-file-in-perl/775907#775907Comment by Jon Ericson on How can I skip lines when slurping a file in Perl?Jon Ericson2009-04-22T19:22:29Z2009-04-22T19:22:29Z@j_random_hacker: I'm not sure localizing $_ is a good idea, at least not usually. It seems to me that one magical, default variable per scope is plenty. I'd suggest using $_ in innermost loops only. Otherwise it gets confusing what "it" it is referring to.
http://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774611#774611Comment by Jon Ericson on Peak memory usage of a linux/unix processJon Ericson2009-04-21T22:16:51Z2009-04-21T22:16:51ZI don't know what to suggest. The code above is exactly what I got running a latex command that happened to be in history. As I say, more accurate results can be obtained with other tools.http://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-processComment by Jon Ericson on Peak memory usage of a linux/unix processJon Ericson2009-04-21T21:11:18Z2009-04-21T21:11:18ZArg! Community wiki strikes again.http://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774601#774601Comment by Jon Ericson on Peak memory usage of a linux/unix processJon Ericson2009-04-21T21:09:01Z2009-04-21T21:09:01ZProbably it always returns 0 because ls isn't doing much. Try a more CPU intensive command.http://stackoverflow.com/questions/770300/since-sql-server-doesnt-have-packages-what-do-programmers-do-to-get-around-it/770560#770560Comment by Jon Ericson on Since SQL Server doesn't have packages, what do programmers do to get around it?Jon Ericson2009-04-21T20:32:06Z2009-04-21T20:32:06ZMay I suggest taking a look at <a href="http://stackoverflow.uservoice.com/pages/general/suggestions/106921-provide-an-authorized-location-for-meta-discussion-" rel="nofollow">stackoverflow.uservoice.com/pages/general/…</a> ? http://stackoverflow.com/questions/773371/what-is-a-good-tool-for-creating-railroad-diagrams/773416#773416Comment by Jon Ericson on What is a good tool for creating railroad diagrams?Jon Ericson2009-04-21T16:38:54Z2009-04-21T16:38:54ZUse the source! I like it.