St. Catherine's taffy
St. Catherine's Taffy is a variety of taffy made by French-Canadian families to celebrate the feast day of Saint Catherine of Alexandria.
Part of a series on |
Canadian cuisine |
---|
Regional cuisines |
Ingredients |
Styles and dishes
|
Religious and ethnic
|
Rituals and festivals
|
|
Origins
St. Catherine's Taffy is a candy made by girls in French-Canadian families to honour St. Catherine, the patron saint of unmarried women on her feast day, November 25.[1] St. Catherine's day is sometimes known in Franco Canadian families as "taffy day," a day when marriage-age girls would make taffy for eligible boys. Marguerite Bourgeoys, a founder of the Notre-Dame de Montréal and an early teacher at Ville-Marie, the colonial settlement that would later become Montreal, is credited with starting the tradition as a way of keeping the attention of her young students.
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.
gollark: Coming in about 3 minutes.
References
- Banjack, Bette (2016-03-17). "THE TABLE: Quebec, Canada". The Phoenix Reporter & Item. Retrieved 2016-06-15.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.