Ipswich Academy

Ipswich Academy (formerly Holywells High School) is a mixed secondary school in Ipswich, Suffolk for students aged 11 to 16. Since September 2010, it has been an Academy.

Ipswich Academy
Address
Braziers Wood Road

, ,
IP3 0SP

England
Coordinates52°02′14″N 1°11′35″E
Information
TypeAcademy
Department for Education URN136453 Tables
OfstedReports
Chair of GovernorsDavid Willis
PrincipalHelen Winn
Staff70
GenderMixed
Age11 to 16
Enrolment750
Colour(s)Black and Purple          
Former nameHolywells High School
Websitehttp://ipswichacademy.paradigmtrust.org/

History

In September 2010, Holywells High School become an academy, originally ran by the Learning Schools Trust, and was renamed Ipswich Academy.[1] In September 2015, Paradigm Trust - a multi-academy trust formed in September 2013 - took over operation of the academy.[2]

Paradigm Trust was formed with a very simple ethos: it is that every child is entitled to an outstanding education, with equal access to knowledge, skills, opportunities, aspirations, life chances and dignity.[3]

It aims to provide this in many ways to every child at the schools in the Trust; leading with a well-planned and taught curriculum, in an environment where the safety and well-being of pupils are paramount.

gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.

References

  1. Hollie-Rae Merrick (2 March 2011). "Ipswich: High school has first day as town's new academy". Ipswich Star.
  2. Beeby, Adrian. "Ipswich Star". Retrieved 9 May 2018.
  3. Beeby, Adrian. "Our Aims". Ipswich Academy website.


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