Tollens-Fonds

The Tollens-Fonds ("Tollens foundation)" is a Dutch organization named for poet Hendrik Tollens (1780–1856). The organization awards a notable literary prize, the Tollens Prize and till 2008 also the Jacobson Prize.

Tollens Prize

The Tollens Prize (Dutch: Tollensprijs) is a quinquennial award in the Netherlands designed to provide a five prominent literary honor. The prize is awarded for a body of work that, in the opinion of the jury, had the highest literary value in the preceding five years.

The award, established by the Board of Tollensfonds in 1902, is called the Tollensprijs since 1925. It was named after the poet Hendrik Tollens (1780–1856).

Winners

Jacobson award

Named for Jos. Jacobson, this award is given every three years to an "elderly" writer or critic, often for their entire oeuvre.[1]

Winners

  • 2008 - Carel Peeters
  • 2002 - S. Dresden
  • 1992 - Elisabeth Augustin
  • 1990 - Jan de Hartog
  • 1985 - Han G. Hoekstra
  • 1985 - Eric van der Steen
  • 1980 - Henriëtte van Eyk
  • 1980 - Jeanne van Schaik-Willing
  • 1975 - Annie Solomons
  • 1975 - J. C. van Schagen
  • 1970 - Willem Brandt
  • 1965 - Elisabeth Zernike
  • 1960 - Marie Schmitz
  • 1955 - Kees van Bruggen
  • 1950 - J. van Oudshoorn
  • 1945 - Frans Bastiaanse
  • 1940 - G. van Hulzen
  • 1940 - J. K. Rensburg
  • 1935 - Maurits Wagenvoort
  • 1930 - F. Smit Kleine
  • 1925 - Nine van der Schaaf
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

  1. "Literaire prijzen" (in Dutch). Nederlands Letterkundig Museum. Retrieved 24 May 2014.


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