Gyrineum pusillum

Gyrineum pusillum, common name the purple gyron triton, is a species of predatory sea snail, a marine gastropod mollusk in the family Cymatiidae.[1]

Gyrineum pusillum
Scientific classification
Kingdom: Animalia
Phylum: Mollusca
Class: Gastropoda
Clade: Caenogastropoda
Clade: Hypsogastropoda
Order: Littorinimorpha
Family: Cymatiidae
Genus: Gyrineum
Species:
G. pusillum
Binomial name
Gyrineum pusillum
(Broderip, 1833)
Synonyms[1]
  • Apollon pusillus (Broderip, 1833)
  • Gyrineum pusilla (Brodrip, 1833) (Spelling variation)
  • Gyrineum pusillus Broderip (Spelling vatiation)
  • Ranella pusilla Broderip, 1833 (basionym)

Description

The length of the shell varies between 7 mm and 25 mm.

Distribution

This species occurs in the Red Sea and in the Indian Ocean off Tanzania and Aldabra

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_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?
gollark: And how do I get *that* to work.

References

  • Spry, J.F. (1961). The sea shells of Dar es Salaam: Gastropods. Tanganyika Notes and Records 56
  • Taylor, J.D. (1973). Provisional list of the mollusca of Aldabra Atoll.
  • Vine, P. (1986). Red Sea Invertebrates. Immel Publishing, London. 224 pp
  • Beu A. (2010). Catalogue of Tonnoidea
  • "Gyrineum pusillum". Gastropods.com. Retrieved 15 March 2012.


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