Biba (restaurant)

Biba was an award winning restaurant in Boston owned by Lydia Shire. It “opened to great fanfare” in 1989.[1] The restaurant, overlooking the Public Garden, was designed by Adam Tihany.[2]

The menu was described as “Shire's own particular eclectic blend of traditional American regional cuisine and New England seafood, with accents of Italy, California and Asia.” Instead of being arranged in traditional categories such as appetizers and entrees, it was divided by meat, starch, "legumina" (vegetables), offal (two different preparations of calves brains; lamb tongue with fava beans) and fish.[3]

In 1998, chef Susan Regis won the James Beard Foundation Award for Best Chef in the Northeast.[4] In 1992, Shire won the same award for her work at the restaurant.[5]

Their Bar was renowned as well, in part for their cigar nights. Shire commissioned Robert Jessup to create a mural that spans the wall above it. She insisted it include a can of anchovies, a man smoking a cigar and a woman's naked breast.[6]

Biba closed on September 11, 2001.[7]

Notable alumni

gollark: No, I have that stuff done.
gollark: I want a *different* set of "OPERATIONS ON RELEVANT NODE THING" and no HTML generation at the end, and it would be bees to just copy-paste the function here.
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?

References

  1. Black, Jane (December 1, 2006). "Let Them Eat Duck Fat". Boston Magazine. Retrieved 11 February 2019.
  2. O’Neill, Molly (November 1, 1989). "In Boston, No-Nonsense With Style". New York Times. Retrieved 11 February 2019.
  3. Epstein, Becky Sue (July 16, 1989). "Shire Takes Her Eclectic Taste to Boston". Los Angeles Times. Retrieved 11 February 2019.
  4. Swanson, Stevenson (May 13, 1998). "Winners All". Chicago Tribune. Retrieved 11 February 2019.
  5. BEARD AWARDS TIPS TOQUE TO WOMEN CHEFS
  6. "Biba, Boston". Cigar Aficionados. Retrieved 11 February 2019.
  7. "Lydia Shire and Scampo". Great Chefs. Retrieved 11 February 2019.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.