I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with C/C++, Java, and Ruby so I prefer resources that involve one those three, but any good resource is acceptable.

Big List of Resources:
----------------------

  - [Dragon Book][1] - Widely considered "the book" for compiler writing. Chris Bunch also suggests to look at the Interpreter pattern in [Design Patterns][2].
  - [Game Scripting Mastery][3]
  - [Roll Your Own Compiler for the .NET framework][4]
  - [Lets Build a Compiler][5]
  - [Modern Compiler Implementation in ML][6] - There is a [Java][7] and [C][8] version as well.
  - [Compiler Construction][9]
  - [Linkers and Loaders][10]
  - [LLVM Tutorial][11]
  - [Reflections on Trusting and Trust][12]
  - [Parsing Techniques - A Practical Guide][13]
  - [Compiler Basics][14]
  - [Writing a Compiler in Ruby Bottom Up][15]
  - [A Nanopass Framework for Compiler Education][16]
  - [An Incremental Approach to Compiler Construction][17] 
  - [Parrot Tutorial][18]
  - [Want to Write a Compiler?][19]
  - [Flipcode Article Archive][20]
  - [Building a Parrot Compiler][21]

If I forgot something already posted let me know in the comments or if you can edit the question yourself then go ahead and add it. I do plan on making it more organized than simply having a large list, but for now I'll use this as a start. Thank you everyone for your answers and if you find another good resource be sure to post it.


  [1]: http://en.wikipedia.org/wiki/Compilers:_Principles%2C_Techniques%2C_and_Tools
  [2]: http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/
  [3]: http://www.amazon.com/Scripting-Mastery-Premier-Press-Development/dp/1931841578/ref=sr_1_1?ie=UTF8&s=books&qid=1217890983&sr=8-1
  [4]: http://msdn.microsoft.com/en-us/magazine/cc136756.aspx
  [5]: http://compilers.iecc.com/crenshaw/
  [6]: http://www.amazon.com/gp/product/0521607647?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0521607647
  [7]: http://www.amazon.com/gp/product/052182060X?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=052182060X
  [8]: http://www.amazon.com/gp/product/0521607655?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0521607655
  [9]: http://www-old.oberon.ethz.ch/WirthPubl/CBEAll.pdf
  [10]: http://tinyurl.com/5txtuk
  [11]: http://llvm.org/docs/tutorial/
  [12]: http://cm.bell-labs.com/who/ken/trust.html
  [13]: http://www.cs.vu.nl/~dick/PTAPG.html
  [14]: http://www.cs.man.ac.uk/~pjj/farrell/compmain.html
  [15]: http://www.hokstad.com/writing-a-compiler-in-ruby-bottom-up-step-1.html
  [16]: http://www.cs.indiana.edu/~dyb/pubs/nano-jfp.pdf
  [17]: http://scheme2006.cs.uchicago.edu/11-ghuloum.pdf
  [18]: http://www.parrotblog.org/2008/03/targeting-parrot-vm.html
  [19]: http://prog21.dadgum.com/30.html
  [20]: http://flipcode.com/archives/articles.shtml
  [21]: http://www.onlamp.com/pub/a/onlamp/2004/04/15/parrot_compiler_construction.html