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
CountryFrance
RegionGrand Est
DepartmentAube
ArrondissementTroyes
CantonArcis-sur-Aube
IntercommunalityArcis-sur-Aube
Government
  Mayor (20082014) Solange Gaudy
Area
1
21.01 km2 (8.11 sq mi)
Population
 (2017-01-01)[1]
293
  Density14/km2 (36/sq mi)
Time zoneUTC+01:00 (CET)
  Summer (DST)UTC+02:00 (CEST)
INSEE/Postal code
10095 /10700
Elevation86–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

Historical population
YearPop.±%
1962201    
1968225+11.9%
1975191−15.1%
1982229+19.9%
1990196−14.4%
1999198+1.0%
2008246+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

  1. "Populations légales 2017". INSEE. Retrieved 6 January 2020.



This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.