Route des Grands Crus
The Route des Grands Crus (roughly, "road of the great wines") is the name of a tourist route situated in Burgundy, France.
The approximately 60-kilometre route runs along the foot of the Côte d'Or escarpment, from Dijon in the north to Santenay in the south. Thus it runs through many of the great appellations of Burgundy wine, hence the name of the route. It takes the visitor through the vineyards of the Côte de Nuits and the Côte de Beaune and the back hills (Hautes-Côtes) behind and above the wine slopes.
It is punctuated by 33 villages or little towns, including Beaune, many of which have picturesque churches.
Route
From north to south:
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?
gollark: And how do I get *that* to work.
See also
References
Further reading
- Coates, Clive (1997). Côte D'Or: A Celebration of the Great Wines of Burgundy. Weidenfeld Nicolson. ISBN 0-297-83607-2.
- Nanson, Bill (2012). The Finest Wines of Burgundy: A Guide to the Best Producers of the Côte d'Or and Their Wines (Fine Wine Editions Ltd). Aurum Press. p. 320. ISBN 978-1-84513-692-5. An inexpensive introduction to the Côte d'Or and currently the most up to date book.
External links
- Description
- thewinedoctor.com An overview of the geography and wines of Burgundy
- The Burgundy Report Good descriptions of the vineyards and vintages.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.