New Mexico School for the Deaf

The New Mexico School for the Deaf is a state-run school in Santa Fe, New Mexico, providing education for deaf and hard-of-hearing students from preschool through grade 12. Established in 1887 by the New Mexico legislature, it is the only land-grant school for the deaf in the United States.[1]

Facilities

Several of NMSD's buildings are historical landmarks designed in the Santa Fe Pueblo architectural style. The campus includes Dillon Hall, Hester Hall, Connor Hall, Cartwright Hall, Delgado Hall, Belle & Cora Larson Dining Hall, Lars M. Larson Residential Complex & Activity Center, James A. Little Theater, Library & Museum and the Superintendent's Residence.

Athletics

High School Boys, Six-Man Football Basketball Track and Field

High School Girls, Volleyball Basketball Track and Field

Middle School Boys Flags Football JV Football Basketball U-12 Rugby

Middle School Girls Volleyball Basketball

Elementary Soccer Basketball

State Championships Class Year:
FOOTBALL SIX-MAN 2006
gollark: Yep!
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_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: And *is* Haskell necessarily that fast?
gollark: <@!341618941317349376> is being stupid.
gollark: No.

References

  1. Gannon, Jack. 1981. Deaf Heritage–A Narrative History of Deaf America, Silver Spring, MD: National Association of the Deaf, pp. 49–50 (PDF Archived 2012-03-28 at the Wayback Machine PDF Archived 2012-03-28 at the Wayback Machine)

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