International Pinguicula Study Group Newsletter

The International Pinguicula Study Group Newsletter was the official publication of the International Pinguicula Study Group, a Pinguicula society based in the United Kingdom that was active during the 1990s.[1][2] Typical articles included matters of horticultural interest, field reports, and scientific studies. Only 10 issues were ever released and the newsletter had an irregular publication history. In chronological order, the 10 issues were: volume 1 (not dated), volume 2 (not dated), volume 3 (May/June 1993), volume 4 (February 1994), volume 5 (September 1994), volume 6 (April 1995), volume 7 (January 1996), volume 8 (February 1997), volume 9 (autumn 1998), and volume 10 (autumn 2000).[1] The International Carnivorous Plant Society hosts an online archive of all ten issues.[1]

International Pinguicula Study Group Newsletter
Volume 10 (autumn 2000)
DisciplineBotany
LanguageEnglish
Edited byStan Lampard
Publication details
History1992?–2000
Publisher
The International Pinguicula Study Group (United Kingdom)
FrequencyIrregular
Standard abbreviations
ISO 4Int. Pinguicula Study Group Newsl.
Indexing
OCLC no.183251653
Links

Taxon descriptions

The International Pinguicula Study Group Newsletter published the formal description of the subspecies Pinguicula macroceras subsp. nortensis in its February 1997 issue.[3][4] It also established the cultivar name Pinguicula 'L'Hautil' in the May/June 1993 issue.[4][5]

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?
gollark: Try running potatOS on it.
gollark: Now running virtualization inside the potato farms for funlolz.

References

  1. The International Pinguicula Study Group Archived 2010-12-14 at the Wayback Machine. International Carnivorous Plant Society.
  2. International Pinguicula Study Group Newsletter. WorldCat.
  3. Rondeau, J.H. & J.F. Steiger 1997. "Pinguicula macroceras subsp. nortensis, a new subspecies of Pinguicula (Lentibulariaceae) from the California-Oregon border" (PDF). International Pinguicula Study Group Newsletter 8: 3–8.
  4. Schlauer, J. N.d. Query results: Internat. Pinguicula Stud. Group Newslett.. Carnivorous Plant Database.
  5. Legendre, L. & S. Lavayssiere 1993. "Pinguicula X l'hautil" (PDF). International Pinguicula Study Group Newsletter 3: 7–11.


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