Biffen och Bananen

Biffen och Bananen (the Beef and the Banana) was a comic strip by Rit-Ola (Jan-Erik Garland), originally published in Folket i Bild in 1936, where it ran until 1978.[1] The strip was also published in albums and in the Swedish comic book 91:an.

Description

The comic is about two friends, the strong Biffen (based on the heavyweight boxer Harry Dahlgren[2]) and the intelligent Bananen (based on Rit-Ola himself[2]). Their adventures were often set in or around Stockholm, or on vacation in Africa and southern Europe. The setting was often athletic, and all characters spoke Stockholmska. After a few years the duo was accompanied by a third character, Galento, named after the boxer Tony Galento.[3]

Rit-Ola was given rather loose directions for the comics: he was required to avoid the topics of drunkenness and rape; he was obliged to deliver the strip four to five weeks prior to the publication date; and the comic must be drawn in black, white, and red.[3]

Three movies were made about the characters: Biffen och Bananen (1951), Blondie, Biffen och Bananen (1952), and Klarar Bananen Biffen? (1957). Biffen was played by Åke Grönberg and Bananen by Åke Söderblom.

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!

References

  1. Nationalencyklopedin
  2. Tore Nilsson: Applåder och visslingar, Semic AB, 1988
  3. Sture Hegerfors: Pratbubblan! En bok om serier, Bra Böcker, 1978.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.