User Norman Ramsey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T09:54:24Zhttp://stackoverflow.com/feeds/user/41661http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1426383/what-techniques-tools-are-there-for-discovering-common-phrases-in-chunks-of-text/1932096#19320961Answer by Norman Ramsey for What techniques/tools are there for discovering common phrases in chunks of text?Norman Ramsey2009-12-19T05:49:44Z2009-12-19T05:49:44Z<p>Have a look at <a href="http://en.wikipedia.org/wiki/N-gram" rel="nofollow"><em>N</em>-grams</a>. The most common phrases will necessarily contribute the most common <em>N</em>-grams. I'd start out with word trigrams and see where that leads. (Space required is <em>N</em> times the length of the text, so you can't let <em>N</em> get too big.) If you save the positions and not just a count, you can then see if the trigrams can be extended to form common phrases.</p>
http://stackoverflow.com/questions/1929106/inserting-lines-of-pixels-into-an-image-quickly/1932085#19320850Answer by Norman Ramsey for Inserting lines of pixels into an image quicklyNorman Ramsey2009-12-19T05:44:14Z2009-12-19T05:44:14Z<p>Perhaps you would be better off looking at data structures. If you were dealing only with one dimension, a B-tree would be a very efficient way to insert as often as you liked with logarithmic cost. If you need to insert columns as well as rows, you'll need something much more sophisticated, but if you insert and delete rows only your life can be relatively simple.</p>
<p>It would help if you could give a description of the image as an abstract data type with <em>all</em> the operations you want to perform and some idea of what you want the costs to be.</p>
<p>If you want an off-the-shelf solution you might try representing the rows of the image as entries in a database table.</p>
http://stackoverflow.com/questions/1929000/graphics-in-papers/1932076#19320760Answer by Norman Ramsey for Graphics in papersNorman Ramsey2009-12-19T05:39:44Z2009-12-19T05:39:44Z<p>TikZ and PStricks are both good. There's one specialized area of graphics which is very important for experimental science and engineering but which has not been mentioned in the ansewrs so for. For plotting experimental data, I find Jim Plank's <a href="http://www.cs.utk.edu/~plank/plank/jgraph/jgraph.html" rel="nofollow"><code>jgraph</code></a> far simpler and more flexible than gnuplot (although I confess the learning curve is annoying). One example is a <a href="http://www.cs.tufts.edu/comp/40/mid.html" rel="nofollow">plot containing some Tukey boxes</a> which I made for my class's exam grades. There are several other nice examples on the jgraph pages.</p>
http://stackoverflow.com/questions/1931091/can-you-recommend-a-book-for-programming-functionality-for-latex/1932063#19320631Answer by Norman Ramsey for Can you recommend a book for programming functionality for LaTeX?Norman Ramsey2009-12-19T05:33:15Z2009-12-19T05:33:15Z<p>There is no subsitute for reading the <em>TeXbook</em>, which is Don Knuth's original documentation of TeX. It is a tutorial not a reference, and if you are like most people you will have to read it twice (skipping 'dangerous bends' on the first pass) and do some of the exercises. Answers to <em>all</em> of the exercises are in the back of the book. </p>
<p>You can then move on to the <em>LaTeX Companion</em> (I prefer the first edition; subsequent editions are bloated), which has many examples and which has a short "Guide for Class and Package Writers." The appendices to Lamport's LaTeX manual are also (just barely) useful.</p>
<blockquote>
<p>I need a good book on LaTeX which looks at it from a programmers point of view</p>
</blockquote>
<p>LaTeX is only a bunch of hacks piled on top of TeX. To understand the programming model you <em>must</em> read the <em>TeXbook</em>—it's the only place that explains how things actually work, the full truth, in detail. After you master the TeXbook you will be able to read things like the <code>latex.ltx</code> source and do whatever you want.</p>
http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1932053#19320530Answer by Norman Ramsey for Alternatives to gprofNorman Ramsey2009-12-19T05:26:36Z2009-12-19T05:26:36Z<p><a href="http://valgrind.org/" rel="nofollow"><code>valgrind</code></a> has an instruction-count profiler with a very nice visualizer called <code>kcachegrind</code>. As Mike Dunleavy recommends, valgrind counts the fraction of instructions for which a procedure is live on the stack, although I'm sorry to say it appears to become confused in the presence of mutual recursion. But the visualizer is very nice and light-years ahead of <code>gprof</code>.</p>
http://stackoverflow.com/questions/1931238/if-tex-is-a-programming-language-how-could-i-start-programming-in-tex/1931504#19315040Answer by Norman Ramsey for If TeX is a programming language, how could I start programming in TeX?Norman Ramsey2009-12-19T00:41:12Z2009-12-19T00:41:12Z<p>Read Don Knuth's <a href="http://rads.stackoverflow.com/amzn/click/0201134489" rel="nofollow"><em>The TeXbook</em></a>—everything you wanted to know about programming TeX, straight from the source. My favorite chapter is Appendix D: Dirty Tricks.</p>
<p>(Michael Plass, who was Don's student and worked with Don on TeX, told me once that "Don tried very hard not to make TeX a programming language. Unfortunately, he didn't succeed.")</p>
http://stackoverflow.com/questions/250151/lua-as-a-general-purpose-scripting-language/326660#3266603Answer by Norman Ramsey for Lua as a general-purpose scripting language?Norman Ramsey2008-11-28T20:56:38Z2009-12-19T00:26:33Z<p>This is a sociological question, not a programming question.</p>
<p>I use Lua for general-purpose scripting almost exclusively. But I had to write a few hundred lines of code so that Lua would play better with the shell. This included such tricks as </p>
<ul>
<li>Quoting a string so it is seen as one word by the shell</li>
<li>Writing a function to capture the output of a command as in shell $(command)</li>
<li>Writing a function to crawl the filesystem using the Lua posix library and expand shell globbing patterns</li>
</ul>
<p>(For those who may be interested, I've left the code in my <a href="http://www.cs.tufts.edu/~nr/drop/lua/" rel="nofollow">Lua drop box</a>, which also contains some other stuff. The interesting stuff is probably in <code>osutil</code> in <code>os.quote</code>, <code>os.runf</code>, <code>os.capture</code>, and maybe <code>os.execve</code>. The globbing is in <a href="http://www.cs.tufts.edu/~nr/drop/lua/posixutil.lua" rel="nofollow"><code>posixutil.lua</code></a>. They both use Luiz Henrique de Figuereido's <a href="http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/" rel="nofollow">Lua Posix library</a>.)</p>
<p>To me, the extra effort is worth it because I can deal with simple syntax and great data structures. To others, a more direct connection with the shell might be preferred.</p>
http://stackoverflow.com/questions/1904865/how-to-scale-pixels-in-an-image-to-adjust-brightness1How to scale pixels in an image to adjust brightness?Norman Ramsey2009-12-15T02:30:53Z2009-12-19T00:20:37Z
<p>I have a grayscale image from a photograph. I've determined that certain parts of the image are underilluminated, and that a pixel with luminance Y = 0.8 should actually be adjusted to 90% grey, i.e., that pixel should be given luminance 0.9. My question is <strong>how do I scale the other pixels nearby?</strong> I'm pretty sure multiplying all the luminances by 9/8 is wrong, because I vaguely remember hearing that in order to <em>look</em> uniform, the scaling has to be nonlinear. But I'm having trouble finding an equation that would enable me to make progress. (Of course I am actually writing a program to make this adjustment to a great many photographs.)</p>
<p>The source of my pixels is the pbmplus PGM format, about which the man page says:</p>
<blockquote>
<p>Each gray value is a number proportional to the intensity of the
pixel, adjusted by the CIE Rec. 709 gamma transfer function. (That
transfer function specifies a gamma number of 2.2 and has a linear
section for small intensities). A value of zero is therefore black.
A value of Maxval represents CIE D65 white and the most intense value
in the image and any other image to which the image might be compared.</p>
</blockquote>
<p>If I understood this better I would probably have a better idea how to proceed.</p>
<p>I found a related question on <a href="http://stackoverflow.com/questions/664760">making an image of uniform brightness</a>.</p>
<p><hr></p>
<p>Thanks Shmoopty for getting me on track. I accepted your answer then added some info to it.</p>
http://stackoverflow.com/questions/1913621/is-there-a-simple-compiler-for-a-small-language/1931417#19314170Answer by Norman Ramsey for is there a simple compiler for a small languageNorman Ramsey2009-12-19T00:13:05Z2009-12-19T00:13:05Z<p>If you want to look at code, I'm very impressed with Eijiro Sumii's <a href="http://min-caml.sf.net/paper.pdf" rel="nofollow">MinCaml</a> compiler. </p>
<ul>
<li><p>It's only 2000 lines long.</p></li>
<li><p>It compiles a pretty interesting source language.</p></li>
<li><p>It generates real machine code, none of this namby-pamby C or LLVM stuff :-)</p></li>
<li><p>Speed of compiled code is competetive with gcc and the native OCaml compilers.</p></li>
<li><p>The compiler is designed for teaching.</p></li>
</ul>
<p>Did I mention I've been very impressed?</p>
http://stackoverflow.com/questions/1929588/x86-howto-catch-data-alignment-faults-aka-sigbus-on-sparc/1931389#19313891Answer by Norman Ramsey for x86: howto catch data-alignment faults (aka SIGBUS on sparc)Norman Ramsey2009-12-19T00:05:17Z2009-12-19T00:05:17Z<p>Intel are very big on supporting unaligned loads. If I had to detect such loads on an Intel platform, I think I would have to modify <a href="http://valgrind.org/" rel="nofollow"><code>valgrind</code></a> to treat unaligned loads as errors. Such a modification is not trivial, but valgrind was designed with the idea in mind that users could create new 'tools'. I think a simple modification to the <code>memcheck</code> tool would detect your unaligned references. And the error reporting is really very nice.</p>
http://stackoverflow.com/questions/1891948/what-language-should-i-learn-to-create-command-line-scripts-and-guis/1904840#19048401Answer by Norman Ramsey for What language should I learn to create command line scripts and GUIs?Norman Ramsey2009-12-15T02:18:37Z2009-12-15T02:18:37Z<p>As someone with no formal training, you might have an easier time getting started with <a href="http://www.lua.org/" rel="nofollow">Lua</a>. The main advantages are that</p>
<ul>
<li><p>Lua was originally designed in part for petroleum geologists, so the syntax is readily accessible to people without formal training in computer science.</p></li>
<li><p>The system is small enough and simple enough that you can understand <em>everything</em>. This will enable you to spend more time coming up to speed on new concepts and new ideas.</p></li>
<li><p>There is an <em>excellent</em> book: Roberto Ierusalimschy's <a href="http://www.inf.puc-rio.br/~roberto/pil2/" rel="nofollow"><em>Programming in Lua</em></a>; you can get the <a href="http://www.lua.org/pil/" rel="nofollow">previous edition free online</a>.</p></li>
</ul>
<p>I've compared Python and Lua <a href="http://stackoverflow.com/questions/356160">elsewhere</a>.</p>
http://stackoverflow.com/questions/1897609/non-mainstream-languages-bad-for-your-resume/1904815#19048153Answer by Norman Ramsey for Non-Mainstream Languages, Bad for your resume? Norman Ramsey2009-12-15T02:11:09Z2009-12-15T02:11:09Z<p>You are applying for the wrong positions. If you had a PhD in computer science and were applying for entry-level Java positions, you would get a similar kind of thinly veiled contempt for your background.</p>
<p>The good news is that there are employers out there who understand that <strong>it's easier to train somebody smart than to smart somebody trained</strong>. The hard part is finding them. For specific advice:</p>
<ul>
<li><p>As suggested elsewhere, make sure your resume emphasizes <em>what</em> you have built, not <em>how</em>. If you are able to use Haskell and Smalltalk well, you must have been able to build some impressive things.</p></li>
<li><p>Recognize that the kind of job you wish to have is more likely to be found through networking than through traditional recruiting channels. Both Haskell and Smalltalk have strong user communities—if there is a local users' group, start meeting those people. Give a presentation. Let people know you are looking for work.</p></li>
</ul>
<p>As to your specific questions:</p>
<blockquote>
<p>How should I market myself to these positions? </p>
</blockquote>
<p>You should not. Seek a position where someone is eager to exploit your superior skills.</p>
<blockquote>
<p>What should I be doing different professionally? </p>
</blockquote>
<p>Get involved with professional societies and users' groups. You are more likely to find yourself a rewarding job if you can position yourself as a "skilled professional" as opposed to a "code monkey for hire".</p>
<p>You mention your town but you don't identify it by name. With your background you should be interesting to Apple and to investment banks and hedge funds. Maybe also Google. Can you relocate?</p>
http://stackoverflow.com/questions/870919/why-are-haskell-algebraic-data-types-closed/871375#87137520Answer by Norman Ramsey for Why are Haskell algebraic data types "closed"?Norman Ramsey2009-05-16T00:37:32Z2009-12-13T01:53:26Z<p>The answer has to do with in what ways the code is easy to extend, a tension between classes and algebraic data types that Phil Wadler dubbed "the expression problem":</p>
<ul>
<li><p>With algebraic data types, </p>
<ul>
<li><p>It is very <em>cheap</em> to add a new <em>operation on things</em>: you just define a new function. All the old functions on those things continue to work unchanged.</p></li>
<li><p>It is very <em>expensive</em> to add a new <em>kind of thing</em>: you have to add a new constructor an existing data type, and you have to <em>edit and recompile every function which uses that type</em>.</p></li>
</ul></li>
<li><p>With classes,</p>
<ul>
<li><p>It is very <em>cheap</em> to add a new <em>kind of thing</em>: just add a new subclass, and as needed you define specialized methods, in that class, for all the existing operations. The superclass and all the other subclasses continue to work unchanged.</p></li>
<li><p>It is very <em>expensive</em> to add a new <em>operation on things</em>: you have to <em>add a new method declaration to the superclass</em> and potentially <em>add a method definition to every existing subclass</em>. In practice, the burden varies depending on the method.</p></li>
</ul></li>
</ul>
<p>So, algebraic data types are closed because a closed type supports certain kinds of program evolution well. For example, if your data types define a language, it is easy to add new compiler passes without invalidating old ones or changing the data.</p>
<p>It is possible to have "open" data types, but except under carefully controlled circumstances, the type checking becomes difficult. <strong>Todd Millstein did some <a href="http://www.cs.ucla.edu/~todd/research/icfp02.html" rel="nofollow">very beautiful work</a></strong> on a language design that supports open algebraic types and extensible functions, all with a modular type checker. I found his paper a great pleasure to read.</p>
http://stackoverflow.com/questions/1891473/how-to-load-text-file-into-sort-of-table-like-variable-in-lua/1891851#18918514Answer by Norman Ramsey for How to load text file into sort of table-like variable in Lua?Norman Ramsey2009-12-12T01:13:31Z2009-12-12T01:13:31Z<p>You want to read about <a href="http://lua-users.org/wiki/PatternsTutorial" rel="nofollow">Lua <em>patterns</em></a>, which are part of the <a href="http://www.lua.org/pil/20.html" rel="nofollow">string library</a>. Here's an example function (not tested):</p>
<pre><code>function read_addresses(filename)
local database = { }
for l in io.lines(filename) do
local n, a, e = l:match '(%S+)%s+(%S+)%s+(%S+)'
table.insert(database, { name = n, address = a, email = e })
end
return database
end
</code></pre>
<p>This function just grabs three substrings made up of nonspace (<code>%S</code>) characters. A real function would have some error checking to make sure the pattern actually matches.</p>
http://stackoverflow.com/questions/1888702/are-there-problems-that-cannot-be-written-using-tail-recursion/1891832#18918323Answer by Norman Ramsey for Are there problems that cannot be written using tail recursion?Norman Ramsey2009-12-12T01:07:14Z2009-12-12T01:07:14Z<p>It's true but not useful to observe that any collection of mutually recursive functions can be turned into a tail-recursive function. This observation is on a par with the old chestnut fro the 1960s that control-flow constructs could be eliminated because every program could be written as a loop with a case statement nested inside.</p>
<p>What's useful to know is that many functions which are not obviously tail-recursive can be converted to tail-recursive form by the addition of <em>accumulating parameters</em>. (An extreme version of this transformation is the transformation to continuation-passing style (CPS), but most programmers find the output of the CPS transform difficult to read.)</p>
<p>Here's an example of a function that is "recursive" (actually it's just iterating) but not tail-recursive:</p>
<pre><code>factorial n = if n == 0 then 1 else n * factorial (n-1)
</code></pre>
<p>In this case the multiply happens <em>after</em> the recursive call.
We can create a version that is tail recursive by putting the product in an accumulating parameter:</p>
<pre><code>factorial n = f n 1
where f n product = if n == 0 then product else f (n-1) (n * product)
</code></pre>
<p>The inner function <code>f</code> is tail-recursive and compiles into a tight loop.</p>
<p><hr></p>
<p>I find the following distinctions useful:</p>
<ul>
<li><p>In an iterative or recursive program, you solve a problem of size <code>n</code> by
first solving <strong>one</strong> subproblem of size <code>n-1</code>. Computing the factorial function
falls into this category, and it can be done either iteratively or
recursively. (This idea generalizes, e.g., to the Fibonacci function, where
you need both <code>n-1</code> and <code>n-2</code> to solve <code>n</code>.)</p></li>
<li><p>In a recursive program, you solve a problem of size <code>n</code> by first solving <strong>two</strong>
subproblems of size <code>n/2</code>. Or, more generally, you solve a problem of size <code>n</code>
by first solving a subproblem of size <code>k</code> and one of size <code>n-k</code>, where <code>1 < k <
n</code>. Quicksort and mergesort are two examples of this kind of problem, which
can easily be programmed recursively, but is not so easy to program
iteratively or using only tail recursion. (You essentially have to simulate recursion using an explicit
stack.)</p></li>
<li><p>In dynamic programming, you solve a problem of size <code>n</code> by first solving <strong>all</strong>
subproblems of all sizes <code>k</code>, where <code>k<n</code>. Finding the shortest route from one
point to another on the London Underground is an example of this kind of
problem. (The London Underground is a multiply-connected graph, and you
solve the problem by first finding all points for which the shortest path
is 1 stop, then for which the shortest path is 2 stops, etc etc.)</p></li>
</ul>
<p>Only the first kind of program has a <em>simple</em> transformation into tail-recursive form.</p>
http://stackoverflow.com/questions/1891679/c-can-software-be-developed-in-a-different-human-language-in-c-c/1891806#18918060Answer by Norman Ramsey for [C++] Can software be developed in a different "human language" in C/C++ ?Norman Ramsey2009-12-12T00:56:56Z2009-12-12T00:56:56Z<p>You can find out about character classification, including <code>isascii</code>, by looking at the <a href="http://linux.die.net/man/3/isalpha" rel="nofollow">man page</a>. Which characters are considered letters (and so on) is determined by your "locale". I confess I always find locale settings confusing...</p>
http://stackoverflow.com/questions/1885019/how-do-i-write-all-but-one-function-in-scheme-lisp/1885812#18858122Answer by Norman Ramsey for How do I write all-but-one function in Scheme/LISP?Norman Ramsey2009-12-11T04:38:04Z2009-12-11T04:38:04Z<p>The PLT solution is elegant, and ordinarily I prefer to use built-in higher-order functions as opposed to writing my own recursive functions. But if you want an efficient recursive solution with no allocation and no arithmetic, here it is:</p>
<pre><code>(define (all-but-one pred l)
(if (null? l)
#f
((if (pred (car l)) all-but-one all) pred (cdr l))))
</code></pre>
<p>The recursive call is in tail position, so both Scheme and Common LISP will compile this code into a tight loop. Some people might prefer this equivalent code:</p>
<pre><code>(define (all-but-one pred l)
(if (null? l)
#f
(if (pred (car l))
(all-but-one pred (cdr l))
(all pred (cdr l)))))
</code></pre>
http://stackoverflow.com/questions/1877244/how-long-should-you-focus-on-a-programming-language/1878367#18783670Answer by Norman Ramsey for How long should you focus on a programming language?Norman Ramsey2009-12-10T02:52:39Z2009-12-10T02:52:39Z<p><strong>I'm not sure time is the right measure here.</strong> My experience varies by language, but as a rough rule of thumb, it takes me about <em>10,000 lines of code written</em> to get proficient and productive. (If it's a similar language, the number is smaller; with a lot of ML experience under my belt, I started feeling really comfortable in Haskell in the range of 3,000–5,000 lines written.)</p>
http://stackoverflow.com/questions/1876926/how-can-i-create-bitmaps-in-c/1878349#18783490Answer by Norman Ramsey for How can I create bitmaps (in C)?Norman Ramsey2009-12-10T02:46:22Z2009-12-10T02:46:22Z<p>I like the <a href="http://netpbm.sourceforge.net/" rel="nofollow">netpbm</a>/<a href="http://acme.com/software/pbmplus/" rel="nofollow">pbmplus</a> tools, although I usually like the command line; the API is efficient but not much fun to use.</p>
<p>This semester I wrote a significant amount of software for beginning students to use to manipulate images; you might want to check out the homework assignments and supporting software for the Tufts course <a href="http://www.cs.tufts.edu/comp/40/" rel="nofollow">Machine Structure and Assembly-Language Programming</a>.</p>
http://stackoverflow.com/questions/1851181/why-should-ifdef-be-avoided-in-c-files9Why should #ifdef be avoided in .c files?Norman Ramsey2009-12-05T05:06:44Z2009-12-08T05:46:19Z
<p>A programmer I respect said that in C code, <code>#if</code> and <code>#ifdef</code> should be avoided at all costs, except possibly in header files. Why would it be considered bad programming practice to use <code>#ifdef</code> in a .c file?</p>
http://stackoverflow.com/questions/428892/what-parser-generator-do-you-recommend/430484#4304844Answer by Norman Ramsey for What parser generator do you recommendNorman Ramsey2009-01-10T03:08:16Z2009-12-08T04:42:11Z<p>Please don't use bison/flex or yacc/lex. They parse very efficiently but are really hard on the programmer. Use a more modern parser generator with a better user interface. ANTLR is a good suggestion, and you might also consider</p>
<ul>
<li><p>A <a href="http://pdos.csail.mit.edu/~baford/packrat/" rel="nofollow">packrat parser</a></p></li>
<li><p>The <a href="http://scottmcpeak.com/elkhound/" rel="nofollow">Elkhound</a> GLR parser generator</p></li>
</ul>
http://stackoverflow.com/questions/1850047/checking-an-array-of-data-for-similar-elements-in-c/1851162#18511620Answer by Norman Ramsey for Checking an array of data for similar elements in CNorman Ramsey2009-12-05T04:55:20Z2009-12-05T04:55:20Z<p>You might want to try using more abstraction. Your problem is essentially identical to the "fingerprint groups" problem that I posed in an <a href="http://www.cs.tufts.edu/comp/40/homework/intro.html" rel="nofollow">introductory homework assignment</a>. On the same web site you can find <a href="http://www.cs.tufts.edu/comp/40/solutions/" rel="nofollow">a solution</a> that is implemented using Dave Hanson's <a href="http://www.cs.princeton.edu/software/cii/" rel="nofollow">C Interfaces and Implementations</a> library.</p>
<p>The essential idea is to use a <code>Table</code> with the location (xx and yy elements) as the key and the list of addresses with that key as the value. The fingerprint groups program then tells you exactly when multiple addresses have the same location. If you like, download the solution and adapt it.</p>
http://stackoverflow.com/questions/1840806/c-how-to-conditionally-determine-which-functions-are-called-at-compile-time/1844631#18446313Answer by Norman Ramsey for [C] How to conditionally determine which functions are called at compile time?Norman Ramsey2009-12-04T03:20:07Z2009-12-04T03:20:07Z<p>Function pointers are great!</p>
<pre><code>typedef void (*process_fun)(void);
process_fun processes[] =
{ input_process, network_process, graphics_process };
#define NELEMS(A) (sizeof(A) / sizeof((A)[0]))
while (1) {
for (int i = 0; i < NELEMS(processes); i++)
processes[i]();
}
</code></pre>
<p>The <code>NELEMS</code> macro, which I learned from Dave Hanson, is also one of my favorites.</p>
<p><hr></p>
<p>P.S. Avoid <code>#ifdef</code> at all costs :-)</p>
http://stackoverflow.com/questions/1844195/doubly-linked-list-in-a-purely-functional-programming-language/1844619#184461925Answer by Norman Ramsey for Doubly Linked List in a Purely Functional Programming LanguageNorman Ramsey2009-12-04T03:15:48Z2009-12-04T03:15:48Z<p>In a pure functional language, a doubly-linked list is not that interesting. The idea of a doubly linked list is to be able to grab a node and go in either direction, or to be able to splice into the middle of a list. In a pure functionaly language you probably are better off with one of these two data structures:</p>
<ul>
<li><p>A singly linked list with a pointer in the middle, from which you can go either left or right (a variant of Huet's "Zipper")</p></li>
<li><p>A finger tree, which is a mind-blowing data structure invented by Ralf Hinze and Ross Paterson.</p></li>
</ul>
<p>I'm a big fan of the zipper; it's useful in a lot of situations.</p>
http://stackoverflow.com/questions/1844435/difference-between-modifying-a-structure-by-reference-versus-other-pointers/1844607#18446071Answer by Norman Ramsey for Difference between modifying a structure by reference versus other pointersNorman Ramsey2009-12-04T03:10:57Z2009-12-04T03:10:57Z<p>In your code, <code>name1</code> is dereferenced but <code>name2</code> is not. Try</p>
<pre><code>(*name1).name = "Robert";
</code></pre>
<p>and</p>
<pre><code>*name2 = "J";
</code></pre>
<p>and I hope you will see the parallels. Also, for this example to work, you will need to initialize <code>name2</code> to point to some mutable storage. For example,</p>
<pre><code>char *name2 = malloc(99);
strcpy(name2, "Rose");
</code></pre>
<p>then you will change <code>"Rose"</code> to <code>"Jose"</code>.</p>
<p>I recommend you watch the video <a href="http://cslibrary.stanford.edu/104/" rel="nofollow">Pointer Fun with Binky</a>.</p>
http://stackoverflow.com/questions/1817036/extracting-bits/1817308#18173080Answer by Norman Ramsey for Extracting bits Norman Ramsey2009-11-30T00:32:58Z2009-12-04T02:58:43Z<p>I'm a huge fan of the "two shifts" method of field extraction. It works both signed and unsigned. To extract a field of width <code>w</code> with least significant bit <code>lsb</code> from <code>word</code>:</p>
<pre><code>#define BITSIN(W) (8*sizeof(W))
return (word << (BITSIN(word) - (lsb+width))) >> (BITSIN(word) - width);
</code></pre>
<p>In this case, <code>BITSIN(word) == 32</code> and <code>lsb+width == 32</code>, so as long as the word in question is unsigned, you can just shift right 10 without masking.</p>
<p>One caution: <strong>beware 32-bit shifts on 32-bit types</strong>! The C standard lets the compiler do anything, and what the common Intel chips do is not useful: <code>x << y</code> shifts <code>x</code> left by <code>y % 32</code> bits (provided <code>x</code> has a 32-bit integer type). This means if you try to shift a 32-bit integer left or right by 32 bits, the result is the same as a no-op. There is a similar issue with 64-bit shifts of 64-bit types.</p>
http://stackoverflow.com/questions/414179/what-are-the-relative-merits-of-pdflatex9What are the relative merits of pdflatex?Norman Ramsey2009-01-05T19:20:12Z2009-12-02T16:14:56Z
<p>Not sure this is a programming question, but we use LaTeX for all our API documentation and user documentation, so I hope it will go through.</p>
<p>Can someone please explain what are the relative merits of using <code>pdflatex</code> as opposed to the "classic" technique of</p>
<pre><code>latex foo
dvips -Ppdf foo
ps2pdf foo.ps
</code></pre>
<p>From time to time I run into people who have difficulty because things don't work in <code>pdflatex</code>, and I know that using <code>pdflatex</code> gives up two things I have grown to value:</p>
<ul>
<li>Can't use the very speedy <code>xdvi</code> viewer</li>
<li>Can't use the PStricks package</li>
</ul>
<p>I should add that I typically get PDF with hyperlinks by using something on the order of</p>
<pre><code>\usepackage[ps2pdf,colorlinks=true]{hyperref}
</code></pre>
<p>so it's not necessary to use <code>pdflatex</code> to get good PDF.</p>
<p>So</p>
<ol>
<li>What are the advantages of <code>pdflatex</code> that I don't know about?</li>
<li>What are the disadvantages of the old tools that I've overlooked?</li>
</ol>
http://stackoverflow.com/questions/1821266/what-is-so-special-about-smalltalk/1823495#18234955Answer by Norman Ramsey for What is so special about Smalltalk?Norman Ramsey2009-12-01T01:28:07Z2009-12-01T01:28:07Z<p>Yes, Smalltalk is so important you should study it. Why? You can understand object-oriented programming in pure, simple form. What people forget is that the Smalltalk-80 "Blue Book" has only about 90 pages devoted to the language—the language is just that simple. The other 300 pages talk about the predefined class hierarchy, which is a masterpiece of design for a class-based, object-oriented language that uses single inheritance. You will get a much deeper understanding of objects (e.g., classes are objects, and they have metaclasses, and so on off to infinity... except the knot is carefully tied to keep the system finite) then you would ever get from studying a hybrid language like Java or C++. Smalltalk matters not just because of its history but because of its simplicity:</p>
<ul>
<li><p>Simple enough so you can understand the <em>entire</em> language <em>and</em> the libraries</p></li>
<li><p>Shows one idea (objects are all you need) pushed to its logical extreme</p></li>
</ul>
<p><em>Everybody</em> has something to learn from Smalltalk!</p>
http://stackoverflow.com/questions/1814731/how-to-fix-noncompliant-html-so-expat-will-parse-it-htmltidy-not-working0How to fix noncompliant HTML so Expat will parse it (htmltidy not working)Norman Ramsey2009-11-29T05:21:13Z2009-11-30T02:08:56Z
<p>I'm trying to scrape information from <a href="http://www.nfl.com/scores" rel="nofollow">http://www.nfl.com/scores</a> (in particular, find out when a game is over so my computer can stop recording it). I can download HTML easily enough, and it makes this claim about compliance with standards:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
</code></pre>
<p>But</p>
<ol>
<li><p>An attempt to parse it with Expat produces the error <code>not well-formed (invalid token)</code>.</p></li>
<li><p>The <a href="http://validator.w3.org/" rel="nofollow">W3C's online validation service</a> reports 399 Errors and 121 warnings.</p></li>
<li><p>I tried to run HTML tidy (just called <code>tidy</code>) on my linux system with the <code>-xml</code> option, but tidy reports 56 warnings and 117 errors and is unable to recover a good XML file. The errors look like this:</p>
<pre><code>line 409 column 122 - Warning: unescaped & or unknown entity "&role"
...
line 409 column 172 - Warning: unescaped & or unknown entity "&tabSeq"
...
line 1208 column 65 - Error: unexpected </td> in <br>
line 1209 column 57 - Error: unexpected </tr> in <br>
line 1210 column 49 - Error: unexpected </table> in <br>
</code></pre>
<p>But when I check the input, the "unknown entities" appear to be part of a properly quoted URL, so I don't know if a double quote is missing somewhere or what.</p></li>
</ol>
<p>I know that there is <em>something</em> out there that can parse this stuff because both Firefox and w3m display something reasonable. <strong>What tool will fix the noncompliant HTML so that I can parse it with Expat?</strong></p>
http://stackoverflow.com/questions/1815367/multiplication-of-large-numbers-how-to-catch-overflow/1817456#18174562Answer by Norman Ramsey for multiplication of large numbers, how to catch overflowNorman Ramsey2009-11-30T01:29:40Z2009-11-30T01:29:40Z<p>If you need not just to detect overflow but also to capture the carry, you're best off breaking your numbers down into 32-bit parts. The code is a nightmare; what follows is just a sketch:</p>
<pre><code>#include <stdint.h>
uint64_t mul(uint64_t a, uint64_t b) {
uint32_t ah = a >> 32;
uint32_t al = a; // truncates: now a = al + 2**32 * ah
uint32_t bh = b >> 32;
uint32_t bl = b; // truncates: now b = bl + 2**32 * bh
// a * b = 2**64 * ah * bh + 2**32 * (ah * bl + bh * al) + al * bl
uint64_t partial = al * bl;
uint64_t mid1 = ah * bl;
uint64_t mid2 = al * bh;
uint64_t carry = ah * bh;
// add high parts of mid1 and mid2 to carry
// add low parts of mid1 and mid2 to partial, carrying
// any carry bits into carry...
}
</code></pre>
<p>The problem is not just the partial products but the fact that any of the sums can overflow.</p>
<p><strong>If I had to do this for real, I would write an extended-multiply routine in the local assembly language.</strong> That is, for example, multiply two 64-bit integers to get a 128-bit result, which is stored in two 64-bit registers. All reasonable hardware provides this functionality in a single native multiply instruction—it's not just accessible from C.</p>
<p>This is one of those rare cases where the solution that's most elegant and easy to program is actually to use assembly language. But it's certainly not portable :-(</p>
http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343Comment by Norman Ramsey on Alternatives to gprofNorman Ramsey2009-12-19T05:27:22Z2009-12-19T05:27:22ZMike, have you thought about modifying valgrind to offer your stack profiles? I'd love to try this out in class.http://stackoverflow.com/questions/1814731/how-to-fix-noncompliant-html-so-expat-will-parse-it-htmltidy-not-working/1815767#1815767Comment by Norman Ramsey on How to fix noncompliant HTML so Expat will parse it (htmltidy not working)Norman Ramsey2009-12-19T00:30:59Z2009-12-19T00:30:59ZThis does not really answer the question as posed, but it was so helpful for my real problem that I have marked it as the accepted answer. Thanks!!!!!!http://stackoverflow.com/questions/1851181/why-should-ifdef-be-avoided-in-c-files/1853978#1853978Comment by Norman Ramsey on Why should #ifdef be avoided in .c files?Norman Ramsey2009-12-19T00:29:55Z2009-12-19T00:29:55ZIf speed is an issue, one can put a <code>static inline</code> function in a .h file. I do it routinely.http://stackoverflow.com/questions/250151/lua-as-a-general-purpose-scripting-language/326660#326660Comment by Norman Ramsey on Lua as a general-purpose scripting language?Norman Ramsey2009-12-19T00:26:44Z2009-12-19T00:26:44Z@RyanE: linked!http://stackoverflow.com/questions/1927229/why-are-rtos-coded-only-in-c/1928262#1928262Comment by Norman Ramsey on why are RTOS coded only in c?Norman Ramsey2009-12-19T00:01:40Z2009-12-19T00:01:40ZIf the proof is so trivial, how about some links?http://stackoverflow.com/questions/1904865/how-to-scale-pixels-in-an-image-to-adjust-brightness/1904922#1904922Comment by Norman Ramsey on How to scale pixels in an image to adjust brightness?Norman Ramsey2009-12-15T03:04:03Z2009-12-15T03:04:03ZI Want to do this without any blurring---my intended applications include OCR.http://stackoverflow.com/questions/1904865/how-to-scale-pixels-in-an-image-to-adjust-brightness/1904908#1904908Comment by Norman Ramsey on How to scale pixels in an image to adjust brightness?Norman Ramsey2009-12-15T03:03:07Z2009-12-15T03:03:07ZChoosing what value for gamma? And does it matter that the pixels I have are already gamma-encoded?http://stackoverflow.com/questions/1904865/how-to-scale-pixels-in-an-image-to-adjust-brightnessComment by Norman Ramsey on How to scale pixels in an image to adjust brightness?Norman Ramsey2009-12-15T02:42:40Z2009-12-15T02:42:40ZNo, actually, I have an image for which I believe the object photographed was of roughly uniform brightness (luminance/albedo), but the photograph was taken under uneven illumination. I'm trying to correct for the poor illumination and produce an image that is representative of what the original object photographed should have been.http://stackoverflow.com/questions/664760/how-to-make-an-image-uniform-brightness-using-python-pil/850972#850972Comment by Norman Ramsey on How to Make an Image Uniform Brightness (using Python/PIL)Norman Ramsey2009-12-15T02:22:58Z2009-12-15T02:22:58ZInteresting suggestion---have you tried it?http://stackoverflow.com/questions/1892324/why-program-functionally-in-python/1892614#1892614Comment by Norman Ramsey on Why program functionally in Python?Norman Ramsey2009-12-14T06:10:23Z2009-12-14T06:10:23ZAlex, could you organize your argument into headings or something? I'm finding it hard to follow. I get it that you don't like the implementation restrictions that go with <code>lambda</code> (which I paraphrase as "FP is not well supported in Python"), but why rail against the eta-expanded "\ s . len s", which is bad news in any language?http://stackoverflow.com/questions/1885019/how-do-i-write-all-but-one-function-in-scheme-lisp/1885812#1885812Comment by Norman Ramsey on How do I write all-but-one function in Scheme/LISP?Norman Ramsey2009-12-12T00:20:52Z2009-12-12T00:20:52Z@Eli: Agreed. It's just that count does some arithmetic. Since arithmetic is basically free, I should not obsess over it. Does Common LISP not guarantee proper tail calls?http://stackoverflow.com/questions/1876926/how-can-i-create-bitmaps-in-c/1877159#1877159Comment by Norman Ramsey on How can I create bitmaps (in C)?Norman Ramsey2009-12-10T02:55:53Z2009-12-10T02:55:53ZI had a look at the 100-page API manual, and I'm not sure this is the source for someone who's having trouble getting started...http://stackoverflow.com/questions/1851181/why-should-ifdef-be-avoided-in-c-files/1851183#1851183Comment by Norman Ramsey on Why should #ifdef be avoided in .c files?Norman Ramsey2009-12-05T05:09:29Z2009-12-05T05:09:29Z+1, but I'd love an example :-)http://stackoverflow.com/questions/1840806/c-how-to-conditionally-determine-which-functions-are-called-at-compile-time/1844631#1844631Comment by Norman Ramsey on [C] How to conditionally determine which functions are called at compile time?Norman Ramsey2009-12-05T05:07:57Z2009-12-05T05:07:57Z@pbean: I couldn't resist posing the #ifdef question: <a href="http://stackoverflow.com/questions/1851181" rel="nofollow">stackoverflow.com/questions/1851181</a>. I'm sure there will be many interesting answers. I'm too tired to write one myself :-)http://stackoverflow.com/questions/1840806/c-how-to-conditionally-determine-which-functions-are-called-at-compile-time/1844631#1844631Comment by Norman Ramsey on [C] How to conditionally determine which functions are called at compile time?Norman Ramsey2009-12-05T05:04:46Z2009-12-05T05:04:46ZRegarding the ampersand: It's a rule of C that when the name or an array or a function appears in an rvalue context (that is a context when a value is expected, such as on the right hand side of an = sign), the compiler interprets the name to stand for the <i>address</i> of the array or function, even if no explicit & is included. (You could say that "the compiler automaticaly inserts the &" which is the right idea but a bit sloppy.) I believe this feature was added to C when they made the 1989 ANSI standard, but I'm not sure. It's a nice convenience.