North Branford High School
North Branford High School is a public high school in North Branford, Connecticut. In 2010, North Branford High School had 12 students for every full-time equivalent teacher.[2] It is the only high school in the town of North Branford, which accounts for residents in both North Branford and Northford. The school has around 700 students annually and graduates over 90% of its students.
North Branford High School | |
---|---|
Address | |
49 Caputo Rd , Connecticut 06471 | |
Coordinates | 41.3361°N 72.8013°W |
Information | |
Type | Public |
Superintendent | Scott Schoonmaker |
Principal | Todd Stoeffler |
Number of students | 577 (2016-17)[1] |
Color(s) | |
Mascot | Thunderbird |
Website | nbhs |
Administration
In 2006, the administration was accused of grade tampering in order to boost graduation rates. Following an investigation, the state's Attorney General office concluded that no widespread tampering took place.[3]
gollark: Eh. It's improved. Still problematic though, but I like it.
gollark: Well, it's poorly designed, more so than JS in my opinion.
gollark: PHP is maaaaybe easy for simple stuff, but also very evil.
gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```
References
- "North Branford High School". National Center for Education Statistics. Retrieved February 24, 2019.
- "North Branford High School". Education.com, Inc.
- "No. Branford Cleared of Grade Tampering". New Haven Register.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.