Dalton L. McMichael High School
Dalton L. McMichael High School is a public high school located in Mayodan, North Carolina.
Dalton L. McMichael High School | |
---|---|
Address | |
Dalton L. McMichael High School Dalton L. McMichael High School | |
6845 NC Highway 135 , 27027 United States | |
Coordinates | 36°25′4″N 79°56′29″W |
Information | |
Other name | DMHS or McM |
Established | 1991 |
School district | Rockingham County Schools |
CEEB code | 342450 |
Principal | Jon Williams |
Staff | 44.56 (FTE)[1] |
Enrolment | 869 (2018–19)[1] |
Student to teacher ratio | 19.50[1] |
Color(s) | Royal blue and Vegas gold |
Mascot | Fighting Phoenix |
Website | www |
History
The school was established as a merger of Madison-Mayodan and Stoneville high schools. Athletic programs of the two former schools (formerly the Falcons and Eagles, respectively) were merged in 1989, and the new facilities were opened in 1991.
McMichael High School is the home of the 2004, 2007 NCHSAA 2A Dual Team State Championship Wrestling teams, led by Coach Jon Bullins; the 1995 NCHSAA 3-A Men's Tennis State Championship team,[2] led by Coach Steve Spencer; and the 2009 NCHSAA 2A Baseball Championship team, led by Coach Mike Dalton.
The school is named after Dalton L. McMichael (1914–2001), a North Carolina textile executive and philanthropist.
Notable Dalton L. McMichael alumni
- Beth Mitchell, educator and competitive shag dancer
Madison-Mayodan High School alumni
- Linda Carter Brinson, writer, journalist, and editor
- Benny Carter, contemporary visual artist
Madison-Mayodan High School faculty
- J.P. Carter, politician, military officer, and educator
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.
gollark: Wow, my server just got an "out of disk space" warning for /tmp.
References
- "Dalton McMichael High". National Center for Education Statistics. Retrieved May 8, 2020.
- "SW GUILFORD KICKS UP A STATE SOCCER CROWN". Greensboro News & Record. Retrieved 2017-11-08.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.