Stokkøya
Stokkøya is an island in the municipality of Åfjord in Trøndelag county, Norway. The 16.7-square-kilometre (4,100-acre) island is located in the Stoksund area of Åfjord.[1] The largest village on the island is Harsvika. The 225-metre (738 ft) tall mountain Kamman is the highest point on the island.
Stokkøya Location of the island Stokkøya Stokkøya (Norway) | |
Geography | |
---|---|
Location | Trøndelag, Norway |
Coordinates | 64.0632°N 09.9806°E |
Area | 16.7 km2 (6.4 sq mi) |
Length | 5 km (3.1 mi) |
Width | 5 km (3.1 mi) |
Highest elevation | 225 m (738 ft) |
Highest point | Kamman |
Administration | |
Norway | |
County | Trøndelag |
Municipality | Åfjord |
Stokkøya is connected to the mainland by the Stokkøy Bridge between the villages of Harsvika and Revsnes on the mainland. The Linesøy Bridge is being built connecting Stokkøya to the island of Linesøya to the southwest. The smaller island of Lauvøya lies about 10 kilometres (6.2 mi) to the south.[2]
Media gallery
- View of the island
- Harsvika village
- Harsvika village
- Harbour buildings
- Sunset on Stokkøya
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.
gollark: BT being bad, who would ever guess so?
gollark: Amazing, right?
See also
References
- "Stokkøya" (in Norwegian). yr.no. Retrieved 2011-01-04.
- Store norske leksikon. "Stokkøya" (in Norwegian). Retrieved 2011-01-04.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.