Phenomenon
Phenomenon is a television show on NBC. It is a show similar to American Idol, except the competitors are psychics, mentalists, etc. The competitors are judged by Criss Angel and Uri Geller.
You gotta spin it to win it Media |
![]() |
Stop the presses! |
We want pictures of Spider-Man! |
|
Extra! Extra! |
v - t - e |
Competitors
Eran Raven
- Episode 1 - "Psychically" detected which of six nail guns was loaded.
- Episode 2 - Moved sunglasses without touching them
Gerry McCambridge
- Episode 1 - Predicted which phone number would be chosen, apparently at random, from a stack of phone books.
- Episode 2 - Predicted where on her body a woman would point
Guy Bavli
- Episode 2 - Figured out which number someone chose; stopped and restarted his heart
Mike Super
- Episode 2 - Removed from a deck without touching it the card someone thought of; had audience members name elements of the solution to a fictional murder mystery (It was Tom Hanks in Hawaii with a dresser.)
Jim Callahan
- Episode 2 - Figured out which person a woman had thought of, and got most of audience to think of same person; got possessed by a dead author, who knew which object was sealed in a box. Then he almost got into a fight with Criss Angel after Angel called him out on his fakery.
Ehud Segev
- Episode 1 - Caused people to share sensory input
- Episode 2 - Levitated a credit card (a cool effect, regardless of how it was done)
- Eliminated in first elimination
Jan Bardi
- Episode 2 - Predicted which of three flowers an audience member would pick; located a randomly-chosen matchbox out of a few hundred thrown on the stage, figured out how many matches were in it
Angela Funovitz
- Episode 2 - Shattered an earring; detected which of five covered cylinders contained a knife
Jim Karol
- Episode 1 - Put hand in a trap and figured out which person's name someone had written down (It was Jeff Goldblum)
- Episode 2 - Tossed a deck of cards at a woman; the card she had named ended up in her shirt.
- Eliminated in first elimination
Wayne Hoffman
- Episode 2 - Predicted what someone would draw.
gollark: I told you.
gollark: The clunky syntax for functions?
gollark: <@!330678593904443393> Serde is the de-facto Rust serialization library.
gollark: No, skynet as in my websocket messaging server for CC.
gollark: ```rustuse std::collections::HashMap;use serde_cbor::Value;use chrono;use std::collections::HashSet;use actix::prelude::*;#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}pub fn complete(raw: RawMsg) -> Msg { Msg { channel: raw.channel, meta: raw.meta, timestamp: chrono::Utc::now(), message: raw.message }}#[derive(Serialize, Deserialize, Debug)]#[serde(rename_all = "snake_case")]pub enum MessageFromClient { Open(Channel), Close(Channel), Message(RawMsg), Query}#[derive(Serialize)]#[serde(rename_all = "snake_case")]pub enum MessageToClient<'a> { Message(Msg), QueryResult { channels: &'a HashSet<Channel> }}```Skynet!
This article is issued from Rationalwiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.