Collégien
Collégien is a commune in the Seine-et-Marne department in the Île-de-France region in north-central France.
Collégien | |
---|---|
The town hall in Collégien | |
Location of Collégien | |
Collégien Collégien | |
Coordinates: 48°50′16″N 2°40′27″E | |
Country | France |
Region | Île-de-France |
Department | Seine-et-Marne |
Arrondissement | Torcy |
Canton | Torcy |
Intercommunality | CA Marne et Gondoire |
Government | |
• Mayor (2008–2014) | Michel Chartier |
Area 1 | 4.27 km2 (1.65 sq mi) |
Population (2017-01-01)[1] | 3,400 |
• Density | 800/km2 (2,100/sq mi) |
Time zone | UTC+01:00 (CET) |
• Summer (DST) | UTC+02:00 (CEST) |
INSEE/Postal code | 77121 /77090 |
Elevation | 82–116 m (269–381 ft) |
1 French Land Register data, which excludes lakes, ponds, glaciers > 1 km2 (0.386 sq mi or 247 acres) and river estuaries. |
Demographics
The inhabitants are called Collégeois.
Education
There is one primary school group containing preschool and elementary school, Les écoles des Saules.[2] Collège Victor Schœlcher, a junior high school in Torcy;[3] and Lycée Jean-Moulin, a senior high school/sixth-form college in Torcy, serve the community.[4]
gollark: I don't know.
gollark: https://esolangs.org/wiki/WHY
gollark: All three.
gollark: Unless you turn up the optimization setting to ~30, at which point it makes quite fast code.
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])```The compiler for the new `WHY` language. Made as a joke because someone on the esolangs server insisted that all compiled languages were fast.
References
- "Populations légales 2017". INSEE. Retrieved 6 January 2020.
- "École." Collégien. Retrieved on September 3, 2016.
- "Collège." Collégien. Retrieved on September 3, 2016.
- "Lycée." Collégien. Retrieved on September 3, 2016.
External links
Wikimedia Commons has media related to Collégien (Seine-et-Marne). |
- Town hall (in French)
- 1999 Land Use, from IAURIF (Institute for Urban Planning and Development of the Paris-Île-de-France région) (in English)
- French Ministry of Culture list for Collégien (in French)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.