Mill Point Federal Prison

Mill Point Federal Prison was a minimum security United States federal prison camp located west of Mill Point in Pocahontas County, West Virginia. It was built on a plot in Monongahela National Forest adjacent to the Cranberry Glades. In operation from 1938 to 1959, all buildings were demolished after its closure.[1]

Mill Point Federal Prison
LocationPocahontas County, West Virginia
Coordinates38°11′24″N 80°15′46″W
StatusClosed
Security classMinimum security
Opened1938
Closed1959
Managed byFederal Bureau of Prisons

Notable inmates

gollark: One of these days I really ought to add login and CSRF prevention.
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.

References

  1. Crockett, Maureen. "Mill Point Prison Camp". West Virginia Encyclopedia. West Virginia Humanities Council. Retrieved September 15, 2014.
  2. Burnsworth, Jodi (March 9, 2012). "The Forgotten Prison on Kennison Mountain - Part 3 of 4". The Inter-Mountain. Elkins, West Virginia. Archived from the original on September 15, 2014. Retrieved September 15, 2014.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.