kanye 0.1.0

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.
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ source "http://rubygems.org"
2
+ gem 'httparty', ">= 0.7.4"
3
+ gem 'sqlite3'
4
+ gem 'character-encodings'
5
+ gem 'nokogiri'
6
+ gem 'ruby-mp3info'
7
+
8
+ group :development do
9
+ gem "rspec", ">= 2"
10
+ gem "bundler", "~> 1.0.0"
11
+ gem "jeweler", "~> 1.5.2"
12
+ end
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Sam Vincent
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,18 @@
1
+ = HypeR
2
+
3
+ A utility that helps you download all of your favorite tracks from your favorite music blog aggregator.
4
+
5
+ == Installation
6
+
7
+ gem install hyper
8
+
9
+ You'll need to have XCode installed because *Nokogiri* is a dependency.
10
+ The first time you run +hyper+, it will ask you for your user name.
11
+
12
+ $ hyper
13
+ It appears HypeR hasn't been configured yet.
14
+ What is your hype user name?
15
+
16
+ This will output to +~/.hyper_rc+ some YAML options. Your downloads will now begin.
17
+
18
+ Now that you've configured it, just run +hyper+ any time to go over your latest favorites.
@@ -0,0 +1,40 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'rake'
11
+
12
+ require 'jeweler'
13
+ Jeweler::Tasks.new do |gem|
14
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
+ gem.name = "kanye"
16
+ gem.homepage = "http://github.com/samvincent/kanye"
17
+ gem.license = "MIT"
18
+ gem.summary = %Q{Ruby HypeM utility}
19
+ gem.description = %Q{Ruby HypeM utility}
20
+ gem.email = "sam.vincent@mac.com"
21
+ gem.authors = ["Sam Vincent"]
22
+ # Include your dependencies below. Runtime dependencies are required when using your gem,
23
+ # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
+ gem.add_runtime_dependency 'httparty', '>= 0.7.4'
25
+ gem.add_runtime_dependency 'sqlite3'
26
+ gem.add_runtime_dependency 'character-encodings'
27
+ gem.add_runtime_dependency 'nokogiri', '> 1.4.0'
28
+ gem.add_runtime_dependency 'ruby-mp3info', '> 0.6.0'
29
+ # gem.add_development_dependency 'rspec', '> 1.2.3'
30
+ end
31
+ Jeweler::RubygemsDotOrgTasks.new
32
+
33
+ require 'rake/testtask'
34
+ Rake::TestTask.new(:spec) do |spec|
35
+ spec.libs << 'lib' << 'spec'
36
+ spec.pattern = 'spec/**/*_spec.rb'
37
+ spec.verbose = true
38
+ end
39
+
40
+ task :default => :spec
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift(File.join(File.dirname(__FILE__), "/../lib"))
4
+ require 'rubygems'
5
+ require 'kanye'
6
+
7
+ def load_configuration(path)
8
+ YAML.load File.read(path)
9
+ end
10
+
11
+ # Setup
12
+ if File.exist?(Kanye::DEFAULT_CONFIGURATION_PATH)
13
+ config = load_configuration(Kanye::DEFAULT_CONFIGURATION_PATH)
14
+ else
15
+ puts "It appears Kanye hasn't been configured yet."
16
+ puts "What is your hype user name?"
17
+ name = gets.chomp
18
+ File.open(Kanye::DEFAULT_CONFIGURATION_PATH, "w") do |f|
19
+ f.write "username: #{name}\n"
20
+ f.write "pages: 5\n"
21
+ f.write "path: #{Kanye::DEFAULT_DOWNLOAD_PATH}\n"
22
+ f.write "db: #{Kanye::DEFAULT_DB_PATH}\n"
23
+ end
24
+ config = load_configuration(Kanye::DEFAULT_CONFIGURATION_PATH)
25
+ end
26
+
27
+ unless File.directory? config["path"]
28
+ Dir::mkdir config["path"]
29
+ puts "Created directory => #{config["path"]}"
30
+ end
31
+
32
+ unless File.exists? config["db"]
33
+ db = SQLite3::Database.new(config["db"])
34
+ db.execute("CREATE TABLE tracks (id INTEGER PRIMARY KEY AUTOINCREMENT, key TEXT);")
35
+ puts "Created database => #{config["db"]}"
36
+ end
37
+
38
+ config["pages"].to_i.times do |i|
39
+ user = config["username"]
40
+ page = i+1
41
+ kanye = Kanye.new(user, page)
42
+ kanye.download_all!
43
+ end
@@ -0,0 +1,70 @@
1
+ require 'httparty'
2
+ require 'nokogiri'
3
+ require 'mp3info'
4
+ require 'sqlite3'
5
+
6
+ require 'kanye/track'
7
+ require 'kanye/history'
8
+
9
+ class Kanye
10
+ attr_reader :html, :response, :tracks
11
+
12
+ DEFAULT_CONFIGURATION_PATH = File.expand_path("~/.kanye_rc")
13
+ DEFAULT_DOWNLOAD_PATH = File.expand_path("~/Music/Kanye/")
14
+ DEFAULT_DB_PATH = File.expand_path("~/Music/Kanye/.history.db")
15
+
16
+ def initialize(path, page=1)
17
+ @response = HTTParty.get url(path, page)
18
+ @tracks = []
19
+ @cookie = @response.headers['set-cookie']
20
+ @html = @response.parsed_response
21
+ parse_response
22
+ end
23
+
24
+ def download_all!
25
+ while tracks.size > 0
26
+ current_track = tracks.pop
27
+ history = History.new(DEFAULT_DB_PATH)
28
+ unless history.exists?(current_track)
29
+ current_track.download!
30
+ history.insert(current_track)
31
+ puts "\tInserted song into db"
32
+ end
33
+ end
34
+ end
35
+
36
+ def url(path, page=1)
37
+ "http://hypem.com/"+path+"/"+page.to_s+"?ax=1&ts="+timestamp
38
+ end
39
+
40
+ def self.download_path
41
+ @@download_path ||= DEFAULT_DOWNLOAD_PATH
42
+ end
43
+
44
+ def self.db_path
45
+ @@db_path ||= DEFAULT_DB_PATH
46
+ end
47
+
48
+ protected
49
+
50
+ def parse_response
51
+ html_doc = Nokogiri::HTML(@html)
52
+ ids = @html.scan /\tid:\'(\w*)\'/
53
+ keys = @html.scan /\tkey:\s+?\'([\d\w]*)\'/
54
+ artists = html_doc.css('.track_name .artist').map { |node| node.content.strip }
55
+ titles = html_doc.css('.track_name .artist + a').map { |node| node.content.strip }
56
+ [ids, keys, titles, artists].each(&:flatten!)
57
+
58
+ ids.each_with_index do |id, i|
59
+ @tracks << Track.new(:id => ids[i],
60
+ :key => keys[i],
61
+ :title => titles[i],
62
+ :artist => artists[i],
63
+ :cookie => @cookie)
64
+ end
65
+ end
66
+
67
+ def timestamp
68
+ ("%10.10f" % Time.now.utc.to_f).gsub('.','')
69
+ end
70
+ end
@@ -0,0 +1,14 @@
1
+ class History
2
+ attr_reader :db
3
+ def initialize(db_file)
4
+ @db = SQLite3::Database.new(db_file)
5
+ end
6
+
7
+ def insert(track)
8
+ db.execute("insert into tracks values (?, ?)", [nil, track.id])
9
+ end
10
+
11
+ def exists?(track)
12
+ db.execute("select * from tracks where key=?", track.id).any?
13
+ end
14
+ end
@@ -0,0 +1,53 @@
1
+ class NoKeyError < StandardError; end
2
+
3
+ class Track
4
+ def initialize(params={})
5
+ @id = params[:id]
6
+ @key = params[:key]
7
+ @title = params[:title]
8
+ @artist = params[:artist]
9
+ @cookie = params[:cookie]
10
+ end
11
+
12
+ attr_reader :id, :key, :title, :artist, :cookie
13
+
14
+ def url
15
+ 'http://hypem.com/serve/play/'+ id + '/' + key + ".mp3"
16
+ end
17
+
18
+ def download!
19
+ raise(NoKeyError, "Couldn't find :key for '#{self}'") if key.blank?
20
+ response = HTTParty.get(url, :headers => {'cookie' => cookie})
21
+
22
+ print "Attempting to download ", self
23
+ puts "\n\tDownloading song..."
24
+
25
+ File.open(filename, "wb") do |f|
26
+ f.write(response.parsed_response)
27
+ end
28
+
29
+ set_id3_tags!
30
+ end
31
+
32
+ def to_s
33
+ "(" + [key, title, artist].join(", ") + ")"
34
+ end
35
+
36
+ def filename
37
+ name = [artist,title].join('-').gsub(/[ \/]/, "-").downcase
38
+ File.join(Kanye.download_path, name + ".mp3")
39
+ end
40
+
41
+ private
42
+
43
+ def set_id3_tags!
44
+ begin
45
+ Mp3Info.open(filename, :encoding => 'utf-8') do |mp3|
46
+ mp3.tag.artist = artist
47
+ mp3.tag.title = title
48
+ end
49
+ rescue Mp3InfoError => e
50
+ print e.message
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,2285 @@
1
+
2
+ <div class="message-push">
3
+ <div id="message-intro">
4
+ <p>
5
+ <strong>Discover music blogs worth listening to.</strong><br />
6
+ Create your own music stream with your favorite artists, blogs &amp; friends. <a onclick="show_lightbox('signup');return false;" href="">Sign up</a> or <a onclick="show_lightbox('login');return false;" href="">log in</a>.
7
+ </p>
8
+ </div>
9
+ </div>
10
+
11
+
12
+ <div class="message-push" id="flash-warning" style="display: none">
13
+ <div id="message-intro">
14
+ <p>You seem to be missing <a href="http://www.adobe.com/support/flashplayer/downloads.html">Adobe's Flash Player</a>, please install it before attempting to listen to music on the Machine.</p>
15
+ </div>
16
+ </div>
17
+
18
+ <script type="text/javascript">
19
+ if (playerStatus!="PLAYING") { document.title = "Kanye's loved songs"; }
20
+ trackList[document.location.href] = new Array();
21
+ trackList[document.location.href]['title'] = "Kanye's loved songs";
22
+ trackList[document.location.href]['page_name'] = "profile";
23
+ trackList[document.location.href]['page_num'] = "1";
24
+ trackList[document.location.href]['url'] = document.location.href;
25
+
26
+ refresh_728x90(); </script>
27
+
28
+ <div id="message">
29
+
30
+ <a id="player" href="" onclick="togglePlay();return false;">Play<span id="player-main-button"></span></a>
31
+ <h1>
32
+
33
+ Kanye
34
+ </h1>
35
+
36
+
37
+
38
+ </div><!-- message -->
39
+
40
+ <div id="container">
41
+ <!-- google_ad_section_start -->
42
+
43
+ <div id="content-left" class="me-pages">
44
+
45
+ <div id="recently-posted">
46
+
47
+ <ul id="submenu">
48
+
49
+ <li><i>Kanye's Songs</i></li>
50
+ <li><a rel="nofollow" href="/Kanye/history">Kanye's Listening</a></li>
51
+ <li id="submenu-filter"><a rel="nofollow" id="shuffle-songs" title="Shuffle Songs" href="/Kanye/shuffle">Shuffle</a></li>
52
+
53
+ </ul>
54
+
55
+
56
+ <script type="text/javascript">
57
+ // specific to this page
58
+ trackList[document.location.href]['page_mode'] = "loved";
59
+ trackList[document.location.href]['profile_user'] = "Kanye";
60
+ </script>
61
+
62
+
63
+
64
+ <div id="track-notification" style="display:none"></div>
65
+
66
+ <div class="section section-track section-even">
67
+ <div class="section-player" >
68
+
69
+
70
+
71
+ <h3 class="track_name">
72
+ <a class="artist" title="Rusko - search hype machine for this artist" href="/artist/Rusko">
73
+ Rusko</a>
74
+ -
75
+
76
+ <a title="Jahova - go to page for this track" href="/item/ta42/Rusko+-+Jahova">
77
+ Jahova
78
+ </a>
79
+
80
+
81
+
82
+
83
+
84
+ </h3>
85
+
86
+
87
+
88
+
89
+ <ul class="tools">
90
+ <li class="playdiv">
91
+ <a id="play_ctrl_ta42" class="play-ctrl play"
92
+ onclick="togglePlayByItemid('ta42');return false;"
93
+ title="Play"
94
+ href="">Play<span></span>
95
+ </a>
96
+ </li>
97
+
98
+ <li class="favdiv">
99
+
100
+
101
+ <a title="Favorited by 2097 others" class="favcount-off"
102
+ id="favcount_ta42"
103
+ onclick="toggle_item_activity('favorites', 'ta42', 1);return false;"
104
+ href="">2097 </a>
105
+
106
+
107
+ <a id="fav_item_ta42"
108
+ class="fav-off"
109
+ onclick="toggle_favorite('item','ta42');return false;"
110
+ title = "Favorite"
111
+ href="">Favorite<span></span>
112
+ </a>
113
+ </li>
114
+
115
+
116
+ </ul>
117
+
118
+ <div class="meta">
119
+ <span class="buy">
120
+ <a href="" onclick="toggle_item_activity('reposts', 'ta42', 1); return false;">
121
+ Posted by
122
+ 9 blogs</a> &bull;
123
+ </a>
124
+
125
+ Download Artist:
126
+ <a rel="nofollow" href="/go/emusic_search/Rusko">eMusic (<strong>$10 FREE</strong>)</a> &bull;
127
+ <a rel="nofollow" href="/go/amazon_mp3_search/Rusko">Amazon</a> &bull;
128
+ <a rel="nofollow" href="/go/itunes_search/Rusko">iTunes</a>
129
+ </span>
130
+ </div>
131
+
132
+ <div class="meta">
133
+
134
+
135
+ </div><!-- meta -->
136
+
137
+ <script type="text/javascript">
138
+ trackList[document.location.href].push({
139
+ type:'normal',
140
+ id:'ta42',
141
+ postid:'1458097',
142
+ posturl:'http://www.melophobe.com/concert-reviews/rusko-doorly-sir-kutz-roseland-theater-portland-or1/',
143
+ time:'313',
144
+ ts: '1303338935',
145
+ fav:'0',
146
+ key: '9ecc8d868239653e7c99a6891a878e01',
147
+ imeem_id:'',
148
+ artist:'Rusko',
149
+ song:'Jahova',
150
+ amazon:'',
151
+ itunes:'',
152
+ emusic:'',
153
+ exact_track_avail:'0'
154
+ });
155
+ </script>
156
+
157
+
158
+
159
+ <p>
160
+ <a
161
+ class="blog-fav-off"
162
+ title="See other tracks posted by this blog"
163
+ href="/blog/melophobe/10535">
164
+ melophobe</a>
165
+ &ldquo;Having been to hundreds of raves, the last thing I expected to change about the scene was the use of&hellip;&rdquo;
166
+ <a
167
+ class="readpost"
168
+ target="_blank"
169
+ onmousedown="this.href='http://www.melophobe.com/concert-reviews/rusko-doorly-sir-kutz-roseland-theater-portland-or1/'; return false;"
170
+ href="http://www.melophobe.com/concert-reviews/rusko-doorly-sir-kutz-roseland-theater-portland-or1/"
171
+ title="Read this post: Rusko + Doorly + Sir Kutz – Ros&hellip;">
172
+ Posted 4 days ago&nbsp;&raquo;<span style="background:url(
173
+ http://static-ak.hypem.net/images/albumart2.gif
174
+ );"></span></a>
175
+
176
+ </p>
177
+
178
+ <div class="act_info" style="display:none"></div>
179
+
180
+
181
+
182
+ <div class="track-info"> Loved yesterday
183
+ </div><!-- end track-info -->
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+ </div><!-- section player -->
194
+
195
+ </div> <div class="section section-track section-odd">
196
+ <div class="section-player" >
197
+
198
+
199
+
200
+ <h3 class="track_name">
201
+ <a class="artist" title="Rusko - search hype machine for this artist" href="/artist/Rusko">
202
+ Rusko</a>
203
+ -
204
+
205
+ <a title="Everyday - go to page for this track" href="/item/19n3n/Rusko+-+Everyday">
206
+ Everyday
207
+ </a>
208
+
209
+
210
+
211
+
212
+
213
+ </h3>
214
+
215
+
216
+
217
+
218
+ <ul class="tools">
219
+ <li class="playdiv">
220
+ <a id="play_ctrl_19n3n" class="play-ctrl play"
221
+ onclick="togglePlayByItemid('19n3n');return false;"
222
+ title="Play"
223
+ href="">Play<span></span>
224
+ </a>
225
+ </li>
226
+
227
+ <li class="favdiv">
228
+
229
+
230
+ <a title="Favorited by 1245 others" class="favcount-off"
231
+ id="favcount_19n3n"
232
+ onclick="toggle_item_activity('favorites', '19n3n', 1);return false;"
233
+ href="">1245 </a>
234
+
235
+
236
+ <a id="fav_item_19n3n"
237
+ class="fav-off"
238
+ onclick="toggle_favorite('item','19n3n');return false;"
239
+ title = "Favorite"
240
+ href="">Favorite<span></span>
241
+ </a>
242
+ </li>
243
+
244
+
245
+ </ul>
246
+
247
+ <div class="meta">
248
+ <span class="buy">
249
+ <a href="" onclick="toggle_item_activity('reposts', '19n3n', 1); return false;">
250
+ Posted by
251
+ 3 blogs</a> &bull;
252
+ </a>
253
+
254
+ Download Artist:
255
+ <a rel="nofollow" href="/go/emusic_search/Rusko">eMusic (<strong>$10 FREE</strong>)</a> &bull;
256
+ <a rel="nofollow" href="/go/amazon_mp3_search/Rusko">Amazon</a> &bull;
257
+ <a rel="nofollow" href="/go/itunes_search/Rusko">iTunes</a>
258
+ </span>
259
+ </div>
260
+
261
+ <div class="meta">
262
+
263
+
264
+ </div><!-- meta -->
265
+
266
+ <script type="text/javascript">
267
+ trackList[document.location.href].push({
268
+ type:'normal',
269
+ id:'19n3n',
270
+ postid:'1459123',
271
+ posturl:'http://www.earmilk.com/2011/04/18/rusko-everyday-the-remixes/',
272
+ time:'308',
273
+ ts: '1303338933',
274
+ fav:'0',
275
+ key: 'c63b38f6714b7273a2c3f28c3e86ea54',
276
+ imeem_id:'',
277
+ artist:'Rusko',
278
+ song:'Everyday',
279
+ amazon:'',
280
+ itunes:'',
281
+ emusic:'',
282
+ exact_track_avail:'0'
283
+ });
284
+ </script>
285
+
286
+
287
+
288
+ <p>
289
+ <a
290
+ class="blog-fav-off"
291
+ title="See other tracks posted by this blog"
292
+ href="/blog/earmilk/11067">
293
+ earmilk</a>
294
+ &ldquo;Earlier this month Rusko released Everyday / Lick The Lizard on Mad Decent and even through it’s had great coverage&hellip;&rdquo;
295
+ <a
296
+ class="readpost"
297
+ target="_blank"
298
+ onmousedown="this.href='http://www.earmilk.com/2011/04/18/rusko-everyday-the-remixes/'; return false;"
299
+ href="http://www.earmilk.com/2011/04/18/rusko-everyday-the-remixes/"
300
+ title="Read this post: Rusko – Everyday [The Remixes]">
301
+ Posted 3 days ago&nbsp;&raquo;<span style="background:url(
302
+ http://static-ak.hypem.net/thumbs/3/1459123.png
303
+ );"></span></a>
304
+
305
+ </p>
306
+
307
+ <div class="act_info" style="display:none"></div>
308
+
309
+
310
+
311
+ <div class="track-info"> Loved yesterday
312
+ </div><!-- end track-info -->
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+ </div><!-- section player -->
323
+
324
+ </div> <div class="section section-track section-even">
325
+ <div class="section-player" >
326
+
327
+
328
+
329
+ <h3 class="track_name">
330
+ <a class="artist" title="Washed Out feat. Caroline Polachek - search hype machine for this artist" href="/artist/Washed Out feat. Caroline Polachek">
331
+ Washed Out feat. Caroline Polachek</a>
332
+ -
333
+
334
+ <a title="You and I - go to page for this track" href="/item/12xxd/Washed+Out+feat+Caroline+Polachek+-+You+and+I">
335
+ You and I
336
+ </a>
337
+
338
+
339
+
340
+
341
+
342
+ </h3>
343
+
344
+
345
+
346
+
347
+ <ul class="tools">
348
+ <li class="playdiv">
349
+ <a id="play_ctrl_12xxd" class="play-ctrl play"
350
+ onclick="togglePlayByItemid('12xxd');return false;"
351
+ title="Play"
352
+ href="">Play<span></span>
353
+ </a>
354
+ </li>
355
+
356
+ <li class="favdiv">
357
+
358
+
359
+ <a title="Favorited by 838 others" class="favcount-off"
360
+ id="favcount_12xxd"
361
+ onclick="toggle_item_activity('favorites', '12xxd', 1);return false;"
362
+ href="">838 </a>
363
+
364
+
365
+ <a id="fav_item_12xxd"
366
+ class="fav-off"
367
+ onclick="toggle_favorite('item','12xxd');return false;"
368
+ title = "Favorite"
369
+ href="">Favorite<span></span>
370
+ </a>
371
+ </li>
372
+
373
+
374
+ </ul>
375
+
376
+ <div class="meta">
377
+ <span class="buy">
378
+ <a href="" onclick="toggle_item_activity('reposts', '12xxd', 1); return false;">
379
+ Posted by
380
+ 19 blogs</a> &bull;
381
+ </a>
382
+
383
+ Download Artist:
384
+ <a rel="nofollow" href="/go/emusic_search/Washed Out feat. Caroline Polachek">eMusic (<strong>$10 FREE</strong>)</a> &bull;
385
+ <a rel="nofollow" href="/go/amazon_mp3_search/Washed+Out+feat.+Caroline+Polachek">Amazon</a> &bull;
386
+ <a rel="nofollow" href="/go/itunes_search/Washed+Out+feat.+Caroline+Polachek">iTunes</a>
387
+ </span>
388
+ </div>
389
+
390
+ <div class="meta">
391
+
392
+
393
+ </div><!-- meta -->
394
+
395
+ <script type="text/javascript">
396
+ trackList[document.location.href].push({
397
+ type:'normal',
398
+ id:'12xxd',
399
+ postid:'1461916',
400
+ posturl:'http://www.tiltmag.com/2011/04/washed-out-signs-to-sub-pop.html',
401
+ time:'307',
402
+ ts: '1303338915',
403
+ fav:'0',
404
+ key: 'c9d3b9a12d0979becf154821c191b151',
405
+ imeem_id:'',
406
+ artist:'Washed Out feat. Caroline Polachek',
407
+ song:'You and I',
408
+ amazon:'',
409
+ itunes:'',
410
+ emusic:'',
411
+ exact_track_avail:'0'
412
+ });
413
+ </script>
414
+
415
+
416
+
417
+ <p>
418
+ <a
419
+ class="blog-fav-off"
420
+ title="See other tracks posted by this blog"
421
+ href="/blog/tilt/12387">
422
+ TILT</a>
423
+ &ldquo;The much anticipated Washed Out debut LP Within and Without drops July 12 on Sub Pop / Weird World. I&hellip;&rdquo;
424
+ <a
425
+ class="readpost"
426
+ target="_blank"
427
+ onmousedown="this.href='http://www.tiltmag.com/2011/04/washed-out-signs-to-sub-pop.html'; return false;"
428
+ href="http://www.tiltmag.com/2011/04/washed-out-signs-to-sub-pop.html"
429
+ title="Read this post: Washed Out Signs to Sub Pop">
430
+ Posted 14 hrs ago&nbsp;&raquo;<span style="background:url(
431
+ http://static-ak.hypem.net/thumbs/6/1461916.png
432
+ );"></span></a>
433
+
434
+ </p>
435
+
436
+ <div class="act_info" style="display:none"></div>
437
+
438
+
439
+
440
+ <div class="track-info"> Loved yesterday
441
+ </div><!-- end track-info -->
442
+
443
+
444
+
445
+
446
+
447
+
448
+
449
+
450
+
451
+ </div><!-- section player -->
452
+
453
+ </div> <div class="section section-track section-odd">
454
+ <div class="section-player" >
455
+
456
+
457
+
458
+ <h3 class="track_name">
459
+ <a class="artist" title="Le Castle Vania - search hype machine for this artist" href="/artist/Le Castle Vania">
460
+ Le Castle Vania</a>
461
+ -
462
+
463
+ <a title="DJ Falcon + Thomas Bangalter Together (Le Castle Vania + Computer Club's Summer Bootleg Mix) - go to page for this track" href="/item/1av33/Le+Castle+Vania+-+DJ+Falcon+Thomas+Bangalter+Together+Le+Castle+Vania+Computer+Club+s+Summer+Bootleg+Mix+">
464
+ DJ Falcon + Thomas Bangalter Together (Le Castle Vania + Computer Club's Summer Bootleg Mix)
465
+ </a>
466
+
467
+
468
+
469
+
470
+
471
+ </h3>
472
+
473
+
474
+
475
+
476
+ <ul class="tools">
477
+ <li class="playdiv">
478
+ <a id="play_ctrl_1av33" class="play-ctrl play"
479
+ onclick="togglePlayByItemid('1av33');return false;"
480
+ title="Play"
481
+ href="">Play<span></span>
482
+ </a>
483
+ </li>
484
+
485
+ <li class="favdiv">
486
+
487
+
488
+ <a title="Favorited by 84 others" class="favcount-off"
489
+ id="favcount_1av33"
490
+ onclick="toggle_item_activity('favorites', '1av33', 1);return false;"
491
+ href="">84 </a>
492
+
493
+
494
+ <a id="fav_item_1av33"
495
+ class="fav-off"
496
+ onclick="toggle_favorite('item','1av33');return false;"
497
+ title = "Favorite"
498
+ href="">Favorite<span></span>
499
+ </a>
500
+ </li>
501
+
502
+
503
+ </ul>
504
+
505
+ <div class="meta">
506
+ <span class="buy">
507
+ <a href="" onclick="toggle_item_activity('reposts', '1av33', 1); return false;">
508
+ Posted by
509
+ 5 blogs</a> &bull;
510
+ </a>
511
+
512
+ Download Artist:
513
+ <a rel="nofollow" href="/go/emusic_search/Le Castle Vania">eMusic (<strong>$10 FREE</strong>)</a> &bull;
514
+ <a rel="nofollow" href="/go/amazon_mp3_search/Le+Castle+Vania">Amazon</a> &bull;
515
+ <a rel="nofollow" href="/go/itunes_search/Le+Castle+Vania">iTunes</a>
516
+ </span>
517
+ </div>
518
+
519
+ <div class="meta">
520
+
521
+
522
+ </div><!-- meta -->
523
+
524
+ <script type="text/javascript">
525
+ trackList[document.location.href].push({
526
+ type:'normal',
527
+ id:'1av33',
528
+ postid:'1462247',
529
+ posturl:'http://www.themusicninja.com/electro-dj-falcon-thomas-bangalter-together-le-castle-vania-computer-clubs-summer-bootleg-mix/',
530
+ time:'308',
531
+ ts: '1303337158',
532
+ fav:'0',
533
+ key: '87c503dcc8bc46761a56b7bedfbb1697',
534
+ imeem_id:'',
535
+ artist:'Le Castle Vania',
536
+ song:'DJ Falcon + Thomas Bangalter Together ...',
537
+ amazon:'',
538
+ itunes:'',
539
+ emusic:'',
540
+ exact_track_avail:'0'
541
+ });
542
+ </script>
543
+
544
+
545
+
546
+ <p>
547
+ <a
548
+ class="blog-fav-off"
549
+ title="See other tracks posted by this blog"
550
+ href="/blog/the+music+ninja/10739">
551
+ The Music Ninja</a>
552
+ &ldquo;‘Together’, crafted by the side-project of French house legends DJ Falcon and Thomas Bangalter (of Daft Punk) – also known&hellip;&rdquo;
553
+ <a
554
+ class="readpost"
555
+ target="_blank"
556
+ onmousedown="this.href='http://www.themusicninja.com/electro-dj-falcon-thomas-bangalter-together-le-castle-vania-computer-clubs-summer-bootleg-mix/'; return false;"
557
+ href="http://www.themusicninja.com/electro-dj-falcon-thomas-bangalter-together-le-castle-vania-computer-clubs-summer-bootleg-mix/"
558
+ title="Read this post: [Electro] DJ Falcon + Thomas Bang&hellip;">
559
+ Posted 9 hrs ago&nbsp;&raquo;<span style="background:url(
560
+ http://static-ak.hypem.net/thumbs/7/1462247.png
561
+ );"></span></a>
562
+
563
+ </p>
564
+
565
+ <div class="act_info" style="display:none"></div>
566
+
567
+
568
+
569
+ <div class="track-info"> Loved yesterday
570
+ </div><!-- end track-info -->
571
+
572
+
573
+
574
+
575
+
576
+
577
+
578
+
579
+
580
+ </div><!-- section player -->
581
+
582
+ </div> <div class="section section-track section-even">
583
+ <div class="section-player" >
584
+
585
+
586
+
587
+ <h3 class="track_name">
588
+ <a class="artist" title="Earl Da Grey - search hype machine for this artist" href="/artist/Earl Da Grey">
589
+ Earl Da Grey</a>
590
+ -
591
+
592
+ <a title="Kick It - go to page for this track" href="/item/1ar7m/Earl+Da+Grey+-+Kick+It">
593
+ Kick It
594
+ </a>
595
+
596
+
597
+
598
+
599
+
600
+ </h3>
601
+
602
+
603
+
604
+
605
+ <ul class="tools">
606
+ <li class="playdiv">
607
+ <a id="play_ctrl_1ar7m" class="play-ctrl play"
608
+ onclick="togglePlayByItemid('1ar7m');return false;"
609
+ title="Play"
610
+ href="">Play<span></span>
611
+ </a>
612
+ </li>
613
+
614
+ <li class="favdiv">
615
+
616
+
617
+ <a title="Favorited by 4 others" class="favcount-off"
618
+ id="favcount_1ar7m"
619
+ onclick="toggle_item_activity('favorites', '1ar7m', 1);return false;"
620
+ href="">4 </a>
621
+
622
+
623
+ <a id="fav_item_1ar7m"
624
+ class="fav-off"
625
+ onclick="toggle_favorite('item','1ar7m');return false;"
626
+ title = "Favorite"
627
+ href="">Favorite<span></span>
628
+ </a>
629
+ </li>
630
+
631
+
632
+ </ul>
633
+
634
+ <div class="meta">
635
+ <span class="buy">
636
+
637
+ Download Artist:
638
+ <a rel="nofollow" href="/go/emusic_search/Earl Da Grey">eMusic (<strong>$10 FREE</strong>)</a> &bull;
639
+ <a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> &bull;
640
+ <a rel="nofollow" href="/go/itunes_search/Earl+Da+Grey">iTunes</a>
641
+ </span>
642
+ </div>
643
+
644
+ <div class="meta">
645
+
646
+
647
+ </div><!-- meta -->
648
+
649
+ <script type="text/javascript">
650
+ trackList[document.location.href].push({
651
+ type:'normal',
652
+ id:'1ar7m',
653
+ postid:'1457903',
654
+ posturl:'http://www.ilictronix.com/2011/04/not-my-cup-of-tea.html',
655
+ time:'297',
656
+ ts: '1303337141',
657
+ fav:'0',
658
+ key: 'dfd3c3f06d2fc5b5a4e0bf22f91982bc',
659
+ imeem_id:'',
660
+ artist:'Earl Da Grey',
661
+ song:'Kick It',
662
+ amazon:'',
663
+ itunes:'',
664
+ emusic:'',
665
+ exact_track_avail:'0'
666
+ });
667
+ </script>
668
+
669
+
670
+
671
+ <p>
672
+ <a
673
+ class="blog-fav-off"
674
+ title="See other tracks posted by this blog"
675
+ href="/blog/ilictronix/10471">
676
+ ilictronix</a>
677
+ &ldquo;Hey guys It's Nite again, and Today I'm going to just post a quick one on request of a Mr.&hellip;&rdquo;
678
+ <a
679
+ class="readpost"
680
+ target="_blank"
681
+ onmousedown="this.href='http://www.ilictronix.com/2011/04/not-my-cup-of-tea.html'; return false;"
682
+ href="http://www.ilictronix.com/2011/04/not-my-cup-of-tea.html"
683
+ title="Read this post: Not My Cup of Tea">
684
+ Posted 5 days ago&nbsp;&raquo;<span style="background:url(
685
+ http://static-ak.hypem.net/thumbs/3/1457903.png
686
+ );"></span></a>
687
+
688
+ </p>
689
+
690
+ <div class="act_info" style="display:none"></div>
691
+
692
+
693
+
694
+ <div class="track-info"> Loved yesterday
695
+ </div><!-- end track-info -->
696
+
697
+
698
+
699
+
700
+
701
+
702
+
703
+
704
+
705
+ </div><!-- section player -->
706
+
707
+
708
+
709
+ <div class="section-player same" >
710
+
711
+ <div class="same-post section-track" >
712
+ <h3 class="track_name">
713
+ <a class="artist" title="Earl Da Grey - search hype machine for this artist" href="/artist/Earl Da Grey">
714
+ Earl Da Grey </a> -
715
+ <a title="Heavenly Motion - go to page for this track" href="/item/1ar7k/Earl+Da+Grey+-+Heavenly+Motion">
716
+ Heavenly Motion </a>
717
+
718
+
719
+
720
+ </h3>
721
+
722
+
723
+
724
+ <ul class="tools">
725
+ <li class="playdiv">
726
+ <a title="Play" id="play_ctrl_1ar7k" class="play-ctrl play"
727
+ onclick="togglePlayByItemid('1ar7k');return false;"
728
+ href="">Play<span></span></a>
729
+ </li>
730
+ <li class="favdiv">
731
+
732
+ <a title="Favorited by 10 others"
733
+ class="favcount-off"
734
+ id="favcount_1ar7k"
735
+ onclick="toggle_item_activity('favorites','1ar7k',1);return false;"
736
+ href="">10</a>
737
+
738
+ <a id="fav_item_1ar7k"
739
+ class="fav-off"
740
+ onclick="toggle_favorite('item','1ar7k');return false;"
741
+ title = "Favorite"
742
+ href="">Favorite<span></span></a>
743
+
744
+ </li>
745
+
746
+ </ul>
747
+
748
+ <div class="meta">
749
+ <span class="buy">
750
+
751
+
752
+
753
+ Download Artist:
754
+ <a rel="nofollow" href="/go/emusic_search/Earl Da Grey">eMusic (<strong>$10 FREE</strong>)</a> &bull;
755
+ <a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> &bull;
756
+ <a rel="nofollow" href="/go/itunes_search/Earl+Da+Grey">iTunes</a>
757
+ </span>
758
+
759
+ </div> <!-- meta -->
760
+
761
+ <script type="text/javascript">
762
+ trackList[document.location.href].push({
763
+ type:'normal',
764
+ id:'1ar7k',
765
+ postid:'',
766
+ posturl:'',
767
+ time:'281',
768
+ ts: '1303061832',
769
+ fav:'0',
770
+ key: '0b9ccedbaacdb63c4c7d7344a149cde8',
771
+ artist:'Earl Da Grey',
772
+ song:'Heavenly Motion',
773
+ amazon:'',
774
+ itunes:'',
775
+ emusic:'',
776
+ exact_track_avail:'0'
777
+ });
778
+ </script>
779
+
780
+ <div class="act_info" style="display:none"></div>
781
+ <div class="act-info-loading" style="display:none">Loading...</div>
782
+
783
+ </div><!-- same-post -->
784
+
785
+ </div><!-- section-player -->
786
+
787
+
788
+ <div class="section-player same" >
789
+
790
+ <div class="same-post section-track" >
791
+ <h3 class="track_name">
792
+ <a class="artist" title="Earl Da Grey - search hype machine for this artist" href="/artist/Earl Da Grey">
793
+ Earl Da Grey </a> -
794
+ <a title="Millionaire Radio - go to page for this track" href="/item/1ar7g/Earl+Da+Grey+-+Millionaire+Radio">
795
+ Millionaire Radio </a>
796
+
797
+
798
+
799
+ </h3>
800
+
801
+
802
+
803
+ <ul class="tools">
804
+ <li class="playdiv">
805
+ <a title="Play" id="play_ctrl_1ar7g" class="play-ctrl play"
806
+ onclick="togglePlayByItemid('1ar7g');return false;"
807
+ href="">Play<span></span></a>
808
+ </li>
809
+ <li class="favdiv">
810
+
811
+ <a title="Favorited by 7 others"
812
+ class="favcount-off"
813
+ id="favcount_1ar7g"
814
+ onclick="toggle_item_activity('favorites','1ar7g',1);return false;"
815
+ href="">7</a>
816
+
817
+ <a id="fav_item_1ar7g"
818
+ class="fav-off"
819
+ onclick="toggle_favorite('item','1ar7g');return false;"
820
+ title = "Favorite"
821
+ href="">Favorite<span></span></a>
822
+
823
+ </li>
824
+
825
+ </ul>
826
+
827
+ <div class="meta">
828
+ <span class="buy">
829
+
830
+
831
+
832
+ Download Artist:
833
+ <a rel="nofollow" href="/go/emusic_search/Earl Da Grey">eMusic (<strong>$10 FREE</strong>)</a> &bull;
834
+ <a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> &bull;
835
+ <a rel="nofollow" href="/go/itunes_search/Earl+Da+Grey">iTunes</a>
836
+ </span>
837
+
838
+ </div> <!-- meta -->
839
+
840
+ <script type="text/javascript">
841
+ trackList[document.location.href].push({
842
+ type:'normal',
843
+ id:'1ar7g',
844
+ postid:'',
845
+ posturl:'',
846
+ time:'287',
847
+ ts: '1303061820',
848
+ fav:'0',
849
+ key: '8607e44740e600769d4e3fa2e8ded210',
850
+ artist:'Earl Da Grey',
851
+ song:'Millionaire Radio',
852
+ amazon:'',
853
+ itunes:'',
854
+ emusic:'',
855
+ exact_track_avail:'0'
856
+ });
857
+ </script>
858
+
859
+ <div class="act_info" style="display:none"></div>
860
+ <div class="act-info-loading" style="display:none">Loading...</div>
861
+
862
+ </div><!-- same-post -->
863
+
864
+ </div><!-- section-player -->
865
+
866
+
867
+ <div class="section-player same" >
868
+
869
+ <div class="same-post section-track" >
870
+ <h3 class="track_name">
871
+ <a class="artist" title="Earl Da Grey - search hype machine for this artist" href="/artist/Earl Da Grey">
872
+ Earl Da Grey </a> -
873
+ <a title="Taboo - go to page for this track" href="/item/1ar7h/Earl+Da+Grey+-+Taboo">
874
+ Taboo </a>
875
+
876
+
877
+
878
+ </h3>
879
+
880
+
881
+
882
+ <ul class="tools">
883
+ <li class="playdiv">
884
+ <a title="Play" id="play_ctrl_1ar7h" class="play-ctrl play"
885
+ onclick="togglePlayByItemid('1ar7h');return false;"
886
+ href="">Play<span></span></a>
887
+ </li>
888
+ <li class="favdiv">
889
+
890
+ <a title="Favorited by 8 others"
891
+ class="favcount-off"
892
+ id="favcount_1ar7h"
893
+ onclick="toggle_item_activity('favorites','1ar7h',1);return false;"
894
+ href="">8</a>
895
+
896
+ <a id="fav_item_1ar7h"
897
+ class="fav-off"
898
+ onclick="toggle_favorite('item','1ar7h');return false;"
899
+ title = "Favorite"
900
+ href="">Favorite<span></span></a>
901
+
902
+ </li>
903
+
904
+ </ul>
905
+
906
+ <div class="meta">
907
+ <span class="buy">
908
+
909
+
910
+
911
+ Download Artist:
912
+ <a rel="nofollow" href="/go/emusic_search/Earl Da Grey">eMusic (<strong>$10 FREE</strong>)</a> &bull;
913
+ <a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> &bull;
914
+ <a rel="nofollow" href="/go/itunes_search/Earl+Da+Grey">iTunes</a>
915
+ </span>
916
+
917
+ </div> <!-- meta -->
918
+
919
+ <script type="text/javascript">
920
+ trackList[document.location.href].push({
921
+ type:'normal',
922
+ id:'1ar7h',
923
+ postid:'',
924
+ posturl:'',
925
+ time:'325',
926
+ ts: '1303061825',
927
+ fav:'0',
928
+ key: '734faa71e9072f3e7fa6ead9909e93cf',
929
+ artist:'Earl Da Grey',
930
+ song:'Taboo',
931
+ amazon:'',
932
+ itunes:'',
933
+ emusic:'',
934
+ exact_track_avail:'0'
935
+ });
936
+ </script>
937
+
938
+ <div class="act_info" style="display:none"></div>
939
+ <div class="act-info-loading" style="display:none">Loading...</div>
940
+
941
+ </div><!-- same-post -->
942
+
943
+ </div><!-- section-player -->
944
+ </div><a class="notice" onclick="if(! document.getElementById('box') ) { Lightbox.init(); } Lightbox.showBoxByAJAX('/inc/lb_signup.php', 330, 510);return false;" href=""><span>Customize the Machine with the music YOU <em>Love</em> &bull; <strong>Sign Up Now &raquo;</strong></span></a>
945
+ <div class="section section-track section-odd">
946
+ <div class="section-player" >
947
+
948
+
949
+
950
+ <h3 class="track_name">
951
+ <a class="artist" title="James Varnish - search hype machine for this artist" href="/artist/James Varnish">
952
+ James Varnish</a>
953
+ -
954
+
955
+ <a title="Compare (Lifelike Remix) - go to page for this track" href="/item/1armr/James+Varnish+-+Compare+Lifelike+Remix+">
956
+ Compare (Lifelike Remix)
957
+ </a>
958
+
959
+
960
+
961
+
962
+
963
+ </h3>
964
+
965
+
966
+
967
+
968
+ <ul class="tools">
969
+ <li class="playdiv">
970
+ <a id="play_ctrl_1armr" class="play-ctrl play"
971
+ onclick="togglePlayByItemid('1armr');return false;"
972
+ title="Play"
973
+ href="">Play<span></span>
974
+ </a>
975
+ </li>
976
+
977
+ <li class="favdiv">
978
+
979
+
980
+ <a title="Favorited by 10 others" class="favcount-off"
981
+ id="favcount_1armr"
982
+ onclick="toggle_item_activity('favorites', '1armr', 1);return false;"
983
+ href="">10 </a>
984
+
985
+
986
+ <a id="fav_item_1armr"
987
+ class="fav-off"
988
+ onclick="toggle_favorite('item','1armr');return false;"
989
+ title = "Favorite"
990
+ href="">Favorite<span></span>
991
+ </a>
992
+ </li>
993
+
994
+
995
+ </ul>
996
+
997
+ <div class="meta">
998
+ <span class="buy">
999
+
1000
+ Download Artist:
1001
+ <a rel="nofollow" href="/go/emusic_search/James Varnish">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1002
+ <a rel="nofollow" href="/go/amazon_mp3_search/James+Varnish">Amazon</a> &bull;
1003
+ <a rel="nofollow" href="/go/itunes_search/James+Varnish">iTunes</a>
1004
+ </span>
1005
+ </div>
1006
+
1007
+ <div class="meta">
1008
+
1009
+
1010
+ </div><!-- meta -->
1011
+
1012
+ <script type="text/javascript">
1013
+ trackList[document.location.href].push({
1014
+ type:'normal',
1015
+ id:'1armr',
1016
+ postid:'1458305',
1017
+ posturl:'http://www.vacayvitamins.com/electro/together-boston-2011-music-arts-technology/',
1018
+ time:'331',
1019
+ ts: '1303336977',
1020
+ fav:'0',
1021
+ key: 'a4fe6cc8ce6b210def2191cc9b705ed3',
1022
+ imeem_id:'',
1023
+ artist:'James Varnish',
1024
+ song:'Compare (Lifelike Remix)',
1025
+ amazon:'',
1026
+ itunes:'',
1027
+ emusic:'',
1028
+ exact_track_avail:'0'
1029
+ });
1030
+ </script>
1031
+
1032
+
1033
+
1034
+ <p>
1035
+ <a
1036
+ class="blog-fav-off"
1037
+ title="See other tracks posted by this blog"
1038
+ href="/blog/vacay+wave/12526">
1039
+ Vacay Wave</a>
1040
+ &ldquo;To all of my fellow Boston Vacayers, if you haven’t already, make sure you clear your schedule for the week&hellip;&rdquo;
1041
+ <a
1042
+ class="readpost"
1043
+ target="_blank"
1044
+ onmousedown="this.href='http://www.vacayvitamins.com/electro/together-boston-2011-music-arts-technology/'; return false;"
1045
+ href="http://www.vacayvitamins.com/electro/together-boston-2011-music-arts-technology/"
1046
+ title="Read this post: Together Boston 2011 (Music, Arts&hellip;">
1047
+ Posted 4 days ago&nbsp;&raquo;<span style="background:url(
1048
+ http://static-ak.hypem.net/thumbs/5/1458305.png
1049
+ );"></span></a>
1050
+
1051
+ </p>
1052
+
1053
+ <div class="act_info" style="display:none"></div>
1054
+
1055
+
1056
+
1057
+ <div class="track-info"> Loved yesterday
1058
+ </div><!-- end track-info -->
1059
+
1060
+
1061
+
1062
+
1063
+
1064
+
1065
+
1066
+
1067
+
1068
+ </div><!-- section player -->
1069
+
1070
+ </div> <div class="section section-track section-even">
1071
+ <div class="section-player" >
1072
+
1073
+
1074
+
1075
+ <h3 class="track_name">
1076
+ <a class="artist" title="Jamaica - search hype machine for this artist" href="/artist/Jamaica">
1077
+ Jamaica</a>
1078
+ -
1079
+
1080
+ <a title="I Think I Like U 2 (Breakbot Remix) - go to page for this track" href="/item/1161m/Jamaica+-+I+Think+I+Like+U+2+Breakbot+Remix+">
1081
+ I Think I Like U 2 (Breakbot Remix)
1082
+ </a>
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+ </h3>
1089
+
1090
+
1091
+
1092
+
1093
+ <ul class="tools">
1094
+ <li class="playdiv">
1095
+ <a id="play_ctrl_1161m" class="play-ctrl play"
1096
+ onclick="togglePlayByItemid('1161m');return false;"
1097
+ title="Play"
1098
+ href="">Play<span></span>
1099
+ </a>
1100
+ </li>
1101
+
1102
+ <li class="favdiv">
1103
+
1104
+
1105
+ <a title="Favorited by 2377 others" class="favcount-off"
1106
+ id="favcount_1161m"
1107
+ onclick="toggle_item_activity('favorites', '1161m', 1);return false;"
1108
+ href="">2377 </a>
1109
+
1110
+
1111
+ <a id="fav_item_1161m"
1112
+ class="fav-off"
1113
+ onclick="toggle_favorite('item','1161m');return false;"
1114
+ title = "Favorite"
1115
+ href="">Favorite<span></span>
1116
+ </a>
1117
+ </li>
1118
+
1119
+
1120
+ </ul>
1121
+
1122
+ <div class="meta">
1123
+ <span class="buy">
1124
+ <a href="" onclick="toggle_item_activity('reposts', '1161m', 1); return false;">
1125
+ Posted by
1126
+ 30 blogs</a> &bull;
1127
+ </a>
1128
+
1129
+ Download Artist:
1130
+ <a rel="nofollow" href="/go/emusic_search/Jamaica">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1131
+ <a rel="nofollow" href="/go/amazon_mp3_search/Jamaica">Amazon</a> &bull;
1132
+ <a rel="nofollow" href="/go/itunes_search/Jamaica">iTunes</a>
1133
+ </span>
1134
+ </div>
1135
+
1136
+ <div class="meta">
1137
+
1138
+
1139
+ </div><!-- meta -->
1140
+
1141
+ <script type="text/javascript">
1142
+ trackList[document.location.href].push({
1143
+ type:'normal',
1144
+ id:'1161m',
1145
+ postid:'1458346',
1146
+ posturl:'http://allthingsgomusic.com/interview-jamaica',
1147
+ time:'193',
1148
+ ts: '1303336973',
1149
+ fav:'0',
1150
+ key: 'baf3e68ccf6ae0ccc7be7f0ef1554969',
1151
+ imeem_id:'',
1152
+ artist:'Jamaica',
1153
+ song:'I Think I Like U 2 (Breakbot Remix)',
1154
+ amazon:'',
1155
+ itunes:'',
1156
+ emusic:'',
1157
+ exact_track_avail:'0'
1158
+ });
1159
+ </script>
1160
+
1161
+
1162
+
1163
+ <p>
1164
+ <a
1165
+ class="blog-fav-off"
1166
+ title="See other tracks posted by this blog"
1167
+ href="/blog/all+things+go/552">
1168
+ All Things Go</a>
1169
+ &ldquo;ATG had the opportunity to sit down with Jamaica’s Antoine Hilaire (guitar/vox) and Florent Lyonnet (bass/vox) earlier this week to&hellip;&rdquo;
1170
+ <a
1171
+ class="readpost"
1172
+ target="_blank"
1173
+ onmousedown="this.href='http://allthingsgomusic.com/interview-jamaica'; return false;"
1174
+ href="http://allthingsgomusic.com/interview-jamaica"
1175
+ title="Read this post: Interview: Jamaica">
1176
+ Posted 4 days ago&nbsp;&raquo;<span style="background:url(
1177
+ http://static-ak.hypem.net/thumbs/6/1458346.png
1178
+ );"></span></a>
1179
+
1180
+ </p>
1181
+
1182
+ <div class="act_info" style="display:none"></div>
1183
+
1184
+
1185
+
1186
+ <div class="track-info"> Loved yesterday
1187
+ </div><!-- end track-info -->
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+
1197
+ </div><!-- section player -->
1198
+
1199
+ </div> <div class="section section-track section-odd">
1200
+ <div class="section-player" >
1201
+
1202
+
1203
+
1204
+ <h3 class="track_name">
1205
+ <a class="artist" title="Radiohead - search hype machine for this artist" href="/artist/Radiohead">
1206
+ Radiohead</a>
1207
+ -
1208
+
1209
+ <a title="Supercollider - go to page for this track" href="/item/1aqn0/Radiohead+-+Supercollider">
1210
+ Supercollider
1211
+ </a>
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+ </h3>
1218
+
1219
+
1220
+
1221
+
1222
+ <ul class="tools">
1223
+ <li class="playdiv">
1224
+ <a id="play_ctrl_1aqn0" class="play-ctrl play"
1225
+ onclick="togglePlayByItemid('1aqn0');return false;"
1226
+ title="Play"
1227
+ href="">Play<span></span>
1228
+ </a>
1229
+ </li>
1230
+
1231
+ <li class="favdiv">
1232
+
1233
+
1234
+ <a title="Favorited by 1117 others" class="favcount-off"
1235
+ id="favcount_1aqn0"
1236
+ onclick="toggle_item_activity('favorites', '1aqn0', 1);return false;"
1237
+ href="">1117 </a>
1238
+
1239
+
1240
+ <a id="fav_item_1aqn0"
1241
+ class="fav-off"
1242
+ onclick="toggle_favorite('item','1aqn0');return false;"
1243
+ title = "Favorite"
1244
+ href="">Favorite<span></span>
1245
+ </a>
1246
+ </li>
1247
+
1248
+
1249
+ </ul>
1250
+
1251
+ <div class="meta">
1252
+ <span class="buy">
1253
+ <a href="" onclick="toggle_item_activity('reposts', '1aqn0', 1); return false;">
1254
+ Posted by
1255
+ 9 blogs</a> &bull;
1256
+ </a>
1257
+
1258
+ Download Artist:
1259
+ <a rel="nofollow" href="/go/emusic_search/Radiohead">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1260
+ <a rel="nofollow" href="/go/amazon_mp3_search/Radiohead">Amazon</a> &bull;
1261
+ <a rel="nofollow" href="/go/itunes_search/Radiohead">iTunes</a>
1262
+ </span>
1263
+ </div>
1264
+
1265
+ <div class="meta">
1266
+
1267
+
1268
+ </div><!-- meta -->
1269
+
1270
+ <script type="text/javascript">
1271
+ trackList[document.location.href].push({
1272
+ type:'normal',
1273
+ id:'1aqn0',
1274
+ postid:'1461900',
1275
+ posturl:'http://tympanogram.com/music/stream-radiohead-supercollider/',
1276
+ time:'422',
1277
+ ts: '1303336966',
1278
+ fav:'0',
1279
+ key: 'db5724fa6e4c78dcfa49abed5320142a',
1280
+ imeem_id:'',
1281
+ artist:'Radiohead',
1282
+ song:'Supercollider',
1283
+ amazon:'',
1284
+ itunes:'',
1285
+ emusic:'',
1286
+ exact_track_avail:'0'
1287
+ });
1288
+ </script>
1289
+
1290
+
1291
+
1292
+ <p>
1293
+ <a
1294
+ class="blog-fav-off"
1295
+ title="See other tracks posted by this blog"
1296
+ href="/blog/tympanogram/10177">
1297
+ Tympanogram</a>
1298
+ &ldquo;At Tympanogram, most of the acts covered are generally fairly obscure, often even by “indie” standards. I feel no guilt&hellip;&rdquo;
1299
+ <a
1300
+ class="readpost"
1301
+ target="_blank"
1302
+ onmousedown="this.href='http://tympanogram.com/music/stream-radiohead-supercollider/'; return false;"
1303
+ href="http://tympanogram.com/music/stream-radiohead-supercollider/"
1304
+ title="Read this post: [stream] Radiohead // Supercollid&hellip;">
1305
+ Posted 14 hrs ago&nbsp;&raquo;<span style="background:url(
1306
+ http://static-ak.hypem.net/thumbs/0/1461900.png
1307
+ );"></span></a>
1308
+
1309
+ </p>
1310
+
1311
+ <div class="act_info" style="display:none"></div>
1312
+
1313
+
1314
+
1315
+ <div class="track-info"> Loved yesterday
1316
+ </div><!-- end track-info -->
1317
+
1318
+
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+
1325
+
1326
+ </div><!-- section player -->
1327
+
1328
+ </div> <div class="section section-track section-even">
1329
+ <div class="section-player" >
1330
+
1331
+
1332
+
1333
+ <h3 class="track_name">
1334
+ <a class="artist" title="Dillon Francis - search hype machine for this artist" href="/artist/Dillon Francis">
1335
+ Dillon Francis</a>
1336
+ -
1337
+
1338
+ <a title="Beautician - go to page for this track" href="/item/1ag12/Dillon+Francis+-+Beautician">
1339
+ Beautician
1340
+ </a>
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+ </h3>
1347
+
1348
+
1349
+
1350
+
1351
+ <ul class="tools">
1352
+ <li class="playdiv">
1353
+ <a id="play_ctrl_1ag12" class="play-ctrl play"
1354
+ onclick="togglePlayByItemid('1ag12');return false;"
1355
+ title="Play"
1356
+ href="">Play<span></span>
1357
+ </a>
1358
+ </li>
1359
+
1360
+ <li class="favdiv">
1361
+
1362
+
1363
+ <a title="Favorited by 205 others" class="favcount-off"
1364
+ id="favcount_1ag12"
1365
+ onclick="toggle_item_activity('favorites', '1ag12', 1);return false;"
1366
+ href="">205 </a>
1367
+
1368
+
1369
+ <a id="fav_item_1ag12"
1370
+ class="fav-off"
1371
+ onclick="toggle_favorite('item','1ag12');return false;"
1372
+ title = "Favorite"
1373
+ href="">Favorite<span></span>
1374
+ </a>
1375
+ </li>
1376
+
1377
+
1378
+ </ul>
1379
+
1380
+ <div class="meta">
1381
+ <span class="buy">
1382
+ <a href="" onclick="toggle_item_activity('reposts', '1ag12', 1); return false;">
1383
+ Posted by
1384
+ 6 blogs</a> &bull;
1385
+ </a>
1386
+
1387
+ Download Artist:
1388
+ <a rel="nofollow" href="/go/emusic_search/Dillon Francis">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1389
+ <a rel="nofollow" href="/go/amazon_mp3_search/Dillon+Francis">Amazon</a> &bull;
1390
+ <a rel="nofollow" href="/go/itunes_search/Dillon+Francis">iTunes</a>
1391
+ </span>
1392
+ </div>
1393
+
1394
+ <div class="meta">
1395
+
1396
+
1397
+ </div><!-- meta -->
1398
+
1399
+ <script type="text/javascript">
1400
+ trackList[document.location.href].push({
1401
+ type:'normal',
1402
+ id:'1ag12',
1403
+ postid:'1461131',
1404
+ posturl:'http://www.tiltmag.com/2011/04/la-dubstep-takeover-ooah-love-i-need.html',
1405
+ time:'326',
1406
+ ts: '1303336963',
1407
+ fav:'0',
1408
+ key: 'd6e55add48919d72c08bb11fc81d998d',
1409
+ imeem_id:'',
1410
+ artist:'Dillon Francis',
1411
+ song:'Beautician',
1412
+ amazon:'',
1413
+ itunes:'',
1414
+ emusic:'',
1415
+ exact_track_avail:'0'
1416
+ });
1417
+ </script>
1418
+
1419
+
1420
+
1421
+ <p>
1422
+ <a
1423
+ class="blog-fav-off"
1424
+ title="See other tracks posted by this blog"
1425
+ href="/blog/tilt/12387">
1426
+ TILT</a>
1427
+ &ldquo;Glitch Mob's OOAH has delivered another big chun for the Dubstep community. This is the the kind of heat coming&hellip;&rdquo;
1428
+ <a
1429
+ class="readpost"
1430
+ target="_blank"
1431
+ onmousedown="this.href='http://www.tiltmag.com/2011/04/la-dubstep-takeover-ooah-love-i-need.html'; return false;"
1432
+ href="http://www.tiltmag.com/2011/04/la-dubstep-takeover-ooah-love-i-need.html"
1433
+ title="Read this post: L.A. DUBSTEP TAKEOVER! OOAH - The&hellip;">
1434
+ Posted yesterday&nbsp;&raquo;<span style="background:url(
1435
+ http://static-ak.hypem.net/thumbs/1/1461131.png
1436
+ );"></span></a>
1437
+
1438
+ </p>
1439
+
1440
+ <div class="act_info" style="display:none"></div>
1441
+
1442
+
1443
+
1444
+ <div class="track-info"> Loved yesterday
1445
+ </div><!-- end track-info -->
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+ </div><!-- section player -->
1456
+
1457
+ </div> <div class="section section-track section-odd">
1458
+ <div class="section-player" >
1459
+
1460
+
1461
+
1462
+ <h3 class="track_name">
1463
+ <a class="artist" title="The Human League - search hype machine for this artist" href="/artist/The Human League">
1464
+ The Human League</a>
1465
+ -
1466
+
1467
+ <a title="Never Let Me Go (Aeroplane Remix Edit) - go to page for this track" href="/item/19men/The+Human+League+-+Never+Let+Me+Go+Aeroplane+Remix+Edit+">
1468
+ Never Let Me Go (Aeroplane Remix Edit)
1469
+ </a>
1470
+
1471
+
1472
+
1473
+
1474
+
1475
+ </h3>
1476
+
1477
+
1478
+
1479
+
1480
+ <ul class="tools">
1481
+ <li class="playdiv">
1482
+ <a id="play_ctrl_19men" class="play-ctrl play"
1483
+ onclick="togglePlayByItemid('19men');return false;"
1484
+ title="Play"
1485
+ href="">Play<span></span>
1486
+ </a>
1487
+ </li>
1488
+
1489
+ <li class="favdiv">
1490
+
1491
+
1492
+ <a title="Favorited by 95 others" class="favcount-off"
1493
+ id="favcount_19men"
1494
+ onclick="toggle_item_activity('favorites', '19men', 1);return false;"
1495
+ href="">95 </a>
1496
+
1497
+
1498
+ <a id="fav_item_19men"
1499
+ class="fav-off"
1500
+ onclick="toggle_favorite('item','19men');return false;"
1501
+ title = "Favorite"
1502
+ href="">Favorite<span></span>
1503
+ </a>
1504
+ </li>
1505
+
1506
+
1507
+ </ul>
1508
+
1509
+ <div class="meta">
1510
+ <span class="buy">
1511
+ <a href="" onclick="toggle_item_activity('reposts', '19men', 1); return false;">
1512
+ Posted by
1513
+ 3 blogs</a> &bull;
1514
+ </a>
1515
+
1516
+ Download Artist:
1517
+ <a rel="nofollow" href="/go/emusic_search/The Human League">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1518
+ <a rel="nofollow" href="/go/amazon_mp3_search/The+Human+League">Amazon</a> &bull;
1519
+ <a rel="nofollow" href="/go/itunes_search/The+Human+League">iTunes</a>
1520
+ </span>
1521
+ </div>
1522
+
1523
+ <div class="meta">
1524
+
1525
+
1526
+ </div><!-- meta -->
1527
+
1528
+ <script type="text/javascript">
1529
+ trackList[document.location.href].push({
1530
+ type:'normal',
1531
+ id:'19men',
1532
+ postid:'1458840',
1533
+ posturl:'http://www.vacayvitamins.com/electro/mix-monday-alex-metric-bbc-radio-1-essential-mix/',
1534
+ time:'467',
1535
+ ts: '1303336882',
1536
+ fav:'0',
1537
+ key: 'd53d93bd145589d4a9bd649cdd8179da',
1538
+ imeem_id:'',
1539
+ artist:'The Human League',
1540
+ song:'Never Let Me Go (Aeroplane Remix Edit)',
1541
+ amazon:'',
1542
+ itunes:'',
1543
+ emusic:'',
1544
+ exact_track_avail:'0'
1545
+ });
1546
+ </script>
1547
+
1548
+
1549
+
1550
+ <p>
1551
+ <a
1552
+ class="blog-fav-off"
1553
+ title="See other tracks posted by this blog"
1554
+ href="/blog/vacay+wave/12526">
1555
+ Vacay Wave</a>
1556
+ &ldquo;Over the weekend, Alex Metric, ex BBC Radio 1 DJ, super producer, musician, became the latest artist to pump out&hellip;&rdquo;
1557
+ <a
1558
+ class="readpost"
1559
+ target="_blank"
1560
+ onmousedown="this.href='http://www.vacayvitamins.com/electro/mix-monday-alex-metric-bbc-radio-1-essential-mix/'; return false;"
1561
+ href="http://www.vacayvitamins.com/electro/mix-monday-alex-metric-bbc-radio-1-essential-mix/"
1562
+ title="Read this post: Mix Monday – Alex Metric BBC Ra&hellip;">
1563
+ Posted 3 days ago&nbsp;&raquo;<span style="background:url(
1564
+ http://static-ak.hypem.net/thumbs/0/1458840.png
1565
+ );"></span></a>
1566
+
1567
+ </p>
1568
+
1569
+ <div class="act_info" style="display:none"></div>
1570
+
1571
+
1572
+
1573
+ <div class="track-info"> Loved yesterday
1574
+ </div><!-- end track-info -->
1575
+
1576
+
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+
1584
+ </div><!-- section player -->
1585
+
1586
+
1587
+
1588
+ <div class="section-player same" >
1589
+
1590
+ <div class="same-post section-track" >
1591
+ <h3 class="track_name">
1592
+ <a class="artist" title="His Majesty Andre - search hype machine for this artist" href="/artist/His Majesty Andre">
1593
+ His Majesty Andre </a> -
1594
+ <a title="Clubs - go to page for this track" href="/item/1as5w/His+Majesty+Andre+-+Clubs">
1595
+ Clubs </a>
1596
+
1597
+
1598
+
1599
+ </h3>
1600
+
1601
+
1602
+
1603
+ <ul class="tools">
1604
+ <li class="playdiv">
1605
+ <a title="Play" id="play_ctrl_1as5w" class="play-ctrl play"
1606
+ onclick="togglePlayByItemid('1as5w');return false;"
1607
+ href="">Play<span></span></a>
1608
+ </li>
1609
+ <li class="favdiv">
1610
+
1611
+ <a title="Favorited by 31 others"
1612
+ class="favcount-off"
1613
+ id="favcount_1as5w"
1614
+ onclick="toggle_item_activity('favorites','1as5w',1);return false;"
1615
+ href="">31</a>
1616
+
1617
+ <a id="fav_item_1as5w"
1618
+ class="fav-off"
1619
+ onclick="toggle_favorite('item','1as5w');return false;"
1620
+ title = "Favorite"
1621
+ href="">Favorite<span></span></a>
1622
+
1623
+ </li>
1624
+
1625
+ </ul>
1626
+
1627
+ <div class="meta">
1628
+ <span class="buy">
1629
+
1630
+
1631
+
1632
+ Download Artist:
1633
+ <a rel="nofollow" href="/go/emusic_search/His Majesty Andre">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1634
+ <a rel="nofollow" href="/go/amazon_mp3_search/His+Majesty+Andre">Amazon</a> &bull;
1635
+ <a rel="nofollow" href="/go/itunes_search/His+Majesty+Andre">iTunes</a>
1636
+ </span>
1637
+
1638
+ </div> <!-- meta -->
1639
+
1640
+ <script type="text/javascript">
1641
+ trackList[document.location.href].push({
1642
+ type:'normal',
1643
+ id:'1as5w',
1644
+ postid:'',
1645
+ posturl:'',
1646
+ time:'225',
1647
+ ts: '1303156445',
1648
+ fav:'0',
1649
+ key: 'bb17f53d899643c92020f7f1797b36a5',
1650
+ artist:'His Majesty Andre',
1651
+ song:'Clubs',
1652
+ amazon:'',
1653
+ itunes:'',
1654
+ emusic:'',
1655
+ exact_track_avail:'0'
1656
+ });
1657
+ </script>
1658
+
1659
+ <div class="act_info" style="display:none"></div>
1660
+ <div class="act-info-loading" style="display:none">Loading...</div>
1661
+
1662
+ </div><!-- same-post -->
1663
+
1664
+ </div><!-- section-player -->
1665
+
1666
+
1667
+ <div class="section-player same" >
1668
+
1669
+ <div class="same-post section-track" >
1670
+ <h3 class="track_name">
1671
+ <a class="artist" title="Cassian - search hype machine for this artist" href="/artist/Cassian">
1672
+ Cassian </a> -
1673
+ <a title="Getting High (Original Mix) - go to page for this track" href="/item/1as5v/Cassian+-+Getting+High+Original+Mix+">
1674
+ Getting High (Original Mix) </a>
1675
+
1676
+
1677
+
1678
+ </h3>
1679
+
1680
+
1681
+
1682
+ <ul class="tools">
1683
+ <li class="playdiv">
1684
+ <a title="Play" id="play_ctrl_1as5v" class="play-ctrl play"
1685
+ onclick="togglePlayByItemid('1as5v');return false;"
1686
+ href="">Play<span></span></a>
1687
+ </li>
1688
+ <li class="favdiv">
1689
+
1690
+ <a title="Favorited by 38 others"
1691
+ class="favcount-off"
1692
+ id="favcount_1as5v"
1693
+ onclick="toggle_item_activity('favorites','1as5v',1);return false;"
1694
+ href="">38</a>
1695
+
1696
+ <a id="fav_item_1as5v"
1697
+ class="fav-off"
1698
+ onclick="toggle_favorite('item','1as5v');return false;"
1699
+ title = "Favorite"
1700
+ href="">Favorite<span></span></a>
1701
+
1702
+ </li>
1703
+
1704
+ </ul>
1705
+
1706
+ <div class="meta">
1707
+ <span class="buy">
1708
+
1709
+
1710
+
1711
+ Download Artist:
1712
+ <a rel="nofollow" href="/go/emusic_search/Cassian">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1713
+ <a rel="nofollow" href="/go/amazon_mp3_search/Cassian">Amazon</a> &bull;
1714
+ <a rel="nofollow" href="/go/itunes_search/Cassian">iTunes</a>
1715
+ </span>
1716
+
1717
+ </div> <!-- meta -->
1718
+
1719
+ <script type="text/javascript">
1720
+ trackList[document.location.href].push({
1721
+ type:'normal',
1722
+ id:'1as5v',
1723
+ postid:'',
1724
+ posturl:'',
1725
+ time:'325',
1726
+ ts: '1303156435',
1727
+ fav:'0',
1728
+ key: '2182d0f18240433b372d8febd08b8dd3',
1729
+ artist:'Cassian',
1730
+ song:'Getting High (Original Mix)',
1731
+ amazon:'',
1732
+ itunes:'',
1733
+ emusic:'',
1734
+ exact_track_avail:'0'
1735
+ });
1736
+ </script>
1737
+
1738
+ <div class="act_info" style="display:none"></div>
1739
+ <div class="act-info-loading" style="display:none">Loading...</div>
1740
+
1741
+ </div><!-- same-post -->
1742
+
1743
+ </div><!-- section-player -->
1744
+
1745
+
1746
+ <div class="section-player same" >
1747
+
1748
+ <div class="same-post section-track" >
1749
+ <h3 class="track_name">
1750
+ <a class="artist" title="Les Rythmes Digitales - search hype machine for this artist" href="/artist/Les Rythmes Digitales">
1751
+ Les Rythmes Digitales </a> -
1752
+ <a title="About Funk - go to page for this track" href="/item/1as5z/Les+Rythmes+Digitales+-+About+Funk">
1753
+ About Funk </a>
1754
+
1755
+
1756
+
1757
+ </h3>
1758
+
1759
+
1760
+
1761
+ <ul class="tools">
1762
+ <li class="playdiv">
1763
+ <a title="Play" id="play_ctrl_1as5z" class="play-ctrl play"
1764
+ onclick="togglePlayByItemid('1as5z');return false;"
1765
+ href="">Play<span></span></a>
1766
+ </li>
1767
+ <li class="favdiv">
1768
+
1769
+ <a title="Favorited by 33 others"
1770
+ class="favcount-off"
1771
+ id="favcount_1as5z"
1772
+ onclick="toggle_item_activity('favorites','1as5z',1);return false;"
1773
+ href="">33</a>
1774
+
1775
+ <a id="fav_item_1as5z"
1776
+ class="fav-off"
1777
+ onclick="toggle_favorite('item','1as5z');return false;"
1778
+ title = "Favorite"
1779
+ href="">Favorite<span></span></a>
1780
+
1781
+ </li>
1782
+
1783
+ </ul>
1784
+
1785
+ <div class="meta">
1786
+ <span class="buy">
1787
+
1788
+
1789
+
1790
+ Download Artist:
1791
+ <a rel="nofollow" href="/go/emusic_search/Les Rythmes Digitales">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1792
+ <a rel="nofollow" href="/go/amazon_mp3_search/Les+Rythmes+Digitales">Amazon</a> &bull;
1793
+ <a rel="nofollow" href="/go/itunes_search/Les+Rythmes+Digitales">iTunes</a>
1794
+ </span>
1795
+
1796
+ </div> <!-- meta -->
1797
+
1798
+ <script type="text/javascript">
1799
+ trackList[document.location.href].push({
1800
+ type:'normal',
1801
+ id:'1as5z',
1802
+ postid:'',
1803
+ posturl:'',
1804
+ time:'342',
1805
+ ts: '1303156476',
1806
+ fav:'0',
1807
+ key: '3b8198e97bda14db73254b6febbdf42d',
1808
+ artist:'Les Rythmes Digitales',
1809
+ song:'About Funk',
1810
+ amazon:'',
1811
+ itunes:'',
1812
+ emusic:'',
1813
+ exact_track_avail:'0'
1814
+ });
1815
+ </script>
1816
+
1817
+ <div class="act_info" style="display:none"></div>
1818
+ <div class="act-info-loading" style="display:none">Loading...</div>
1819
+
1820
+ </div><!-- same-post -->
1821
+
1822
+ </div><!-- section-player -->
1823
+
1824
+
1825
+ <div class="section-player same" >
1826
+
1827
+ <div class="same-post section-track" >
1828
+ <h3 class="track_name">
1829
+ <a class="artist" title="BeatauCue - search hype machine for this artist" href="/artist/BeatauCue">
1830
+ BeatauCue </a> -
1831
+ <a title="Behold - go to page for this track" href="/item/1873c/BeatauCue+-+Behold">
1832
+ Behold </a>
1833
+
1834
+
1835
+
1836
+ </h3>
1837
+
1838
+
1839
+
1840
+ <ul class="tools">
1841
+ <li class="playdiv">
1842
+ <a title="Play" id="play_ctrl_1873c" class="play-ctrl play"
1843
+ onclick="togglePlayByItemid('1873c');return false;"
1844
+ href="">Play<span></span></a>
1845
+ </li>
1846
+ <li class="favdiv">
1847
+
1848
+ <a title="Favorited by 109 others"
1849
+ class="favcount-off"
1850
+ id="favcount_1873c"
1851
+ onclick="toggle_item_activity('favorites','1873c',1);return false;"
1852
+ href="">109</a>
1853
+
1854
+ <a id="fav_item_1873c"
1855
+ class="fav-off"
1856
+ onclick="toggle_favorite('item','1873c');return false;"
1857
+ title = "Favorite"
1858
+ href="">Favorite<span></span></a>
1859
+
1860
+ </li>
1861
+
1862
+ </ul>
1863
+
1864
+ <div class="meta">
1865
+ <span class="buy">
1866
+
1867
+ <a
1868
+ href=""
1869
+ onclick="toggle_item_activity('reposts', '1873c', 1); return false;"
1870
+ class="posted-by-others">
1871
+ Posted by
1872
+ 4 blogs</a>
1873
+ </a>
1874
+
1875
+
1876
+ Download Artist:
1877
+ <a rel="nofollow" href="/go/emusic_search/BeatauCue">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1878
+ <a rel="nofollow" href="/go/amazon_mp3_search/BeatauCue">Amazon</a> &bull;
1879
+ <a rel="nofollow" href="/go/itunes_search/BeatauCue">iTunes</a>
1880
+ </span>
1881
+
1882
+ </div> <!-- meta -->
1883
+
1884
+ <script type="text/javascript">
1885
+ trackList[document.location.href].push({
1886
+ type:'normal',
1887
+ id:'1873c',
1888
+ postid:'',
1889
+ posturl:'',
1890
+ time:'230',
1891
+ ts: '1303156326',
1892
+ fav:'0',
1893
+ key: '1113b0b95c8ea988661b8bbbf5260d45',
1894
+ artist:'BeatauCue',
1895
+ song:'Behold',
1896
+ amazon:'',
1897
+ itunes:'',
1898
+ emusic:'',
1899
+ exact_track_avail:'0'
1900
+ });
1901
+ </script>
1902
+
1903
+ <div class="act_info" style="display:none"></div>
1904
+ <div class="act-info-loading" style="display:none">Loading...</div>
1905
+
1906
+ </div><!-- same-post -->
1907
+
1908
+ </div><!-- section-player -->
1909
+ </div><a class="notice" onclick="if(! document.getElementById('box') ) { Lightbox.init(); } Lightbox.showBoxByAJAX('/inc/lb_signup.php', 330, 510);return false;" href=""><span>Customize the Machine with the music YOU <em>Love</em> &bull; <strong>Sign Up Now &raquo;</strong></span></a>
1910
+ <div class="section section-track section-even">
1911
+ <div class="section-player" >
1912
+
1913
+
1914
+
1915
+ <h3 class="track_name">
1916
+ <a class="artist" title="Toddla T - search hype machine for this artist" href="/artist/Toddla T">
1917
+ Toddla T</a>
1918
+ -
1919
+
1920
+ <a title="Take It Back (Dillon Francis Remix) - go to page for this track" href="/item/1ancc/Toddla+T+-+Take+It+Back+Dillon+Francis+Remix+">
1921
+ Take It Back (Dillon Francis Remix)
1922
+ </a>
1923
+
1924
+
1925
+
1926
+
1927
+
1928
+ </h3>
1929
+
1930
+
1931
+
1932
+
1933
+ <ul class="tools">
1934
+ <li class="playdiv">
1935
+ <a id="play_ctrl_1ancc" class="play-ctrl play"
1936
+ onclick="togglePlayByItemid('1ancc');return false;"
1937
+ title="Play"
1938
+ href="">Play<span></span>
1939
+ </a>
1940
+ </li>
1941
+
1942
+ <li class="favdiv">
1943
+
1944
+
1945
+ <a title="Favorited by 191 others" class="favcount-off"
1946
+ id="favcount_1ancc"
1947
+ onclick="toggle_item_activity('favorites', '1ancc', 1);return false;"
1948
+ href="">191 </a>
1949
+
1950
+
1951
+ <a id="fav_item_1ancc"
1952
+ class="fav-off"
1953
+ onclick="toggle_favorite('item','1ancc');return false;"
1954
+ title = "Favorite"
1955
+ href="">Favorite<span></span>
1956
+ </a>
1957
+ </li>
1958
+
1959
+
1960
+ </ul>
1961
+
1962
+ <div class="meta">
1963
+ <span class="buy">
1964
+ <a href="" onclick="toggle_item_activity('reposts', '1ancc', 1); return false;">
1965
+ Posted by
1966
+ 8 blogs</a> &bull;
1967
+ </a>
1968
+
1969
+ Download Artist:
1970
+ <a rel="nofollow" href="/go/emusic_search/Toddla T">eMusic (<strong>$10 FREE</strong>)</a> &bull;
1971
+ <a rel="nofollow" href="/go/amazon_mp3_search/Toddla+T">Amazon</a> &bull;
1972
+ <a rel="nofollow" href="/go/itunes_search/Toddla+T">iTunes</a>
1973
+ </span>
1974
+ </div>
1975
+
1976
+ <div class="meta">
1977
+
1978
+
1979
+ </div><!-- meta -->
1980
+
1981
+ <script type="text/javascript">
1982
+ trackList[document.location.href].push({
1983
+ type:'normal',
1984
+ id:'1ancc',
1985
+ postid:'1461244',
1986
+ posturl:'http://schitzpopinov.com/blog/words-with-doorly',
1987
+ time:'293',
1988
+ ts: '1303336448',
1989
+ fav:'0',
1990
+ key: 'ef8efa46115c08cef60b7241c7d82c7c',
1991
+ imeem_id:'',
1992
+ artist:'Toddla T',
1993
+ song:'Take It Back (Dillon Francis Remix)',
1994
+ amazon:'',
1995
+ itunes:'',
1996
+ emusic:'',
1997
+ exact_track_avail:'0'
1998
+ });
1999
+ </script>
2000
+
2001
+
2002
+
2003
+ <p>
2004
+ <a
2005
+ class="blog-fav-off"
2006
+ title="See other tracks posted by this blog"
2007
+ href="/blog/schitz+popinov/4542">
2008
+ Schitz Popinov</a>
2009
+ &ldquo;This past Sunday Vancouver & Blueprint hosted to two of the biggest heavy weights in dubstep, and us Schitheadz managed&hellip;&rdquo;
2010
+ <a
2011
+ class="readpost"
2012
+ target="_blank"
2013
+ onmousedown="this.href='http://schitzpopinov.com/blog/words-with-doorly'; return false;"
2014
+ href="http://schitzpopinov.com/blog/words-with-doorly"
2015
+ title="Read this post: Words with Doorly">
2016
+ Posted yesterday&nbsp;&raquo;<span style="background:url(
2017
+ http://static-ak.hypem.net/thumbs/4/1461244.png
2018
+ );"></span></a>
2019
+
2020
+ </p>
2021
+
2022
+ <div class="act_info" style="display:none"></div>
2023
+
2024
+
2025
+
2026
+ <div class="track-info"> Loved yesterday
2027
+ </div><!-- end track-info -->
2028
+
2029
+
2030
+
2031
+
2032
+
2033
+
2034
+
2035
+
2036
+
2037
+ </div><!-- section player -->
2038
+
2039
+ </div> <div class="section section-track section-odd">
2040
+ <div class="section-player" >
2041
+
2042
+
2043
+
2044
+ <h3 class="track_name">
2045
+ <a class="artist" title="Danger Granger - search hype machine for this artist" href="/artist/Danger Granger">
2046
+ Danger Granger</a>
2047
+ -
2048
+
2049
+ <a title="Daniel is a Wild Cat (Porter Robinson vs Bat For Lashes) - go to page for this track" href="/item/1asad/Danger+Granger+-+Daniel+is+a+Wild+Cat+Porter+Robinson+vs+Bat+For+Lashes+">
2050
+ Daniel is a Wild Cat (Porter Robinson vs Bat For Lashes)
2051
+ </a>
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+ </h3>
2058
+
2059
+
2060
+
2061
+
2062
+ <ul class="tools">
2063
+ <li class="playdiv">
2064
+ <a id="play_ctrl_1asad" class="play-ctrl play"
2065
+ onclick="togglePlayByItemid('1asad');return false;"
2066
+ title="Play"
2067
+ href="">Play<span></span>
2068
+ </a>
2069
+ </li>
2070
+
2071
+ <li class="favdiv">
2072
+
2073
+
2074
+ <a title="Favorited by 10 others" class="favcount-off"
2075
+ id="favcount_1asad"
2076
+ onclick="toggle_item_activity('favorites', '1asad', 1);return false;"
2077
+ href="">10 </a>
2078
+
2079
+
2080
+ <a id="fav_item_1asad"
2081
+ class="fav-off"
2082
+ onclick="toggle_favorite('item','1asad');return false;"
2083
+ title = "Favorite"
2084
+ href="">Favorite<span></span>
2085
+ </a>
2086
+ </li>
2087
+
2088
+
2089
+ </ul>
2090
+
2091
+ <div class="meta">
2092
+ <span class="buy">
2093
+
2094
+ Download Artist:
2095
+ <a rel="nofollow" href="/go/emusic_search/Danger Granger">eMusic (<strong>$10 FREE</strong>)</a> &bull;
2096
+ <a rel="nofollow" href="/go/amazon_mp3_search/Danger+Granger">Amazon</a> &bull;
2097
+ <a rel="nofollow" href="/go/itunes_search/Danger+Granger">iTunes</a>
2098
+ </span>
2099
+ </div>
2100
+
2101
+ <div class="meta">
2102
+
2103
+
2104
+ </div><!-- meta -->
2105
+
2106
+ <script type="text/javascript">
2107
+ trackList[document.location.href].push({
2108
+ type:'normal',
2109
+ id:'1asad',
2110
+ postid:'1459019',
2111
+ posturl:'http://www.earmilk.com/2011/04/18/mashup-monday-week-20/',
2112
+ time:'369',
2113
+ ts: '1303336241',
2114
+ fav:'0',
2115
+ key: '65257400b1a1266adb3173f029bbb1a8',
2116
+ imeem_id:'',
2117
+ artist:'Danger Granger',
2118
+ song:'Daniel is a Wild Cat (Porter Robinson ...',
2119
+ amazon:'',
2120
+ itunes:'',
2121
+ emusic:'',
2122
+ exact_track_avail:'0'
2123
+ });
2124
+ </script>
2125
+
2126
+
2127
+
2128
+ <p>
2129
+ <a
2130
+ class="blog-fav-off"
2131
+ title="See other tracks posted by this blog"
2132
+ href="/blog/earmilk/11067">
2133
+ earmilk</a>
2134
+ &ldquo;Mashup Monday – We’re going to melt you faces off with enough mashed up music to make you wanna slap&hellip;&rdquo;
2135
+ <a
2136
+ class="readpost"
2137
+ target="_blank"
2138
+ onmousedown="this.href='http://www.earmilk.com/2011/04/18/mashup-monday-week-20/'; return false;"
2139
+ href="http://www.earmilk.com/2011/04/18/mashup-monday-week-20/"
2140
+ title="Read this post: Mashup Monday – Week 20">
2141
+ Posted 3 days ago&nbsp;&raquo;<span style="background:url(
2142
+ http://static-ak.hypem.net/thumbs/9/1459019.png
2143
+ );"></span></a>
2144
+
2145
+ </p>
2146
+
2147
+ <div class="act_info" style="display:none"></div>
2148
+
2149
+
2150
+
2151
+ <div class="track-info"> Loved yesterday
2152
+ </div><!-- end track-info -->
2153
+
2154
+
2155
+
2156
+
2157
+
2158
+
2159
+
2160
+
2161
+
2162
+ </div><!-- section player -->
2163
+
2164
+
2165
+
2166
+ <div class="section-player same" >
2167
+
2168
+ <div class="same-post section-track" >
2169
+ <h3 class="track_name">
2170
+ <a class="artist" title="DEFEP - search hype machine for this artist" href="/artist/DEFEP">
2171
+ DEFEP </a> -
2172
+ <a title="Rolling it Right (Afrojack vs Adele) - go to page for this track" href="/item/1asae/DEFEP+-+Rolling+it+Right+Afrojack+vs+Adele+">
2173
+ Rolling it Right (Afrojack vs Adele) </a>
2174
+
2175
+
2176
+
2177
+ </h3>
2178
+
2179
+
2180
+
2181
+ <ul class="tools">
2182
+ <li class="playdiv">
2183
+ <a title="Play" id="play_ctrl_1asae" class="play-ctrl play"
2184
+ onclick="togglePlayByItemid('1asae');return false;"
2185
+ href="">Play<span></span></a>
2186
+ </li>
2187
+ <li class="favdiv">
2188
+
2189
+ <a title="Favorited by 47 others"
2190
+ class="favcount-off"
2191
+ id="favcount_1asae"
2192
+ onclick="toggle_item_activity('favorites','1asae',1);return false;"
2193
+ href="">47</a>
2194
+
2195
+ <a id="fav_item_1asae"
2196
+ class="fav-off"
2197
+ onclick="toggle_favorite('item','1asae');return false;"
2198
+ title = "Favorite"
2199
+ href="">Favorite<span></span></a>
2200
+
2201
+ </li>
2202
+
2203
+ </ul>
2204
+
2205
+ <div class="meta">
2206
+ <span class="buy">
2207
+
2208
+
2209
+
2210
+ Download Artist:
2211
+ <a rel="nofollow" href="/go/emusic_search/DEFEP">eMusic (<strong>$10 FREE</strong>)</a> &bull;
2212
+ <a rel="nofollow" href="/go/amazon_mp3_search/DEFEP">Amazon</a> &bull;
2213
+ <a rel="nofollow" href="/go/itunes_search/DEFEP">iTunes</a>
2214
+ </span>
2215
+
2216
+ </div> <!-- meta -->
2217
+
2218
+ <script type="text/javascript">
2219
+ trackList[document.location.href].push({
2220
+ type:'normal',
2221
+ id:'1asae',
2222
+ postid:'',
2223
+ posturl:'',
2224
+ time:'377',
2225
+ ts: '1303165849',
2226
+ fav:'0',
2227
+ key: '63cbcb3a740e1ad0cb7163b23e33a9d6',
2228
+ artist:'DEFEP',
2229
+ song:'Rolling it Right (Afrojack vs Adele)',
2230
+ amazon:'',
2231
+ itunes:'',
2232
+ emusic:'',
2233
+ exact_track_avail:'0'
2234
+ });
2235
+ </script>
2236
+
2237
+ <div class="act_info" style="display:none"></div>
2238
+ <div class="act-info-loading" style="display:none">Loading...</div>
2239
+
2240
+ </div><!-- same-post -->
2241
+
2242
+ </div><!-- section-player -->
2243
+ <hr class='brk' /></div> <div class="paginator"> <span class="this-page">1</span><a rel="nofollow" href="/Kanye/2/">2</a> <a rel="nofollow" href="/Kanye/3/">3</a> <a rel="nofollow" href="/Kanye/4/">4</a> <span class="break">...</span><a rel="nofollow" class="next" href="/Kanye/2/">Next Page &raquo;</a></div>
2244
+
2245
+ </div><!-- loved -->
2246
+
2247
+ </div><!-- content-left -->
2248
+
2249
+ <!-- google_ad_section_end -->
2250
+
2251
+ <!-- oh look you are reading comments. well, we love you. -->
2252
+ <div id="content-right">
2253
+ <div id="sidebar-stats" class="user-stats section">
2254
+ <img id="avatar" src="" height="80" width="80" />
2255
+ <h3>Kanye</h3>Joined Jan 1st, 1985<br/>Vancouver, BC, CA</a>
2256
+
2257
+ <ul>
2258
+
2259
+
2260
+
2261
+ <li class="top-follow"><a id="fav_user_999999" class="follow"
2262
+ onclick="toggle_favorite('user','999999');return false;"
2263
+ href=""><em></em> Follow</a></li>
2264
+
2265
+
2266
+ <li class="top"><a href="/Kanye" title="Listen to Kanye's favorite songs"><em>2,000,000,000</em> <span>Songs</span></a></li>
2267
+ <!-- <li class="top"><a href="/Kanye/blogs" title="Listen to Kanye's favorite blogs"><em>46</em> Subscriptions</a></li>-->
2268
+ <li class="top"><a rel="nofollow" href="/Kanye/people" title="Listen to Kanye's following playlist"><em>
2269
+ 1</em> <span>Friends</span></a></li>
2270
+ <li class="top"><a rel="nofollow" href="/Kanye/people" title="Listen to Kanye's follower's playlist"><em>4</em> <span>Followers</span></a></li>
2271
+ <!-- <li class="bottom"<a href=""><em>9999</em> Songs Recently Played</a></li>-->
2272
+ </ul>
2273
+
2274
+ </div>
2275
+
2276
+
2277
+
2278
+
2279
+ </div> <!-- content-right -->
2280
+
2281
+ <br style="clear:both" />
2282
+
2283
+ </div><!-- container -->
2284
+
2285
+ <!-- PAGE TOTAL: 0.102s -->