Cadlina limbaughorum

Cadlina limbaughorum is a species of sea slug or dorid nudibranch, a marine gastropod mollusk in the family Cadlinidae.[1]

Cadlina limbaughorum
Scientific classification
Kingdom:
Phylum:
Class:
(unranked):
Superfamily:
Family:
Genus:
Species:
C. limbaughorum
Binomial name
Cadlina limbaughorum
Lance, 1962

Distribution

Description

Ecology

gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystemâ„¢.
gollark: I AM writing this, so you know.

References

  1. Turgeon, D.; Quinn, J.F.; Bogan, A.E.; Coan, E.V.; Hochberg, F.G.; Lyons, W.G.; Mikkelsen, P.M.; Neves, R.J.; Roper, C.F.E.; Rosenberg, G.; Roth, B.; Scheltema, A.; Thompson, F.G.; Vecchione, M.; Williams, J.D. (1998). Common and scientific names of aquatic invertebrates from the United States and Canada: mollusks. 2nd ed. American Fisheries Society Special Publication, 26. American Fisheries Society: Bethesda, MD (USA). ISBN 1-888569-01-8. IX, 526 + cd-rom pp. (look up in IMIS) page(s): 126 Accessed through: World Register of Marine Species at http://www.marinespecies.org/aphia.php?p=taxdetails&id=581803 on 2012-02-29


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