Star Treatment

Star Treatment is a British television show that aired on ITV from 19 August to 6 September 2013 and was hosted by Jane McDonald.

Star Treatment
Presented byJane McDonald
Country of originUnited Kingdom
Original language(s)English
No. of series1
No. of episodes15
Production
Running time60 minutes (inc. adverts)
Production company(s)Shiver Productions
DistributorITV Studios
Release
Original networkITV, STV, UTV
Picture format16:9
Audio formatStereo
Original release19 August (2013-08-19) 
6 September 2013 (2013-09-06)
External links
Production website

Format

Star Treatment sees presenter Jane McDonald and the 'Style Team', consisting of Cassie Lomas (Make-up), Lorraine McCulloch (Fashion) and Andrew Trott-Barn (Hair) as they visit workplaces around the Midlands and Wales, in offices, factories, clubs and institutions. The team give a star treatment makeover to the colleagues who have been nominated by their bosses, as a way to thank them for their hard work and positive attitude in the workplace.

Whilst the workers are being treated to their 'star' makeover, their boss works alongside top chef (Ricky Andalcio) to prepare a surprise gourmet meal for them. At the end of the day, the workers walk the catwalk in the company of their family and friends, who come along to show their support, before they are treated to their gourmet meal.[1]

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.
gollark: The time parsing logic is kind of inconsistent.
gollark: ++remind 9h32m no you aren't.
gollark: ++magic sql select * from reminders order by id desc limit 1

References

  1. "ITV Gets Shiver's Star Treatment | Shiver". Shiver.tv. Retrieved 6 June 2014.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.