Ysgol Uwchradd Tywyn
Ysgol Uwchradd Tywyn is a bilingual coeducational secondary school situated in Tywyn, Gwynedd.
Ysgol Uwchradd Tywyn | |
---|---|
Address | |
Station Road , , LL36 9EU | |
Coordinates | 52°35′05″N 4°05′22″W |
Information | |
Type | State school |
Established | 1894 |
Head Teacher | Mrs Helen Lewis |
Gender | Both |
Age | 11 to 16 |
Enrolment | 270[1] |
Houses | Cadfan, Dysynni and Maethlon |
Website | http://www.tywyn.gwynedd.sch.uk/ |
Around 25% of pupils come from homes where Welsh is the main language.[2]
History
It was opened as 'Towyn Intermediate School' in 1894 in a building called Brynarfor (formerly a private school called the Towyn Academy and then Brynarvor Hall School). Brynarfor was demolished in 2008.
In 2015, the Welsh Government declared it the secondary school with the highest standards in Wales, as defined by its school categorisation system.[3]
Feeder schools
The following primary schools feed (or fed) Ysgol Uwchradd Tywyn:
- Ysgol Craig y Deryn (from 2013)
- Ysgol Gynradd Aberdyfi (before closure in 2013)
- Ysgol Gynradd Abergynolwyn (before closure in 2010)
- Ysgol Gynradd Aberllefenni (before closure in 1967)
- Ysgol Gynradd Bryncrug (before closure in 2013)
- Ysgol Gynradd Dyffryn Dulas, Corris
- Ysgol Gynradd Llanegryn (before closure in 2013)
- Ysgol Gynradd Llwyngwril (before closure in 2013)
- Ysgol Gynradd Pantperthog (before closure in 1960s)
- Ysgol Gynradd Pennal
- Ysgol Gynradd Tynyberth, Corris Uchaf (before closure in 1967)
Notable former pupils
- Tom Bradshaw (b.1992), Welsh international footballer
- Geraint Goodwin (1903–41), author of The Heyday in the Blood (1936)
- Lord Prys-Davies (1923–2017) of Llanegryn[4]
- Michael Raven (1938–2008), author, musician, composer and poet
Notable former teachers
- Thomas Richards (1878-1962), historian
- David Williams (1900-1978), historian
gollark: oh dear.
gollark: Well, the outsourced `parsedatetime` stuff can probably do it.
gollark: Good luck.
gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
gollark: ... no.
References
- My Local School.
- "Ysgol Uwchradd Tywyn | Estyn". www.estyn.gov.wales. Retrieved 28 October 2016.
- "Daily Post". Retrieved 5 February 2015.
- Prys Davies, Gwilym. 2002. Tywyn School. Journal of the Merioneth Historical and Record Society, 14.1, pp. 77-85.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.