Lowton Church of England High School

Lowton Church of England High School is a coeducational secondary school located in Lowton in the English county of Greater Manchester.

Lowton Church of England High School
Address
Newton Road


,
WA3 1DU

Coordinates53.47561°N 2.54615°W / 53.47561; -2.54615
Information
TypeFoundation school
Religious affiliation(s)Church of England
Local authorityWigan Council
Department for Education URN137783 Tables
OfstedReports
GenderCoeducational
Age11 to 16
Websitehttps://www.lowtonhs.wigan.sch.uk/

It is a foundation school administered by Wigan Metropolitan Borough Council. The school became affiliated with the Church of England in 2012 under the guidance of the Diocese of Liverpool.[1] The school educates pupils mainly from Lowton, Golborne, Leigh and Atherton.

Lowton Church of England High School offers GCSEs and some entry level courses as programmes of study for pupils. The school also offers evening adult education and sports facilities to the local community.[2]

Between September 2005 and August 2017, Lowton Church of England High School has been ranked consistently less than good during at least four full inspections by Ofsted.[3]

Notable former pupils

gollark: Neither!
gollark: Well, obviously you'll have some items available to build stuff from.
gollark: - Checks if the available-items list already contains the item needed. If so, just return that.- If not, checks for recipes to do what is wanted- If one exists, iterate over them (not sure what to *do* with them)- If none exists, we can't do anything, so just return no tasks, no costs and no outputs.
gollark: ```rusttype Items = HashMap<ItemType, u32>;fn quantity(items: &Items, desired: &ItemType) -> u32 { if let Some(available_quantity) = items.get(desired) { *available_quantity } else { 0 }}fn contains(items: &Items, desired: &Item) -> bool { quantity(items, &to_item_type(desired)) >= desired.quantity}fn satisfies(available: &Items, desired: &Items) -> bool { for (typ, desired_quantity) in desired.iter() { if quantity(available, typ) < *desired_quantity { return false } } true}fn to_map(is: &Vec<Item>) -> Items { let out = HashMap::new(); for i in is.iter() { out.entry(to_item_type_clone(i)) .and_modify(|e| { *e += 1 }) .or_insert(0); } out}fn one_item(i: Item) -> Items { let out = HashMap::new(); out.insert(to_item_type(&i), i.quantity); out}#[derive(Debug, Deserialize, PartialEq, Eq, Serialize, Clone)]pub struct CraftingResult { pub tasks: Vec<Recipe>, pub costs: Items, pub outputs: Items}fn solve(desired: Item, available: Items, recipes: &MultiMap<ItemType, Recipe>) -> CraftingResult { if contains(&available, &desired) { // If our available items list already contains the desired item, yay, we can just do nothing return CraftingResult { tasks: vec![], costs: one_item(desired), outputs: one_item(desired) } } if let Some(recipes) = recipes.get_vec(&to_item_type(&desired)) { for recipe in recipes.iter() { let result = solve() // ??? } } else { CraftingResult { tasks: vec![], costs: HashMap::new(), outputs: HashMap::new() } }}```My code, or at least part of it.
gollark: That is NOT THE HARD PART.

References

  1. "Archived copy". Archived from the original on 2014-10-26. Retrieved 2014-10-26.CS1 maint: archived copy as title (link)
  2. "Lowton High Evening School". Retrieved 2018-09-28.
  3. Adams, Richard; Mason, Rowena (13 December 2017). "Private Faith Schools Are Resisting British Values, Says Ofsted Chief". The Guardian. Retrieved 20 March 2018.


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