User Jonas K&#246;lker - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:55:11Z http://stackoverflow.com/feeds/user/58668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1932828/how-do-i-learn-c-faster-already-knowing-c-java-c-etc 2 How do I learn C# fast(er), already knowing C, Java, C++, etc.? Jonas Kölker 2009-12-19T12:43:41Z 2009-12-19T13:30:27Z <p>Hi all :)</p> <p>I want to learn C# (on Linux, so using mono), and I'm looking for some guide of guide that taps into the knowledge I already have of other languages; most notably C, C++ and java (but also python, Haskell, lisp, and perhaps a few others).</p> <p>So far all I've found on the web are combined introduction-to-programming and introduction-to-C# texts, but they all fail because I get bored and can't stick to my learning plan.</p> <p>Does anyone have a suggestion for something good to read?</p> <p>Broadening this question up, how do you learn a new language that's similar to languages you already know in a way that taps into the knowledge you already have? Do people write this kind of tutorials? Do you just grab a cheat sheet? Do you have an array of exercises you force yourself through?</p> http://stackoverflow.com/questions/1802475/what-is-the-easiest-way-to-do-inter-process-communication-in-c/1802525#1802525 1 Answer by Jonas Kölker for What is the easiest way to do inter process communication in C#? Jonas Kölker 2009-11-26T09:19:11Z 2009-11-26T09:19:11Z <p>I'd say make them talk over a socket.</p> <p>Have one program <code>listen</code> on a socket and have the other <code>connect</code> to the first. Send the two integers on a single line, as strings of digits.</p> <p>The only question is how they should agree on port numbers, and how they know that they're talking to one another. They can agree on port numbers by you deciding they should always use port 12345 (say), and the dirty-hacky-solution for the second part is to just trust whomever you're talking with to be a nice guy.</p> http://stackoverflow.com/questions/1802471/supress-console-when-calling-system-in-c/1802501#1802501 1 Answer by Jonas Kölker for Supress console when calling "system" in c++ Jonas Kölker 2009-11-26T09:15:13Z 2009-11-26T09:15:13Z <p>It sounds like you're using windows.</p> <p>On Linux (and *nix in general), I'd replace the call to <code>system</code> with calls to <code>fork</code> and <code>exec</code>, respectively. On windows, I think there is some kind of spawn-a-new-process function in the Windows API&mdash;consult the documentation.</p> <p>When you're running shell commands and/or external programs, your program is hard to make platform-independent, as it will depend on the platform having the commands and/or external programs you're running.</p> http://stackoverflow.com/questions/1784507/find-links-and-remove-them-from-html/1784563#1784563 0 Answer by Jonas Kölker for Find Links and Remove them from HTML Jonas Kölker 2009-11-23T17:07:59Z 2009-11-23T17:07:59Z <p><code>sed -i -e 's/&lt;a.*&lt;\/a&gt;//g' filename.html</code></p> <p>Note that using regular expressions for hacking HTML is a... dubious proposition, but it might just work in practice ;-)</p> http://stackoverflow.com/questions/1784495/linux-user-space-elf-loader/1784541#1784541 1 Answer by Jonas Kölker for Linux user-space ELF loader Jonas Kölker 2009-11-23T17:05:14Z 2009-11-23T17:05:14Z <p>A quick <code>apt-cache search</code> suggests <code>libelf1</code>, <code>libelfg0</code> and/or <code>libelfsh0</code>. I think the <code>elfsh</code> program (in the namesake package) might be an interesting practical example of how to use <code>libelfsh0</code>.</p> <p>I haven't tried any myself, but I hope they might be helpful. Good luck :-)</p> http://stackoverflow.com/questions/604094/how-do-you-find-interesting-problems-to-solve 11 How do you find interesting problems to solve? Jonas Kölker 2009-03-02T21:34:55Z 2009-11-14T02:47:50Z <p>How do you find interesting problems to solve?</p> <p>I often want to learn new programming languages. However, I feel that to <em>really</em> understand it, I must write something which is:</p> <ul> <li><p>Real—it should solve some real-world problem. That problem doesn't have to be new (in fact, having a reference solution might be a good idea), but it has to be something that forces me to work out some grubby, dirty details. I don't want to solve math puzzles or implement algorithms-and-data-structures, because that only teaches me how to solve math (or A&amp;DS) problems in <code>'new-language</code>.</p></li> <li><p>Something I can get passionate about—it takes time learning the ins and outs of a new programming language. That means I have to put in that time. To help me stay motivated, I want to solve problems that appeal to me on some level. I think this part is the most difficult, at least for me, judging by all my half-finished projects; it's also the most important part. No matter how real-world a problem is, if you don't work on it you don't learn from it.</p></li> <li><p>Finishable—connected to the passionate aspect, I want something I'm confident I can bring to a shippable state when only working in my spare time. Even though "C compiler" is <em>very</em> real world and I really like compilers, it's a somewhat big mouthful. Even a simple expression evaluator is something you can redesign, debug and optimize many times when you're not familiar with the idioms of a particular language.</p></li> </ul> <p>So, how do you (or would you) solve the problem of finding something interesting to work?</p> <p>Particular solutions—that is, problems to work on—will be greatly appreciated, but (pardon the arrogance) they're just "dumb knowledge". What I'll be most impressed by are new ways of thinking about and attacking the problem (i.e. algorithms >> data :D).</p> <p><strong>EDIT</strong>: the winners so far are "make a game" and "fix something that annoys you about (programming|using comptuers)".</p> <p>The game suggestion has going for it that there are plenty of reasonably simple games I can reimplement (giving me a large selection of problems to attack), they're definitely real world, and I'm a gamer so I'm passionate about good games.</p> <p>The "fix something annoying" has the passion and real-world-iness built in, but it requires that I'm not spoiled by having things just work and that the fix isn't modifying some program not written in the language I want to learn.</p> <p>(You both earned an upvote. An accept may be on its way)</p> http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/961134#961134 6 Answer by Jonas Kölker for What software for your own personal use did you write? Jonas Kölker 2009-06-07T03:21:50Z 2009-11-11T18:51:23Z <p>Wiitones, an application that lets you play music with a <a href="http://en.wikipedia.org/wiki/Wii%5FRemote" rel="nofollow">Wii Remote</a> (and <a href="http://en.wikipedia.org/wiki/Wii%5FRemote#Nunchuk" rel="nofollow">Nunchuk</a>).</p> <p>The application has three channels.</p> <p>Channel 1:</p> <ul> <li>A: enable sound</li> <li>vertical angle of the Wii Remote (i.e. its pitch): control the pitch (i.e. tone) of the channel, in semi-tone steps (frequency factor: 12th root of 2) over 441 Hz.</li> <li>B: enable bend</li> <li>Wii Remote roll (i.e. angle around the vector from the expansion slot to the IR camera): control the bend. Vertical is none, each 90 degrees (left=down, right=up) is one semitone. (Or was it two?)</li> </ul> <p>Channel 2:</p> <ul> <li>C: enable sound</li> <li>pitch of Nunchuk: control pitch (also from 441 Hz in 2<sup>(1/12)</sup>-factor steps)</li> <li>always bends</li> <li>Nunchuk stick, x axis: control the bend (full range is one or two semitones)</li> </ul> <p>Channel 3:</p> <ul> <li>Z enable sound</li> <li>roll of Nunchuk: controls the pitch</li> <li>always bends</li> <li>Nuchuk stick, y axis: control the bend (full range is one or two semitones)</li> </ul> <p>Use + and - to control the volume (shown in binary on the wiimote LEDs). Use the d-pad plus 1 and 2 to offset the channels by an octave. Home quits, <a href="http://en.wiktionary.org/wiki/IIRC" rel="nofollow">IIRC</a>.</p> <p>The tones are all sinus tones; Hand-computed sound waves, ftw. :)</p> <p>It's kind of tricky, though. When the user disengages a tone, you have to continue the sound wave until the elongation hits 0, or else you'll get clicks. While keeping track of the fact that you're going to zero, you also have to deal with the user re-engaging the tone. And you need to do good mixing (hopefully without overflows). And you need to deal with the tone changing frequency not at (conceptual) wavelength markers, but in mid-wave.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/576041#576041 1 Answer by Jonas Kölker for Where to start (self-)learning C, or should I learn I learn a different language? Jonas Kölker 2009-02-22T23:14:47Z 2009-10-19T07:41:51Z <p>If you want some good source code to read, I can heartily suggest Simon Tatham's Puzzle Collection (<a href="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" rel="nofollow">http://www.chiark.greenend.org.uk/~sgtatham/puzzles/</a>, scroll down to the bottom for developer documentation). From it, you can learn:</p> <ul> <li>How to do object-oriented-like programming in C (each game is in a sense a class that implements the "game" interface).</li> <li>How to write portable C (hide all the unportable stuff behind your own interface).</li> <li>How to comment and document your code.</li> <li>How to do GUI programming in C.</li> <li>How to implement data structures in C (I recall the union find and 2-4 trees being done).</li> </ul> http://stackoverflow.com/questions/647537/b-tree-faster-then-avl-or-redblack-tree/657609#657609 14 Answer by Jonas Kölker for B-tree faster then AVL or RedBlack-Tree? Jonas Kölker 2009-03-18T09:57:47Z 2009-07-03T11:58:55Z <p>Sean's post (the currently accepted one) is full of nonsense. Sorry Sean, I don't mean to be rude; I hope I can convince you that my statement is based in fact.</p> <blockquote> <p>They're totally different in their use cases, so it's not possible to make a comparison.</p> </blockquote> <p>They're both used for maintaining a set of totally ordered items with fast lookup, insertion and deletion. They have the same interface and the same intention.</p> <blockquote> <p>RB trees are typically in-memory structures used to provide fast access (ideally O(logN)) to data. [...]</p> </blockquote> <p><em>always</em> O(log n)</p> <blockquote> <p>B-trees are typically disk-based structures, and so are inherently slower than in-memory data.</p> </blockquote> <p>Nonsense. When you store search trees on disk, you typically use B-trees. That much is true. When you store data on disk, it's slower to access than data in memory. But a red-black tree stored on disk is <em>also</em> slower than a red-black tree stored in memory.</p> <p>You're comparing apples and oranges here. What is really interesting is a comparison of in-memory B-trees and in-memory red-black trees.</p> <p>[As an aside: B-trees, as opposed to red-black trees, are theoretically efficient in the I/O-model. I have experimentally tested (and validated) the I/O-model for sorting; I'd expect it to work for B-trees as well.]</p> <blockquote> <p>B-trees are rarely binary trees, the number of children a node can have is typically a large number.</p> </blockquote> <p>To be clear, the size range of B-tree nodes is a parameter of the tree (in C++, you may want to use an integer value as a template parameter).</p> <blockquote> <p>The management of the B-tree structure can be quite complicated when the data changes.</p> </blockquote> <p>I remember them to be much simpler to understand (and implement) than red-black trees.</p> <blockquote> <p>B-tree try to minimize the number of disk accesses so that data retrieval is reasonably deterministic.</p> </blockquote> <p>That much is true.</p> <blockquote> <p>It's not uncommon to see something like 4 B-tree access necessary to lookup a bit of data in a very database.</p> </blockquote> <p>Got data?</p> <blockquote> <p>In most cases I'd say that in-memory RB trees are faster.</p> </blockquote> <p>Got data?</p> <blockquote> <p>Because the lookup is binary it's very easy to find something. B-tree can have multiple children per node, so on each node you have to scan the node to look for the appropriate child. This is an O(N) operation.</p> </blockquote> <p>The size of each node is a fixed parameter, so even if you do a linear scan, it's O(1). If we big-oh over the size of each node, note that you typically keep the array sorted so it's O(log n).</p> <blockquote> <p>On a RB-tree it'd be O(logN) since you're doing one comparison and then branching.</p> </blockquote> <p>You're comparing apples and oranges. The O(log n) is because the height of the tree is at most O(log n), just as it is for a B-tree.</p> <p>Also, unless you play nasty allocation tricks with the red-black trees, it seems reasonable to conjecture that B-trees have better caching behavior (it accesses an array, not pointers strewn about all over the place, and has less allocation overhead increasing memory locality even more), which might help it in the speed race.</p> <p>I can point to experimental evidence that B-trees (with size parameters 32 and 64, specifically) are very competitive with red-black trees for small sizes, and outperforms it hands down for even moderately large values of n. See <a href="http://idlebox.net/2007/stx-btree/stx-btree-0.8.3/doxygen-html/speedtest.html" rel="nofollow">http://idlebox.net/2007/stx-btree/stx-btree-0.8.3/doxygen-html/speedtest.html</a></p> <p>B-trees are faster. Why? I conjecture that it's due to memory locality, better caching behavior and less pointer chasing (which are, if not the same things, overlapping to some degree).</p> http://stackoverflow.com/questions/1057178/is-it-worth-learning-c-to-get-a-deeper-understanding-of-oses-and-computers-in-ge/1057450#1057450 1 Answer by Jonas Kölker for Is it worth learning C to get a deeper understanding of OS'es and computers in general? Jonas Kölker 2009-06-29T09:43:31Z 2009-07-03T11:55:40Z <p>I think you should learn C.</p> <p>Well, rather than (just) learning C, you should be reading K&amp;R2.</p> <p>Here's a laundry list of what K&amp;R2 teaches you about:</p> <ul> <li>C</li> <li>Sorting</li> <li>Binary search trees</li> <li>Hash tables</li> <li>Memory allocation algorithms</li> <li>The Von-Neumann flat-memory machine architecture</li> <li>Systems programming (<code>wc</code> is---or can be made---surprisingly complex)</li> <li>Interfacing with the kernel</li> </ul> <p>When you truly "get" C, you also have easy access to the bare metal; it becomes much easier to get at the machine-native call stack. Once you see the similarity between function pointers, if-then-else blocks, "goto" and "return", it becomes much easier to understand how buffer overflow exploits work.</p> <p>Learning C is a good thing. Not because it automatically teaches you everything about how programs work, but because it makes you gravitate towards that knowledge.</p> http://stackoverflow.com/questions/941283/when-does-big-o-notation-fail 11 When does Big-O notation fail? Jonas Kölker 2009-06-02T18:57:21Z 2009-07-02T15:14:34Z <p>What are some examples where Big-O notation[1] fails in practice?</p> <p>That is to say: when will the Big-O running time of algorithms predict algorithm A to be faster than algorithm B, yet in practice algorithm B is faster when you run it?</p> <p>Slightly broader: when do theoretical predictions about algorithm performance mismatch observed running times? A non-Big-O prediction might be based on the average/expected number of rotations in a search tree, or the number of comparisons in a sorting algorithm, expressed as a factor times the number of elements.</p> <p><strong>Clarification</strong>:</p> <p>Despite what some of the answers say, the Big-O notation <strong>is</strong> meant to predict algorithm performance. That said, it's a <strong>flawed</strong> tool: it only speaks about asymptotic performance, and it blurs out the constant factors. It does this for a reason: it's meant to predict algorithmic performance independent of which computer you execute the algorithm on.</p> <p><em>What I want to know is this</em>: when do the flaws of this tool show themselves? I've found Big-O notation to be reasonably useful, but far from perfect. What are the pitfalls, the edge cases, the gotchas?</p> <p>An example of what I'm looking for: running Dijkstra's shortest path algorithm with a Fibonacci heap instead of a binary heap, you get O(m + n log n) time versus O((m+n) log n), for n vertices and m edges. You'd expect a speed increase from the Fibonacci heap sooner or later, yet said speed increase never materialized in my experiments.</p> <p>(Experimental evidence, without proof, suggests that binary heaps operating on uniformly random edge weights spend O(1) time rather than O(log n) time; that's one big gotcha for the experiments. Another one that's a bitch to count is the expected number of calls to DecreaseKey).</p> <p>[1] Really it isn't the <em>notation</em> that fails, but the <em>concepts</em> the notation stands for, and the theoretical approach to predicting algorithm performance. &lt;/anti-pedantry&gt;</p> <p><strong>On the accepted answer</strong>:</p> <p>I've accepted an answer to highlight the kind of answers I was hoping for. Many different answers which are just as good exist :) What I like about the answer is that it suggests a general rule for when Big-O notation "fails" (when cache misses dominate execution time) which might also increase understanding (in some sense I'm not sure how to best express ATM).</p> http://stackoverflow.com/questions/535785/preparing-for-a-cs-degree-and-college-any-tips/535816#535816 6 Answer by Jonas Kölker for Preparing for a CS degree and college. Any tips? Jonas Kölker 2009-02-11T07:48:59Z 2009-07-02T04:11:32Z <p><a href="http://www.joelonsoftware.com/" rel="nofollow">Joel</a> (on software) thinks that what's the most crucial is a good understanding of pointers and recursion sets the great developers apart from the merely competent ones. I tend to agree.</p> <p>So, get some experience dealing with pointers and recursion.</p> <p>If you want a practical project to work on, implement a Sudoku solver in C. Or do some recursive graph algorithms in C; nothing fancy, just a <a href="http://en.wikipedia.org/wiki/Depth-first%5Fsearch" rel="nofollow">DFS</a> to get started will be fine. Then go from there.</p> http://stackoverflow.com/questions/1057529/how-to-increment-an-iterator-by-2/1057587#1057587 1 Answer by Jonas Kölker for How to increment an iterator by 2? Jonas Kölker 2009-06-29T10:19:39Z 2009-06-29T10:19:39Z <p>The very simple answer:</p> <pre><code>++++iter </code></pre> <p>The long answer:</p> <p>You really should get used to writing <code>++iter</code> instead of <code>iter++</code>. The latter must return (a copy of) the old value, which is different from the new value; this takes time and space.</p> <p>Note that prefix increment (<code>++iter</code>) takes an lvalue and returns an lvalue, whereas postfix increment (<code>iter++</code>) takes an lvalue and returns an rvalue.</p> http://stackoverflow.com/questions/1057178/is-it-worth-learning-c-to-get-a-deeper-understanding-of-oses-and-computers-in-ge/1057479#1057479 0 Answer by Jonas Kölker for Is it worth learning C to get a deeper understanding of OS'es and computers in general? Jonas Kölker 2009-06-29T09:51:10Z 2009-06-29T09:51:10Z <blockquote> <p>For example I don't even know what a stack overflow [... is ...] and why it occurs.</p> </blockquote> <p>Whenever one function calls another, the computer needs to remember where in the execution of the caller it was. This information is stored in a stack: calling a function pushes a new record saying "return to $HERE when done", whereas returning from a function pops the return address and goes back to there (or rather, the next thing after the function call that has just been returned from).</p> <p>Typically (determined by the OS or language runtime) you only have a limited amount of space for this stack. Running out of that space is called a stack overflow.</p> <p>See also <a href="http://en.wikipedia.org/wiki/Stack_overflow" rel="nofollow">http://en.wikipedia.org/wiki/Stack_overflow</a></p> http://stackoverflow.com/questions/446589/getting-started-in-c-programming/1048152#1048152 0 Answer by Jonas Kölker for Getting started in C Programming Jonas Kölker 2009-06-26T09:15:23Z 2009-06-26T09:15:23Z <blockquote> <p>What compiler could I use and why?</p> </blockquote> <p>GCC, because it's universal: you can run it on Windows, OS X, Linux, Solaris, Haiku, anything you mention, and on any kind of CPU (i.e. architecture), and <em>for</em> any kind of CPU. Your compiler-specific skills are never obsolete with GCC.</p> <p>For windows, that'd be MinGW.</p> <blockquote> <p>What IDE could I use and why?</p> </blockquote> <p>Emacs. Press tab once, emacs automatically indents the right way. Moving through text is done effortlessly with Ctrl-<em>letter</em> and Alt-<em>letter</em>, instead of by moving your hand all the way over to the arrow keys or page up/down (although you do have that option). Yeah, it sounds weird, but it's a boon once you get the hang of it. The colors are pretty to look at and easy to read (unlike vim's dark-blue-on-black comments).</p> <p>You may like <a href="http://ecb.sourceforge.net/" rel="nofollow">ecb-minor-mode</a>, which works well with <a href="http://www.emacswiki.org/emacs/window-number.el" rel="nofollow">window-numbering</a>. Also, there's a great IRC channel, #emacs, on irc.freenode.net.</p> <blockquote> <p>What other tools are useful for a beginner C programmer?</p> </blockquote> <p>A debugger. Note that gdb takes a little while to learn, but is quite nice.</p> <p>Also: Valgrind. Very useful for checking your program for errors regarding dynamically allocated memory. Also very useful for finding threading bugs (if you need that).</p> <blockquote> <p>Are there free online guides?</p> </blockquote> <p>They come and change and go. I punt this one and let Google give the answer.</p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/1048087#1048087 5 Answer by Jonas Kölker for "Must Have" Books on Your Bookshelf Jonas Kölker 2009-06-26T08:56:17Z 2009-06-26T08:56:17Z <p>The C programming Language, second edition, by Kernighan and Ritchie. Also known as K&amp;R2.</p> <p><img src="http://ecx.images-amazon.com/images/I/41jZJq0HMcL.%5FSS500%5F.jpg" alt="The C Programming Language, front cover" /></p> http://stackoverflow.com/questions/478773/how-is-oop-and-design-patterns-related/1046481#1046481 0 Answer by Jonas Kölker for How is OOP and Design Patterns related? Jonas Kölker 2009-06-25T22:06:17Z 2009-06-25T22:06:17Z <blockquote> <p>Aren't Design Patterns an extension to OOP principles? Why are these two concepts treated separately?</p> </blockquote> <p>"Design Patterns" are about OOP principles mainly due to a historical accident.</p> <p>I'm fairly certain that ML hackers were talking about folds of algebraic datatypes long before the GoF book. That's a tried-and-true solution to a common problem: you want to compute a single value based on the contents of some algebraic datatype. Similarly for <code>map</code>, I figure.</p> <p>I think the general (meta?)practice of discovering and codifying solution templates is quite old---isn't that essentially what "Best Practices" are all about?</p> <p>I figure the reason why DPs and OOP are treated separately is because although they overlap---one would think that OOP best practices have something to do with OOP principles---there's some independence: it makes sense to talk about design patterns in a non-OO setting.</p> http://stackoverflow.com/questions/383804/for-learning-oo-do-you-recommend-head-first-java-or-head-first-ooad/1046445#1046445 0 Answer by Jonas Kölker for For learning OO, do you recommend Head First Java or Head First OOA&D? Jonas Kölker 2009-06-25T21:53:19Z 2009-06-25T21:53:19Z <blockquote> <p>For learning OO, do you recommend Head First Java or Head First OOA&amp;D?</p> </blockquote> <p>No! ;-)</p> <p>I'll offer a recommendation for when you get the basic idea of objects, classes and interfaces.</p> <p>The recommendation is: reading the source code of Simon Tatham's Puzzle Collection, and the documentation of it. Not all of it, mind you, but enough that you see how the design is object-oriented (if you squint at it the right way).</p> <p>It'll both hammer home and challenge your understanding of what OO is and isn't. Very educational once it clicks.</p> <p>You can also read the Linux VFS layer instead, but I can't vouch for the ease nor educational value of that.</p> http://stackoverflow.com/questions/1046150/python-classes-that-refer-to-each-other/1046418#1046418 5 Answer by Jonas Kölker for python classes that refer to each other Jonas Kölker 2009-06-25T21:46:20Z 2009-06-25T21:46:20Z <p>In python, the code in a class is run when the class is loaded.</p> <p>Now, what the hell does that mean? ;-)</p> <p>Consider the following code:</p> <pre><code>class x: print "hello" def __init__(self): print "hello again" </code></pre> <p>When you load the module that contains the code, python will print <code>hello</code>. Whenever you create an <code>x</code>, python will print <code>hello again</code>.</p> <p>You can think of <code>def __init__(self): ...</code> as equivalent with <code>__init__ = lambda self: ...</code>, except none of the python lambda restrictions apply. That is, <code>def</code> is an assignment, which might explain why code outside methods but not inside methods is run.</p> <p>When your code says</p> <pre><code>class X(models.Model): creator = Registry() creator.register(Y) </code></pre> <p>You refer to <code>Y</code> when the module is loaded, before <code>Y</code> has a value. You can think of <code>class X</code> as an assignment (but I can't remember the syntax for creating anonymous classes off-hand; maybe it's an invocation of <code>type</code>?)</p> <p>What you may want to do is this:</p> <pre><code>class X(models.Model): pass class Y(models.Model): foo = something_that_uses_(X) X.bar = something_which_uses(Y) </code></pre> <p>That is, create the class attributes of <code>X</code> which reference <code>Y</code> after <code>Y</code> is created. Or vice versa: create <code>Y</code> first, then <code>X</code>, then the attributes of <code>Y</code> which depend on <code>X</code>, if that's easier.</p> <p>Hope this helps :)</p> http://stackoverflow.com/questions/1020622/is-interpreter-an-anti-pattern 8 Is INTERPRETER an anti-pattern? Jonas Kölker 2009-06-20T00:36:38Z 2009-06-20T08:46:31Z <p>To me, the Interpreter patten sounds very much like an anti-pattern known as Greenspun's tenth rule:</p> <blockquote> <p>Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp.</p> </blockquote> <p>That is, if you need to use Interpreter, you're likely to create something that's slow, ad-hoc and poorly specified. The right solution is to use the right language from the beginning.</p> <p>Or, alternatively, embed a well known and well specified language into your application, such as Guile (the GNU embeddable scheme). Or use Haskell as an embedded domain-specific language.</p> <p>But I haven't seen this in practice--what are your experiences regarding building your own embedded languages? Is it a good idea? Is it better than embedding an already existing language?</p> <p>(I'm not particularly a lisp fanboy. It's nice, but so's C and Haskell and python and a lot of other languages.)</p> http://stackoverflow.com/questions/126158/what-is-your-favorite-anti-pattern/1020607#1020607 0 Answer by Jonas Kölker for What is your "favorite" anti pattern? Jonas Kölker 2009-06-20T00:31:10Z 2009-06-20T00:31:10Z <p>Mine is clearly Interpreter.</p> <p>This anti-pattern is also known as Greenspun's tenth rule:</p> <blockquote> <p>Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp.</p> </blockquote> <p>;-)</p> http://stackoverflow.com/questions/498185/why-does-the-interpreter-pattern-suck/1020602#1020602 0 Answer by Jonas Kölker for Why does the Interpreter Pattern suck? Jonas Kölker 2009-06-20T00:29:48Z 2009-06-20T00:29:48Z <p>The INTERPRETER pattern sucks because it's a codification of Greenspun's tenth rule:</p> <blockquote> <p>Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp.</p> </blockquote> <p>This was stated in 1993. A modern addendum might include C++ and Java.</p> http://stackoverflow.com/questions/1006635/what-is-the-default-state-of-variables/1006671#1006671 0 Answer by Jonas Kölker for What is the default state of variables? Jonas Kölker 2009-06-17T12:25:17Z 2009-06-17T12:25:17Z <p>A quick test shows a and c to be 0.</p> <pre><code>int a; static int c; int main() { printf("%d %d\n", a, c); return 0; } </code></pre> <p>The location of a (and c) are determined at compile-time; that is, they're neither put on the stack nor in a memory interval returned by malloc. I think the C standard says they're initialized to 0 in all cases, then.</p> <p>I'm 99.9% confident about with respect to <code>c</code>, and 98% confident with regard to <code>a</code>. The keyword <code>static</code>, in the context of global variables, really is analogous to <code>private</code> in (say) C++ and Java: it's about visibility, not storage location.</p> <p>What Andrew Hare says about uninitialized variables is true for data stored on the stack or in malloc'd memory. Not so for statically stored variables.</p> http://stackoverflow.com/questions/53264/what-is-the-most-beautiful-code-you-have-ever-seen-or-written/999269#999269 1 Answer by Jonas Kölker for What Is the most beautiful code you have ever seen or written? Jonas Kölker 2009-06-16T01:44:50Z 2009-06-16T01:44:50Z <pre><code>repeat x = let xs = x:xs in xs </code></pre> <p>In Haskell, this creates an infinite list where all elements are identical. For instance, <code>repeat 0</code> creates the list <code>[0,0,0,...]</code>.</p> <p>What I like about is how elegantly it's expressed, and how it forces you to understand Haskell's lazy nature.</p> <p>Think of it (in C terms) like instead of <code>struct link</code> storing a <code>next</code> pointer, you store a pointer to a function which returns the next link. In case of <code>xs</code>, it happens to return a link identical to the one you're looking at (could be the same, could be a copy), which then later again returns itself (or a copy), which then... and so forth.</p> http://stackoverflow.com/questions/989618/how-do-i-make-a-lazy-list-in-an-eager-language/989634#989634 2 Answer by Jonas Kölker for How do I make a Lazy List in an Eager Language? Jonas Kölker 2009-06-13T00:43:36Z 2009-06-13T00:43:36Z <p>The solution is to use a macro. I'm no scheme expert (especially not on macros), but maybe this snippet can serve as inspiration:</p> <pre><code>(define-syntax pointer-to (syntax-rules () ((pointer-to var) (make-pointer (lambda () var) ; the "pointer dereference" operation (lambda (value) (set! var value)))))) ; "pointer write" </code></pre> <p>It's used as follows:</p> <pre><code>(define x 1) (define px (pointer-to x)) (pointer-set! px 2) ; this (in some sense) becomes `(set! x 2)' </code></pre> <p>So maybe you want something like</p> <pre><code>(define-syntax lazy-cons (syntax-rules () ((lazy-cons head lazytail) (cons head (lambda () lazytail))))) </code></pre> <p>But I'm not sure. Have a look at <code>define-syntax</code>.</p> http://stackoverflow.com/questions/902984/your-criteria-in-using-a-new-technology-or-programming-language/976434#976434 0 Answer by Jonas Kölker for Your criteria in using a new technology or programming language Jonas Kölker 2009-06-10T15:41:12Z 2009-06-10T15:41:12Z <p>Someone has once said something to the effect of:</p> <p>"If learning a programming language doesn't change the way you think about programming, it's not worth learning."</p> <p>That's one metric (out of many) to judge the value of learning new languages (or other technology) by. Using this, one might suggest learning the following languages:</p> <ul> <li>C, because it makes you understand the Von Neumann architecture better than any other language (and it's sort-of random-access Turing Machine like, sorta'...).</li> <li>LaTeX (as a programming language, not only as a typesetting system) because it makes you learn about string rewriting systems as a model of computation. Here, sed is similar; learn both, because they're also both useful tools :-)</li> <li>Haskell, because it teaches you about functional programming, lambda calculus (yet another model of computation), lazy evaluation, type inference, algebraic datatypes (done with ease), decidability of type systems (i.e. learn to fear C++)</li> <li>Scheme `(or (another) ,Lisp) for its macro system, and dynamic typing, and functional programming done somewhat differently.</li> <li>SmallTalk, to learn Object-orientation (so I hear)</li> <li>Java, to learn what earning money feels like :D</li> <li>Forth, because <code>wisdom bestowed forth learned implies</code>.</li> </ul> <p>... that doesn't explain why I learn python or shell scripting, though. I think you should take enlightenment with a grain of salt and a shovelful of pragmatism :)</p> http://stackoverflow.com/questions/195162/as-a-programmer-how-do-you-deal-with-digestive-system-problem/975743#975743 0 Answer by Jonas Kölker for As a programmer, how do you deal with digestive system problem? Jonas Kölker 2009-06-10T13:52:21Z 2009-06-10T13:52:21Z <p>Take a load of laxatives a bring your laptop with you on the can =D</p> http://stackoverflow.com/questions/974703/svn-and-revision-numbers/974723#974723 0 Answer by Jonas Kölker for SVN and revision numbers Jonas Kölker 2009-06-10T10:13:54Z 2009-06-10T10:13:54Z <p>This is a duplicate of <a href="http://stackoverflow.com/questions/974697/svn-and-revision-numbers">http://stackoverflow.com/questions/974697/svn-and-revision-numbers</a></p> http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/961161#961161 0 Answer by Jonas Kölker for Where do you keep your code? Jonas Kölker 2009-06-07T03:54:54Z 2009-06-07T03:54:54Z <p><code>/home/jonas/src/$PROJECT_NAME</code></p> <p>*nix is all about the TLAs ;-)</p> http://stackoverflow.com/questions/961060/getting-into-source-control/961156#961156 2 Answer by Jonas Kölker for Getting into Source Control Jonas Kölker 2009-06-07T03:52:59Z 2009-06-07T03:52:59Z <p>Use git.</p> <p>One workflow that git does really well:</p> <ol> <li>Have an idea for some feature you want to implement</li> <li>Create a new branch for that feature</li> <li>Write code, commit like crazy</li> <li>When you're done implementing, squeeze all the crazy commits into one big patch</li> <li>Commit that patch against your main branch</li> <li>Delete the for-that-one-feature branch.</li> </ol> <p>This is wonderful to have. You can have multiple parallel branches for this, and it's really easy.</p> <p>As an additional feature, if your project goes public and you use git, people who check out your code will have an easy time making their own changes to (their copy of) your code, version-controlled and all, and it'll easy to track upstream at the same time.</p> <p>If not git, try some other distributed source control system and see if it does good branching and local commits as well.</p> http://stackoverflow.com/questions/137550/is-programming-math/137591#137591 Comment by Jonas Kölker on Is Programming == Math? Jonas Kölker 2009-12-10T16:45:44Z 2009-12-10T16:45:44Z boytheo said &quot;math is the subset of logic that deals with numbers&quot;. I /strongly/ disagree. Ask any mathematician, and they will say math includes topology, dealing with shape, and algebra, dealing with structure. Also, if you happen to ask someone who uses ZFC as a foundation for their mathematics, they'll tell you that math is formal logic applied to /sets/, not numbers. Well, except that we use numbers as names for certain sets, i.e. 0={}, 1={0}, 2={0,1}, etc., and think of relationships between such sets in terms of our intuitive understanding of numbers (i.e. 2+2=4, not 2+2={0,1,2,3}) http://stackoverflow.com/questions/1881905/call-function-with-multiple-arguments/1881925#1881925 Comment by Jonas Kölker on Call function with multiple arguments Jonas Kölker 2009-12-10T16:25:08Z 2009-12-10T16:25:08Z &quot;fn.apply(args.shift(), args);&quot; -- Does javascript guarantee a left-to-right function argument evaluation order? Is args passed by reference? Expressions of form &quot;f(modify(object), object))&quot; trigger my spider senses... http://stackoverflow.com/questions/1784507/find-links-and-remove-them-from-html/1784563#1784563 Comment by Jonas Kölker on Find Links and Remove them from HTML Jonas Kölker 2009-11-24T09:21:40Z 2009-11-24T09:21:40Z &quot;[make regex break]&quot; -- I agree. That's why I said using regexes for HTML may be a dubious proposition ||| &quot;[downmod for even suggestion it]&quot; -- well, so be it :( if the HTML is laid out right, which the OP might be in control of, regexes might actually be the best solution: it works and it's easy/fast to hack up. Not the cleanest, sure, but sometimes you just need something that works on the data you have (and not the data you don't have). http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/1048087#1048087 Comment by Jonas Kölker on "Must Have" Books on Your Bookshelf Jonas Kölker 2009-11-23T11:53:38Z 2009-11-23T11:53:38Z &quot;I am sorry to write such a long letter. I didn't have time to write a short one.&quot; -- various attributions, including Mark Twain and Voltaire. We should all be happy that K&amp;R took the time to write a short book. http://stackoverflow.com/questions/2481/best-self-balancing-bst-for-quick-insertion-of-a-large-number-of-nodes/500734#500734 Comment by Jonas Kölker on Best self-balancing BST for quick insertion of a large number of nodes Jonas Kölker 2009-11-21T04:51:52Z 2009-11-21T04:51:52Z In the best case, the user is searching for the value stored at the root node, which takes O(1) time to access... http://stackoverflow.com/questions/1077415/is-android-development-restrictive-in-any-way-like-iphone/1077549#1077549 Comment by Jonas Kölker on Is Android development restrictive in any way like iphone? Jonas Kölker 2009-07-03T17:12:24Z 2009-07-03T17:12:24Z maybe you can compromise and meet on the middle, i.e. get an hPhone. Programmed exclusively in haskell, of course ;-) http://stackoverflow.com/questions/1057178/is-it-worth-learning-c-to-get-a-deeper-understanding-of-oses-and-computers-in-ge/1057450#1057450 Comment by Jonas Kölker on Is it worth learning C to get a deeper understanding of OS'es and computers in general? Jonas Kölker 2009-07-03T11:55:08Z 2009-07-03T11:55:08Z Section 6.5, &quot;Self-referential Structures&quot; talk about binary trees. Section 6.6, &quot;Table lookup&quot; talks about hash tables. Not thoroughly, mind you; it's a book about C, not algorithms and data structures. But the eager, attentive student can learn trees and hash tables just the same. http://stackoverflow.com/questions/1039853/why-is-the-c-stl-is-so-heavily-based-on-templates-and-not-on-interfaces/1039879#1039879 Comment by Jonas Kölker on Why is the C++ STL is so heavily based on templates? (and not on *interfaces*) Jonas Kölker 2009-06-25T22:39:51Z 2009-06-25T22:39:51Z &quot;and with C++0x some things can even be programmed functionally&quot; -- it can be programmed functionally without those features, just more verbosely. http://stackoverflow.com/questions/1039853/why-is-the-c-stl-is-so-heavily-based-on-templates-and-not-on-interfaces Comment by Jonas Kölker on Why is the C++ STL is so heavily based on templates? (and not on *interfaces*) Jonas Kölker 2009-06-25T22:37:38Z 2009-06-25T22:37:38Z &quot;compiled code can be made more efficient, by tailor-compiling the template for each used type, instead of using vtables.&quot; Yeah, but you get redundant code filling up the instruction cache. In modern CPU architectures, you're typically constrained on (cache) memory rather than clock cycles. But don't trust me: do the experiment. Err, well, except that it takes reimplementing g++ ;-) http://stackoverflow.com/questions/24270/whats-the-point-of-oop/402197#402197 Comment by Jonas Kölker on What's the point of OOP? Jonas Kölker 2009-06-25T22:34:38Z 2009-06-25T22:34:38Z Is that desirable? Isn't the VISITOR pattern essentially saying that sometimes you want to add behavior without modifying the classes? Isn't VISITOR being a pattern rather than an anti-pattern witnessing the fact that sometimes you can't or shouldn't group data and behavior? http://stackoverflow.com/questions/24270/whats-the-point-of-oop/402994#402994 Comment by Jonas Kölker on What's the point of OOP? Jonas Kölker 2009-06-25T22:27:32Z 2009-06-25T22:27:32Z &quot;It agrees emphatically with DRY (don't repeat yourself)&quot; -- teaching by counterexample, eh? ;-) http://stackoverflow.com/questions/24270/whats-the-point-of-oop/24308#24308 Comment by Jonas Kölker on What's the point of OOP? Jonas Kölker 2009-06-25T22:15:22Z 2009-06-25T22:15:22Z &quot;notion of the class that seperates the interface from implementation&quot; --- I thought interfaces were interfaces and classes were implementations? Maybe I'm just a too process-oriented thinker, but I figure it's the polymorphism, the variance in code with uniformity in use, that's the kicker of OOP; I figure that &quot;a bunch of C functions&quot; separate an interface from an implementation just as well as &quot;a java class&quot;. Maybe I'm all wrong? http://stackoverflow.com/questions/6301/why-is-array-length-an-int-and-not-an-uint/6309#6309 Comment by Jonas Kölker on Why is Array.Length an int, and not an uint Jonas Kölker 2009-06-25T10:54:38Z 2009-06-25T10:54:38Z &quot;but that's just the way it is.&quot; -- no, things are never just the way they are. There's always a design decision being made, and it always pays to ask why. One might learn something from the pros and cons, or engage the designer (in some cases) in a discussion about the them. Always ask questions! :) http://stackoverflow.com/questions/1020622/is-interpreter-an-anti-pattern/1020662#1020662 Comment by Jonas Kölker on Is INTERPRETER an anti-pattern? Jonas Kölker 2009-06-22T23:32:57Z 2009-06-22T23:32:57Z &quot;Are you congenitally opposed to Domain Specific Languages?&quot; -- not at all. In fact, I'm using embedded scheme for my wiimote-to-XTest adapter application, with a limited set of primitives in the user configuration file API. I'm just not sure what to make of the INTERPRETER design pattern. // Maybe I've been presented to design patterns the wrong way: as a set of strict rules (I call this &quot;the straightjacket model of design patterns&quot;) while in fact they're just a set of loose guidelines and inspiration (which I call &quot;the muse model of design patterns&quot;). http://stackoverflow.com/questions/1020622/is-interpreter-an-anti-pattern/1020691#1020691 Comment by Jonas Kölker on Is INTERPRETER an anti-pattern? Jonas Kölker 2009-06-22T23:27:01Z 2009-06-22T23:27:01Z &quot;SQL evaluation engine&quot; -- Ermm... no? AFAICT, the INTERPRETER pattern says to evaluate the tree bottom-up. A modestly sophisticated query planner will do transformations to sufficiently complicated queries which speed them up, sometimes dramatically so. Executing SQL with a bottom-up evaluation is not the right way to go. (Similarly for compilers). But... is INTERPRETER talking about just any kind of AST traversal? Also, isn't it the opposite/dual/orthogonal to Visitor?