Jonas Kölker
|
Registered User
|
Cryptography PhD student, gamer ((st|w)arcraft + zelda + guitar hero == happy), musician (guitar|sax|piano).
|
|
Nov 29 |
accepted | Supress console when calling “system” in c++ |
|
Nov 26 |
answered | What is the easiest way to do inter process communication in C#? |
|
Nov 26 |
answered | Supress console when calling “system” in c++ |
|
Nov 24 |
comment |
Find Links and Remove them from HTML "[make regex break]" -- I agree. That's why I said using regexes for HTML may be a dubious proposition ||| "[downmod for even suggestion it]" -- 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). |
|
Nov 24 |
accepted | Linux user-space ELF loader |
|
Nov 23 |
answered | Find Links and Remove them from HTML |
|
Nov 23 |
answered | Linux user-space ELF loader |
|
Nov 23 |
awarded | ● Necromancer |
|
Nov 23 |
comment |
“Must Have” Books on Your Bookshelf "I am sorry to write such a long letter. I didn't have time to write a short one." -- various attributions, including Mark Twain and Voltaire. We should all be happy that K&R took the time to write a short book. |
|
Nov 21 |
comment |
Best self-balancing BST for quick insertion of a large number of nodes In the best case, the user is searching for the value stored at the root node, which takes O(1) time to access... |
|
Nov 11 |
awarded | ● Necromancer |
|
Nov 7 |
awarded | ● Nice Answer |
|
Oct 19 |
revised |
Where to start (self-)learning C, or should I learn I learn a different language? added link to Simon Tatham's puzzle collection |
|
Oct 17 |
awarded | ● Popular Question |
|
Oct 4 |
accepted | B-tree faster then AVL or RedBlack-Tree? |
|
Jul 28 |
awarded | ● Nice Answer |
|
Jul 22 |
awarded | ● Nice Question |
|
Jul 7 |
awarded | ● Necromancer |
|
Jul 3 |
comment |
Is Android development restrictive in any way like iphone? maybe you can compromise and meet on the middle, i.e. get an hPhone. Programmed exclusively in haskell, of course ;-) |
|
Jul 3 |
revised |
B-tree faster then AVL or RedBlack-Tree? added 2 characters in body |
|
Jul 3 |
revised |
Is it worth learning C to get a deeper understanding of OS’es and computers in general? added 11 characters in body |
|
Jul 3 |
comment |
Is it worth learning C to get a deeper understanding of OS’es and computers in general? Section 6.5, "Self-referential Structures" talk about binary trees. Section 6.6, "Table lookup" 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. |
|
Jun 29 |
answered | How to increment an iterator by 2? |
|
Jun 29 |
answered | Is it worth learning C to get a deeper understanding of OS’es and computers in general? |
|
Jun 29 |
revised |
Is it worth learning C to get a deeper understanding of OS’es and computers in general? edited tags |
|
Jun 29 |
answered | Is it worth learning C to get a deeper understanding of OS’es and computers in general? |
|
Jun 26 |
answered | Getting started in C Programming |
|
Jun 26 |
answered | “Must Have” Books on Your Bookshelf |
|
Jun 25 |
comment |
Why is the C++ STL is so heavily based on templates? (and not on *interfaces*) "and with C++0x some things can even be programmed functionally" -- it can be programmed functionally without those features, just more verbosely. |
|
Jun 25 |
comment |
Why is the C++ STL is so heavily based on templates? (and not on *interfaces*) "compiled code can be made more efficient, by tailor-compiling the template for each used type, instead of using vtables." 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++ ;-) |
|
Jun 25 |
comment |
What’s the point of OOP? 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? |
|
Jun 25 |
comment |
What’s the point of OOP? "It agrees emphatically with DRY (don't repeat yourself)" -- teaching by counterexample, eh? ;-) |
|
Jun 25 |
accepted | python classes that refer to each other |
|
Jun 25 |
comment |
What’s the point of OOP? "notion of the class that seperates the interface from implementation" --- 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 "a bunch of C functions" separate an interface from an implementation just as well as "a java class". Maybe I'm all wrong? |
|
Jun 25 |
answered | How is OOP and Design Patterns related? |
|
Jun 25 |
answered | For learning OO, do you recommend Head First Java or Head First OOA&D? |
|
Jun 25 |
answered | python classes that refer to each other |
|
Jun 25 |
comment |
Why is Array.Length an int, and not an uint "but that's just the way it is." -- 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! :) |
|
Jun 22 |
comment |
Is INTERPRETER an anti-pattern? "Are you congenitally opposed to Domain Specific Languages?" -- 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 "the straightjacket model of design patterns") while in fact they're just a set of loose guidelines and inspiration (which I call "the muse model of design patterns"). |
|
Jun 22 |
comment |
Is INTERPRETER an anti-pattern? "SQL evaluation engine" -- 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? |
|
Jun 20 |
asked | Is INTERPRETER an anti-pattern? |
|
Jun 20 |
answered | What is your “favorite” anti pattern? |
|
Jun 20 |
answered | Why does the Interpreter Pattern suck? |
|
Jun 18 |
comment |
What is the default state of variables? Sadly, I can't remove my downvote. SO says "vote to old to be removed unless post is edited." wtf, it is edited... As an addition: the garbage uninitialized auto variables will have is (in most obvious implementation) whatever was stored on the stack. And a piece of pedantry: I think their value is unspecified, not that program behavior is undefined. That is, the variables can hold any value, but the program is not allowed to terminate (or take a wild branch) just because you didn't initialize your variables. |
|
Jun 17 |
comment |
What is the default state of variables? -1, it's wrong in the context of global variables. Ping me if the post is changed, then I'll remove the downvote. |
|
Jun 17 |
answered | What is the default state of variables? |
|
Jun 16 |
answered | What Is the most beautiful code you have ever seen or written? |
|
Jun 16 |
comment |
Multiple levels of infinity But, assuming each book takes up at least one atom, there can be at most 10^80 books ;-) |
|
Jun 14 |
comment |
How do I make a Lazy List in an Eager Language? I'll try, to the best of my ability. "(define-syntax NAME (syntax-rules () ((NAME ARG1 ARG2 ...) SOME_EXPRESSION))))" means: whenever the parser sees (NAME ARG1 ARG2 ...) it replaces it with SOME_EXPRESSION, doing argument substitution in SOME_EXPRESSION. In the case of lazy-cons, it rewrites (lazy-cons 1 (list 1 2)) to (cons 1 (lambda () (list 1 2))). Note that head took the "value" 1 (really, the syntax tree 1) and was inserted into the cons; and lazytail had the "value" (list 1 2) and was... "inserted into" the call to cons. It's somewhat similar to macros in C and C++, except better :) |
|
Jun 13 |
accepted | How do I make a Lazy List in an Eager Language? |
