Macquartiini

Macquartiini is a tribe of flies in the family Tachinidae.[1][2][3][4]

Macquartiini
Macquartia grisea
Scientific classification
Kingdom:
Phylum:
Class:
Order:
Family:
Subfamily:
Tribe:
Macquartiini

Genera

gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
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.

References

  1. "Fauna Europaea version 2.4". European Commission. 26 September 2012. Retrieved 26 September 2012.
  2. Chandler, Peter J. (1998). Checklists of Insects of the British Isles (New Series) Part 1: Diptera. Handbooks for the Identification of British Insects. New Series. 12. London: Royal Entomological Society of London. pp. 1–234. ISBN 0-901546-82-8.
  3. Belshaw, Robert (1993). "Tachinid Flies Diptera Tachinidae". Royal Entomological Society Handbooks. Royal Entomological Society of London. 10 (4ai): 170.
  4. van Emden, F.I. (1954). "Ditera Cyclorrhapha Calyptrata (I) Section (a) Tachinidae & Calliphoridae". Royal Entomological Society Handbooks. Royal Entomological Society of London. 10 (4a): 133.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.