Skip to main content

meaning - What does “E!” mean in the phrases, a show “makes the debut Sunday E! sets in motion,” and “premiers on E! April 21”?



I came across a new interjection (seemingly) “E!” in the following sentence of the Washington Post (April 18) article titled, “Ryan Lochte, Ke$ha and the rules for celebrity reality shows”.



Ryan Lochte’s bold personal style: The Olympic swimmer’s reality series “What Would Ryan Lochte Do?” premires on E! April 21.


This week marks the debut of two such shows. Sunday, E! sets in motion “What Would Ryan Lochte Do?,” a look at the Olympic swimmer who made headlines at last year’s London games — not so much for his victories and friendly rivalry with teammate Michael Phelps as for a flurry of awkward interviews and self-deluded sound bites (trademarking the frat-thusiastic phrase “Jeah!”) that gave him a party-boy reputation.



What does “E!” mean? Is it an interjection or a capital letter for something associated with TV entertainment programs?


Additionally, is “Jeah” similar with “gee / jee”? Is the word, “ frat-thusiastic” which I presume to be a compound of “fraternity + enthusiastic” (Pls. correct me if I’m wrong) a current English word, or just a coinage by the author?



Answer



In addition to "E!" being the stylized logo for "Entertainment Television" and it's various intellectual properties, the company has a brand of being "Hollywood hip" and so takes liberties with the English language that are anything but standard.


Stylization in branding and art often includes punctuation and nonstandard capitalization, and is indeed confusing to those not familiar- which some would argue is not entirely accidental. An example beyond those already mentioned include the band "fun." and the internet/company "del.icio.us". This has the somewhat amusing side-effect of making the convention of putting punctuation inside quotes problematic, but that's tangential.


On your other questions, "Jeah" is pretty much just an altered pronunciation of "yeah" meant to convey an attitude related to the word "duh"; it's sarcastic, like a stereotypical immature "frat boy".


The word "frat-tastic" is also slightly different in meaning than you expected, as it is using -tastic as an adjective in a combining form. The statement means to convey that the man is especially like a stereotypical fraternity member. The similarity to "enthusiastic" is more or less accidental, as "-tastic" comes from "fantastic". The "-tastic" suffix is in general use, and the author is relying on familiarity with the convention rather than with the "frat-tastic" example itself being a word in common use.


Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...