User aardvark - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T18:42:45Zhttp://stackoverflow.com/feeds/user/311http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/296/should-i-learn-c/12617#1261715Answer by aardvark for Should I learn C?aardvark2008-08-15T19:18:25Z2009-10-28T09:54:20Z<p>Regarding C vs. Assembler: I'd still pick C because: </p>
<ul>
<li>It is more portable than an assembly language </li>
<li>It's much more readable than an assembly language </li>
<li>The C Programming Language_ is perhaps the best concise introduction to any language </li>
<li>
There is a much larger code base of C out there to download and study, if you really want to see what the language can do. </li>
</ul>
<p>And even though it provides a certain level of abstraction, C is still close enough to the machine that it will make you think about what is happening inside the box. And that mentality will help you program better in whatever language you ultimately use.</p>
http://stackoverflow.com/questions/1381448/how-do-i-convert-password-hashing-from-md5-to-sha2How do I convert password hashing from MD5 to SHA?aardvark2009-09-04T20:42:34Z2009-10-20T13:22:17Z
<p>I've got an old application that has user passwords stored in the database with an MD5 hash. I'd like to replace this with something in the SHA-2 family.</p>
<p>I've thought of two possible ways to accomplish this, but both seem rather clunky.</p>
<p>1) Add a boolean "flag" field. The first time the user authenticates after this, replace the MD5 password hash with the SHA password hash, and set the flag. I can then check the flag to see whether the password hash has been converted.</p>
<p>2) Add a second password field to store the SHA hash. The first time the user authenticates after this, hash the password with SHA and store it in the new field (probably delete their MD5 hash at the same time). Then I can check whether the SHA field has a value; this essentially becomes my flag.</p>
<p>In either case, the MD5 authentication would have to remain in place for some time for any users who log in infrequently. And any users who are no longer active will never be switched to SHA.</p>
<p>Is there a better way to do this?</p>
http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1567450#15674501Answer by aardvark for Most horrifying line of code you have ever seen?aardvark2009-10-14T16:29:27Z2009-10-14T16:29:27Z<p>I once saw some PHP code that looked something like this:</p>
<pre><code>$page2URL = strrev(strstr(strrev($URL), "/") . "page2.php";
</code></pre>
http://stackoverflow.com/questions/1412565/how-do-i-make-an-html-anchor-that-does-the-info1somethinginfo2somethingelse/1412592#14125921Answer by aardvark for How do I make an html anchor that does the ?info1=something&info2=somethingelseaardvark2009-09-11T18:34:28Z2009-09-12T01:32:31Z<p>The additional information after the question mark is called the <strong>query string</strong>. You can include the query string directly in your link:</p>
<pre><code><a href="http://www.example.com/page.html?variable=yes&amp;page=5">example</a>
</code></pre>
http://stackoverflow.com/questions/2482/what-are-some-good-resources-for-learning-threaded-programming15What are some good resources for learning threaded programming?aardvark2008-08-05T15:42:09Z2009-09-05T17:29:51Z
<P>With the rise of multicore CPUs on the desktop, multithreading skills will become a valuable asset for programmers. Can you recommend some good resources (books, tutorials, websites, etc.) for a programmer who is looking to learn about threaded programming?</P>
http://stackoverflow.com/questions/12794/how-do-i-add-a-pre-tag-inside-a-code-tag-with-jquery1How do I add a pre tag inside a code tag with jQuery?aardvark2008-08-15T21:35:51Z2009-09-05T17:28:34Z
<p>I'm trying to use jQuery to format code blocks, specifically to add a <pre> tag inside the <code> tag:</p>
<pre><code>$(document).ready(function() {
$("code").wrapInner("<pre></pre>");
});
</code></pre>
<p>Firefox applies the formatting correctly, but IE puts the entire code block on one line. If I add an alert </p>
<pre><code>alert($("code").html());
</code></pre>
<p>I see that IE has inserted some additional text into the pre tag:</p>
<pre><code><PRE jQuery1218834632572="null">
</code></pre>
<p>If I reload the page, the number following jQuery changes.</p>
<p>If I use wrap() instead of wrapInner(), to wrap the <pre> outside the <code> tag, both IE and Firefox handle it correctly. But shouldn't <pre> work <em>inside</em> <code> as well?</p>
<p>I'd prefer to use wrapInner() because I can then add a CSS class to the <pre> tag to handle all formatting, but if I use wrap(), I have to put page formatting CSS in the <pre> tag and text/font formatting in the <code> tag, or Firefox and IE both choke. Not a huge deal, but I'd like to keep it as simple as possible.</p>
<p>Has anyone else encountered this? Am I missing something?</p>
http://stackoverflow.com/questions/1315091/compiling-c-gtk-within-eclipse/1315118#13151181Answer by aardvark for Compiling C/GTK within Eclipseaardvark2009-08-22T04:20:00Z2009-08-22T04:20:00Z<p>Try adding the gtk directory to the build path:</p>
<p>Go into project Properties -> C/C++ build -> Settings -> Tool settings -> Directories and add it under Include paths.</p>
http://stackoverflow.com/questions/1314133/how-to-select-a-row-where-one-of-several-columns-equals-a-certain-value/1314211#13142112Answer by aardvark for how to select a row where one of several columns equals a certain value?aardvark2009-08-21T21:01:34Z2009-08-21T21:01:34Z<p>Yes, it's valid to use parentheses. However, if you're searching multiple columns for the same value, you may want to consider normalizing the database.</p>
http://stackoverflow.com/questions/214752/where-is-the-parrot-documentation/222647#2226471Answer by aardvark for Where is the Parrot documentation?aardvark2008-10-21T17:00:10Z2009-07-30T15:02:27Z<p>I think you've captured the problem exactly: Parrot documentation exists, but it's not organized. Much of it (from what I've seen) is outdated as well.</p>
<p>The Parrot VM has documentation bundled with it, but even that is not very comprehensive.</p>
<p><strong>Update</strong>: The Parrot documentation is starting to come together. The bundled documentation is becoming more complete and more useful all the time; it is available in html form <a href="http://docs.parrot.org/parrot/latest/html/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/770900/is-md5-less-secure-than-sha-et-al-in-a-practical-sense/771037#7710372Answer by aardvark for Is MD5 less secure than SHA et. al. in a practical sense?aardvark2009-04-21T04:29:58Z2009-04-21T04:29:58Z<p>Yes, someone can send a message and a correct hash without knowing the shared password. They just need to find a string that hashes to the same value.</p>
<p>How common is that? In 2007, a group from the Netherlands announced that they had predicted the winner of the 2008 U.S. Presidential election in a file with the MD5 hash value <a href="http://www.win.tue.nl/hashclash/Nostradamus/" rel="nofollow">3D515DEAD7AA16560ABA3E9DF05CBC80</a>. They then created twelve files, all identical except for the candidate's name and an arbitrary number of spaces following, that hashed to that value. The MD5 hash value is worthless as a checksum, because too many different files give the same result.</p>
<p>This is the same scenario as yours, if I'm reading you right. Just replace "candidate's name" with "secret password". If you really want to be secure, you should probably use a different hash function.</p>
http://stackoverflow.com/questions/310342/does-parrot-have-a-database-interface-or-api0Does Parrot have a database interface or API?aardvark2008-11-21T21:55:07Z2009-03-10T14:13:59Z
<p>A quick search gave me this <a href="http://www.mail-archive.com/dbdi-dev@perl.org/msg00002.html" rel="nofollow">announcement of Parrot DBDI</a> from January 2004 and a <a href="http://www.mail-archive.com/dbdi-dev@perl.org/" rel="nofollow">dbdi-dev mailing list</a> which appears to be long dead. Is Parrot DBDI still being developed? Is anyone working on a different database API or interface for Parrot?</p>
http://stackoverflow.com/questions/559025/compiler-programming-what-are-the-most-fundamental-ingredients/559064#5590644Answer by aardvark for Compiler-Programming: What are the most fundamental ingredients?aardvark2009-02-17T22:43:03Z2009-02-17T22:48:39Z<p>These are the absolutely essential parts:</p>
<ul>
<li>Scanner: This breaks the input file into tokens</li>
<li>Parser: This constructs an abstract syntax tree (AST) from the tokens identified by the scanner.</li>
<li>Code generation: This produces the output from the AST.</li>
</ul>
<p>You'll also probably want:</p>
<ul>
<li>Error handling: This tells the parser what to do if it encounters an unexpected token</li>
<li>Optimization: This will enable the compiler to produce more efficient machine code</li>
</ul>
<p>Edit: Have you already designed the language? If not, you'll want to look into language design, too.</p>
http://stackoverflow.com/questions/526357/how-would-you-explain-your-job-to-a-5-year-old/557121#5571217Answer by aardvark for How would you explain your job to a 5-year old?aardvark2009-02-17T14:42:28Z2009-02-17T14:43:32Z<p>My five year old is into secret codes, after learning about them from his seven year old neighbor, and he has recognized the word "code" on some of my computer books. So I told him I write special codes that tell computers what to do.</p>
http://stackoverflow.com/questions/475949/how-to-determine-whether-a-grammar-is-ll1-lr0-slr1/554579#5545791Answer by aardvark for How to determine whether a grammar is LL(1) LR(0) SLR(1)aardvark2009-02-16T21:13:12Z2009-02-16T21:13:12Z<p>In answer to your main question: For a very simple grammar, it may be possible to determine whether it is LL(1) without constructing FIRST and FOLLOW sets, e.g.</p>
<p>A → A + A | a</p>
<p>is not LL(1), while</p>
<p>A → a | b</p>
<p>is.</p>
<p>But when you get more complex than that, you'll need to do some analysis.</p>
<p>A → B | a<br />
B → A + A</p>
<p>This is not LL(1), but it may not be immediately obvious </p>
<p>The grammar rules for arithmetic quickly get very complex:</p>
<p>expr → term { '+' term }<br />
term → factor { '*' factor }<br />
factor → number | '(' expr ')' </p>
<p>This grammar handles only multiplication and addition, and already it's not immediately clear whether the grammar is LL(1). It's still possible to evaluate it by looking through the grammar, but as the grammar grows it becomes less feasable. If we're defining a grammar for an entire programming language, it's almost certainly going to take some complex analysis.</p>
<p>That said, there are a few obvious telltale signs that the grammar is not LL(1) — like the A → A + A above — and if you can find any of these in your grammar, you'll know it needs to be rewritten if you're writing a recursive descent parser. But there's no shortcut to verify that the grammar <em>is</em> LL(1).</p>
http://stackoverflow.com/questions/475482/what-time-of-day-are-you-most-proficient-at-programming/475521#4755210Answer by aardvark for What time of day are you most proficient at programming?aardvark2009-01-24T04:46:09Z2009-01-24T04:46:09Z<p>After lunch. I'm sluggish in the mornings, and usually look for light work to do until noon. Then in the afternoon I'm ready to really concentrate.</p>
http://stackoverflow.com/questions/424567/is-it-beneficial-for-a-programmer-to-learn-how-to-build-a-compiler/424954#4249540Answer by aardvark for Is it beneficial for a programmer to learn how to build a compiler? aardvark2009-01-08T16:36:25Z2009-01-08T16:36:25Z<p>In some ways, this question is a lot like "Should I learn C?"</p>
<p>As others have pointed out, some elements of a compiler — lexical analysis, parsing — can be used in many other applications. You'll learn some useful techniques even if you never have to implement a compiler.</p>
<p>In addition, the code generation phase will give you a better understanding of how the computer works. You'll see how the algorithms and data structures from higher-level languages actually get processed when they get to the CPU (or to the VM, as the case may be). This should help you write better algorithms in your day to day programming.</p>
<p>If you're designing your own language too, then you'll learn a lot through the process of thinking through the details of how it should work, what control flow elements you need, how expressions should be parsed, which order function paramaters should be read, etc. This should give you a better understanding of languages in general, which ought to make you a better programmer in whichever language you use.</p>
<p>Finally, there's always a chance you'll find yourself stuck with a legacy application in an old language that is no longer supported, and the easiest way to add new features will be to <a href="http://www.onlamp.com/pub/a/onlamp/2004/04/15/parrot_compiler_construction.html" rel="nofollow">build your own compiler</a> to extend the language.</p>
http://stackoverflow.com/questions/365671/have-you-ever-implemented-a-programming-language/372880#3728801Answer by aardvark for Have you ever implemented a programming language?aardvark2008-12-16T21:46:55Z2008-12-16T21:46:55Z<p>I'm working on a language that I call the Simple Parrot Test Language, or SPTL (pronounced "spittle"). My goal is to understand the Parrot VM and PIR bytecode. I'm blogging about it <a href="http://www.brucealderman.info/harmful/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/340474/how-many-lines-of-code-do-you-average-per-bug/344444#3444440Answer by aardvark for How many lines of code do you average per bug?aardvark2008-12-05T16:41:51Z2008-12-05T16:41:51Z<p>I don't think this metric is helpful. An inefficient coder can create far more lines of code without adding to the usefulness.</p>
<p>Or, to put it another way: I could improve my lines/bug ratio by adding lines that don't do anything useful, by violating the DRY principle, or by using inefficient algorithms. Even if I don't introduce any new bugs by doing these things, I'm likely to create problems for whoever needs to maintain this code later, and cause them to introduce more bugs. From a bean counter's perspective, I look better and the next person looks worse, but who is really to blame for the later bugs?</p>
http://stackoverflow.com/questions/316146/virtual-machines-of-the-future/338126#3381261Answer by aardvark for Virtual machines of the futureaardvark2008-12-03T18:03:02Z2008-12-03T18:03:02Z<p>One thing we're almost certain to see in VMs of the future is that they will be built from the ground up to handle multiple programming languages.</p>
http://stackoverflow.com/questions/284753/nuggets-of-wisdom/317785#31778523Answer by aardvark for Nuggets of wisdom?aardvark2008-11-25T15:50:21Z2008-11-25T15:50:21Z<p>In my very first computer science class in college, the professor said, <em>If you remember only one thing from this class, remember these two things:</em></p>
<blockquote>
<p>A computer does what you tell it to
do, not what you want it to do.</p>
</blockquote>
<p><em>and</em></p>
<blockquote>
<p>The IQ of a computer is zero.</p>
</blockquote>
http://stackoverflow.com/questions/65865/cant-locate-foo-pm-in-inc-whats-the-easiest-way-to-install-a-missing-perl/309989#3099890Answer by aardvark for "Can't locate Foo.pm in @INC". What's the easiest way to install a missing Perl module?aardvark2008-11-21T19:59:27Z2008-11-21T19:59:27Z<p>On Fedora you can use</p>
<pre><code># yum install foo
</code></pre>
<p>as long as Fedora has an existing package for the module.</p>
http://stackoverflow.com/questions/288061/do-there-exist-any-compilers-with-localized-versions-of-programming-languages/303369#3033691Answer by aardvark for Do there exist any compilers with localized versions of programming languages?aardvark2008-11-19T21:07:24Z2008-11-20T16:14:29Z<p>In some cases, keywords aren't even English (though they may vaguely resemble English words): <strong>car</strong>, <strong>cdr</strong>, and <strong>cons</strong> from Lisp; <strong>elsif</strong> in Perl; <strong>printf</strong>, <strong>fgets</strong>, <strong>sscanf</strong>, and many more from C. I think most languages have at least some keywords that aren't localized even for English speakers.</p>
<p>Keywords belong to the programming language, not the programmer's (spoken) language.</p>
http://stackoverflow.com/questions/262089/back-end-choice-for-a-new-dynamic-programming-language/262268#2622683Answer by aardvark for Back-end choice for a new dynamic programming language?aardvark2008-11-04T16:11:30Z2008-11-04T16:11:30Z<p>One adavantage of using Parrot is that it ships with tons of example languages, including a Smalltalk variant called ChitChat. So you can use that as a reference to see how someone else has implemented a similar language on Parrot.</p>
http://stackoverflow.com/questions/3962/long-time-lamp-developer-moving-to-vb-net/4991#49911Answer by aardvark for Long-time LAMP Developer moving to VB.NETaardvark2008-08-07T17:16:37Z2008-11-03T18:15:43Z<p>About six months ago I moved from a job where I did mostly Perl CGI programming (with some PHP), to my current position which primarily uses the .NET framework.</p>
<p>Personally, I think events -- specifically, knowing when an event is supposed to fire -- is the hardest part of .NET development. I'm still not sure of the exact differences between Init, Load, and PreRender. With some trial and error, I've managed to get most of my pages to render and update the way I expect them to. I wish I had some resources to give you, but I'm still working on this myself.</p>
<p>.NET's method of handling <a href="http://www.aspfree.com/c/a/ASP.NET/Query-Parameters-and-Information-Handling-with-Databases/" rel="nofollow">database queries</a> is very different from PHP's. It's worth taking the time to understand how it handles query parameters.</p>
<p>With my first .NET project, I found myself doing a lot of refactoring as I learned the new platform. I often found myself writing what was essentially translated Perl code, then going through the <a href="http://msdn.microsoft.com/en-us/library/w0x726c2.aspx" rel="nofollow">MSDN library</a> to find a better way when something looked really ugly.</p>
<p>The MSDN library will be your best friend as you learn .NET.</p>http://stackoverflow.com/questions/253475/why-doesnt-anyone-upgrade-their-c-compiler-with-advanced-features/254705#2547050Answer by aardvark for Why doesn't anyone upgrade their C compiler with advanced features?aardvark2008-10-31T19:46:04Z2008-10-31T19:56:05Z<p>As several people have mentioned, it would break the C standard. You say, by comparison:</p>
<blockquote>
<p>Look at visual studio etc.. It is frequently updated with new releases
and for every new release we have to learn some new function usage</p>
</blockquote>
<p>But ultimately isn't the non-compatibility more trouble than having to type the word "struct"?</p>
http://stackoverflow.com/questions/205426/how-do-you-refactor/210072#2100721Answer by aardvark for How do you refactor?aardvark2008-10-16T20:05:17Z2008-10-16T20:05:17Z<p>I'm a lot more reluctant to refactor code written by others than to refactor my own.</p>
<p>If it's been written by one of my predecessors, I generally refactor only within a function. E.g. I might replace an if statement with a switch. Anything much bigger than that is usually out of scope and not within budget.</p>
<p>For my own code, I usually refactor as I'm writing, whenever something looks ugly or starts to smell. It's a lot easier to fix it now instead of waiting for it to cause problems down the road.</p>
http://stackoverflow.com/questions/204802/what-would-you-recommend-for-a-high-traffic-ajax-intensive-website/205425#2054253Answer by aardvark for What would you recommend for a high traffic ajax intensive website?aardvark2008-10-15T16:31:15Z2008-10-15T16:31:15Z<p>On the DB question, I'd say PostgreSQL scales better and has better data integrity than MySQL. For a small site MySQL might be faster, but from what I've heard it slows significantly as the size of the database grows. (<em>Note: I've never used MySQL for a large database, so you should probably get a second opinion about its scalability.</em>) But PostgreSQL definitely scales well, and would be a good choice for a high traffic site.</p>
http://stackoverflow.com/questions/193560/implementing-a-compiler-in-itself/205187#2051874Answer by aardvark for implementing a compiler in "itself"aardvark2008-10-15T15:32:47Z2008-10-15T15:32:47Z<p>See also <a href="http://stackoverflow.com/questions/13537/bootstrapping-a-language">this StackOverflow thread</a> about bootstrapping.</p>
http://stackoverflow.com/questions/201088/full-time-employee-versus-contract-work/201587#2015871Answer by aardvark for Full Time Employee versus Contract Work?aardvark2008-10-14T15:12:54Z2008-10-14T15:12:54Z<p>A couple years ago I looked into contract work. The problem is, my wife is disabled, and every health insurance we applied to turned us down. So I have to keep working at a full time job just so we can afford health care.</p>
http://stackoverflow.com/questions/171964/stick-with-php-or-learn-ruby-on-rails/175628#1756281Answer by aardvark for Stick with PHP or learn Ruby (on rails)aardvark2008-10-06T18:38:00Z2008-10-06T18:38:00Z<p>It never hurts to learn additional languages. Chances are, learning Ruby will make you a better PHP programmer as well.</p>
http://stackoverflow.com/questions/1412565/how-do-i-make-an-html-anchor-that-does-the-info1somethinginfo2somethingelse/1412592#1412592Comment by aardvark on How do I make an html anchor that does the ?info1=something&info2=somethingelseaardvark2009-09-12T01:32:46Z2009-09-12T01:32:46Z@bobince: Thanks, I fixed it.http://stackoverflow.com/questions/1381448/how-do-i-convert-password-hashing-from-md5-to-sha/1381475#1381475Comment by aardvark on How do I convert password hashing from MD5 to SHA?aardvark2009-09-04T21:08:00Z2009-09-04T21:08:00ZI'd convert everyone automatically; if the password passes the MD5 hash, I'd just re-hash it with SHA. The change should be invisible to the user.http://stackoverflow.com/questions/1381448/how-do-i-convert-password-hashing-from-md5-to-sha/1381467#1381467Comment by aardvark on How do I convert password hashing from MD5 to SHA?aardvark2009-09-04T20:54:52Z2009-09-04T20:54:52ZIn either option, I would replace the passwords of existing users the next time they log in. It's just a question of how to let the app know which hash to use after that.http://stackoverflow.com/questions/1355871/why-dont-i-get-the-right-package-variable-when-using-our/1355916#1355916Comment by aardvark on Why don't I get the right package variable when using our()?aardvark2009-08-31T19:58:44Z2009-08-31T19:58:44ZIt's because $var is no longer associated with p1. $var is a global variable -- it will always be in scope -- and it was last associated with p2.http://stackoverflow.com/questions/1314004/query-works-ok-in-phpmyadmin-but-not-with-mysqlquery-php-function/1314010#1314010Comment by aardvark on Query works ok in phpmyadmin but not with mysql_query php functionaardvark2009-08-21T21:32:45Z2009-08-21T21:32:45ZAre you by any chance echoing the value of $gquery as it is passed to mysql_query?http://stackoverflow.com/questions/1263766/encrypt-decrypt-with-sha256-using-java/1264065#1264065Comment by aardvark on encrypt- decrypt with SHA256 using javaaardvark2009-08-12T03:44:53Z2009-08-12T03:44:53Z+1 for suggesting an appropriate alternativehttp://stackoverflow.com/questions/1234445/php-global-variablesComment by aardvark on PHP Global Variablesaardvark2009-08-05T17:14:56Z2009-08-05T17:14:56ZDo you really need it available to ALL other classes?http://stackoverflow.com/questions/1109847/c-pointers-questionComment by aardvark on C pointers Questionaardvark2009-07-10T20:38:08Z2009-07-10T20:38:08ZThere's a great explanation of pointers here: <a href="http://stackoverflow.com/questions/5727/" rel="nofollow">stackoverflow.com/questions/5727</a>http://stackoverflow.com/questions/1041182/exit-code-in-perl/1041216#1041216Comment by aardvark on exit code in perlaardvark2009-06-25T19:39:42Z2009-06-25T19:39:42ZDisabling warnings just hides the problem; it does not fix it.http://stackoverflow.com/questions/859134/which-css-attribute-if-any-would-control-thisComment by aardvark on Which CSS attribute, if any, would control this?aardvark2009-05-13T17:05:41Z2009-05-13T17:05:41ZWhat does your CSS look like currently?http://stackoverflow.com/questions/705659/does-vms-like-llvm-or-parrot-allows-usage-of-same-library-from-multiple-languages/728751#728751Comment by aardvark on Does VMs like LLVM or PARROT allows usage of same library from multiple languages?aardvark2009-04-08T06:28:54Z2009-04-08T06:28:54ZI think Jox is asking about both Parrot and LLVMhttp://stackoverflow.com/questions/526357/how-would-you-explain-your-job-to-a-5-year-oldComment by aardvark on How would you explain your job to a 5-year old?aardvark2009-03-06T15:42:45Z2009-03-06T15:42:45Z@Adam Davis: Explaining programming to a non-technical adult is not the same as explaining it to a child.http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/529791#529791Comment by aardvark on Are there any famous one-man-army programmers?aardvark2009-02-20T15:13:25Z2009-02-20T15:13:25ZWasn't Java developed by James Gosling?http://stackoverflow.com/questions/559025/compiler-programming-what-are-the-most-fundamental-ingredients/559106#559106Comment by aardvark on Compiler-Programming: What are the most fundamental ingredients?aardvark2009-02-17T23:01:27Z2009-02-17T23:01:27Z+1 for Brinch Hansen. It strikes the best balance between technical and practical information on compiler design.http://stackoverflow.com/questions/559025/compiler-programming-what-are-the-most-fundamental-ingredients/559064#559064Comment by aardvark on Compiler-Programming: What are the most fundamental ingredients?aardvark2009-02-17T22:58:48Z2009-02-17T22:58:48ZYou'll have to create a language grammar that is compatible with the type of parser you want to use. I'd take a look at top-down vs bottom-up parsers to get started.