Anderson Private School

Anderson Private School for the Gifted, Talented and Creative is a private school in Fort Worth, Texas.[1] The school accepts students ages 4-16 and does not use grade levels.[2] Students by 16 are typically dual enrolled in Anderson and a local college.[3] Typically the total student body is 20–25.[4]

History

Dr. William and LeVonna Anderson, the cofounders of the school, began planning for it in 1983, and the school first opened in 1995.[5]

Notable alumni

  • Ethan Couch - did not graduate[4], killed four people while driving under the influence of alcohol and drugs, commonly known as "affluenza" teen.
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```
gollark: I mean, you could use PHP too. I don't like it. But you could.
gollark: What I might do, though there are probably many ways to: make a program in Node.js or whatever (personal preference) which responds with whatever image is set to any requests for that, and which allows you to upload an image, converts it to the right format, then saves it to be sent when the ESP requests it.
gollark: And you want to be able to upload pictures to some sort of web thing to send to the ESP?

References

  1. "Contact Us Archived January 1, 2016, at the Wayback Machine." Anderson Private School. Retrieved on December 22, 2015. "Address: 14900 White Settlement Rd. Fort Worth, Texas 76108"
  2. "Frequently Asked Questions Archived March 4, 2016, at the Wayback Machine." Anderson Private School. Retrieved on December 22, 2015.
  3. "Welcome Archived December 10, 2015, at the Wayback Machine." Anderson Private School. Retrieved on December 22, 2015.
  4. Mooney, Michael J. "The Worst Parents Ever" (Archive). D Magazine. May 2015. Retrieved on December 22, 2015.
  5. "History Archived January 2, 2016, at the Wayback Machine." Anderson Private School. Retrieved on December 22, 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.