lyriki 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5664f2021ab61bcab5900255c4e866d7fcb20377
4
+ data.tar.gz: 9f0715e1b3edc8e99944eb285de7025b6532078c
5
+ SHA512:
6
+ metadata.gz: 63e404f733164ab4283cefcfc4568c8ab486ab9b084620080673f9d3014eb02fe80b7a9b2cf039fd38ea54d52b05a00423b48dc9cbc9b3bbcd4dedf1fe332855
7
+ data.tar.gz: 9c6a9b878568544510c8af19fc89134526da6b948e2d7daac09d83a5d73d5ee4532f8ac626ce4e39b6eea596926264b2dded2026f730fec422c424d20f9498dc
@@ -0,0 +1 @@
1
+ /pkg/
@@ -0,0 +1,3 @@
1
+ ruby:
2
+ enabled: true
3
+ config_file: config/rubocop.yml
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ bundler_args: --without development
3
+ rvm:
4
+ - 2.1.4
5
+ - ruby-head
6
+ script:
7
+ - bundle exec rspec
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :test do
6
+ gem "codeclimate-test-reporter", require: nil
7
+ gem "rspec"
8
+ gem "vcr"
9
+ gem "webmock"
10
+ end
11
+
12
+ group :development do
13
+ gem "awesome_print"
14
+ gem "guard"
15
+ gem "guard-rspec"
16
+ end
@@ -0,0 +1,93 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ lyriki (0.0.1)
5
+ json
6
+ nokogiri
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ addressable (2.3.6)
12
+ awesome_print (1.2.0)
13
+ celluloid (0.16.0)
14
+ timers (~> 4.0.0)
15
+ codeclimate-test-reporter (0.4.1)
16
+ simplecov (>= 0.7.1, < 1.0.0)
17
+ coderay (1.1.0)
18
+ crack (0.4.2)
19
+ safe_yaml (~> 1.0.0)
20
+ diff-lcs (1.2.5)
21
+ docile (1.1.5)
22
+ ffi (1.9.6)
23
+ formatador (0.2.5)
24
+ guard (2.9.1)
25
+ formatador (>= 0.2.4)
26
+ listen (~> 2.7)
27
+ lumberjack (~> 1.0)
28
+ pry (>= 0.9.12)
29
+ thor (>= 0.18.1)
30
+ guard-rspec (4.3.1)
31
+ guard (~> 2.1)
32
+ rspec (>= 2.14, < 4.0)
33
+ hitimes (1.2.2)
34
+ json (1.8.1)
35
+ listen (2.8.3)
36
+ celluloid (>= 0.15.2)
37
+ rb-fsevent (>= 0.9.3)
38
+ rb-inotify (>= 0.9)
39
+ lumberjack (1.0.9)
40
+ method_source (0.8.2)
41
+ mini_portile (0.6.1)
42
+ multi_json (1.10.1)
43
+ nokogiri (1.6.4.1)
44
+ mini_portile (~> 0.6.0)
45
+ pry (0.10.1)
46
+ coderay (~> 1.1.0)
47
+ method_source (~> 0.8.1)
48
+ slop (~> 3.4)
49
+ rake (10.4.0)
50
+ rb-fsevent (0.9.4)
51
+ rb-inotify (0.9.5)
52
+ ffi (>= 0.5.0)
53
+ rspec (3.1.0)
54
+ rspec-core (~> 3.1.0)
55
+ rspec-expectations (~> 3.1.0)
56
+ rspec-mocks (~> 3.1.0)
57
+ rspec-core (3.1.7)
58
+ rspec-support (~> 3.1.0)
59
+ rspec-expectations (3.1.2)
60
+ diff-lcs (>= 1.2.0, < 2.0)
61
+ rspec-support (~> 3.1.0)
62
+ rspec-mocks (3.1.3)
63
+ rspec-support (~> 3.1.0)
64
+ rspec-support (3.1.2)
65
+ safe_yaml (1.0.4)
66
+ simplecov (0.9.1)
67
+ docile (~> 1.1.0)
68
+ multi_json (~> 1.0)
69
+ simplecov-html (~> 0.8.0)
70
+ simplecov-html (0.8.0)
71
+ slop (3.6.0)
72
+ thor (0.19.1)
73
+ timers (4.0.1)
74
+ hitimes
75
+ vcr (2.9.3)
76
+ webmock (1.20.4)
77
+ addressable (>= 2.3.6)
78
+ crack (>= 0.3.2)
79
+
80
+ PLATFORMS
81
+ ruby
82
+
83
+ DEPENDENCIES
84
+ awesome_print
85
+ bundler (~> 1.6)
86
+ codeclimate-test-reporter
87
+ guard
88
+ guard-rspec
89
+ lyriki!
90
+ rake
91
+ rspec
92
+ vcr
93
+ webmock
@@ -0,0 +1,7 @@
1
+ guard :rspec, cmd: 'bundle exec rspec' do
2
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
3
+ watch(%r{^spec/.+_spec\.rb$})
4
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
5
+ watch("spec/spec_helper.rb") { "spec" }
6
+ end
7
+
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Alexander
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,5 @@
1
+ # lyriki: wrapper for [LyricsWiki](http://lyrics.wikia.com)'s [API](http://lyrics.wikia.com/LyricWiki:API)
2
+
3
+ [![Build Status](https://travis-ci.org/alxndr/lyriki.png?branch=master)](https://travis-ci.org/alxndr/lyriki)
4
+ [![Code Climate](https://codeclimate.com/github/alxndr/lyriki.png)](https://codeclimate.com/github/alxndr/lyriki)
5
+ [![Test Coverage](https://codeclimate.com/github/alxndr/lyriki/badges/coverage.svg)](https://codeclimate.com/github/alxndr/lyriki)
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,10 @@
1
+ ShowCopNames: true
2
+ AllCops:
3
+ Exclude:
4
+ - 'spec/fixtures'
5
+
6
+ LineLength:
7
+ Max: 110
8
+
9
+ StringLiterals:
10
+ EnforcedStyle: double_quotes
@@ -0,0 +1,2 @@
1
+ require "lyriki/version"
2
+ require "lyriki/legacy"
@@ -0,0 +1,3 @@
1
+ require "lyriki/legacy/artist_data"
2
+ require "lyriki/legacy/song_data"
3
+ require "lyriki/legacy/song_lyrics"
@@ -0,0 +1,26 @@
1
+ require "json"
2
+ require "web_helpers"
3
+
4
+ module Lyriki
5
+ module Legacy
6
+ class ArtistData
7
+
8
+ include WebHelpers
9
+
10
+ def initialize(name)
11
+ @data = get url_for_artist(name)
12
+ end
13
+
14
+ def response_data
15
+ JSON.parse @data
16
+ end
17
+
18
+ private
19
+
20
+ def url_for_artist(name)
21
+ "http://lyrics.wikia.com/api.php?func=getArtist&artist=#{url_encode(name)}&fmt=realjson"
22
+ end
23
+
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,27 @@
1
+ require "json"
2
+ require "web_helpers"
3
+
4
+ module Lyriki
5
+ module Legacy
6
+ class SongData
7
+
8
+ include WebHelpers
9
+
10
+ def initialize(**args)
11
+ raise ArgumentError unless args[:artist] && args[:song]
12
+ @data = get url_for_song(args[:artist], args[:song])
13
+ end
14
+
15
+ def response_data
16
+ JSON.parse @data
17
+ end
18
+
19
+ private
20
+
21
+ def url_for_song(artist, song)
22
+ "http://lyrics.wikia.com/api.php?artist=#{url_encode(artist)}&song=#{url_encode(song)}&fmt=realjson"
23
+ end
24
+
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,23 @@
1
+ require "json"
2
+ require "nokogiri"
3
+ require "web_helpers"
4
+
5
+ module Lyriki
6
+ module Legacy
7
+ class SongLyrics
8
+
9
+ include WebHelpers
10
+
11
+ def initialize(**args)
12
+ raise ArgumentError unless args[:artist] && args[:song]
13
+ song_data = SongData.new(args).response_data
14
+ @data = get(song_data["url"])
15
+ end
16
+
17
+ def response_data
18
+ Nokogiri::HTML(@data).css("div.lyricbox/text()").map(&:text)
19
+ end
20
+
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,3 @@
1
+ module Lyriki
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,11 @@
1
+ module WebHelpers
2
+
3
+ def url_encode(str)
4
+ CGI.escape str
5
+ end
6
+
7
+ def get(url)
8
+ Net::HTTP.get URI(url)
9
+ end
10
+
11
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "lyriki/version"
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "lyriki"
8
+ s.version = Lyriki::VERSION
9
+ s.authors = ["Alexander"]
10
+ s.email = ["alxndr+gem@gmail.com"]
11
+ s.summary = "A wrapper for the LyricsWiki API"
12
+ s.description = "A basic Ruby wrapper for the API provided by LyricsWiki (http://lyrics.wikia.com/)."
13
+ s.homepage = "http://github.com/alxndr/lyriki"
14
+ s.license = "MIT"
15
+
16
+ s.files = `git ls-files -z`.split("\x0")
17
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ s.test_files = s.files.grep(%r{^spec/})
19
+ s.require_paths = ["lib"]
20
+
21
+ s.add_runtime_dependency "json"
22
+ s.add_runtime_dependency "nokogiri"
23
+
24
+ s.add_development_dependency "bundler", "~> 1.6"
25
+ s.add_development_dependency "rake"
26
+ end
@@ -0,0 +1,316 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://lyrics.wikia.com/api.php?artist=frank%20zappa&fmt=realjson&func=getArtist
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - lyrics.wikia.com
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Server:
24
+ - Apache
25
+ X-Content-Type-Options:
26
+ - nosniff
27
+ Cache-Control:
28
+ - max-age=86400, s-maxage=86400, public
29
+ Content-Type:
30
+ - text/javascript; charset=UTF-8
31
+ X-Cacheable:
32
+ - 'YES'
33
+ Content-Length:
34
+ - '9076'
35
+ Accept-Ranges:
36
+ - bytes
37
+ Date:
38
+ - Sat, 29 Nov 2014 21:43:30 GMT
39
+ Age:
40
+ - '1665'
41
+ Connection:
42
+ - keep-alive
43
+ X-Served-By:
44
+ - cache-wk-sjc3161-WIKIA, cache-lax1424-LAX
45
+ X-Cache:
46
+ - MISS, HIT
47
+ X-Cache-Hits:
48
+ - 0, 1
49
+ X-Timer:
50
+ - S1417297410.442738,VS0,VE0
51
+ Vary:
52
+ - Accept-Encoding
53
+ Set-Cookie:
54
+ - Geo={%22city%22:%22FIXME%22%2C%22country%22:%22US%22%2C%22continent%22:%22NA%22};
55
+ path=/
56
+ - wikia_beacon_id=9AcC58Yvy-; domain=.wikia.com; path=/; expires=Thu, 28 May
57
+ 2015 21:43:30 GMT;
58
+ body:
59
+ encoding: UTF-8
60
+ string: '{"artist":"Frank Zappa","albums":[{"album":"Lumpy Gravy","year":"1968","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Lumpy%20Gravy","songs":["Lumpy
61
+ Gravy I","Lumpy Gravy II"]},{"album":"Hot Rats","year":"1969","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Hot%20Rats","songs":["Peaches
62
+ En Regalia","Willie The Pimp","Son Of Mr. Green Genes","Little Umbrellas","The
63
+ Gumbo Variations","It Must Be A Camel"]},{"album":"Chunga''s Revenge","year":"1970","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Chunga''s%20Revenge","songs":["Transylvania
64
+ Boogie","Road Ladies","Twenty Small Cigars","The Nancy & Mary Music","Tell
65
+ Me You Love Me","Would You Go All The Way?","Chunga''s Revenge","The Clap","Rudy
66
+ Wants To Buy Yez A Drink","Sharleena"]},{"album":"Fillmore East - June 1971","year":"1971","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Fillmore%20East%20-%20June%201971","songs":["Little
67
+ House I Used To Live In","The Mud Shark","What Kind Of Girl Do You Think We
68
+ Are?","Bwana Dik","Latex Solar Beef","Willie The Pimp (Part One)","Willie
69
+ The Pimp (Part Two)","Do You Like My New Car?","Happy Together","Lonesome
70
+ Electric Turkey","Peaches En Regalia","Tears Began To Fall"]},{"album":"200
71
+ Motels","year":"1971","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20200%20Motels","songs":["Semi-Fraudulent\/Direct-From-Hollywood
72
+ Overture","Mystery Roach","Dance Of The Rock & Roll Interviewers","This Town
73
+ Is A Sealed Tuna Sandwich (Prologue)","Tuna Fish Promenade","Dance Of The
74
+ Just Plain Folks","This Town Is A Sealed Tuna Sandwich (Reprise)","The Sealed
75
+ Tuna Bolero","Lonesome Cowboy Burt","Touring Can Make You Crazy","Would You
76
+ Like A Snack?","Redneck Eats","Centerville","She Painted Up Her Face","Janet''s
77
+ Big Dance Number","Half A Dozen Provocative Squats","Mysterioso","Shove It
78
+ Right In","Lucy''s Seduction Of A Bored Violinist & Postlude","I''m Stealing
79
+ The Towels","Dental Hygiene Dilemma","Does This Kind Of Life Look Interesting
80
+ To You?","Daddy, Daddy, Daddy","Penis Dimension","What Will This Evening Bring
81
+ Me This Morning","A Nun Suit Painted On Some Old Boxes","Magic Fingers","Motorhead''s
82
+ Midnight Ranch","Dew On The Newts We Got","The Lad Searches The Night For
83
+ His Newts","The Girl Wants To Fix Him Some Broth","The Girl''s Dream","Little
84
+ Green Scratchy Sweaters & Courduroy Ponce","Strictly Genteel (The Finale)"]},{"album":"Just
85
+ Another Band From L.A.","year":"1972","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Just%20Another%20Band%20From%20L.A.","songs":["Billy
86
+ The Mountain","The Mothers Of Invention:Call Any Vegetable","Eddie, Are You
87
+ Kidding?","Magdalena","Dog Breath"]},{"album":"Waka\/Jawaka","year":"1972","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Waka\/Jawaka","songs":["Big
88
+ Swifty","Your Mouth","It Just Might Be A One-Shot Deal","Waka\/Jawaka"]},{"album":"The
89
+ Grand Wazoo","year":"1972","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20The%20Grand%20Wazoo","songs":["The
90
+ Grand Wazoo","For Calvin (And His Next Two Hitch-Hikers)","Cletus Awreetus-Awrightus","Eat
91
+ That Question","Blessed Relief"]},{"album":"Over-Nite Sensation","year":"1973","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Over-Nite%20Sensation","songs":["Camarillo
92
+ Brillo","I''m The Slime","Dirty Love","Fifty-Fifty","Zomby Woof","Dinah-Moe
93
+ Humm","Montana"]},{"album":"Apostrophe ('')","year":"1974","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Apostrophe%20('')","songs":["Don''t
94
+ Eat The Yellow Snow","Nanook Rubs It","St. Alfonzo''s Pancake Breakfast","Father
95
+ O''Blivion","Cosmik Debris","Excentrifugal Forz","Apostrophe''","Uncle Remus","Stink-Foot"]},{"album":"Roxy
96
+ & Elsewhere","year":"1974","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Roxy%20&%20Elsewhere","songs":["Penguin
97
+ In Bondage","Pygmy Twylyte","Dummy Up","Village Of The Sun","Echidna''s Arf
98
+ (Of You)","Don''t You Ever Wash That Thing?","Cheepnis","Son Of Orange County","More
99
+ Trouble Every Day","Be-Bop Tango (Of The Old Jazzmen''s Church)"]},{"album":"One
100
+ Size Fits All","year":"1975","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20One%20Size%20Fits%20All","songs":["Inca
101
+ Roads","Can''t Afford No Shoes","Sofa No. 1","Po-Jama People","Florentine
102
+ Pogen","Evelyn, A Modified Dog","San Ber''dino","Andy","Sofa No. 2"]},{"album":"Bongo
103
+ Fury","year":"1975","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Zappa\/Beefheart\/Mothers%20Bongo%20Fury","songs":["Zappa\/Beefheart\/Mothers:Debra
104
+ Kadabra","Zappa\/Beefheart\/Mothers:Carolina Hard-core Ecstasy","Zappa\/Beefheart\/Mothers:Sam
105
+ With The Showing Scalp Flat Top","Zappa\/Beefheart\/Mothers:Poofter''s Froth
106
+ Wyoming Plans Ahead","Zappa\/Beefheart\/Mothers:200 Years Old","Zappa\/Beefheart\/Mothers:Cucamonga","Zappa\/Beefheart\/Mothers:Advance
107
+ Romance","Zappa\/Beefheart\/Mothers:Man With The Woman Head","Zappa\/Beefheart\/Mothers:Muffin
108
+ Man"]},{"album":"Zoot Allures","year":"1976","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Zoot%20Allures","songs":["Wind
109
+ Up Workin'' In A Gas Station","Black Napkins","The Torture Never Stops","Ms.
110
+ Pinky","Find Her Finer","Friendly Little Finger","Wonderful Wino","Zoot Allures","Disco
111
+ Boy"]},{"album":"Zappa In New York","year":"1978","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Zappa%20In%20New%20York","songs":["Titties
112
+ & Beer","The Mothers Of Invention:Cruising For Burgers","I Promise Not To
113
+ Come In Your Mouth","Punky''s Whips","Honey Don''t You Want A Man Like Me?","The
114
+ Illinois Enema Bandit","I''m The Slime","Pound For A Brown","Manx Needs Women","The
115
+ Black Page Drum Solo\/Black Page Number 1","The Mothers Of Invention:Big Leg
116
+ Emma","Sofa No. 1","Black Page Number 2","The Torture Never Stops","The Purple
117
+ Lagoon\/Approximate"]},{"album":"Studio Tan","year":"1978","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Studio%20Tan","songs":["The
118
+ Adventures Of Greggery Peccary","Revised Music For Guitar And Low-Budget Orchestra","Lemme
119
+ Take You To The Beach","RDNZL"]},{"album":"Sleep Dirt","year":"1979","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Sleep%20Dirt","songs":["Filthy
120
+ Habits","Flambay","Spider Of Destiny","Regyptian Strut","Time Is Money","Sleep
121
+ Dirt","The Ocean Is The Ultimate Solution"]},{"album":"Sheik Yerbouti","year":"1979","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Sheik%20Yerbouti","songs":["I
122
+ Have Been In You","Flakes","Broken Hearts Are For Assholes","I''m So Cute","Jones
123
+ Crusher","What Ever Happened To All The Fun In The World","Rat Tomago","We
124
+ Gotta Get Into Something Real","Bobby Brown","Rubber Shirt","The Sheik Yerbouti
125
+ Tango","Baby Snakes","Tryin'' To Grow A Chin","City Of Tiny Lites","Dancin''
126
+ Fool","Jewish Princess","Wild Love","Yo Mama"]},{"album":"Orchestral Favorites","year":"1979","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Orchestral%20Favorites","songs":["Strictly
127
+ Genteel (The Finale)","Pedro''s Dowry","Naval Aviation In Art?","The Mothers
128
+ Of Invention:The Duke Of Prunes","Bogus Pomp"]},{"album":"Joe''s Garage","year":"1979","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Joe''s%20Garage","songs":["The
129
+ Central Scrutinizer","Joe''s Garage","Catholic Girls","Crew Slut","Fembot
130
+ In A Wet T-Shirt","On The Bus (Aka Toad-O Line)","Why Does It Hurt When I
131
+ Pee?","Lucille Has Messed My Mind Up","Scrutinizer Postlude","A Token Of My
132
+ Extreme","Stick It Out","Sy Borg","Dong Work For Yuda","Keep It Greasey","Outside
133
+ Now","He Used To Cut The Grass","Packard Goose","Watermelon In Easter Hay","A
134
+ Little Green Rosetta"]},{"album":"Tinseltown Rebellion","year":"1981","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Tinseltown%20Rebellion","songs":["Fine
135
+ Girl","Easy Meat","For The Young Sophisticate","Love Of My Life","I Ain''t
136
+ Got No Heart","Panty Rap","Tell Me You Love Me","Now You See It - Now You
137
+ Don''t","Dance Contest","The Blue Light","Tinsel-Town Rebellion","Pick Me,
138
+ I''m Clean","Bamboozled By Love","The Mothers Of Invention:Brown Shoes Don''t
139
+ Make It","Peaches III"]},{"album":"Shut Up ''N Play Yer Guitar","year":"1981","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Shut%20Up%20''N%20Play%20Yer%20Guitar","songs":["Five-Five-Five","Hog
140
+ Heaven","Shut Up ''N Play Yer Guitar","While You Were Out","Treacherous Cretins","Heavy
141
+ Duty Judy","Soup ''n Old Clothes","Variations On The Carlos Santana Secret
142
+ Chord Progression","Gee, I Like Your Pants","Canarsie","Ship Ahoy","The Deathless
143
+ Horsie","Shut Up ''N Play Yer Guitar Some More","Pink Napkins","Beat It With
144
+ Your Fist","Return Of The Son Of Shut Up ''N Play Yer Guitar","Pinocchio''s
145
+ Furniture","Why Johnny Can''t Read","Stucco Homes","Canard Du Jour"]},{"album":"You
146
+ Are What You Is","year":"1981","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20You%20Are%20What%20You%20Is","songs":["Teen-Age
147
+ Wind","Harder Than Your Husband","Doreen","Goblin Girl","Theme From The 3rd
148
+ Movement Of Sinister Footwear","Society Pages","I''m A Beautiful Guy","Beauty
149
+ Knows No Pain","Charlie''s Enormous Mouth","Any Downers?","Conehead","You
150
+ Are What You Is","Mudd Club","The Meek Shall Inherit Nothing","Dumb All Over","Heavenly
151
+ Bank Account","Suicide Chump","Jumbo Go Away","If Only She Woulda","Drafted
152
+ Again"]},{"album":"Ship Arriving Too Late To Save A Drowning Witch","year":"1982","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Ship%20Arriving%20Too%20Late%20To%20Save%20A%20Drowning%20Witch","songs":["No
153
+ Not Now","Valley Girl","I Come From Nowhere","Drowning Witch","Envelopes","Teen-Age
154
+ Prostitute"]},{"album":"The Man From Utopia","year":"1983","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20The%20Man%20From%20Utopia","songs":["Cocaine
155
+ Decisions","Sex","Tink Walks Amok","The Radio Is Broken","We Are Not Alone","The
156
+ Dangerous Kitchen","The Man From Utopia Meets Mary Lou","Stick Together","The
157
+ Jazz Discharge Party Hats","Luigi & The Wise Guys","Moggio"]},{"album":"Them
158
+ Or Us","year":"1984","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Them%20Or%20Us","songs":["The
159
+ Closer You Are","In France","Ya Hozna","Sharleena","Sinister Footwear II","Truck
160
+ Driver Divorce","Stevie''s Spanking","Baby, Take Your Teeth Out","Marqueson''s
161
+ Chicken","Planet Of My Dreams","Be In My Video","Them Or Us","Frogs With Dirty
162
+ Little Lips","Whippin'' Post"]},{"album":"Thing-Fish","year":"1984","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Thing-Fish","songs":["Prologue","The
163
+ Mammy Nuns","Harry & Rhonda","Galoot Up-Date","The ''Torchum'' Never Stops","That
164
+ Evil Prince","You Are What You Is","Mudd Club","The Meek Shall Inherit Nothing","Clowns
165
+ On Velvet","Harry-As-A-Boy","He''s So Gay","The Massive Improve''lence","Artificial
166
+ Rhonda","The Crab-Grass Baby","The White Boy Troubles","No Not Now","Briefcase
167
+ Boogie","Brown Moses","Wistful Wit A Fist-Full","Drop Dead","Won Ton On"]},{"album":"Frank
168
+ Zappa Meets The Mothers Of Prevention","year":"1985","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Frank%20Zappa%20Meets%20The%20Mothers%20Of%20Prevention","songs":["I
169
+ Don''t Even Care","One Man, One Vote","Little Beige Sambo","Aerobics In Bondage","We''re
170
+ Turning Again","Alien Orifice","Yo Cats","What''s New In Baltimore?","Porn
171
+ Wars","H.R. 2911"]},{"album":"Does Humor Belong In Music?","year":"1986","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Does%20Humor%20Belong%20In%20Music?","songs":["Zoot
172
+ Allures","Tinsel-Town Rebellion","More Trouble Every Day","Penguin In Bondage","Hot-Plate
173
+ Heaven At The Green Hotel","What''s New In Baltimore?","Cock-Suckers'' Ball","WPLJ","Let''s
174
+ Move To Cleveland","Whippin'' Post"]},{"album":"Jazz From Hell","year":"1986","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Jazz%20From%20Hell","songs":["Night
175
+ School","The Beltway Bandits","While You Were Art II","Jazz From Hell","G-Spot
176
+ Tornado","Damp Ankles","St. Etienne","Massaggio Galore"]},{"album":"Guitar","year":"1988","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Guitar","songs":["Sexual
177
+ Harassment In The Workplace","Which One Is It?","Republicans","Do Not Pass
178
+ Go","Chalk Pie","In-A-Gadda-Stravinsky","That''s Not Really Reggae","When
179
+ No One Was No One","Once Again, Without The Net","Outside Now (Original Solo)","Jim
180
+ & Tammy''s Upper Room","Were We Ever Really Safe In San Antonio?","That Ol''
181
+ G Minor Thing Again","Hotel Atlanta Incidentals","That''s Not Really A Shuffle","Move
182
+ It Or Park It","Sunrise Redeemer","Variations On Sinister Number 3","Orrin
183
+ Hatch On Skis","But Who Was Fulcanelli?","For Duane","Goa","Winos Do Not March","Swans?
184
+ What Swans?","Too Ugly For Show Business","Systems Of Edges","Do Not Try This
185
+ At Home","Things That Look Like Meat","Watermelon In Easter Hay","Canadian
186
+ Customs","Is That All There Is?","It Ain''t Necessarily The Saint James Infirmary"]},{"album":"Broadway
187
+ The Hard Way","year":"1988","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Broadway%20The%20Hard%20Way","songs":["Elvis
188
+ Has Just Left The Building","Planet Of The Baritone Women","Any Kind Of Pain","Dickie''s
189
+ Such An Asshole (The San Clemente Magnetic Deviation)","When The Lie''s So
190
+ Big","Rhymin'' Man","Promiscuous","The Untouchables","Why Don''t You Like
191
+ Me?","Bacon Fat","Stolen Moments","Murder By Numbers","Jezebel Boy","Outside
192
+ Now","Hot-Plate Heaven At The Green Hotel","What Kind Of Girl?","Jesus Thinks
193
+ You''re A Jerk"]},{"album":"The Best Band You Never Heard In Your Life","year":"1991","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20The%20Best%20Band%20You%20Never%20Heard%20In%20Your%20Life","songs":["Heavy
194
+ Duty Judy","Ring Of Fire","Cosmik Debris","Find Her Finer","The Mothers Of
195
+ Invention:Who Needs The Peace Corps?","I Left My Heart In San Francisco","Zomby
196
+ Woof","Bolero","Zoot Allures","Mr. Green Genes","Florentine Pogen","Andy","Inca
197
+ Roads","Sofa No. 1","Purple Haze","Sunshine Of Your Love","Let''s Move To
198
+ Cleveland","When Irish Eyes Are Smiling","\"Godfather Part II\" Theme","A
199
+ Few Moments With Brother A. West","The Torture Never Stops Part One","Theme
200
+ From \"Bonanza\"","Lonesome Cowboy Burt (Swaggart Version)","The Torture Never
201
+ Stops Part Two","More Trouble Every Day (Swaggart Version)","Penguin In Bondage
202
+ (Swaggart Version)","The Eric Dolphy Memorial Barbecue","Stairway To Heaven"]},{"album":"Playground
203
+ Psychotics","year":"1992","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Playground%20Psychotics","songs":["Here
204
+ Comes The Gear, Lads","The Living Garbage Truck","A Typical Sound Check","This
205
+ Is Neat","The Motel Lobby","Getting Stewed","The Motel Room","\"Don''t Take
206
+ Me Down\"","The Dressing Room","Learning \"Penis Dimension\"","\"You There,
207
+ With The Hard On!\"","Zanti Serenade","Divan","Sleeping In A Jar","\"Don''t
208
+ Eat There\"","Brixton Still Life","Super Grease","Wonderful Wino","Sharleena","The
209
+ Mothers Of Invention:Cruising For Burgers","Diptheria Blues","Well","Say Please","Aaawk","Scum
210
+ Bag","A Small Eternity With Yoko Ono","Beer Shampoo","Champagne Lecture","Childish
211
+ Perversions","Playground Psychotics","The Mudshark Interview","\"There''s
212
+ No Lust In Jazz\"","Botulism On The Hoof","You Got Your Armies","The Spew
213
+ King","I''m Doomed","The Mothers Of Invention:Status Back Baby","The London
214
+ Cab Tape","Concentration Moon, Part One","The Sanzini Brothers","\"It''s A
215
+ Good Thing We Get Paid To Do This\"","Concentration Moon, Part Two","The Mothers
216
+ Of Invention:Mom & Dad","Intro To Music For Low Budget Orchestra","Billy The
217
+ Mountain","He''s Watching Us","If You''re Not A Professional Actor","He''s
218
+ Right","Going For The Money","Jeff Quits","A Bunch Of Adventures","Martin
219
+ Lickert''s Story","A Great Guy","Bad Acting","The Worst Reviews","A Version
220
+ Of Himself","I Could Be A Star Now"]},{"album":"The Yellow Shark","year":"1993","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20The%20Yellow%20Shark","songs":["Intro","Dog
221
+ Breath Variations","Uncle Meat","Outrage At Valdez","Times Beach II","III
222
+ Revised","The Girl In The Magnesium Dress","Be-Bop Tango (Of The Old Jazzmen''s
223
+ Church)","Ruth Is Sleeping","None Of The Above (Revised & Previsited)","Pentagon
224
+ Afternoon","Questi Cazzi Di Piccione","Times Beach III","Food Gathering In
225
+ Post-Industrial America, 1992","Welcome To The United States","Pound For A
226
+ Brown","Exercise #4","Get Whitey","G-Spot Tornado"]},{"album":"Civilization
227
+ Phaze III","year":"1994","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Civilization%20Phaze%20III","songs":["\"This
228
+ Is Phaze III\"","Put A Motor In Yourself","\"Oh-Umm\"","They Made Me Eat It","Reagan
229
+ At Bitburg","\"A Very Nice Body\"","Navanax","\"How The Pigs'' Music Works\"","Xmas
230
+ Values","\"Dark Water!\"","Amnerika","\"Have You Heard Their Band?\"","Religious
231
+ Superstition","\"Saliva Can Only Take So Much\"","Buffalo Voice","\"Someplace
232
+ Else Right Now\"","Get A Life","\"A Kayak (On Snow)\"","N-Lite","\"I Wish
233
+ Motorhead Would Come Back\"","Secular Humanism","\"Attack! Attack! Attack!\"","I
234
+ Was In A Drum","\"A Different Octave\"","\"This Ain''t CNN\"","\"The Pigs''
235
+ Music\"","A Pig With Wings","\"This Is All Wrong\"","Hot & Putrid","\"Flowing
236
+ Inside-Out\"","\"I Had A Dream About That\"","Gross Man","\"A Tunnel Into
237
+ Muck\"","Why Not?","\"Put A Little Motor In ''Em\"","\"You''re Just Insultin''
238
+ Me, Aren''t You!\"","\"Cold Light Generation\"","Dio Fa","\"That Would Be
239
+ The End Of That\"","Beat The Reaper","Waffenspiel"]},{"album":"EIHN - Everything
240
+ Is Healing Nicely","year":"1999","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20EIHN%20-%20Everything%20Is%20Healing%20Nicely","songs":["Library
241
+ Card","This Is A Test","Jolly Good Fellow","Roland''s Big Event\/Strat Vindaloo","Master
242
+ Ringo","T''Mershi Duween","Nap Time","9\/8 Objects","Naked City","Whitey (Prototype)","Amnerika
243
+ Goes Home","None Of The Above (Revised & Previsited)","Wonderful Tattoo!"]},{"album":"FZOZ","year":"2002","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20FZOZ","songs":["Hordern
244
+ Intro (Incan Art Vamp)","Stink-Foot","The Poodle Lecture","Dirty Love","Filthy
245
+ Habits","How Could I Be Such A Fool?","I Ain''t Got No Heart","I''m Not Satisfied","Black
246
+ Napkins","Zappa\/Beefheart\/Mothers:Advance Romance","The Illinois Enema Bandit","Wind
247
+ Up Workin'' In A Gas Station","The Torture Never Stops","Canard Toujours","Kaiser
248
+ Rolls","Find Her Finer","Carolina Hard-Core Ecstasy","The Mothers Of Invention:Lonely
249
+ Little Girl","The Mothers Of Invention:Take Your Clothes Off When You Dance","The
250
+ Mothers Of Invention:What''s The Ugliest Part Of Your Body?","Chunga''s Revenge","Zoot
251
+ Allures","Keep It Greasey","Dinah-Moe Humm","Camarillo Brillo","Zappa\/Beefheart\/Mothers:Muffin
252
+ Man","Kaiser Rolls (Du Jour)"]},{"album":"Joe''s Corsage","year":"2004","amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank%20Zappa%20Joe''s%20Corsage","songs":["\"Pretty
253
+ Pat\"","The Mothers Of Invention:Motherly Love","Plastic People","The Mothers
254
+ Of Invention:Any Way The Wind Blows","I Ain''t Got No Heart","The Phone Call\/My
255
+ Babe","Wedding Dress Song\/Handsome Cabin Boy","Hitch Hike","I''m So Happy
256
+ I Could Cry","The Mothers Of Invention:Go Cry On Somebody Else''s Shoulder","How
257
+ Could I Be Such A Fool?","\"We Made Our Reputation Doing It That Way...\""]},{"album":"Bootlegs
258
+ And Other Songs","year":null,"amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank_Zappa%20Bootlegs%20And%20Other%20Songs","songs":["Ancient
259
+ Armaments","Black Napkins (The Deathless Horsie)","Drooling Midrange Accountants
260
+ On Easter Hay","Love Story","Sleeping In A Jar","Venusian Time Bandits","When
261
+ It''s Perfect...","When It Feels Natural...","Volare"]},{"album":"Other Songs","year":null,"amazonLink":"http:\/\/www.amazon.com\/exec\/obidos\/redirect?link_code=ur2&tag=wikia-20&camp=1789&creative=9325&path=external-search%3Fsearch-type=ss%26index=music%26keyword=Frank_Zappa%20Other%20Songs","songs":["\"We
262
+ Made Our Reputation Doing It That Way ...\"","A Game Of Cards","Alley Cat","Any
263
+ Way The Wind Blows","Approximate","Are You Upset?","Babbette","Baked-Bean
264
+ Boogie","Bamboozled By Love (Incl. Owner Of A Lonely Heart)","Basement Music
265
+ Number 1","Be In My Video (YCDTOSA)","Beauty Knows No Pain (YCDTOSA)","Big
266
+ Swifty (YCDTOSA1)","Big Swifty (YCDTOSA2)","Bobby Brown Goes Down (Live Version)","Bobby
267
+ Brown Goes Down (YCDTOSA)","Bobby Brown Goes Down","Building A Girl","Carol,
268
+ You Fool","Catholic Girls (Live Version)","Chana In De Bushwop","Charles Ives","Charlie''s
269
+ Enormous Mouth (YCDTOSA)","Charva","Cheap Thrills","Cheepnis (YCDTOSA)","Chocolate
270
+ Halvah","Church Chat","Cocaine Decisions (YCDTOSA)","Cops & Buns","Cosmik
271
+ Debris (YCDTOSA)","Cradle Rock","Dead Girls Of London","Dickie''s Such An
272
+ Asshole (YCDTOSA)","Diseases Of The Band","Don''t Eat The Yellow Snow Medley","Don''t
273
+ You Ever Wash That Thing? (YCDTOSA)","Drowning Witch (YCDTOSA)","Dumb All
274
+ Over (YCDTOSA)","Dupree''s Paradise","Echidna''s Arf (Of You) (YCDTOSA)","Exercise
275
+ Number 4","FZ\/JCB Drum Duet","Fine Girl (YCDTOSA)","Flowing Inside-Out","Fountain
276
+ Of Love","Geneva Farewell","German Lunch","Hands With A Hammer","Handsome
277
+ Cabin Boy","Harry, You''re A Beast","Heavenly Bank Account (YCDTOSA)","Here
278
+ Lies Love","Honey, Don''t You Want A Man Like Me? (YCDTOSA)","Honey, Don''t
279
+ You Want A Man Like Me?","Hot Plate Heaven At The Green Hotel","How''s Your
280
+ Bird?","Hungry Freaks, Daddy","I Don''t Wanna Get Drafted","I''m A Band Leader","I''m
281
+ A Beautiful Guy (YCDTOSA)","I''m The Slime (YCDTOSA)","In France (YCDTOSA)","Inca
282
+ Roads (YCDTOSA)","Jcb & Kansas On The Bus 1","Jcb & Kansas On The Bus 2","Joe''s
283
+ Garage (Live Version)","Joe''s Garage (Single Version)","Joe''s Garage (YCDTOSA)","Johnny
284
+ Darling","Keep It Greasey (YCDTOSA)","Kenny''s Booger Story","King Kong (YCDTOSA)","King
285
+ Kong","Kung Fu","Let''s Make The Water Turn Black Medley","Lil'' Clanton Shuffle","Little
286
+ Girl Of Mine","Little Rubber Girl","Lonesome Cowboy Nando","Lost In A Whirlpool","Louie
287
+ Louie","Lucille Has Messed My Mind Up (YCDTOSA)","Madison Panty-Sniffing Festival","Mary
288
+ Lou","Meow","Montana (Whipping Floss)","Mount St. Mary''s Concert Excerpt","Mozart
289
+ Ballet - Piano Sonata In B Flat","My Guitar Wants To Kill Your Mama (Live
290
+ Version)","My Guitar Wants To Kill Your Mama","My Head?","Nig Biz","No Waiting
291
+ For The Peanuts To Dissolve","No, No Cherry","Oh No (YCDTOSA)","Oh No","Once
292
+ Upon A Time","Piano\/Drum Duet","Porn Wars Deluxe","Proto-Minimalism","Pygmy
293
+ Twylyte (YCDTOSA)","RDNZL (YCDTOSA)","Return Of The Hunch-Back Duke","Ride
294
+ My Face To Chicago","Right There","Ronnie Sings?","Ronnie''s Booger Story","Room
295
+ Service","Run Home Cues, Number 2","Run Home Cues, Number 3","Run Home Slow
296
+ Theme","Run Home Slow: Main Title Theme","Ruthie-Ruthie","Satumaa (Finnish
297
+ Tango)","Shall We Take Ourselves Seriously?","Sharleena (YCDTOSA)","Smell
298
+ My Beard","Society Pages (YCDTOSA)","Sofa No. 1 (YCDTOSA)","Sofa No. 2 (YCDTOSA)","Soup
299
+ ''N Old Clothes","Stinkfoot (YCDTOSA)","Suicide Chump (YCDTOSA)","Sweet Leilani","Take
300
+ Me Out To The Ball Game","Tell Me You Love Me (YCDTOSA)","The Big Squeeze","The
301
+ Blackouts","The Booger Man","The Dangerous Kitchen (YCDTOSA)","The Dead Girls
302
+ Of London","The Deathless Horsie (YCDTOSA)","The Dick Kunc Story","The Dog
303
+ Breath Variations","The Downtown Talent Scout","The Evil Prince","The Florida
304
+ Airport Tape","The Groupie Routine","The Idiot Bastard Son","The Little March","The
305
+ M.O.I. Anti-Smut Loyalty Oath","The Madison Panty-Sniffing Festival","The
306
+ Mammy Anthem","The Man From Utopia","The Torture Never Stops (Original Version)","The
307
+ Torture Never Stops (YCDTOSA)","Tiger Roach","Tiny Sick Tears","Titties N
308
+ Beer","Trouble Every Day","Tryin'' To Grow A Chin (YCDTOSA)","Tush Tush Tush
309
+ (A Token Of My Extreme)","Underground Freak-Out Music","Village Of The Sun
310
+ (YCDTOSA)","Wedding Dress Song","Where Is Johnny Velvet?","Where''s Our Equipment?","Why
311
+ Does It Hurt When I Pee? (YCDTOSA)","World''s Greatest Sinners","Wowie Zowie","You
312
+ Call That Music?","You Didn''t Try To Call Me","Zomby Woof (YCDTOSA)","Zoot
313
+ Allures (YCDTOSA)"]}]}'
314
+ http_version:
315
+ recorded_at: Sat, 29 Nov 2014 21:43:30 GMT
316
+ recorded_with: VCR 2.9.3