El Paso, TX-based Sparta's "Collapse" from their 2002 album "Wiretap Scars" on the Geffen Records label.
Lubbock, TX-native Joe Ely's "Slow You Down" from his 1993 album "Love and Danger" on the MCA Records label. From the May 31 recording of A Prairie Home Companion in Las Cruces, NM.
Sunday, June 08, 2008
Homework, Sections 5.1 through 5.3
My solutions to the 2nd edition Dragon Book's Exercises for chapter five:
5.1.1 a, b, c: Investigating GraphViz as a solution to presenting trees
5.1.2: Extend the SDD of Fig. 5.4 to handle expressions as in Fig. 5.1:
5.2.1: What are all the topological sorts for the dependency graph of Fig. 5.7?
5.2.3: Suppose that we have a production A -> BCD. Each of the four nonterminals A, B, C, and D have two attributes: s is a synthesized attribute, and i is an inherited attribute. For each of the sets of rules below, tell whether (1) the rules are consistent with an S-attributed definition (2) the rules are consistent with an L-attributed definition, and (3) whether the rules are consistent with any evaluation order at all?
a) A.s = B.i + C.s
5.3.1: Below is a grammar for expressions involving operator + and integer or floating-point operands. Floating-point numbers are distinguished by having a decimal point.
5.1.1 a, b, c: Investigating GraphViz as a solution to presenting trees
5.1.2: Extend the SDD of Fig. 5.4 to handle expressions as in Fig. 5.1:
- L -> E N
- L.val = E.syn
- E -> F E'
- E.syn = E'.syn
- E'.inh = F.val
- E' -> + T Esubone'
- Esubone'.inh = E'.inh + T.syn
- E'.syn = Esubone'.syn
- T -> F T'
- T'.inh = F.val
- T.syn = T'.syn
- T' -> * F Tsubone'
- Tsubone'.inh = T'.inh * F.val
- T'.syn = Tsubone'.syn
- T' -> epsilon
- T'.syn = T'.inh
- E' -> epsilon
- E'.syn = E'.inh
- F -> digit
- F.val = digit.lexval
- F -> ( E )
- F.val = E.syn
- E -> T
- E.syn = T.syn
5.2.1: What are all the topological sorts for the dependency graph of Fig. 5.7?
- 1, 2, 3, 4, 5, 6, 7, 8, 9
- 1, 2, 3, 5, 4, 6, 7, 8, 9
- 1, 2, 4, 3, 5, 6, 7, 8, 9
- 1, 3, 2, 4, 5, 6, 7, 8, 9
- 1, 3, 2, 5, 4, 6, 7, 8, 9
- 1, 3, 5, 2, 4, 6, 7, 8, 9
- 2, 1, 3, 4, 5, 6, 7, 8, 9
- 2, 1, 3, 5, 4, 6, 7, 8, 9
- 2, 1, 4, 3, 5, 6, 7, 8, 9
- 2, 4, 1, 3, 5, 6, 7, 8, 9
5.2.3: Suppose that we have a production A -> BCD. Each of the four nonterminals A, B, C, and D have two attributes: s is a synthesized attribute, and i is an inherited attribute. For each of the sets of rules below, tell whether (1) the rules are consistent with an S-attributed definition (2) the rules are consistent with an L-attributed definition, and (3) whether the rules are consistent with any evaluation order at all?
a) A.s = B.i + C.s
- No--contains inherited attribute
- Yes--"From above or from the left"
- Yes--L-attributed so no cycles
- No--contains inherited attributes
- Yes--"From above or from the left"
- Yes--L-attributed so no cycles
- Yes--all attributes synthesized
- Yes--all attributes synthesized
- Yes--S- and L-attributed, so no cycles
- A.s = D.i
- B.i = A.s + C.s
- C.i = B.s
- D.i = B.i + C.i
- No--contains inherited attributes
- No--B.i uses A.s, which depends on D.i, which depends on B.i (cycle)
- No--Cycle implies no topological sorts (evaluation orders) using the rules
- S -> L . L | L
- L -> L B | B
- B -> 0 | 1
- S -> L . Lsubone
- L.inh = 0
- Lsubone.inh = -1
- S.val = L.syn + Lsubone.syn
- S -> L
- L.inh = 0
- S.val = L.syn
- L -> Lsubone B
- Lsubone.inh = L.inh + 1
- B.inh = L.inh
- L.syn = Lsubone.syn * B.syn
- L -> B
- L.syn = B.syn * 2^L.inh
- B -> 0 | 1
- B.syn = digit.lexval
- S -> L . Lsubone
- S.val = L.lhs + Lsubone.rhs
- S -> L
- S.val = L.lhs
- L -> Lsubone B
- L.lhs = Lsubone.lhs + (2^L.lhs_exponent * B.val)
- L.rhs = Lsubone.rhs + (2^L.rhs_exponent * B.val)
- L.lhs_exponent = Lsubone.lhs_exponent + 1
- L.rhs_exponent = Lsubone.rhs_exponent - 1
- L -> B
- L.lhs = 2^L.lhs_exponent * B.val
- L.rhs = 2^L.rhs_exponent * B.val
- L.lhs_exponent = 0
- L.rhs_exponent = -1
- B -> 0 | 1
- B.val = digit.lexval
5.3.1: Below is a grammar for expressions involving operator + and integer or floating-point operands. Floating-point numbers are distinguished by having a decimal point.
- E -> E + T | T
- T -> num . num | num
- E -> Esubone + T
- E.type = if (E.type == float || T.type == float) { E.type = float } else { E.type = integer }
- E -> T
- E.type = T.type
- T -> numsubone . numsubtwo
- T.type = float
- T -> num
- T.type = integer
- E -> Esubone + T
- E.val = Esubone.val || ',' || T.val || '+'
- E -> T
- E.val = T.val
- T -> numsubone . numsubtwo
- T.val = numsubone.val || '.' || numsubtwo.val
- T -> num
- T.val = intToFloat(num.val)
- S -> E
- E.iop = nil
- S.equation = E.equation
- E -> Esubone + T
- Esubone.iop = E.iop
- T.iop = E.iop
- E.equation = Esubone.equation || '+' || T.equation
- E.sop = '+'
- E -> T
- T.iop = E.iop
- E.equation = T.equation
- E.sop = T.sop
- T -> Tsubone * F
- Tsubone.iop = '*'
- F.iop = '*'
- T.equation = Tsubone.equation || '*' || F.equation
- T.sop = '*'
- T -> F
- F.iop = T.iop
- T.equation = F.equation
- T.sop = F.sop
- F -> char
- F.equation = char.lexval
- F.sop = nil
- F -> ( E )
- if (F.iop == '*' && E.sop == '+') { F.equation = '(' || E.equation || ')' } else { F.equation = E.equation }
- F.sop = nil
- S -> E
- S.d = E.d
- E -> T
- E.d = T.d
- E.val = T.val
- T -> F
- T.d = F.d
- T.val = F.val
- T -> Tsubone * F
- T.d = '(' || Tsubone.val || ") * (" || F.d || ") + (" || Tsubone.d || ") * (" || F.val || ')'
- T.val = Tsubone.val || '*' || F.val
- E -> Esubone + T
- E.d = '(' || Esubone.d || ") + (" || T.d || ')'
- E.val = Esubone.val || '+' || T.val
- F -> ( E )
- F.d = E.d
- F.val = '(' || E.val || ')'
- F -> char
- F.d = 1
- F.val = char.lexval
- F -> constant
- F.d = 0
- F.val = constant.lexval
Monday, June 02, 2008
Sunday, June 01, 2008
Turning the Wrong Way
I thought the nut on the p-trap under our bathroom sink turned lefty-loosey but it turns out it turns righty-loosey. How easy it is to turn when one goes in the right direction.
In other news, I've determined that the ceiling fans in our duplex (A Hunter model #21416 and a KDK model #D13YU) lack a hole made for oiling. The new Hunter fan makes a rhythmic ticking noise after about a day or so of high-speed operation, while the older KDK fan makes the same rhythmic ticking noise more consistently. My first thought--oil the bearings, per: http://www.ceiling-fans-n-more.com/ceiling-fan-oiling.php. Unfortunately, the manufacturer did not intend for customers to oil these fans, so I'm going to need some creativity to do so. It might also be a balancing issue...so who knows if I'll have time to figure it out in the coming weeks.
In other news, I've determined that the ceiling fans in our duplex (A Hunter model #21416 and a KDK model #D13YU) lack a hole made for oiling. The new Hunter fan makes a rhythmic ticking noise after about a day or so of high-speed operation, while the older KDK fan makes the same rhythmic ticking noise more consistently. My first thought--oil the bearings, per: http://www.ceiling-fans-n-more.com/ceiling-fan-oiling.php. Unfortunately, the manufacturer did not intend for customers to oil these fans, so I'm going to need some creativity to do so. It might also be a balancing issue...so who knows if I'll have time to figure it out in the coming weeks.
Saturday, May 31, 2008
Myopia, Astigmatism

General image depicting normal eye and abnormal curvature of an astigmatic eye
Results of my test on Wednesday from the CostCo Citrus Heights Pharmacy:
SRX (Spectacle Prescription)
O.D. (Oculus Dexter, my right eye):
- SPH: +0.25
- CYL: -1.00
- AXIS: 0.90
- ADD: n/a
- PRISM/BASE: n/a
- SPH: -0.50
- CYL: DS
- AXIS: n/a
- ADD: n/a
- PRISM/BASE: n/a
SPH means sphere--a positive number represents farsightedness and a negative number represents nearsightedness. Why? In a farsighted eye, the curve of the cornea is flatter than the curve of a normal cornea, so the correction involves "adding" to the farsighted eye to get it back to normal. In a nearsighted eye, the curve of the cornea extends farther than the curve of the normal cornea, so the correction involves "subtracting" from that curve to bring it back to a normal curvature. The point being to get the cornea back to focusing light on the retina like a normally curved cornea does. The larger the number (positive or negative) the larger the deviation from the normal curvature of the cornea, and the blurrier the vision.
CYL means cylinder, and represents the amount of power needed to correct a cornea with astigmatism (a cornea that's oval-shaped, which causes blurring (see the picture at the top), as opposed to a normal cornea that's symmetrically round like a basketball)--DS means no astigmatism. In my right eye, I need one dioptre of focusing power correction.
AXIS, for astigmatic eyes, represents a line passing through the middle of the oval-shaped cornea--in my case through the longer side. In my right eye, I need minus-one dioptre of correction along the 0-/180-degree axis (see the Wikipedia article for an explanation of why it's not "090" like the prescription says)--which means the longer side of the oval-shaped cornea in my cases lies on an imaginary line drawn between my two eyes (the 9 o'clock/3 o'clock positions). I believe reducing the focusing power of the longer part of the oval-shaped cornea helps the cornea focus in a more spherical manner.
20/20 vision means the ability to read a character 8.84 mm high at a distance of 20 feet.
Fushigi Yuugi

Dawn and I made a run through the 52 episode series over the past two months. Thoughts:
- Japanese voices > English voices
- After removing the intro song (~1:30m?), intro story recap (1m?), and outro (1:30m?), the shows seemed to average ~20 minutes.
- 52 episodes of watching Tamahome and Miaka push apart and come together: Tamahome rejects Miaka's declaration of love; Tamahome swallows Kotuko; Miaka can't become spoiled in her quest for the shinzaho; Nakago's assault of Miaka; Tamahome decides to cut off relations to lessen the pain later; Tamahome runs off when he learns he's a character in a book; Tamahome returns to the book; finally, reunited--whew.
- I appreciated Miaka's use of empathy to save Mitsukake's restless lover from the sickness demon--amazing to see it played out in an anime.
- Always, always, always, kill the bad guys when they're down and out. It cost them the life of Chiriko and the first shinzaho.
- "Here, I don't know how this item will help you, but I'm sure it will advance the plot in some unknown way in the near future." For example, Hotohori's holy sword.
- The show didn't pull many punches with taboos regarding sexuality, abuse, and violence.
- Tokyo really sucks at giant monster defense. It looked like they had planes in the air to dispatch nuclear warheads, but the show left that thought unresolved.
- Amiboshi's story arc casts an anti-war sentiment to the show, while Miaka's story arc casts a proactive peace through strength sentiment to the show. Sentiment winner in my opinion: Miaka; Amiboshi retreats into memory-less bliss while Miaka saves the day.
- Characters I wish the writers had included more in the action: Mitsukake, Chiriko--these two barely get screen time. It approaches parody watching Mitsukake continually fail to save those close to him, even though he can heal people to complete health "once per day." Chiriko, boy genius and mystical musician, wanders around with the team until he gets possessed--the writers allow him the glory of stabbing himself to death with a blunt top. *sigh*
- The handling of homosexuality in the show surprised me--Nuriko, after the shock wears off, becomes very endearing in the story, as she takes Miaka under her wing. Tatsuke's "I don't like girls" stance doesn't resonate so much, even though he sacrifices everything in hotheaded defense of Miaka.
Worth a watch, in my opinion.
Friday, May 30, 2008
Flea Combing
Sunday, May 25, 2008
Happy Towel Day

In memory of Douglas Adams: http://en.wikipedia.org/wiki/Towel_Day
I want to hang one of the above near my work desk. Link: http://www.royal-plus.de/dna/indexE.html
UPDATE:
Email from the artist, 2024-10-05: "We are unfortunately sold out. And there will be no new production of the towels. We will close the shop soon. So long, and thanks for all the fish, Kind regards, DON'T PANIC Towel Shop Uli Schuster"
I had emailed in August 2020 to inquire about ordering one, but unfortunately, "Unfortunately the US have stopped the parcel traffic from oversea, due Corona. So, I keep it on hold, and will let you know when shipping will be possible again. " Then I forgot. So only myself to blame! Will see if one becomes available second-hand.
CSUS Tea Ceremonies
We missed the last one due to finals week, but hopefully they'll have another one in the near future. Link: http://library.csus.edu/tearoom/. From the CSUS event release:
Japanese tea ceremony planned at Sacramento State
The next tea ceremonies for Sacramento State’s Sokiku Nakatani Tea Room and Garden are 10:30 a.m., 1 p.m. and 2:30 p.m., Wednesday, May 21; and 10 a.m. and 1 p.m., Thursday, May 22.
The Sokiku Nakatani Tea Room and Garden is located on the lower level of the University Library
Sacramento State is one of only a few campuses in the United States to have a tea room that allows students, faculty and members of the community the opportunity to experience the art of tea through traditional Japanese tea ceremonies. The Sokiku Nakatani Tea Room and Garden was made possible by a gift from an anonymous donor in honor of his mother.
“The practice of tea originated in China, was introduced to Japan in the 12th century by Zen monks and became a spiritual and aesthetic discipline that has had a profound impact on Japanese civilization,” says Sally Hitchcock, University Library outreach coordinator.
She says tea was used by the monks as a mild stimulant for clearing the mind during meditation and was valued for its medicinal qualities, then enjoyed by nobility for lavish functions. Eventually tea gatherings became common among all classes of people and thus the creation of rooms designed especially for such gatherings. Today the practice of tea is still a way for people to come together to find calmness and peace of mind.
“Since the room was dedicated in June 2007, we have held more than 20 tea ceremonies and have enjoyed hosting every age group from kindergarteners to retirees,” Hitchcock says.
For more information on tea room ceremonies, contact Hitchcock at (916) 278-5954. For media assistance, contact Sacramento State’s Public Affairs office at (916) 278-6156.
Saturday, May 17, 2008
L-Attributed, Top-Down-Parsable SDD Implementation of the McNaughton-Yamada-Thompson Algorithm
My solution to the 2nd edition Dragon Book's Exercise 5.2.6:
Implement the McNaughton-Yamada-Thompson algorithm, which converts a regular expression into a nondeterministic finite automaton (NFA), by an L-attributed SDD on a top-down parsable grammar. Assume that there is a token char representing any character, and that char.lexval is the character it represents. You may also assume the existence of a function new() that returns a new state, that is, a state never before returned by this function. Use any convenient notation to specify the transitions of the NFA.
Notes:
S -> E
Implement the McNaughton-Yamada-Thompson algorithm, which converts a regular expression into a nondeterministic finite automaton (NFA), by an L-attributed SDD on a top-down parsable grammar. Assume that there is a token char representing any character, and that char.lexval is the character it represents. You may also assume the existence of a function new() that returns a new state, that is, a state never before returned by this function. Use any convenient notation to specify the transitions of the NFA.
Notes:
- I use the characters '{' and '}' to delimit rules, and the rules end up taking the form "{ state-x -> symbol -> state-y } ... { ... }".
- The symbol "||" means concatenation.
- Concatenation ( T -> F Tsub1 ) represented a bit of confusion for me, since it "deletes" state Tsub1.Start from the automaton (the exercise doesn't allow for deletion). McNaughton-Yamada-Thompson write, "The accepting state of N(s) and the start state of N(t) are merged into a single state, with all the transitions in or out of either state."
My initial attempt, setting F.EndTransitions = F.EndTransitions || Tsub1.StartTransitions seems reasonable. Since state Tsub1.Start continues to exist, references to it in Tsub1.StartTransitions, Tsub1.InnerTransitions, or Tsub1.EndTransitions do not require modification.
Everything works because from F.End the automaton may remain in F, or transition to Tsub1. Once the automaton transitions to Tsub1, however, it never returns--no references in Tsub1 point to states in F. In practical terms, this means the automaton produced contains one extra state Tsub1.Start for every concatenation in the original regular expression. - Adding epsilon transitions to Start or End states requires retaining the existing StartTransitions or EndTransitions, respectively.
- A PDF of this solution produced via LaTeX can be found here.
S -> E
- S.Start = E.Start
- S.End = E.End
- S.StartTransitions = E.StartTransitions
- S.EndTransitions = E.EndTransitions
- S.InnerTransitions = E.InnerTransitions
- E.Start = T.Start
- E.End = T.End
- E.StartTransitions = T.StartTransitions
- E.EndTransitions = T.EndTransitions
- E.InnerTransitions = T.InnerTransitions
- E.Start = new()
- E.End = new()
- E.StartTransitions = "{ " || E.Start || " -> epsilon -> " || T.Start || " } { " || E.Start || " -> epsilon -> " || Esub1.Start || " }"
- E.EndTransitions = Nil
- T.EndTransitions = T.EndTransitions || "{ " || T.End || " -> epsilon -> " || E.End || " }
- Esub1.EndTransitions = Esub1.EndTransitions || "{ " || Esub1.End || " -> epsilon -> " || E.End || " }
- E.InnerTransitions = T.StartTransitions || T.InnerTransitions || T.EndTransitions || Esub1.StartTransitions || Esub1.InnerTransitions || Esub1.EndTransitions
- T.Start = F.Start
- T.End = F.End
- T.StartTransitions = F.StartTransitions
- T.EndTransitions = F.EndTransitions
- T.InnerTransitions = F.InnerTransitions
- T.Start = F.Start
- T.End = Tsub1.End
- T.StartTransitions = F.StartTransitions
- T.EndTransitions = Tsub1.EndTransitions
- F.EndTransitions = F.EndTransitions || Tsub1.StartTransitions
- T.InnerTransitions = F.InnerTransitions || F.EndTransitions || Tsub1.InnerTransitions
- F.Start = G.Start
- F.End = G.End
- F.StartTransitions = G.StartTransitions
- F.EndTransitions = G.EndTransitions
- F.InnerTransitions = .InnerTransitions
- F.Start = new()
- F.End = Fsub1.End
- F.StartTransitions = "{ " || F.Start || " -> epsilon -> " || G.Start || " } { " || F.Start || " -> epsilon -> " || Fsub1.Start || " }"
- F.EndTransitions = Fsub1.EndTransitions
- G.EndTransitions = G.EndTransitions || "{ " || G.End || " -> epsilon -> " || G.Start || " } { " || G.End || " -> epsilon -> " || Fsub1.Start || " }"
- F.InnerTransitions = G.StartTransitions || G.InnerTransitions || G.EndTransitions || Fsub1.StartTransitions || Fsub1.InnerTransitions
- G.Start = E.Start
- G.End = E.End
- G.StartTransitions = E.StartTransitions
- G.EndTransitions = E.EndTransitions
- G.InnerTransitions = E.InnerTransitions
- G.Start = Nil
- G.End = Nil
- G.StartTransitions = Nil
- G.EndTransitions = Nil
- G.InnerTransitions = Nil
- G.Start = new()
- G.End = new()
- G.StartTransitions = "{ " || G.Start || " -> " || char.lexval || " -> " || G.End || " }"
- G.EndTransitions = Nil
- G.InnerTransitions = Nil
Thursday, May 15, 2008
Upload Complete!!!

Laughed uncontrollably as I watched Jeff Goldblum in the movie Independence Day upload a virus into the alien mother ship's host--Jeff's PowerBook displays "Negotiating With Host", then "Online With Host" followed by the Apple beep, followed by tappity-tappity as he enters about ten lines of code in two seconds, then "Uploading Virus", then a cut to a cent-com operator reporting, "Sir, he's Uploading the Virus", then the cent-com commander reporting, "Eagle One, The Package Is Being Delivered", then cut back to Jeff's PowerBook reporting "Uploading...Upload Complete!!!", and finally Jeff turning to Will Smith and saying, "The Virus Is In."
High camp.
Video: http://youtube.com/watch?v=LQ2ILkiCORo
Monday, May 12, 2008
Saturday, May 10, 2008
Our Popular Restaurants
A list:
- Sunflower Natural Food Restaurant (Vegetarian/Vegan)
- Lido's (American)
- Shar-E Punjab (Indian)
- Opa-Opa (Greek)
- Addis Ababa (Ethiopian)
- Thai Cottage (umm...)
- Danielle's Creperie (French)
- Fox and Goose (UK)
- Hamburger Mary's (American)
- Udupi Cafe (India)
- Zelda's Gourmet Pizza (American)
- La Boheme (French)
- Carmelita's (Mexican-American)
- Crepe Escape (French)
- Rubicon Brewery (American)
- Jack's Urban Eats (American)
- Scott's Seafoood and Steaks (American)
- Silver Sake
- Pangaea Cafe (next to Vic's Ice Cream)
UPDATE, 2011-07-21:
Radio Songs
Courtesy SomaFM.com:
Brooklyn-based Pete and J's "Sweet Cecilia" from their album "Dressed For Conversation", available online. This song reminds me of Simon and Garfunkle.
Austin, Texas-based Voxtrot's "Missing Pieces" from their 2005 EP "Raised by Wolves" on the Cult Hero Records label.
San Francisco-based Finest Dearest's "Serious" from their EP "Pacemaker" available online.
Melbourne, Australia-based Augie March's "One Crowded Hour" from their 2006 album "Moo, You Bloody Choir" on the Sony BMG Australia label.
Brooklyn-based Pete and J's "Sweet Cecilia" from their album "Dressed For Conversation", available online. This song reminds me of Simon and Garfunkle.
Austin, Texas-based Voxtrot's "Missing Pieces" from their 2005 EP "Raised by Wolves" on the Cult Hero Records label.
San Francisco-based Finest Dearest's "Serious" from their EP "Pacemaker" available online.
Melbourne, Australia-based Augie March's "One Crowded Hour" from their 2006 album "Moo, You Bloody Choir" on the Sony BMG Australia label.
Friday, May 09, 2008
Wednesday, May 07, 2008
Better World Club
I'm a member of one of AAA's most environmentally aware clubs, the Northern and Central California Automobile Club (the CSAA, not named NCAA for obvious reasons).
For most of the same services, including towing, rental discounts, and maps-on-demand, the Better World Club also support mass-transit and the Clean Air act.
I haven't switched yet, but they have successfully planted the seed of the idea.
For most of the same services, including towing, rental discounts, and maps-on-demand, the Better World Club also support mass-transit and the Clean Air act.
I haven't switched yet, but they have successfully planted the seed of the idea.
Sunday, May 04, 2008
Young @ Heart
Great flick: http://www.foxsearchlight.com/youngatheart/
The description "comedic tearjerker" fits. A brief review from the Sacramento News and Review's Jim Lane:
The description "comedic tearjerker" fits. A brief review from the Sacramento News and Review's Jim Lane:
"British filmmaker Stephen Walker documents the rehearsal and performance process of the Young@Heart Chorus, a group of 24 seniors (average age 80) who tour the world with a show made up of cover versions of songs by such groups as the Clash (“Should I Stay Or Should I Go?”), the Ramones (“I Wanna Be Sedated”), Coldplay, Talking Heads and others. At first there’s an uneasy sense that Walker may be patronizing these old folks, but no—he plainly loves the group and its patient director Bob Cilman, and by the time they’re all through with us, we do, too. The movie is joyous and brimming with life, but of course, given the subject, the shadow of the Grim Reaper is never far out of camera range, and Walker shows us how they handle that, as well as how they handle the music of Allen Toussaint or Sonic Youth."At the end of the movie, the credits report that they want to include an emotional performance of U2's One but that they can't gotten permission from the band.
Errata
Hats off to Philippe Deschamp (merci) of the French National Institute for Research in Computer Science and Control and Igor Krassikov (Дякую) for their work on errata submissions to the latest Dragon Book.
I found an error with the book (page 528) and at first I thought the errata failed to list it--but it turns out I failed to see the link to the original errata list, which contains quite a few errors--mostly errors involving missing semi-colons, braces, extra parenthesis, and so forth.
It turns out that editions printed after Spring 2008 no longer contain the bugs on the first errata sheet--one reason that purchasing a new book might make sense, as it took me some time to go through and annotate my copy.
UPDATE: "Claudio on comp.compilers writes "But I would wait for a reprint. The first print of the 2nd edition has way too many mistakes." Yes.
UPDATE: Dr. Ullman, a co-author of the book, granted me credit for reporting an optimization error in Figure 9.9, page 594. Another student identified the error during class--I identified the photocopied handout as the figure from the book, verified the error failed to exist on the errata, and followed-up with Dr. Ullman. In fairness to the identifier, I'm attempting to figure out their name(s) so they might receive due credit.
Saturday, May 03, 2008
Agent Ribbons
Purchased Sacramento-based indie duo Agent Ribbons' first album, "On Time Travel and Romance" this afternoon from R5 Records (former site of Tower Records). Low-fi and creative, we both liked it.
Subscribe to:
Posts (Atom)

