Grandmaster Flash & the Furious Five (album)

Grandmaster Flash & The Furious Five is a compilation album release by Grandmaster Flash & the Furious Five (On The Strength is their official second album). It was released in July 1983, and it is a compilation of their Sugar Hill Records hit singles including "The Message", "New York New York and "White Lines". Over half of the tracks were single-only releases prior to this compilation.

Grandmaster Flash & The Furious Five
Compilation album by
Grandmaster Flash & the Furious Five
ReleasedJuly 1983
GenreHip-hop, funk
LabelSugar Hill/TELDEC Schallplatten GmbH
SH-9121
Grandmaster Flash & the Furious Five chronology
The Message
(1982)
Grandmaster Flash & The Furious Five
(1983)
Greatest Messages
(1984)

Track listing

  1. "White Lines (Don't Don't Do It)"
  2. "The Party Mix"
  3. "The Message"
  4. "New York New York"
  5. "Freedom"
  6. "The Wheels Of Steel"
  7. "It's Nasty (Genius of Love)"


gollark: Oh, minoteaur actually has that (not the threading bit) in its Markdown parsing code.
gollark: Thus, praise ~~Rust~~ ~~Ferris~~ Nim?
gollark: It compiles in reasonable time *and* makes a 600KB binary in debug mode which is much nicer than equivalent Rust.
gollark: I only need something like two routes so a full web framework is overkill.
gollark: ```nimimport optionsimport asyncdispatchimport httpximport tiny_sqliteimport macrosimport karax/[karaxdsl, vdom]import ./dbmacro includeFile(x: string): string = newStrLitNode(readFile(x.strVal))const css = includeFile("./src/style.css")let database = openDatabase("./monitoring.sqlite3")migrate(database)var threadDB {.threadvar.}: Option[DbConn]proc openDB(): DbConn = if isNone threadDB: threadDB = some openDatabase("./monitoring.sqlite3") get threadDBproc mainPage(): string = let vnode = buildHtml(html()): head: style: text css text "Bee deployed" $vnodeproc onRequest(req: Request) {.async.} = if req.httpMethod == some(HttpGet): case req.path.get() of "/": req.send(body=mainPage(), code=Http200, headers="Content-Type: text/html") else: req.send(Http404) else: req.send(Http404)echo "Starting up"run(onRequest, initSettings(Port(7800), "", 0))```This is what I have so far.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.