hypem 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/hypem.gemspec +3 -1
- data/lib/hypem.rb +2 -0
- data/lib/hypem/blog.rb +9 -22
- data/lib/hypem/helper.rb +37 -0
- data/lib/hypem/playlist.rb +12 -16
- data/lib/hypem/request.rb +14 -18
- data/lib/hypem/track.rb +19 -28
- data/lib/hypem/user.rb +26 -35
- data/lib/hypem/version.rb +1 -1
- data/spec/blog_spec.rb +5 -11
- data/spec/fixtures/vcr_cassettes/blog.yml +44 -0
- data/{fixtures → spec/fixtures}/vcr_cassettes/blog_all.yml +98 -143
- data/spec/fixtures/vcr_cassettes/latest_playlist.yml +238 -0
- data/spec/fixtures/vcr_cassettes/single_track.yml +48 -0
- data/spec/fixtures/vcr_cassettes/user_favorite_blogs.yml +68 -0
- data/spec/fixtures/vcr_cassettes/user_friends.yml +46 -0
- data/spec/fixtures/vcr_cassettes/user_profile.yml +46 -0
- data/spec/playlist_spec.rb +2 -8
- data/spec/request_spec.rb +0 -28
- data/spec/spec_helper.rb +3 -3
- data/spec/track_spec.rb +2 -5
- data/spec/user_spec.rb +5 -5
- metadata +53 -33
- data/fixtures/vcr_cassettes/blog.yml +0 -42
- data/fixtures/vcr_cassettes/blog_playlist.yml +0 -156
- data/fixtures/vcr_cassettes/feed_playlist.yml +0 -150
- data/fixtures/vcr_cassettes/fresh_playlist.yml +0 -230
- data/fixtures/vcr_cassettes/friends_history.yml +0 -144
- data/fixtures/vcr_cassettes/friends_playlist.yml +0 -150
- data/fixtures/vcr_cassettes/latest_playlist.yml +0 -216
- data/fixtures/vcr_cassettes/loved_playlist.yml +0 -146
- data/fixtures/vcr_cassettes/obsessed_playlist.yml +0 -151
- data/fixtures/vcr_cassettes/popular_playlist.yml +0 -167
- data/fixtures/vcr_cassettes/single_track.yml +0 -47
- data/fixtures/vcr_cassettes/user_favorite_blogs.yml +0 -61
- data/fixtures/vcr_cassettes/user_friends.yml +0 -44
- data/fixtures/vcr_cassettes/user_profile.yml +0 -44
- data/spec/response_spec.rb +0 -36
data/spec/playlist_spec.rb
CHANGED
@@ -13,20 +13,14 @@ describe Hypem::Playlist do
|
|
13
13
|
|
14
14
|
########################################
|
15
15
|
|
16
|
-
its(:path) { should == "/playlist/latest/all
|
16
|
+
its(:path) { should == "/playlist/latest/all" }
|
17
17
|
its(:tracks) { should_not be_empty }
|
18
18
|
|
19
|
-
describe "#url" do
|
20
|
-
it "returns the correct playlist url " do
|
21
|
-
subject.url.should == 'http://hypem.com/playlist/latest/all/json/1'
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
19
|
describe ".new_from_tracks" do
|
26
20
|
let(:tracks) {[mock('Hypem::Track',id: 'track1',), mock('Hypem::Track',id:'track2')]}
|
27
21
|
subject { Hypem::Playlist.new_from_tracks(tracks) }
|
28
22
|
it { should be_a Hypem::Playlist }
|
29
|
-
its(:path) { should == '/playlist/set/track1,track2
|
23
|
+
its(:path) { should == '/playlist/set/track1,track2' }
|
30
24
|
its(:tracks) { should_not be_empty }
|
31
25
|
end
|
32
26
|
|
data/spec/request_spec.rb
CHANGED
@@ -2,32 +2,4 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
describe Hypem::Request do
|
4
4
|
|
5
|
-
let(:request) do
|
6
|
-
Hypem::Request.new('/playlist/latest/fresh/json/1')
|
7
|
-
end
|
8
|
-
|
9
|
-
let(:response) do
|
10
|
-
VCR.use_cassette('fresh_playlist') do
|
11
|
-
request.tap(&:get).response
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
context "at initialization" do
|
16
|
-
|
17
|
-
it "must have a url string parameter" do
|
18
|
-
expect { Hypem::Request.new }.to raise_error ArgumentError
|
19
|
-
end
|
20
|
-
|
21
|
-
it "assigns the response attribute" do
|
22
|
-
response.should be_a Hypem::Response
|
23
|
-
end
|
24
|
-
|
25
|
-
end
|
26
|
-
|
27
|
-
it "makes get requests" do
|
28
|
-
response.body.should_not be_nil
|
29
|
-
response.body.should_not be_empty
|
30
|
-
end
|
31
|
-
|
32
|
-
|
33
5
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
require 'hypem'
|
2
2
|
require 'vcr'
|
3
|
+
require 'webmock'
|
3
4
|
|
4
5
|
VCR.configure do |c|
|
5
|
-
c.cassette_library_dir = 'fixtures/vcr_cassettes'
|
6
|
-
c.hook_into :
|
6
|
+
c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
|
7
|
+
c.hook_into :webmock
|
7
8
|
end
|
8
9
|
|
9
10
|
RSpec.configure do |config|
|
10
11
|
config.treat_symbols_as_metadata_keys_with_true_values = true
|
11
12
|
config.run_all_when_everything_filtered = true
|
12
|
-
config.filter_run :focus
|
13
13
|
end
|
data/spec/track_spec.rb
CHANGED
@@ -3,10 +3,7 @@ require 'spec_helper'
|
|
3
3
|
describe Hypem::Track do
|
4
4
|
let(:track_hash) do
|
5
5
|
VCR.use_cassette('latest_playlist') do
|
6
|
-
Hypem::
|
7
|
-
path = Hypem::Playlist.latest.path
|
8
|
-
# TODO this is fucking gross
|
9
|
-
Hypem::Request.new(path).tap(&:get).response.body.tap(&:shift)["0"]
|
6
|
+
Hypem::Request.get('/playlist/latest/all/json/1')["0"]
|
10
7
|
end
|
11
8
|
end
|
12
9
|
|
@@ -55,7 +52,7 @@ describe Hypem::Track do
|
|
55
52
|
|
56
53
|
describe "#get" do
|
57
54
|
subject do
|
58
|
-
VCR.use_cassette("single_track") { track_from_string.
|
55
|
+
VCR.use_cassette("single_track") { track_from_string.get }
|
59
56
|
end
|
60
57
|
it_should_behave_like "a basic synced instance"
|
61
58
|
end
|
data/spec/user_spec.rb
CHANGED
@@ -53,14 +53,14 @@ describe Hypem::User do
|
|
53
53
|
subject {user_with_profile}
|
54
54
|
|
55
55
|
its(:full_name) {should == "Jack Anderson"}
|
56
|
-
its(:joined_at) {should
|
56
|
+
its(:joined_at) {should be_a DateTime}
|
57
57
|
its(:location) {should == 'San Francisco, CA, US'}
|
58
58
|
its(:twitter_username) {should == 'janderson'}
|
59
59
|
its(:image_url) {should == 'http://faces-s3.hypem.com/123376863051420_75.png'}
|
60
|
-
its(:followed_users_count) {should
|
61
|
-
its(:followed_items_count) {should
|
62
|
-
its(:followed_sites_count) {should
|
63
|
-
its(:followed_queries_count) {should
|
60
|
+
its(:followed_users_count) {should be_an Integer}
|
61
|
+
its(:followed_items_count) {should be_an Integer}
|
62
|
+
its(:followed_sites_count) {should be_an Integer}
|
63
|
+
its(:followed_queries_count) {should be_an Integer}
|
64
64
|
end
|
65
65
|
|
66
66
|
describe "#friends" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hypem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-06-
|
12
|
+
date: 2012-06-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
16
|
-
requirement: &
|
16
|
+
requirement: &70284220238720 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '2.6'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70284220238720
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: vcr
|
27
|
-
requirement: &
|
27
|
+
requirement: &70284220238260 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,21 @@ dependencies:
|
|
32
32
|
version: '2.0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70284220238260
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: webmock
|
38
|
+
requirement: &70284220237880 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70284220237880
|
36
47
|
- !ruby/object:Gem::Dependency
|
37
48
|
name: rake
|
38
|
-
requirement: &
|
49
|
+
requirement: &70284220237420 !ruby/object:Gem::Requirement
|
39
50
|
none: false
|
40
51
|
requirements:
|
41
52
|
- - ! '>='
|
@@ -43,21 +54,32 @@ dependencies:
|
|
43
54
|
version: '0'
|
44
55
|
type: :development
|
45
56
|
prerelease: false
|
46
|
-
version_requirements: *
|
57
|
+
version_requirements: *70284220237420
|
47
58
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
49
|
-
requirement: &
|
59
|
+
name: httparty
|
60
|
+
requirement: &70284220237000 !ruby/object:Gem::Requirement
|
50
61
|
none: false
|
51
62
|
requirements:
|
52
|
-
- -
|
63
|
+
- - ! '>='
|
53
64
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0
|
65
|
+
version: '0'
|
66
|
+
type: :runtime
|
67
|
+
prerelease: false
|
68
|
+
version_requirements: *70284220237000
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: andand
|
71
|
+
requirement: &70284220236580 !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
55
77
|
type: :runtime
|
56
78
|
prerelease: false
|
57
|
-
version_requirements: *
|
79
|
+
version_requirements: *70284220236580
|
58
80
|
- !ruby/object:Gem::Dependency
|
59
81
|
name: multi_json
|
60
|
-
requirement: &
|
82
|
+
requirement: &70284220236080 !ruby/object:Gem::Requirement
|
61
83
|
none: false
|
62
84
|
requirements:
|
63
85
|
- - ~>
|
@@ -65,7 +87,7 @@ dependencies:
|
|
65
87
|
version: '1.1'
|
66
88
|
type: :runtime
|
67
89
|
prerelease: false
|
68
|
-
version_requirements: *
|
90
|
+
version_requirements: *70284220236080
|
69
91
|
description:
|
70
92
|
email:
|
71
93
|
- jackcanderson@gmail.com
|
@@ -79,25 +101,11 @@ files:
|
|
79
101
|
- Gemfile
|
80
102
|
- README.md
|
81
103
|
- Rakefile
|
82
|
-
- fixtures/vcr_cassettes/blog.yml
|
83
|
-
- fixtures/vcr_cassettes/blog_all.yml
|
84
|
-
- fixtures/vcr_cassettes/blog_playlist.yml
|
85
|
-
- fixtures/vcr_cassettes/feed_playlist.yml
|
86
|
-
- fixtures/vcr_cassettes/fresh_playlist.yml
|
87
|
-
- fixtures/vcr_cassettes/friends_history.yml
|
88
|
-
- fixtures/vcr_cassettes/friends_playlist.yml
|
89
|
-
- fixtures/vcr_cassettes/latest_playlist.yml
|
90
|
-
- fixtures/vcr_cassettes/loved_playlist.yml
|
91
|
-
- fixtures/vcr_cassettes/obsessed_playlist.yml
|
92
|
-
- fixtures/vcr_cassettes/popular_playlist.yml
|
93
|
-
- fixtures/vcr_cassettes/single_track.yml
|
94
|
-
- fixtures/vcr_cassettes/user_favorite_blogs.yml
|
95
|
-
- fixtures/vcr_cassettes/user_friends.yml
|
96
|
-
- fixtures/vcr_cassettes/user_profile.yml
|
97
104
|
- hypem.gemspec
|
98
105
|
- lib/exceptions.rb
|
99
106
|
- lib/hypem.rb
|
100
107
|
- lib/hypem/blog.rb
|
108
|
+
- lib/hypem/helper.rb
|
101
109
|
- lib/hypem/playlist.rb
|
102
110
|
- lib/hypem/request.rb
|
103
111
|
- lib/hypem/response.rb
|
@@ -105,10 +113,16 @@ files:
|
|
105
113
|
- lib/hypem/user.rb
|
106
114
|
- lib/hypem/version.rb
|
107
115
|
- spec/blog_spec.rb
|
116
|
+
- spec/fixtures/vcr_cassettes/blog.yml
|
117
|
+
- spec/fixtures/vcr_cassettes/blog_all.yml
|
118
|
+
- spec/fixtures/vcr_cassettes/latest_playlist.yml
|
119
|
+
- spec/fixtures/vcr_cassettes/single_track.yml
|
120
|
+
- spec/fixtures/vcr_cassettes/user_favorite_blogs.yml
|
121
|
+
- spec/fixtures/vcr_cassettes/user_friends.yml
|
122
|
+
- spec/fixtures/vcr_cassettes/user_profile.yml
|
108
123
|
- spec/hypem_spec.rb
|
109
124
|
- spec/playlist_spec.rb
|
110
125
|
- spec/request_spec.rb
|
111
|
-
- spec/response_spec.rb
|
112
126
|
- spec/spec_helper.rb
|
113
127
|
- spec/track_spec.rb
|
114
128
|
- spec/user_spec.rb
|
@@ -132,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
146
|
version: '0'
|
133
147
|
segments:
|
134
148
|
- 0
|
135
|
-
hash:
|
149
|
+
hash: -2570760148147230779
|
136
150
|
requirements: []
|
137
151
|
rubyforge_project: hypem
|
138
152
|
rubygems_version: 1.8.10
|
@@ -141,10 +155,16 @@ specification_version: 3
|
|
141
155
|
summary: a Ruby wrapper for the Hype Machine read-only API
|
142
156
|
test_files:
|
143
157
|
- spec/blog_spec.rb
|
158
|
+
- spec/fixtures/vcr_cassettes/blog.yml
|
159
|
+
- spec/fixtures/vcr_cassettes/blog_all.yml
|
160
|
+
- spec/fixtures/vcr_cassettes/latest_playlist.yml
|
161
|
+
- spec/fixtures/vcr_cassettes/single_track.yml
|
162
|
+
- spec/fixtures/vcr_cassettes/user_favorite_blogs.yml
|
163
|
+
- spec/fixtures/vcr_cassettes/user_friends.yml
|
164
|
+
- spec/fixtures/vcr_cassettes/user_profile.yml
|
144
165
|
- spec/hypem_spec.rb
|
145
166
|
- spec/playlist_spec.rb
|
146
167
|
- spec/request_spec.rb
|
147
|
-
- spec/response_spec.rb
|
148
168
|
- spec/spec_helper.rb
|
149
169
|
- spec/track_spec.rb
|
150
170
|
- spec/user_spec.rb
|
@@ -1,42 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://hypem.com/api/get_site_info?siteid=4632
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers: {}
|
10
|
-
response:
|
11
|
-
status:
|
12
|
-
code: 200
|
13
|
-
message:
|
14
|
-
headers:
|
15
|
-
server:
|
16
|
-
- nginx/1.0.12
|
17
|
-
date:
|
18
|
-
- Sun, 25 Mar 2012 04:54:21 GMT
|
19
|
-
content-type:
|
20
|
-
- text/html
|
21
|
-
transfer-encoding:
|
22
|
-
- chunked
|
23
|
-
connection:
|
24
|
-
- close
|
25
|
-
set-cookie:
|
26
|
-
- AUTH=03%3A4508e18fa5a03f70790f7fd6b77b51c6%3A1332651260%3A1276002699%3ACA-US;
|
27
|
-
expires=Tue, 21-Mar-2028 04:54:20 GMT; path=/; domain=hypem.com
|
28
|
-
x-hacker:
|
29
|
-
- Hey, if you're reading this, you should drop us an email at hypem.com/contact,
|
30
|
-
maybe we can work together!
|
31
|
-
access-control-allow-origin:
|
32
|
-
- ! '*'
|
33
|
-
access-control-allow-headers:
|
34
|
-
- ! '*'
|
35
|
-
vary:
|
36
|
-
- Accept-Encoding
|
37
|
-
body:
|
38
|
-
encoding: ASCII-8BIT
|
39
|
-
string: ! '{"siteid":"4632","sitename":"Pasta Primavera","siteurl":"http:\/\/pastaprima.net","followers":1345,"is_favorite":null,"total_tracks":4026,"last_posted":1332515501,"first_posted":1192804200,"blog_image":"http:\/\/static-ak.hypem.net\/images\/blog_images\/4632.jpg","blog_image_small":"http:\/\/static-ak.hypem.net\/images\/blog_images\/small\/4632.jpg"}'
|
40
|
-
http_version:
|
41
|
-
recorded_at: Sun, 25 Mar 2012 04:54:21 GMT
|
42
|
-
recorded_with: VCR 2.0.0
|
@@ -1,156 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://hypem.com/playlist/blog/1/json/1
|
6
|
-
body:
|
7
|
-
encoding: US-ASCII
|
8
|
-
string: ''
|
9
|
-
headers: {}
|
10
|
-
response:
|
11
|
-
status:
|
12
|
-
code: 200
|
13
|
-
message:
|
14
|
-
headers:
|
15
|
-
server:
|
16
|
-
- nginx/1.0.12
|
17
|
-
date:
|
18
|
-
- Thu, 22 Mar 2012 02:31:34 GMT
|
19
|
-
content-type:
|
20
|
-
- text/javascript; charset=UTF-8
|
21
|
-
transfer-encoding:
|
22
|
-
- chunked
|
23
|
-
connection:
|
24
|
-
- close
|
25
|
-
set-cookie:
|
26
|
-
- AUTH=03%3Ab547ac2dad473841b070802ac5097624%3A1332383494%3A1176825060%3ACA-US;
|
27
|
-
expires=Sat, 18-Mar-2028 02:31:34 GMT; path=/; domain=hypem.com
|
28
|
-
x-hacker:
|
29
|
-
- Hey, if you're reading this, you should drop us an email at hypem.com/contact,
|
30
|
-
maybe we can work together!
|
31
|
-
access-control-allow-origin:
|
32
|
-
- ! '*'
|
33
|
-
access-control-allow-headers:
|
34
|
-
- ! '*'
|
35
|
-
vary:
|
36
|
-
- Accept-Encoding
|
37
|
-
body:
|
38
|
-
encoding: ASCII-8BIT
|
39
|
-
string: ! '{"version":"1.1","0":{"mediaid":"1jems","artist":"Slowdim","title":"Money","dateposted":1332155325,"siteid":1,"sitename":"Music
|
40
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=3188","postid":1752371,"loved_count":3,"posted_count":4,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/1\/1752371.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/1\/1752371_320.png","time":230,"description":"Slowdim
|
41
|
-
\u2013 Money. That cover up there is exactly right, isn\u2019t it? This is
|
42
|
-
FM music from a hazy past, from road trips with your family, car trips with
|
43
|
-
the windows down and the sun about to set. It\u2019s not that Slowdim is a
|
44
|
-
nostalgia act, it\u2019s just that these ","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Slowdim"},"1":{"mediaid":"1azv0","artist":"Apache
|
45
|
-
Dropout","title":"I''m So Glad","dateposted":1331834222,"siteid":1,"sitename":"Music
|
46
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=3193","postid":1749878,"loved_count":6,"posted_count":5,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart4.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":156,"description":"Apache
|
47
|
-
Dropout \u2013 I\u2019m So Glad What can I say about these guys that hasn\u2019t
|
48
|
-
already been said about the Count Five, The Troggs, The Stones, The Black
|
49
|
-
Lips, The Strange Boys\u2026","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Apache%20Dropout"},"2":{"mediaid":"1fwjg","artist":"Hospitality","title":"Betty
|
50
|
-
Wang","dateposted":1330952173,"siteid":1,"sitename":"Music ( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=3177","postid":1738974,"loved_count":74,"posted_count":26,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/4\/1738974.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/4\/1738974_320.png","time":133,"description":"Hospitality
|
51
|
-
\u2013 Betty Wang. What is it about Hospitality that reminds me of the \u201990s?
|
52
|
-
It certainly doesn\u2019t sound grungy. Maybe it\u2019s the resemblance to
|
53
|
-
bands like Belle & Sebastian, even though they were aiming for something from
|
54
|
-
the \u201960s. Either way, this s","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Hospitality"},"3":{"mediaid":"1herd","artist":"The
|
55
|
-
Pharmacy","title":"Dig Your Grave","dateposted":1330432397,"siteid":1,"sitename":"Music
|
56
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=3161","postid":1733239,"loved_count":28,"posted_count":9,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart1.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":122,"description":"The
|
57
|
-
Pharmacy \u2013 Dig Your Grave. I took a sick day a few weeks ago, after I
|
58
|
-
was saddled with my baby\u2019s umpteenth cold. It was actually a really nice
|
59
|
-
day; I hadn\u2019t had that much time to myself in ages. I watched most of
|
60
|
-
Moneyball until the internet gave out\u2013","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/The%20Pharmacy"},"4":{"mediaid":"1g1eq","artist":"Sharon
|
61
|
-
Van Etten","title":"Serpents","dateposted":1329855603,"siteid":1,"sitename":"Music
|
62
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=3153","postid":1726773,"loved_count":1203,"posted_count":103,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart0.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":182,"description":"Sharon
|
63
|
-
Van Etten \u2013 Serpents I\u2019d love to write about Give Out. I\u2019d
|
64
|
-
love to write about the way the song builds quietly, internally like a low
|
65
|
-
grade anxiety attack. Treading the same ground over and over, convincing herself
|
66
|
-
one minute, full of doubt the nex","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Sharon%20Van%20Etten"},"5":{"mediaid":"1hajq","artist":"Now,
|
67
|
-
Now","title":"school friends","dateposted":1329744503,"siteid":1,"sitename":"Music
|
68
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=3127","postid":1725128,"loved_count":58,"posted_count":4,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart4.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":173,"description":"Now,
|
69
|
-
Now \u2013 School Friends. Now, Now used to be called Now Now Every Children,
|
70
|
-
and I vastly prefer their new, shorter name. Their sound, too, is more condensed\u2013there\u2019s
|
71
|
-
a rawness from their debut Cars missing from their latest, Threads, but in
|
72
|
-
its place is ","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Now,%20Now"},"6":{"mediaid":"1fe5p","artist":"Clem
|
73
|
-
Snide","title":"Anyway You Want It","dateposted":1321302506,"siteid":1,"sitename":"Music
|
74
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2985","postid":1639716,"loved_count":380,"posted_count":6,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/6\/1639716.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/6\/1639716_320.png","time":226,"description":"It\u2019s
|
75
|
-
hard to pull off something like this. Clem Snide \u2013 Any Way You Want It.
|
76
|
-
Indie covers of mainstream hits are tough, because you don\u2019t want to
|
77
|
-
seem too condescending. But Clem Snide\u2019s Eef Barzelay can do it, because
|
78
|
-
he knows what\u2019s great about this son","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Clem%20Snide"},"7":{"mediaid":"1e8xe","artist":"Girl
|
79
|
-
in a Coma","title":"Smart","dateposted":1317382105,"siteid":1,"sitename":"Music
|
80
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2862","postid":1599253,"loved_count":87,"posted_count":19,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart3.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":201,"description":"Girl
|
81
|
-
In A Coma \u2013 Smart. There\u2019s something about bands that wear influences
|
82
|
-
on their sleeves while sounding like themselves. Girl In A Coma not only cops
|
83
|
-
the Smiths\u2019 jangle but adapts one of Moz\u2019s song titles for their
|
84
|
-
band name. But this is no imitation; ","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Girl%20in%20a%20Coma"},"8":{"mediaid":"1d71t","artist":"Geoffrey
|
85
|
-
O''Connor","title":"Whatever Leads Me To You","dateposted":1316629902,"siteid":1,"sitename":"Music
|
86
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2838","postid":1591230,"loved_count":125,"posted_count":20,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart2.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":211,"description":"Geoffrey
|
87
|
-
O\u2019Connor \u2013 Whatever Leads Me To You I\u2019m not as in touch with
|
88
|
-
Australia as I used to be, having lost touch with its superior coffee and
|
89
|
-
southern california-style beaches. It\u2019s been more than three years Corey
|
90
|
-
Delaney finally brought the continent ","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Geoffrey%20O''Connor"},"9":{"mediaid":"1ehbz","artist":"Lightning
|
91
|
-
Dust","title":"Never Again","dateposted":1316557949,"siteid":1,"sitename":"Music
|
92
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2828","postid":1590440,"loved_count":32,"posted_count":2,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart2.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":190,"description":"When
|
93
|
-
you\u2019re looking for a place to spend your music dollars this month, I
|
94
|
-
would highly suggest you set aside seven dollars for this wonderful little
|
95
|
-
single from the freshly launched Storyboard Label 7\u2033 series. It\u2019s
|
96
|
-
been a quiet few years for Joshua and Am","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Lightning%20Dust"},"10":{"mediaid":"1ea0r","artist":"Villa
|
97
|
-
Rosa","title":"Leader of the Pack","dateposted":1315826956,"siteid":1,"sitename":"Music
|
98
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2814","postid":1582261,"loved_count":9,"posted_count":1,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart2.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":190,"description":"Villa
|
99
|
-
Rosa \u2013 Leader of the Pack. There\u2019s something about Midwest hip-hop
|
100
|
-
that\u2019s so pure and wholesome, so without hubris and overconfidence, that
|
101
|
-
I find totally charming. Don\u2019t get me wrong, I love Kanye\u2019s ridiculous
|
102
|
-
boasting and Jay-Z\u2019s outrageous claims","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Villa%20Rosa"},"11":{"mediaid":"vcvc","artist":"Visqueen","title":"Hand
|
103
|
-
Me Down","dateposted":1314017800,"siteid":1,"sitename":"Music ( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2779","postid":1564708,"loved_count":30,"posted_count":13,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/8\/1564708.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/8\/1564708_320.png","time":202,"description":"Visqueen
|
104
|
-
\u2013 Hand Me Down. Oh brother, it has been a LONG TIME since I have posted
|
105
|
-
anything. Sorry, Robots. I have no good excuse. Not that I\u2019ve been gone
|
106
|
-
for two years, but perhaps it\u2019s fitting that I\u2019m posting a track
|
107
|
-
from 2009. But Visqueen, purveyors of","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Visqueen"},"12":{"mediaid":"1d4kz","artist":"Muscles","title":"I''ll
|
108
|
-
Follow You (2011)","dateposted":1311817663,"siteid":1,"sitename":"Music (
|
109
|
-
for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2759","postid":1544288,"loved_count":74,"posted_count":3,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/8\/1544288.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/8\/1544288_320.png","time":248,"description":"I
|
110
|
-
can\u2019t explain why Muscles hits me so deeply, but his songs just floor
|
111
|
-
me. I would like to be able to purchase this in America, but Modular seems
|
112
|
-
to only release his music in Australia these days. The rest of my countrymen
|
113
|
-
do not share the love. Forever ","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Muscles"},"13":{"mediaid":"1cxwq","artist":"The
|
114
|
-
War on Drugs","title":"Come to the City","dateposted":1311705016,"siteid":1,"sitename":"Music
|
115
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2755","postid":1542705,"loved_count":829,"posted_count":74,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/5\/1542705.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/5\/1542705_320.png","time":270,"description":"The
|
116
|
-
War on Drugs \u2013 Come To The City Not nearly enough is being said about
|
117
|
-
The War on Drugs and their new album Slave Ambient.","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/The%20War%20on%20Drugs"},"14":{"mediaid":"17z1e","artist":"Sleeping
|
118
|
-
Bag","title":"Slime","dateposted":1311341530,"siteid":1,"sitename":"Music
|
119
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2737","postid":1539201,"loved_count":70,"posted_count":21,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/1\/1539201.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/1\/1539201_320.png","time":202,"description":"Sleeping
|
120
|
-
Bag \u2013 Slime. Holy balls is it hot. It\u2019s supposed to reach 100 in
|
121
|
-
Boston today, and I am not looking forward to it. But just look at these dudes
|
122
|
-
in their khakis and dress shirts, standing in the sunlight, without a care
|
123
|
-
in the world. Sometimes I f","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Sleeping%20Bag"},"15":{"mediaid":"1bjs5","artist":"Radical
|
124
|
-
Dads","title":"Walking Wires","dateposted":1310735792,"siteid":1,"sitename":"Music
|
125
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2718","postid":1532754,"loved_count":34,"posted_count":12,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart2.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":224,"description":"Radical
|
126
|
-
Dads @ Shea Stadium 7.7.2011 from Jessica Amaya on Vimeo. It\u2019s easy to
|
127
|
-
forget how simple music can be. This probably sounds like the faintest of
|
128
|
-
praise and the most backhanded of compliments, but bands like Radical Dads
|
129
|
-
\u2013 bands who cater in three-","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Radical%20Dads"},"16":{"mediaid":"1c6zr","artist":"Peter
|
130
|
-
Wolf Crier","title":"Right Away","dateposted":1310384235,"siteid":1,"sitename":"Music
|
131
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2698","postid":1528488,"loved_count":149,"posted_count":31,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart2.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":188,"description":"Peter
|
132
|
-
Wolf Crier \u2013 Right Away. Hey guys, Peter Wolf Crier is back! These dudes
|
133
|
-
are always up to something interesting, and it\u2019s good to see them around
|
134
|
-
again. Their music is largely acoustic, but it always sounds like a jigsaw
|
135
|
-
puzzle. I like bands that ta","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Peter%20Wolf%20Crier"},"17":{"mediaid":"18p0p","artist":"Milk
|
136
|
-
Music","title":"Beyond Living","dateposted":1309534786,"siteid":1,"sitename":"Music
|
137
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2688","postid":1521596,"loved_count":38,"posted_count":9,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart3.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":214,"description":"Milk
|
138
|
-
Music \u2013 Beyond Living I have heard lots of fuzz rock comparisons for
|
139
|
-
this band\u2026 the wipers, dinosaur jr, husker du. But I hear two American
|
140
|
-
bands when I listen to this 12\u2033: The Replacements and Milk Music. There
|
141
|
-
is just something so pop about the voc","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Milk%20Music"},"18":{"mediaid":"1c1qm","artist":"Sun
|
142
|
-
Airway","title":"Wild Palms","dateposted":1308573037,"siteid":1,"sitename":"Music
|
143
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2612","postid":1511366,"loved_count":180,"posted_count":23,"thumb_url":"http:\/\/static-ak.hypem.net\/thumbs\/6\/1511366.png","thumb_url_large":"http:\/\/static-ak.hypem.net\/thumbs\/6\/1511366_320.png","time":230,"description":"Sun
|
144
|
-
Airway \u2013 Wild Palms. I\u2019ll be honest: I have no idea what Jon Barthmus
|
145
|
-
is saying. It\u2019s loud where I am right now, with screaming children, elderly
|
146
|
-
people yawping about Filene\u2019s Basement, a barking dog. But that somehow
|
147
|
-
only enhances the experience; tra","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/Sun%20Airway"},"19":{"mediaid":"1b736","artist":"SBTRKT","title":"Wildfire
|
148
|
-
(feat. Little Dragon)","dateposted":1308145044,"siteid":1,"sitename":"Music
|
149
|
-
( for robots)","posturl":"http:\/\/music.for-robots.com\/?p=2592","postid":1507525,"loved_count":15213,"posted_count":62,"thumb_url":"http:\/\/static-ak.hypem.net\/images\/albumart2.gif","thumb_url_large":"http:\/\/static-ak.hypem.net\/images\/blog_images\/1.png","time":206,"description":"SBTRKT
|
150
|
-
\u2013 Wildfire. I don\u2019t usually write about music that people dance
|
151
|
-
to. Sure, sometimes the kids dance to the indie rock, but c\u2019mon. That\u2019s
|
152
|
-
not exactly dancing. That\u2019s spilling beer. The truth is, I don\u2019t
|
153
|
-
really know the vocabulary or the background fo","itunes_link":"http:\/\/hypem.com\/go\/itunes_search\/SBTRKT"}}'
|
154
|
-
http_version:
|
155
|
-
recorded_at: Thu, 22 Mar 2012 02:31:34 GMT
|
156
|
-
recorded_with: VCR 2.0.0
|