Ralph's World

Ralph's World is a children's music group created by Ralph Covert. Covert, previously of Chicago-based indie-rock group The Bad Examples, uses high rock and roll energy with kid-friendly lyrics.

Ralph's World
OriginChicago, Illinois, USA
GenresChildren's music, kindie rock
Years active1991 – present
LabelsWaterdog, Mini Fresh, Disney Sound
Associated actsThe Bad Examples
Websiteralphsworld.com
MembersRalph Covert
Tom O'Brien
Brian Sheridan
Michael Alban
Bean Weng

Ralph's World's "Green Gorilla, Monster and Me!" was nominated for Best Musical Album for Children, at the 48th Grammy Awards.

A collection of lyrics and artwork titled Ralph's World Rocks was released in August, 2008 from Henry Holt Books for Young Readers.

"At The Bottom Of The Sea" is likely the most well known song by Ralph's World, due to it being included on RCA Lyra mp3 players in the early 2000s.

Discography

Studio albums

  • Ralph's World (2000)
  • At the Bottom of the Sea (2002)
  • Peggy's Pie Parlor (2003)
  • The Amazing Adventures of Kid Astro (Mini Fresh 2004, Disney 2006)
  • Green Gorilla Monster and Me (2005)
  • Happy Lemons (2006)
  • Rhyming Circus (2007)
  • Time Machine Guitar (2017)

Compilation albums

  • Ralph's World Rocks and Reads
  • Welcome to Ralph's World
  • All Around Ralph's World
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.