Ain't Gonna Hurt Nobody

"Ain't Gonna Hurt Nobody" is a song performed by American hip hop group Kid 'n Play. It was issued as the first single from their third studio album Face the Nation, as well as appearing on the soundtrack to the film House Party 2. The song samples the Brick song of the same name, as well as "Funky President (People It's Bad)" by James Brown.[4]

"Ain't Gonna Hurt Nobody"
Single by Kid 'n Play
from the album Face the Nation and House Party 2
ReleasedAugust 22, 1991 (1991-08-22)[1]
GenreHip hop
Length4:45
Label
Songwriter(s)
Producer(s)Eric Johnson[3]
Kid 'n Play singles chronology
"Back to Basix"
(1990)
"Ain't Gonna Hurt Nobody"
(1991)
"Slippin'"
(1991)

Co-written by group member Christopher "Kid" Reid,[2] "Ain't Gonna Hurt Nobody" was the group's only single to chart on the Billboard Hot 100, peaking at number 51 on the chart in 1991.[5] It was also the group's second single to peak at number one on the Billboard rap chart.[5]

Chart positions

Chart (1991)[5] Peak
position
US Billboard Hot 100 51
US Hot Dance Music/Maxi-Singles Sales (Billboard) 18
US Hot R&B/Hip-Hop Singles & Tracks (Billboard) 26
US Hot Rap Singles (Billboard) 1
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.
gollark: Why are you not just... using an actual IRC client?

References

  1. "Kid'n Play - Ain't Gonna Hurt Nobody [Vinyl] - Amazon.com Music". Amazon. Retrieved September 5, 2019.
  2. "Ain't Gonna Hurt Nobody - Kid 'N Play [sic] | Song Info | AllMusic". AllMusic. All Media Network. Retrieved March 23, 2020.
  3. "Kid 'N Play* [sic] - Face The Nation (1991, Vinyl) | Discogs". Discogs. Zink Media. Retrieved March 23, 2020.
  4. "Ain't Gonna Hurt Nobody by Kid 'N Play [sic] - Samples, Covers and Remixes | WhoSampled". WhoSampled. Retrieved March 23, 2020.
  5. "Kid 'N Play [sic] | Awards | AllMusic". AllMusic. All Media Network. Archived from the original on January 13, 2016. Retrieved March 23, 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.