Le Chêne
Le Chêne is a commune in the Aube department in north-central France.
Le Chêne | |
---|---|
Location of Le Chêne | |
Le Chêne Le Chêne | |
Coordinates: 48°33′00″N 4°10′39″E | |
Country | France |
Region | Grand Est |
Department | Aube |
Arrondissement | Troyes |
Canton | Arcis-sur-Aube |
Intercommunality | Arcis-sur-Aube |
Government | |
• Mayor (2008–2014) | Solange Gaudy |
Area 1 | 21.01 km2 (8.11 sq mi) |
Population (2017-01-01)[1] | 293 |
• Density | 14/km2 (36/sq mi) |
Time zone | UTC+01:00 (CET) |
• Summer (DST) | UTC+02:00 (CEST) |
INSEE/Postal code | 10095 /10700 |
Elevation | 86–163 m (282–535 ft) (avg. 98 m or 322 ft) |
1 French Land Register data, which excludes lakes, ponds, glaciers > 1 km2 (0.386 sq mi or 247 acres) and river estuaries. |
Population
Year | Pop. | ±% |
---|---|---|
1962 | 201 | — |
1968 | 225 | +11.9% |
1975 | 191 | −15.1% |
1982 | 229 | +19.9% |
1990 | 196 | −14.4% |
1999 | 198 | +1.0% |
2008 | 246 | +24.2% |
gollark: That's the compiler.
gollark: Yep!
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_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: And *is* Haskell necessarily that fast?
gollark: <@!341618941317349376> is being stupid.
See also
References
- "Populations légales 2017". INSEE. Retrieved 6 January 2020.
Wikimedia Commons has media related to Le Chêne (Aube). |
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.