kanye 0.2.2 → 0.2.3
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/Gemfile +7 -7
- data/History +7 -0
- data/README.rdoc +1 -1
- data/Rakefile +1 -5
- data/VERSION +1 -1
- data/bin/kanye +9 -5
- data/kanye.gemspec +24 -44
- data/lib/kanye.rb +0 -1
- data/lib/kanye/history.rb +3 -3
- data/lib/kanye/page.rb +25 -11
- data/lib/kanye/track.rb +20 -18
- data/spec/data/sample.html +1739 -1989
- data/spec/kanye_spec.rb +22 -20
- metadata +57 -72
- data/lib/kanye/itunes.rb +0 -28
- data/spec/kanye/itunes_spec.rb +0 -46
data/Gemfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
|
-
gem
|
3
|
-
gem
|
4
|
-
gem
|
5
|
-
gem
|
2
|
+
gem "httparty", ">= 0.8.1"
|
3
|
+
gem "nokogiri"
|
4
|
+
gem "sqlite3"
|
5
|
+
gem "ruby-mp3info", "0.8"
|
6
6
|
|
7
7
|
group :development do
|
8
|
-
gem "rspec",
|
9
|
-
gem "bundler", "
|
10
|
-
gem "jeweler", "
|
8
|
+
gem "rspec", ">= 2"
|
9
|
+
gem "bundler", ">= 1.0.0"
|
10
|
+
gem "jeweler", ">= 1.5.2"
|
11
11
|
end
|
data/History
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
== 0.2.3
|
2
|
+
* minor enhancements
|
3
|
+
* Update HTML parsing
|
4
|
+
== 0.2.2
|
5
|
+
* major changes
|
6
|
+
* iTunes 10.6.3 breaks the rb-appscript Applescript bridge used to add tracks to playlists. If the 'playlist: true' option remains, Kanye will open the tracks with iTunes and move to the trash instead.
|
7
|
+
* Nokogiri returns since its interface makes selecting artists and titles much easier.
|
1
8
|
== 0.2.1 2012-02-10
|
2
9
|
* minor enhancements
|
3
10
|
* Patch for 0.2.0 not working at all unless run with bundle exec
|
data/README.rdoc
CHANGED
@@ -18,6 +18,6 @@ Now that you've configured it, just run +kanye+ any time to go over your latest
|
|
18
18
|
|
19
19
|
== iTunes integration
|
20
20
|
|
21
|
-
By adding the following to your <tt>~/.kanye_rc</tt> file, Kanye will
|
21
|
+
By adding the following to your <tt>~/.kanye_rc</tt> file, Kanye will open tracks in your iTunes library.
|
22
22
|
|
23
23
|
playlist: true
|
data/Rakefile
CHANGED
@@ -21,11 +21,7 @@ Jeweler::Tasks.new do |gem|
|
|
21
21
|
gem.authors = ["Sam Vincent"]
|
22
22
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
23
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 'ruby-mp3info', '0.6.14'
|
27
|
-
gem.add_runtime_dependency 'rb-appscript', '0.6.1'
|
28
|
-
# gem.add_development_dependency 'rspec', '> 1.2.3'
|
24
|
+
# ie. gem.add_runtime_dependency 'httparty', '>= 0.7.4'
|
29
25
|
end
|
30
26
|
Jeweler::RubygemsDotOrgTasks.new
|
31
27
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.3
|
data/bin/kanye
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
2
3
|
|
3
4
|
$:.unshift(File.join(File.dirname(__FILE__), "/../lib"))
|
4
5
|
require 'rubygems'
|
@@ -100,14 +101,17 @@ pages = []
|
|
100
101
|
end
|
101
102
|
|
102
103
|
if Kanye.config["playlist"].to_s == "true"
|
103
|
-
itunes = Kanye::ITunes.new
|
104
104
|
puts %{Adding tracks to iTunes...}
|
105
105
|
pages.reverse.each do |page|
|
106
106
|
page.tracks.reverse.each do |track|
|
107
|
-
|
108
|
-
|
109
|
-
`
|
110
|
-
|
107
|
+
if FileTest.exists? track.filename
|
108
|
+
# Open track with iTunes
|
109
|
+
`open -a iTunes #{Shellwords.escape track.filename}`
|
110
|
+
# Wait for the track to finish importing to avoid
|
111
|
+
# LSOpenURLsWithRole() failed error
|
112
|
+
sleep(1)
|
113
|
+
# Move to trash
|
114
|
+
`mv #{Shellwords.escape track.filename} ~/.Trash`
|
111
115
|
end
|
112
116
|
end
|
113
117
|
end
|
data/kanye.gemspec
CHANGED
@@ -4,15 +4,15 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "0.2.
|
7
|
+
s.name = "kanye"
|
8
|
+
s.version = "0.2.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = [
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
15
|
-
s.executables = [
|
11
|
+
s.authors = ["Sam Vincent"]
|
12
|
+
s.date = "2013-03-19"
|
13
|
+
s.description = "Lyrical genius, voice of a generation."
|
14
|
+
s.email = "sam.vincent@mac.com"
|
15
|
+
s.executables = ["kanye"]
|
16
16
|
s.extra_rdoc_files = [
|
17
17
|
"LICENSE.txt",
|
18
18
|
"README.rdoc"
|
@@ -29,68 +29,48 @@ Gem::Specification.new do |s|
|
|
29
29
|
"kanye.gemspec",
|
30
30
|
"lib/kanye.rb",
|
31
31
|
"lib/kanye/history.rb",
|
32
|
-
"lib/kanye/itunes.rb",
|
33
32
|
"lib/kanye/page.rb",
|
34
33
|
"lib/kanye/track.rb",
|
35
34
|
"spec/data/sample.html",
|
36
35
|
"spec/data/super.mp3",
|
37
|
-
"spec/kanye/itunes_spec.rb",
|
38
|
-
"spec/kanye/track_spec.rb",
|
39
|
-
"spec/kanye_spec.rb",
|
40
|
-
"spec/spec_helper.rb"
|
41
|
-
]
|
42
|
-
s.homepage = %q{http://github.com/samvincent/kanye}
|
43
|
-
s.licenses = [%q{MIT}]
|
44
|
-
s.require_paths = [%q{lib}]
|
45
|
-
s.rubygems_version = %q{1.8.6}
|
46
|
-
s.summary = %q{Ruby H-Y-P-E utility}
|
47
|
-
s.test_files = [
|
48
|
-
"spec/kanye/itunes_spec.rb",
|
49
36
|
"spec/kanye/track_spec.rb",
|
50
37
|
"spec/kanye_spec.rb",
|
51
38
|
"spec/spec_helper.rb"
|
52
39
|
]
|
40
|
+
s.homepage = "http://github.com/samvincent/kanye"
|
41
|
+
s.licenses = ["MIT"]
|
42
|
+
s.require_paths = ["lib"]
|
43
|
+
s.rubygems_version = "1.8.25"
|
44
|
+
s.summary = "Ruby H-Y-P-E utility"
|
53
45
|
|
54
46
|
if s.respond_to? :specification_version then
|
55
47
|
s.specification_version = 3
|
56
48
|
|
57
49
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
58
50
|
s.add_runtime_dependency(%q<httparty>, [">= 0.8.1"])
|
51
|
+
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
|
59
52
|
s.add_runtime_dependency(%q<sqlite3>, [">= 0"])
|
60
|
-
s.add_runtime_dependency(%q<ruby-mp3info>, ["= 0.
|
61
|
-
s.add_runtime_dependency(%q<rb-appscript>, ["= 0.6.1"])
|
53
|
+
s.add_runtime_dependency(%q<ruby-mp3info>, ["= 0.8"])
|
62
54
|
s.add_development_dependency(%q<rspec>, [">= 2"])
|
63
|
-
s.add_development_dependency(%q<bundler>, ["
|
64
|
-
s.add_development_dependency(%q<jeweler>, ["
|
65
|
-
s.add_runtime_dependency(%q<httparty>, [">= 0.7.4"])
|
66
|
-
s.add_runtime_dependency(%q<sqlite3>, [">= 0"])
|
67
|
-
s.add_runtime_dependency(%q<ruby-mp3info>, ["= 0.6.14"])
|
68
|
-
s.add_runtime_dependency(%q<rb-appscript>, ["= 0.6.1"])
|
55
|
+
s.add_development_dependency(%q<bundler>, [">= 1.0.0"])
|
56
|
+
s.add_development_dependency(%q<jeweler>, [">= 1.5.2"])
|
69
57
|
else
|
70
58
|
s.add_dependency(%q<httparty>, [">= 0.8.1"])
|
59
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
71
60
|
s.add_dependency(%q<sqlite3>, [">= 0"])
|
72
|
-
s.add_dependency(%q<ruby-mp3info>, ["= 0.
|
73
|
-
s.add_dependency(%q<rb-appscript>, ["= 0.6.1"])
|
61
|
+
s.add_dependency(%q<ruby-mp3info>, ["= 0.8"])
|
74
62
|
s.add_dependency(%q<rspec>, [">= 2"])
|
75
|
-
s.add_dependency(%q<bundler>, ["
|
76
|
-
s.add_dependency(%q<jeweler>, ["
|
77
|
-
s.add_dependency(%q<httparty>, [">= 0.7.4"])
|
78
|
-
s.add_dependency(%q<sqlite3>, [">= 0"])
|
79
|
-
s.add_dependency(%q<ruby-mp3info>, ["= 0.6.14"])
|
80
|
-
s.add_dependency(%q<rb-appscript>, ["= 0.6.1"])
|
63
|
+
s.add_dependency(%q<bundler>, [">= 1.0.0"])
|
64
|
+
s.add_dependency(%q<jeweler>, [">= 1.5.2"])
|
81
65
|
end
|
82
66
|
else
|
83
67
|
s.add_dependency(%q<httparty>, [">= 0.8.1"])
|
68
|
+
s.add_dependency(%q<nokogiri>, [">= 0"])
|
84
69
|
s.add_dependency(%q<sqlite3>, [">= 0"])
|
85
|
-
s.add_dependency(%q<ruby-mp3info>, ["= 0.
|
86
|
-
s.add_dependency(%q<rb-appscript>, ["= 0.6.1"])
|
70
|
+
s.add_dependency(%q<ruby-mp3info>, ["= 0.8"])
|
87
71
|
s.add_dependency(%q<rspec>, [">= 2"])
|
88
|
-
s.add_dependency(%q<bundler>, ["
|
89
|
-
s.add_dependency(%q<jeweler>, ["
|
90
|
-
s.add_dependency(%q<httparty>, [">= 0.7.4"])
|
91
|
-
s.add_dependency(%q<sqlite3>, [">= 0"])
|
92
|
-
s.add_dependency(%q<ruby-mp3info>, ["= 0.6.14"])
|
93
|
-
s.add_dependency(%q<rb-appscript>, ["= 0.6.1"])
|
72
|
+
s.add_dependency(%q<bundler>, [">= 1.0.0"])
|
73
|
+
s.add_dependency(%q<jeweler>, [">= 1.5.2"])
|
94
74
|
end
|
95
75
|
end
|
96
76
|
|
data/lib/kanye.rb
CHANGED
data/lib/kanye/history.rb
CHANGED
@@ -4,13 +4,13 @@ module Kanye
|
|
4
4
|
def initialize(db_file)
|
5
5
|
@db = SQLite3::Database.new(db_file)
|
6
6
|
end
|
7
|
-
|
7
|
+
|
8
8
|
def insert(track)
|
9
9
|
db.execute("insert into tracks values (?, ?)", [nil, track.id])
|
10
10
|
end
|
11
|
-
|
11
|
+
|
12
12
|
def exists?(track)
|
13
13
|
db.execute("select * from tracks where key=?", track.id).any?
|
14
14
|
end
|
15
15
|
end
|
16
|
-
end
|
16
|
+
end
|
data/lib/kanye/page.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
|
1
3
|
module Kanye
|
2
4
|
class Page
|
3
5
|
attr_reader :html, :response, :tracks
|
@@ -20,7 +22,7 @@ module Kanye
|
|
20
22
|
rescue Mp3InfoError => e
|
21
23
|
puts e.message if Kanye.config["debug"]
|
22
24
|
end
|
23
|
-
|
25
|
+
|
24
26
|
history.insert(current_track)
|
25
27
|
puts "\tInserted song into db" if Kanye.config["debug"]
|
26
28
|
end
|
@@ -34,21 +36,33 @@ module Kanye
|
|
34
36
|
protected
|
35
37
|
|
36
38
|
def parse_response
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
39
|
+
html_doc = Nokogiri::HTML(@html)
|
40
|
+
ids = @html.scan /\"id\":\"(\w*)\",/
|
41
|
+
keys = @html.scan /\"key\":\"([\d\w]*)\",/
|
42
|
+
artists = html_doc.css('.track_name .artist').map { |node| node.content.strip }
|
43
|
+
titles = html_doc.css('.track_name .artist + a').map do |node|
|
44
|
+
title = node.css('.base-title').pop.content
|
45
|
+
remix = node.css('.remix-link').any? ? node.css('.remix-link').pop.content : nil
|
46
|
+
clean_title(title, remix)
|
47
|
+
end
|
48
|
+
|
49
|
+
[ids, keys, titles, artists].each(&:flatten!)
|
42
50
|
|
43
51
|
ids.each_with_index do |id, i|
|
44
|
-
@tracks << Track.new(
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
52
|
+
@tracks << Track.new(
|
53
|
+
:id => ids[i],
|
54
|
+
:key => keys[i],
|
55
|
+
:title => titles[i],
|
56
|
+
:artist => artists[i],
|
57
|
+
:cookie => @cookie
|
58
|
+
)
|
49
59
|
end
|
50
60
|
end
|
51
61
|
|
62
|
+
def clean_title(title, remix)
|
63
|
+
(remix ? "#{title.strip} (#{remix.strip})" : title.strip).gsub(" ", " ")
|
64
|
+
end
|
65
|
+
|
52
66
|
def timestamp
|
53
67
|
("%10.10f" % Time.now.utc.to_f).gsub('.','')
|
54
68
|
end
|
data/lib/kanye/track.rb
CHANGED
@@ -12,50 +12,52 @@ module Kanye
|
|
12
12
|
@artist = params[:artist]
|
13
13
|
@cookie = params[:cookie]
|
14
14
|
end
|
15
|
-
|
15
|
+
|
16
16
|
attr_reader :id, :key, :title, :artist, :cookie
|
17
|
-
|
17
|
+
|
18
18
|
def url
|
19
19
|
"http://#{BASE_URL}/serve/source/" + id + '/' + key
|
20
20
|
end
|
21
|
-
|
21
|
+
|
22
22
|
def download!
|
23
23
|
raise(NoKeyError, "Couldn't find :key for '#{self}'") if key.nil?
|
24
|
-
|
24
|
+
|
25
25
|
response = HTTParty.get(url, :headers => {'cookie' => cookie})
|
26
26
|
raise "Response Code '#{response.code}' - Something has changed." unless response.code == 200
|
27
|
-
|
27
|
+
|
28
28
|
print self, "[ Downloading…"
|
29
|
-
|
29
|
+
|
30
30
|
mp3_url = URI.escape(response.parsed_response["url"])
|
31
|
-
|
31
|
+
|
32
32
|
if mp3_url =~ /http:\/\/.*\.s3\.amazonaws\.com\//
|
33
33
|
mp3_url = correct_s3_url!(mp3_url)
|
34
34
|
end
|
35
|
-
|
35
|
+
|
36
36
|
puts mp3_url if Kanye.config["debug"]
|
37
|
-
|
37
|
+
|
38
38
|
mp3_response = HTTParty.get(mp3_url)
|
39
|
-
|
39
|
+
|
40
40
|
File.open(filename, "wb") do |f|
|
41
41
|
f.write(mp3_response.parsed_response)
|
42
42
|
end
|
43
|
-
|
43
|
+
|
44
44
|
set_id3_tags!
|
45
45
|
puts " complete ]"
|
46
46
|
end
|
47
|
-
|
47
|
+
|
48
48
|
def to_s
|
49
|
-
|
49
|
+
t = truncate(title, 42, '…').force_encoding('utf-8').ljust(42)
|
50
|
+
a = truncate(artist, 42, '…').force_encoding('utf-8').ljust(32)
|
51
|
+
[t, "| ", a].join
|
50
52
|
end
|
51
|
-
|
53
|
+
|
52
54
|
def filename
|
53
55
|
name = [artist,title].join('-').gsub(/[ \/]/, "-").downcase
|
54
56
|
File.join(Kanye.download_path, name + ".mp3")
|
55
57
|
end
|
56
|
-
|
58
|
+
|
57
59
|
private
|
58
|
-
|
60
|
+
|
59
61
|
def set_id3_tags!
|
60
62
|
Mp3Info.open(filename) do |mp3|
|
61
63
|
mp3.tag.artist = artist
|
@@ -64,13 +66,13 @@ module Kanye
|
|
64
66
|
rescue Encoding::CompatibilityError => e
|
65
67
|
puts "Error writing overwriting mp3 info => #{e.message}"
|
66
68
|
end
|
67
|
-
|
69
|
+
|
68
70
|
# underscores in s3 urls raise InvalidURI errors, so we'll convert the url
|
69
71
|
def correct_s3_url!(url)
|
70
72
|
bucket, path = url.scan(/http:\/\/(\w*)\.s3\.amazonaws\.com\/(.*)/).pop
|
71
73
|
url = "http://s3.amazonaws.com/#{bucket}/#{path}"
|
72
74
|
end
|
73
|
-
|
75
|
+
|
74
76
|
def truncate(text, size, omission='...')
|
75
77
|
truncated = text[0, omission ? (size - omission.size) : size]
|
76
78
|
omission && truncated.size == (size - omission.size) ? truncated + omission : text
|
data/spec/data/sample.html
CHANGED
@@ -1,2285 +1,2035 @@
|
|
1
|
+
|
2
|
+
<div id="content" class="content-centered">
|
3
|
+
|
4
|
+
<div id="message">
|
5
|
+
|
6
|
+
<h1>kanye's Favorite Tracks</h1> </div>
|
7
|
+
<div class="section-player">
|
8
|
+
|
9
|
+
<span class="share-links">
|
10
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p979&title=Dragonette+-+Live+In+This+City+%28+Heren+Remix+%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
11
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p979&text=Dragonette+-+Live+In+This+City+%28+Heren+Remix+%29%20on%20&via"></a>
|
12
|
+
</span>
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
<a class="thumb"
|
19
|
+
href="/track/1p979/Dragonette+-+Live+In+This+City+%28+Heren+Remix+%29"
|
20
|
+
title="Live In This City ( Heren Remix ) - go to page for this track"
|
21
|
+
style="background:url(http://static.net/thumbs/3/1906913.png);">
|
22
|
+
</a>
|
23
|
+
|
24
|
+
<h3 class="track_name">
|
25
|
+
<span class="remix-icon"></span>
|
26
|
+
<a class="artist" title="Dragonette - search for this artist" href="/artist/Dragonette">Dragonette</a> - <a class="track" title="Live In This City ( Heren Remix ) - go to page for this track" href="/track/1p979/Dragonette+-+Live+In+This+City+%28+Heren+Remix+%29">
|
27
|
+
<span class="base-title">Live In This City</span> <span class="remix-link">Heren Remix</span> </a>
|
1
28
|
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
</h3>
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
<ul class="tools">
|
38
|
+
<li class="playdiv">
|
39
|
+
<a id="play_ctrl_1p979" class="play-ctrl play"
|
40
|
+
title="Play"
|
41
|
+
href="">Play<span></span>
|
42
|
+
</a>
|
43
|
+
</li>
|
44
|
+
|
45
|
+
<li class="favdiv">
|
46
|
+
|
47
|
+
<a title="Favorited by 23 others"
|
48
|
+
class="toggle-favorites favcount_1p979 favcount-off"
|
49
|
+
id="favcount_1p979"
|
50
|
+
href="">23 </a>
|
51
|
+
|
52
|
+
<a class="fav_item_1p979 fav-off"
|
53
|
+
id="fav_item_1p979"
|
54
|
+
onclick="toggle_favorite('item','1p979');return false;"
|
55
|
+
title = "Favorite"
|
56
|
+
href="">Favorite<span></span>
|
57
|
+
</a>
|
58
|
+
</li>
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
</ul>
|
10
63
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
64
|
+
<div class="meta">
|
65
|
+
<span class="buy">
|
66
|
+
<a href="" class="toggle-reposts">
|
67
|
+
Posted by
|
68
|
+
2 blogs</a> •
|
69
|
+
|
70
|
+
Download Artist:
|
71
|
+
<a rel="nofollow" href="/go/emusic_search/Dragonette">eMusic (<strong>$10 FREE</strong>)</a> •
|
72
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Dragonette">Amazon</a>
|
73
|
+
• <a rel="nofollow" href="/go/itunes_web/dragonette%2Fid207904359?entity=artist">iTunes</a>
|
74
|
+
</span>
|
16
75
|
</div>
|
17
76
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
77
|
+
|
78
|
+
<p>
|
79
|
+
<a
|
80
|
+
class="blog-fav-off"
|
81
|
+
title="See other tracks posted by this blog"
|
82
|
+
href="/blog/aerial+noise/12376">aerial noise</a><a class="follow-pill fav_site_12376 follow"
|
83
|
+
onclick="toggle_favorite('site','12376');return false;"
|
84
|
+
href="#"><em></em><span>Follow</span></a>
|
85
|
+
|
86
|
+
“Five of the mightiest strong birds chirp and tweet their way through a slightly commercial back end of underground duality…” <a
|
87
|
+
class="readpost"
|
88
|
+
href="http://www.aerialnoise.com/2012/08/21/heren-shane-infin8y-sasha-plus-moiez-hlm/"
|
89
|
+
title="Read this post: HEREN / SHANE & INFIN8Y / SASHA PLU…">
|
90
|
+
|
91
|
+
Posted yesterday »
|
92
|
+
|
93
|
+
<span style="background:url(http://static-ak.net/thumbs/3/1906913.png);"></span>
|
94
|
+
</a>
|
95
|
+
|
96
|
+
</p>
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
<div class="act_info" style="display:none"></div>
|
102
|
+
|
27
103
|
|
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
104
|
|
40
|
-
<div id="container">
|
41
|
-
<!-- google_ad_section_start -->
|
42
105
|
|
43
|
-
|
106
|
+
</div><!-- section player -->
|
107
|
+
</div><!-- section track -->
|
108
|
+
<div data-itemid="1pa35" id="section-track-1pa35" class="section section-track odd" >
|
109
|
+
<div class="track-info">Loved 8 mins ago</div>
|
44
110
|
|
45
|
-
|
111
|
+
<div class="section-player">
|
46
112
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
113
|
+
<span class="share-links">
|
114
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type=-player&url=http%3A%2F%2F.com%2Fitem%2F1pa35&title=Frank+Ocean+-+Pyramids+%28Kastle+Remix%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
115
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type=-player&url=http%3A%2F%2F.com%2Fitem%2F1pa35&text=Frank+Ocean+-+Pyramids+%28Kastle+Remix%29%20on%20@"></a>
|
116
|
+
</span>
|
117
|
+
|
118
|
+
|
119
|
+
|
52
120
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
121
|
+
|
122
|
+
<a class="thumb"
|
123
|
+
href="/track/1pa35/Frank+Ocean+-+Pyramids+%28Kastle+Remix%29"
|
124
|
+
title="Pyramids (Kastle Remix) - go to page for this track"
|
125
|
+
style="background:url(http://static-ak..net/thumbs/9/1906979.png);">
|
126
|
+
</a>
|
127
|
+
|
128
|
+
<h3 class="track_name">
|
129
|
+
<span class="remix-icon"></span>
|
130
|
+
<a class="artist" title="Frank Ocean - search for this artist" href="/artist/Frank+Ocean">Frank Ocean</a> - <a class="track" title="Pyramids (Kastle Remix) - go to page for this track" href="/track/1pa35/Frank+Ocean+-+Pyramids+%28Kastle+Remix%29">
|
131
|
+
<span class="base-title">Pyramids</span> <span class="remix-link">Kastle Remix</span> </a>
|
61
132
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
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>
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
</h3>
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
<ul class="tools">
|
142
|
+
<li class="playdiv">
|
143
|
+
<a id="play_ctrl_1pa35" class="play-ctrl play"
|
144
|
+
title="Play"
|
145
|
+
href="">Play<span></span>
|
146
|
+
</a>
|
147
|
+
</li>
|
148
|
+
|
149
|
+
<li class="favdiv">
|
150
|
+
|
151
|
+
<a title="Favorited by 31 others"
|
152
|
+
class="toggle-favorites favcount_1pa35 favcount-off"
|
153
|
+
id="favcount_1pa35"
|
154
|
+
href="">31 </a>
|
155
|
+
|
156
|
+
<a class="fav_item_1pa35 fav-off"
|
157
|
+
id="fav_item_1pa35"
|
158
|
+
onclick="toggle_favorite('item','1pa35');return false;"
|
159
|
+
title = "Favorite"
|
160
|
+
href="">Favorite<span></span>
|
161
|
+
</a>
|
162
|
+
</li>
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
</ul>
|
117
167
|
|
118
|
-
|
119
|
-
|
120
|
-
|
168
|
+
<div class="meta">
|
169
|
+
<span class="buy">
|
170
|
+
<a href="" class="toggle-reposts">
|
121
171
|
Posted by
|
122
|
-
|
123
|
-
</a>
|
172
|
+
2 blogs</a> •
|
124
173
|
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
174
|
+
Download Artist:
|
175
|
+
<a rel="nofollow" href="/go/emusic_search/Frank+Ocean">eMusic (<strong>$10 FREE</strong>)</a> •
|
176
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Frank+Ocean">Amazon</a>
|
177
|
+
• <a rel="nofollow" href="/go/itunes_web/frank-ocean%2Fid442122051?entity=artist">iTunes</a>
|
178
|
+
</span>
|
179
|
+
</div>
|
180
|
+
|
131
181
|
|
132
|
-
|
182
|
+
<p>
|
183
|
+
<a
|
184
|
+
class="blog-fav-off"
|
185
|
+
title="See other tracks posted by this blog"
|
186
|
+
href="/blog/gottadancedirty/10215">gottadancedirty</a><a class="follow-pill fav_site_10215 follow"
|
187
|
+
onclick="toggle_favorite('site','10215');return false;"
|
188
|
+
href="#"><em></em><span>Follow</span></a>
|
189
|
+
|
190
|
+
“Anyone who knows about Kastle in turn knows of his passion for R&B, whether it be the influence seen in…” <a
|
191
|
+
class="readpost"
|
192
|
+
href="http://www.gottadancedirty.com/2012/08/21/download-frank-ocean-pyramids-kastle-remix/"
|
193
|
+
title="Read this post: [DOWNLOAD] Frank Ocean – Pyramids (…">
|
194
|
+
|
195
|
+
Posted 23 hrs ago »
|
196
|
+
|
197
|
+
<span style="background:url(http://static-ak.net/thumbs/9/1906979.png);"></span>
|
198
|
+
</a>
|
133
199
|
|
200
|
+
</p>
|
134
201
|
|
135
|
-
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
<div class="act_info" style="display:none"></div>
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
|
210
|
+
</div><!-- section player -->
|
211
|
+
</div><!-- section track -->
|
212
|
+
<div data-itemid="1pa5m" id="section-track-1pa5m" class="section section-track even" >
|
213
|
+
<div class="track-info">Loved 18 mins ago</div>
|
214
|
+
|
215
|
+
<div class="section-player">
|
216
|
+
|
217
|
+
<span class="share-links">
|
218
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1pa5m&title=Taryn+Manning+-+Send+Me+Your+Love+ft.+Sultan+%2B+Ned+Shepard"><img src="/images/icon-fb-share.gif" /> Share</a>
|
219
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1pa5m&text=Taryn+Manning+-+Send+Me+Your+Love+ft.+Sultan+%2B+Ned+Shepard%20on%20&via"></a>
|
220
|
+
</span>
|
136
221
|
|
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
|
-
“Having been to hundreds of raves, the last thing I expected to change about the scene was the use of…”
|
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…">
|
172
|
-
Posted 4 days ago »<span style="background:url(
|
173
|
-
http://static-ak.m.net/images/albumart2.gif
|
174
|
-
);"></span></a>
|
175
|
-
|
176
|
-
</p>
|
177
222
|
|
178
|
-
|
223
|
+
|
179
224
|
|
180
225
|
|
226
|
+
<a class="thumb"
|
227
|
+
href="/track/1pa5m/Taryn+Manning+-+Send+Me+Your+Love+ft.+Sultan+%2B+Ned+Shepard"
|
228
|
+
title="Send Me Your Love ft. Sultan + Ned Shepard - go to page for this track"
|
229
|
+
style="background:url(http://static-ak.net/thumbs/8/1907048.png);">
|
230
|
+
</a>
|
181
231
|
|
182
|
-
<
|
183
|
-
|
232
|
+
<h3 class="track_name">
|
233
|
+
|
234
|
+
<a class="artist" title="Taryn Manning - search for this artist" href="/artist/Taryn+Manning">Taryn Manning</a> - <a class="track" title="Send Me Your Love ft. Sultan + Ned Shepard - go to page for this track" href="/track/1pa5m/Taryn+Manning+-+Send+Me+Your+Love+ft.+Sultan+%2B+Ned+Shepard">
|
235
|
+
<span class="base-title">Send Me Your Love ft. Sultan + Ned Shepard</span></a>
|
236
|
+
|
184
237
|
|
238
|
+
|
239
|
+
|
240
|
+
</h3>
|
185
241
|
|
186
242
|
|
187
243
|
|
188
244
|
|
245
|
+
<ul class="tools">
|
246
|
+
<li class="playdiv">
|
247
|
+
<a id="play_ctrl_1pa5m" class="play-ctrl play"
|
248
|
+
title="Play"
|
249
|
+
href="">Play<span></span>
|
250
|
+
</a>
|
251
|
+
</li>
|
252
|
+
|
253
|
+
<li class="favdiv">
|
254
|
+
|
255
|
+
<a title="Favorited by 14 others"
|
256
|
+
class="toggle-favorites favcount_1pa5m favcount-off"
|
257
|
+
id="favcount_1pa5m"
|
258
|
+
href="">14 </a>
|
259
|
+
|
260
|
+
<a class="fav_item_1pa5m fav-off"
|
261
|
+
id="fav_item_1pa5m"
|
262
|
+
onclick="toggle_favorite('item','1pa5m');return false;"
|
263
|
+
title = "Favorite"
|
264
|
+
href="">Favorite<span></span>
|
265
|
+
</a>
|
266
|
+
</li>
|
267
|
+
|
268
|
+
|
269
|
+
|
270
|
+
</ul>
|
271
|
+
|
272
|
+
<div class="meta">
|
273
|
+
<span class="buy">
|
274
|
+
|
275
|
+
Download Artist:
|
276
|
+
<a rel="nofollow" href="/go/emusic_search/Taryn+Manning">eMusic (<strong>$10 FREE</strong>)</a> •
|
277
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Taryn+Manning">Amazon</a>
|
278
|
+
• <a rel="nofollow" href="/go/itunes_web/taryn-manning%2Fid31424139?entity=artist">iTunes</a>
|
279
|
+
</span>
|
280
|
+
</div>
|
281
|
+
|
282
|
+
|
283
|
+
<p>
|
284
|
+
<a
|
285
|
+
class="blog-fav-off"
|
286
|
+
title="See other tracks posted by this blog"
|
287
|
+
href="/blog/kick+kick+snare/12821">Kick Kick Snare</a><a class="follow-pill fav_site_12821 follow"
|
288
|
+
onclick="toggle_favorite('site','12821');return false;"
|
289
|
+
href="#"><em></em><span>Follow</span></a>
|
290
|
+
|
291
|
+
“Check out “Send Me Your Love” off Taryn Manning‘s upcoming EP “Freedom City” due out in September. I love the…” <a
|
292
|
+
class="readpost"
|
293
|
+
href="http://kickkicksnare.com/2012/08/21/taryn-manning-send-me-your-love-ft-sultan-ned-shepard/"
|
294
|
+
title="Read this post: Taryn Manning: Send Me Your Love ft…">
|
295
|
+
|
296
|
+
Posted 22 hrs ago »
|
297
|
+
|
298
|
+
<span style="background:url(http://static-ak.net/thumbs/8/1907048.png);"></span>
|
299
|
+
</a>
|
189
300
|
|
301
|
+
</p>
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
|
306
|
+
<div class="act_info" style="display:none"></div>
|
307
|
+
|
190
308
|
|
191
309
|
|
192
310
|
|
193
311
|
</div><!-- section player -->
|
312
|
+
</div><!-- section track -->
|
313
|
+
<div data-itemid="1pa86" id="section-track-1pa86" class="section section-track odd" >
|
314
|
+
<div class="track-info">Loved 19 mins ago</div>
|
315
|
+
|
316
|
+
<div class="section-player">
|
317
|
+
|
318
|
+
<span class="share-links">
|
319
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1pa86&title=Zedd+-+Spectrum+%28Deniz+Koyu+Remix%29+Preview+Edit"><img src="/images/icon-fb-share.gif" /> Share</a>
|
320
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1pa86&text=Zedd+-+Spectrum+%28Deniz+Koyu+Remix%29+Preview+Edit%20on%20&via"></a>
|
321
|
+
</span>
|
322
|
+
|
323
|
+
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
<a class="thumb"
|
328
|
+
href="/track/1pa86/Zedd+-+Spectrum+%28Deniz+Koyu+Remix%29+Preview+Edit"
|
329
|
+
title="Spectrum (Deniz Koyu Remix) Preview Edit - go to page for this track"
|
330
|
+
style="background:url(http://static-ak.net/thumbs/7/1907107.png);">
|
331
|
+
</a>
|
332
|
+
|
333
|
+
<h3 class="track_name">
|
334
|
+
<span class="remix-icon"></span>
|
335
|
+
<a class="artist" title="Zedd - search for this artist" href="/artist/Zedd">Zedd</a> - <a class="track" title="Spectrum (Deniz Koyu Remix) Preview Edit - go to page for this track" href="/track/1pa86/Zedd+-+Spectrum+%28Deniz+Koyu+Remix%29+Preview+Edit">
|
336
|
+
<span class="base-title">Spectrum</span> <span class="remix-link">Deniz Koyu Remix</span> <span class="remix-count"> +15 more</span></a>
|
337
|
+
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
</h3>
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
|
346
|
+
<ul class="tools">
|
347
|
+
<li class="playdiv">
|
348
|
+
<a id="play_ctrl_1pa86" class="play-ctrl play"
|
349
|
+
title="Play"
|
350
|
+
href="">Play<span></span>
|
351
|
+
</a>
|
352
|
+
</li>
|
353
|
+
|
354
|
+
<li class="favdiv">
|
355
|
+
|
356
|
+
<a title="Favorited by 45 others"
|
357
|
+
class="toggle-favorites favcount_1pa86 favcount-off"
|
358
|
+
id="favcount_1pa86"
|
359
|
+
href="">45 </a>
|
360
|
+
|
361
|
+
<a class="fav_item_1pa86 fav-off"
|
362
|
+
id="fav_item_1pa86"
|
363
|
+
onclick="toggle_favorite('item','1pa86');return false;"
|
364
|
+
title = "Favorite"
|
365
|
+
href="">Favorite<span></span>
|
366
|
+
</a>
|
367
|
+
</li>
|
368
|
+
|
369
|
+
|
370
|
+
|
371
|
+
</ul>
|
372
|
+
|
373
|
+
<div class="meta">
|
374
|
+
<span class="buy">
|
375
|
+
|
376
|
+
Download Artist:
|
377
|
+
<a rel="nofollow" href="/go/emusic_search/Zedd">eMusic (<strong>$10 FREE</strong>)</a> •
|
378
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Zedd">Amazon</a>
|
379
|
+
• <a rel="nofollow" href="/go/itunes_web/zedd%2Fid368433979?entity=artist">iTunes</a>
|
380
|
+
</span>
|
381
|
+
</div>
|
382
|
+
|
383
|
+
|
384
|
+
<p>
|
385
|
+
<a
|
386
|
+
class="blog-fav-off"
|
387
|
+
title="See other tracks posted by this blog"
|
388
|
+
href="/blog/gottadancedirty/10215">gottadancedirty</a><a class="follow-pill fav_site_10215 follow"
|
389
|
+
onclick="toggle_favorite('site','10215');return false;"
|
390
|
+
href="#"><em></em><span>Follow</span></a>
|
391
|
+
|
392
|
+
“We caught up with Paige before his show last Friday at Pacha NY. Check out the review and interview after…” <a
|
393
|
+
class="readpost"
|
394
|
+
href="http://www.gottadancedirty.com/2012/08/21/review-paige-at-pacha-nyc-81712/"
|
395
|
+
title="Read this post: [REVIEW] Paige at Pacha NYC 8/17/12">
|
396
|
+
|
397
|
+
Posted 21 hrs ago »
|
398
|
+
|
399
|
+
<span style="background:url(http://static-ak.net/thumbs/7/1907107.png);"></span>
|
400
|
+
</a>
|
401
|
+
|
402
|
+
</p>
|
194
403
|
|
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 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
404
|
|
244
|
-
|
245
|
-
|
405
|
+
|
406
|
+
|
407
|
+
<div class="act_info" style="display:none"></div>
|
408
|
+
|
409
|
+
|
410
|
+
|
411
|
+
|
412
|
+
</div><!-- section player -->
|
413
|
+
</div><!-- section track -->
|
414
|
+
<div data-itemid="1p9zx" id="section-track-1p9zx" class="section section-track even" >
|
415
|
+
<div class="track-info">Loved 31 mins ago</div>
|
416
|
+
|
417
|
+
<div class="section-player">
|
418
|
+
|
419
|
+
<span class="share-links">
|
420
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p9zx&title=M%C3%BAm+-+Ballad+Of+Broken+Birdie+Records+%28Cry+Wolf%27s+Dreamscape+Remix%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
421
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p9zx&text=M%C3%BAm+-+Ballad+Of+Broken+Birdie+Records+%28Cry+Wolf%27s+Dreamscape+Remix%29%20on%20&via"></a>
|
422
|
+
</span>
|
423
|
+
|
424
|
+
|
425
|
+
|
426
|
+
|
427
|
+
|
428
|
+
<a class="thumb"
|
429
|
+
href="/track/1p9zx/M%C3%BAm+-+Ballad+Of+Broken+Birdie+Records+%28Cry+Wolf%27s+Dreamscape+Remix%29"
|
430
|
+
title="Ballad Of Broken Birdie Records (Cry Wolf's Dreamscape Remix) - go to page for this track"
|
431
|
+
style="background:url(http://static-ak.net/thumbs/6/1907716.png);">
|
432
|
+
</a>
|
433
|
+
|
434
|
+
<h3 class="track_name">
|
435
|
+
<span class="remix-icon"></span>
|
436
|
+
<a class="artist" title="Múm - search for this artist" href="/artist/M%C3%BAm">Múm</a> - <a class="track" title="Ballad Of Broken Birdie Records (Cry Wolf's Dreamscape Remix) - go to page for this track" href="/track/1p9zx/M%C3%BAm+-+Ballad+Of+Broken+Birdie+Records+%28Cry+Wolf%27s+Dreamscape+Remix%29">
|
437
|
+
<span class="base-title">Ballad Of Broken Birdie Records</span> <span class="remix-link">Cry Wolf's Dreamscape Remix</span> </a>
|
246
438
|
|
247
|
-
|
248
|
-
|
249
|
-
|
439
|
+
|
440
|
+
|
441
|
+
|
442
|
+
</h3>
|
443
|
+
|
444
|
+
|
445
|
+
|
446
|
+
|
447
|
+
<ul class="tools">
|
448
|
+
<li class="playdiv">
|
449
|
+
<a id="play_ctrl_1p9zx" class="play-ctrl play"
|
450
|
+
title="Play"
|
451
|
+
href="">Play<span></span>
|
452
|
+
</a>
|
453
|
+
</li>
|
454
|
+
|
455
|
+
<li class="favdiv">
|
456
|
+
|
457
|
+
<a title="Favorited by 105 others"
|
458
|
+
class="toggle-favorites favcount_1p9zx favcount-off"
|
459
|
+
id="favcount_1p9zx"
|
460
|
+
href="">105 </a>
|
461
|
+
|
462
|
+
<a class="fav_item_1p9zx fav-off"
|
463
|
+
id="fav_item_1p9zx"
|
464
|
+
onclick="toggle_favorite('item','1p9zx');return false;"
|
465
|
+
title = "Favorite"
|
466
|
+
href="">Favorite<span></span>
|
467
|
+
</a>
|
468
|
+
</li>
|
469
|
+
|
470
|
+
|
471
|
+
|
472
|
+
</ul>
|
473
|
+
|
474
|
+
<div class="meta">
|
475
|
+
<span class="buy">
|
476
|
+
<a href="" class="toggle-reposts">
|
250
477
|
Posted by
|
251
|
-
|
252
|
-
</a>
|
478
|
+
5 blogs</a> •
|
253
479
|
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
<div class="meta">
|
480
|
+
Download Artist:
|
481
|
+
<a rel="nofollow" href="/go/emusic_search/M%C3%BAm">eMusic (<strong>$10 FREE</strong>)</a> •
|
482
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/M%C3%BAm">Amazon</a>
|
483
|
+
• <a rel="nofollow" href="/go/itunes_web/mum%2Fid4504094?entity=artist">iTunes</a>
|
484
|
+
</span>
|
485
|
+
</div>
|
262
486
|
|
487
|
+
|
488
|
+
<p>
|
489
|
+
<a
|
490
|
+
class="blog-fav-off"
|
491
|
+
title="See other tracks posted by this blog"
|
492
|
+
href="/blog/kick+kick+snare/12821">Kick Kick Snare</a><a class="follow-pill fav_site_12821 follow"
|
493
|
+
onclick="toggle_favorite('site','12821');return false;"
|
494
|
+
href="#"><em></em><span>Follow</span></a>
|
495
|
+
|
496
|
+
“You may also enjoy...: New Remix Issue Hello Wednesday Remixes Kamei: Sugarland EP” <a
|
497
|
+
class="readpost"
|
498
|
+
href="http://kickkicksnare.com/2012/08/22/hello-wednesday-remixes-18/"
|
499
|
+
title="Read this post: Hello Wednesday Remixes">
|
500
|
+
|
501
|
+
Posted 5 hrs ago »
|
502
|
+
|
503
|
+
<span style="background:url(http://static-ak.net/thumbs/6/1907716.png);"></span>
|
504
|
+
</a>
|
263
505
|
|
264
|
-
|
506
|
+
</p>
|
265
507
|
|
266
|
-
|
267
|
-
|
268
|
-
|
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
|
-
“Earlier this month Rusko released Everyday / Lick The Lizard on Mad Decent and even through it’s had great coverage…”
|
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 »<span style="background:url(
|
302
|
-
http://static-ak.m.net/thumbs/3/1459123.png
|
303
|
-
);"></span></a>
|
304
|
-
|
305
|
-
</p>
|
306
|
-
|
508
|
+
|
509
|
+
|
510
|
+
|
307
511
|
<div class="act_info" style="display:none"></div>
|
308
512
|
|
309
513
|
|
310
514
|
|
311
|
-
<div class="track-info"> Loved yesterday
|
312
|
-
</div><!-- end track-info -->
|
313
515
|
|
516
|
+
</div><!-- section player -->
|
517
|
+
</div><!-- section track -->
|
518
|
+
<a class="notice" onclick="show_lightbox('signup');return false;" href=""><span>Customize the with the music YOU <em>Love</em> • <strong>Sign Up Now »</strong></span></a>
|
519
|
+
<div data-itemid="1jd14" id="section-track-1jd14" class="section section-track odd" >
|
520
|
+
<div class="track-info">Loved 50 mins ago</div>
|
314
521
|
|
522
|
+
<div class="section-player">
|
523
|
+
|
524
|
+
<span class="share-links">
|
525
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1jd14&title=Neil+Young+-+Old+Man+%28Sound+Remedy+Remix%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
526
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1jd14&text=Neil+Young+-+Old+Man+%28Sound+Remedy+Remix%29%20on%20&via"></a>
|
527
|
+
</span>
|
315
528
|
|
529
|
+
|
530
|
+
|
531
|
+
|
316
532
|
|
533
|
+
<a class="thumb"
|
534
|
+
href="/track/1jd14/Neil+Young+-+Old+Man+%28Sound+Remedy+Remix%29"
|
535
|
+
title="Old Man (Sound Remedy Remix) - go to page for this track"
|
536
|
+
style="background:url(http://static-ak.net/thumbs/1/1907811.png);">
|
537
|
+
</a>
|
317
538
|
|
539
|
+
<h3 class="track_name">
|
540
|
+
<span class="remix-icon"></span>
|
541
|
+
<a class="artist" title="Neil Young - search for this artist" href="/artist/Neil+Young">Neil Young</a> - <a class="track" title="Old Man (Sound Remedy Remix) - go to page for this track" href="/track/1jd14/Neil+Young+-+Old+Man+%28Sound+Remedy+Remix%29">
|
542
|
+
<span class="base-title">Old Man</span> <span class="remix-link">Sound Remedy Remix</span> <span class="remix-count"> +1 more</span></a>
|
543
|
+
|
318
544
|
|
545
|
+
|
546
|
+
|
547
|
+
</h3>
|
319
548
|
|
320
549
|
|
321
550
|
|
322
|
-
</div><!-- section player -->
|
323
551
|
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
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>
|
552
|
+
<ul class="tools">
|
553
|
+
<li class="playdiv">
|
554
|
+
<a id="play_ctrl_1jd14" class="play-ctrl play"
|
555
|
+
title="Play"
|
556
|
+
href="">Play<span></span>
|
557
|
+
</a>
|
558
|
+
</li>
|
559
|
+
|
560
|
+
<li class="favdiv">
|
561
|
+
|
562
|
+
<a title="Favorited by 3032 others"
|
563
|
+
class="toggle-favorites favcount_1jd14 favcount-off"
|
564
|
+
id="favcount_1jd14"
|
565
|
+
href="">3K </a>
|
566
|
+
|
567
|
+
<a class="fav_item_1jd14 fav-off"
|
568
|
+
id="fav_item_1jd14"
|
569
|
+
onclick="toggle_favorite('item','1jd14');return false;"
|
570
|
+
title = "Favorite"
|
571
|
+
href="">Favorite<span></span>
|
572
|
+
</a>
|
573
|
+
</li>
|
574
|
+
|
575
|
+
|
576
|
+
|
577
|
+
</ul>
|
375
578
|
|
376
|
-
|
377
|
-
|
378
|
-
|
579
|
+
<div class="meta">
|
580
|
+
<span class="buy">
|
581
|
+
<a href="" class="toggle-reposts">
|
379
582
|
Posted by
|
380
|
-
|
381
|
-
</a>
|
583
|
+
6 blogs</a> •
|
382
584
|
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
585
|
+
Download Artist:
|
586
|
+
<a rel="nofollow" href="/go/emusic_search/Neil+Young">eMusic (<strong>$10 FREE</strong>)</a> •
|
587
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Neil+Young">Amazon</a>
|
588
|
+
• <a rel="nofollow" href="/go/itunes_web/neil-young%2Fid147370?entity=artist">iTunes</a>
|
589
|
+
</span>
|
590
|
+
</div>
|
591
|
+
|
389
592
|
|
390
|
-
|
593
|
+
<p>
|
594
|
+
<a
|
595
|
+
class="blog-fav-off"
|
596
|
+
title="See other tracks posted by this blog"
|
597
|
+
href="/blog/et+musique+pour+tous/10096">Et Musique Pour Tous</a><a class="follow-pill fav_site_10096 follow"
|
598
|
+
onclick="toggle_favorite('site','10096');return false;"
|
599
|
+
href="#"><em></em><span>Follow</span></a>
|
600
|
+
|
601
|
+
“Road tripping down south to the sandy dunes of the Outer Banks. We’ve made this a tradition of painful laughter,…” <a
|
602
|
+
class="readpost"
|
603
|
+
href="http://www.etmusiquepourtous.com/2012/08/22/neil-young-old-man-sound-remedy-remix/"
|
604
|
+
title="Read this post: Neil Young – Old Man (Sound Remedy…">
|
605
|
+
|
606
|
+
Posted 4 hrs ago »
|
607
|
+
|
608
|
+
<span style="background:url(http://static-ak.net/thumbs/1/1907811.png);"></span>
|
609
|
+
</a>
|
391
610
|
|
611
|
+
</p>
|
392
612
|
|
393
|
-
|
613
|
+
|
614
|
+
|
615
|
+
|
616
|
+
<div class="act_info" style="display:none"></div>
|
617
|
+
|
618
|
+
|
619
|
+
|
620
|
+
|
621
|
+
</div><!-- section player -->
|
622
|
+
</div><!-- section track -->
|
623
|
+
<div data-itemid="1p7rs" id="section-track-1p7rs" class="section section-track even" >
|
624
|
+
<div class="track-info">Loved 52 mins ago</div>
|
625
|
+
|
626
|
+
<div class="section-player">
|
627
|
+
|
628
|
+
<span class="share-links">
|
629
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p7rs&title=AlunaGeorge+-+Your+Drums%2C+Your+Love"><img src="/images/icon-fb-share.gif" /> Share</a>
|
630
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p7rs&text=AlunaGeorge+-+Your+Drums%2C+Your+Love%20on%20&via"></a>
|
631
|
+
</span>
|
394
632
|
|
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
|
-
“The much anticipated Washed Out debut LP Within and Without drops July 12 on Sub Pop / Weird World. I…”
|
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 »<span style="background:url(
|
431
|
-
http://static-ak.m.net/thumbs/6/1461916.png
|
432
|
-
);"></span></a>
|
433
|
-
|
434
|
-
</p>
|
435
633
|
|
436
|
-
|
634
|
+
|
437
635
|
|
438
636
|
|
637
|
+
<a class="thumb"
|
638
|
+
href="/track/1p7rs/AlunaGeorge+-+Your+Drums%2C+Your+Love"
|
639
|
+
title="Your Drums, Your Love - go to page for this track"
|
640
|
+
style="background:url(http://static-ak.net/thumbs/3/1907813.png);">
|
641
|
+
</a>
|
439
642
|
|
440
|
-
<
|
441
|
-
|
643
|
+
<h3 class="track_name">
|
644
|
+
|
645
|
+
<a class="artist" title="AlunaGeorge - search for this artist" href="/artist/AlunaGeorge">AlunaGeorge</a> - <a class="track" title="Your Drums, Your Love - go to page for this track" href="/track/1p7rs/AlunaGeorge+-+Your+Drums%2C+Your+Love">
|
646
|
+
<span class="base-title">Your Drums, Your Love</span></a>
|
647
|
+
|
442
648
|
|
649
|
+
|
650
|
+
|
651
|
+
</h3>
|
443
652
|
|
444
653
|
|
445
654
|
|
446
655
|
|
656
|
+
<ul class="tools">
|
657
|
+
<li class="playdiv">
|
658
|
+
<a id="play_ctrl_1p7rs" class="play-ctrl play"
|
659
|
+
title="Play"
|
660
|
+
href="">Play<span></span>
|
661
|
+
</a>
|
662
|
+
</li>
|
663
|
+
|
664
|
+
<li class="favdiv">
|
665
|
+
|
666
|
+
<a title="Favorited by 3238 others"
|
667
|
+
class="toggle-favorites favcount_1p7rs favcount-off"
|
668
|
+
id="favcount_1p7rs"
|
669
|
+
href="">3.2K </a>
|
670
|
+
|
671
|
+
<a class="fav_item_1p7rs fav-off"
|
672
|
+
id="fav_item_1p7rs"
|
673
|
+
onclick="toggle_favorite('item','1p7rs');return false;"
|
674
|
+
title = "Favorite"
|
675
|
+
href="">Favorite<span></span>
|
676
|
+
</a>
|
677
|
+
</li>
|
678
|
+
|
679
|
+
|
680
|
+
|
681
|
+
</ul>
|
682
|
+
|
683
|
+
<div class="meta">
|
684
|
+
<span class="buy">
|
685
|
+
<a href="" class="toggle-reposts">
|
686
|
+
Posted by
|
687
|
+
27 blogs</a> •
|
688
|
+
|
689
|
+
Download Artist:
|
690
|
+
<a rel="nofollow" href="/go/emusic_search/AlunaGeorge">eMusic (<strong>$10 FREE</strong>)</a> •
|
691
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/AlunaGeorge">Amazon</a>
|
692
|
+
• <a rel="nofollow" href="/go/itunes_web/alunageorge%2Fid425686769?entity=artist">iTunes</a>
|
693
|
+
</span>
|
694
|
+
</div>
|
447
695
|
|
696
|
+
|
697
|
+
<p>
|
698
|
+
<a
|
699
|
+
class="blog-fav-off"
|
700
|
+
title="See other tracks posted by this blog"
|
701
|
+
href="/blog/et+musique+pour+tous/10096">Et Musique Pour Tous</a><a class="follow-pill fav_site_10096 follow"
|
702
|
+
onclick="toggle_favorite('site','10096');return false;"
|
703
|
+
href="#"><em></em><span>Follow</span></a>
|
704
|
+
|
705
|
+
“Hey y’all! I’m bringing you the newest single from the London power-duo, AlunaGeorge, and it’s everything you’d expect and more…” <a
|
706
|
+
class="readpost"
|
707
|
+
href="http://www.etmusiquepourtous.com/2012/08/22/alunageorge-your-drums-your-love/"
|
708
|
+
title="Read this post: AlunaGeorge – Your Drums, Your Love">
|
709
|
+
|
710
|
+
Posted 4 hrs ago »
|
711
|
+
|
712
|
+
<span style="background:url(http://static-ak.net/thumbs/3/1907813.png);"></span>
|
713
|
+
</a>
|
714
|
+
|
715
|
+
</p>
|
716
|
+
|
717
|
+
|
718
|
+
|
719
|
+
|
720
|
+
<div class="act_info" style="display:none"></div>
|
721
|
+
|
448
722
|
|
449
723
|
|
450
724
|
|
451
725
|
</div><!-- section player -->
|
726
|
+
</div><!-- section track -->
|
727
|
+
<div data-itemid="1nsqc" id="section-track-1nsqc" class="section section-track odd" >
|
728
|
+
<div class="track-info">Loved 53 mins ago</div>
|
452
729
|
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
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>
|
730
|
+
<div class="section-player">
|
731
|
+
|
732
|
+
<span class="share-links">
|
733
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1nsqc&title=Crystal+Fighters+-+At+Home+%28US+Radio+Edit%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
734
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1nsqc&text=Crystal+Fighters+-+At+Home+%28US+Radio+Edit%29%20on%20&via"></a>
|
735
|
+
</span>
|
736
|
+
|
737
|
+
|
738
|
+
|
739
|
+
|
740
|
+
|
741
|
+
<a class="thumb"
|
742
|
+
href="/track/1nsqc/Crystal+Fighters+-+At+Home+%28US+Radio+Edit%29"
|
743
|
+
title="At Home (US Radio Edit) - go to page for this track"
|
744
|
+
style="background:url(http://static-ak.net/thumbs/2/1907952.png);">
|
745
|
+
</a>
|
746
|
+
|
747
|
+
<h3 class="track_name">
|
748
|
+
<span class="remix-icon"></span>
|
749
|
+
<a class="artist" title="Crystal Fighters - search for this artist" href="/artist/Crystal+Fighters">Crystal Fighters</a> - <a class="track" title="At Home (US Radio Edit) - go to page for this track" href="/track/1nsqc/Crystal+Fighters+-+At+Home+%28US+Radio+Edit%29">
|
750
|
+
<span class="base-title">At Home</span> <span class="remix-link">US Radio Edit</span> <span class="remix-count"> +12 more</span></a>
|
504
751
|
|
505
|
-
|
506
|
-
|
507
|
-
|
752
|
+
|
753
|
+
|
754
|
+
|
755
|
+
</h3>
|
756
|
+
|
757
|
+
|
758
|
+
|
759
|
+
|
760
|
+
<ul class="tools">
|
761
|
+
<li class="playdiv">
|
762
|
+
<a id="play_ctrl_1nsqc" class="play-ctrl play"
|
763
|
+
title="Play"
|
764
|
+
href="">Play<span></span>
|
765
|
+
</a>
|
766
|
+
</li>
|
767
|
+
|
768
|
+
<li class="favdiv">
|
769
|
+
|
770
|
+
<a title="Favorited by 67 others"
|
771
|
+
class="toggle-favorites favcount_1nsqc favcount-off"
|
772
|
+
id="favcount_1nsqc"
|
773
|
+
href="">67 </a>
|
774
|
+
|
775
|
+
<a class="fav_item_1nsqc fav-off"
|
776
|
+
id="fav_item_1nsqc"
|
777
|
+
onclick="toggle_favorite('item','1nsqc');return false;"
|
778
|
+
title = "Favorite"
|
779
|
+
href="">Favorite<span></span>
|
780
|
+
</a>
|
781
|
+
</li>
|
782
|
+
|
783
|
+
|
784
|
+
|
785
|
+
</ul>
|
786
|
+
|
787
|
+
<div class="meta">
|
788
|
+
<span class="buy">
|
789
|
+
<a href="" class="toggle-reposts">
|
508
790
|
Posted by
|
509
|
-
|
510
|
-
</a>
|
791
|
+
3 blogs</a> •
|
511
792
|
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
793
|
+
Download Artist:
|
794
|
+
<a rel="nofollow" href="/go/emusic_search/Crystal+Fighters">eMusic (<strong>$10 FREE</strong>)</a> •
|
795
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Crystal+Fighters">Amazon</a>
|
796
|
+
• <a rel="nofollow" href="/go/itunes_web/crystal-fighters%2Fid314129988?entity=artist">iTunes</a>
|
797
|
+
</span>
|
798
|
+
</div>
|
799
|
+
|
518
800
|
|
519
|
-
|
801
|
+
<p>
|
802
|
+
<a
|
803
|
+
class="blog-fav-off"
|
804
|
+
title="See other tracks posted by this blog"
|
805
|
+
href="/blog/indie+shuffle/11626">Indie Shuffle</a><a class="follow-pill fav_site_11626 follow"
|
806
|
+
onclick="toggle_favorite('site','11626');return false;"
|
807
|
+
href="#"><em></em><span>Follow</span></a>
|
808
|
+
|
809
|
+
“Visit Indie Shuffle to download. Song: Crystal Fighters - At Home [download here] What's so good? Crystal Fighters just released…” <a
|
810
|
+
class="readpost"
|
811
|
+
href="http://www.indieshuffle.com/crystal-fighters-at-home/"
|
812
|
+
title="Read this post: Crystal Fighters – At Home">
|
813
|
+
|
814
|
+
Posted 3 hrs ago »
|
815
|
+
|
816
|
+
<span style="background:url(http://static-ak.net/thumbs/2/1907952.png);"></span>
|
817
|
+
</a>
|
520
818
|
|
819
|
+
</p>
|
521
820
|
|
522
|
-
|
821
|
+
|
822
|
+
|
823
|
+
|
824
|
+
<div class="act_info" style="display:none"></div>
|
825
|
+
|
826
|
+
|
827
|
+
|
828
|
+
|
829
|
+
</div><!-- section player -->
|
830
|
+
</div><!-- section track -->
|
831
|
+
<div data-itemid="1mp29" id="section-track-1mp29" class="section section-track even" >
|
832
|
+
<div class="track-info">Loved 2 hrs ago</div>
|
833
|
+
|
834
|
+
<div class="section-player">
|
835
|
+
|
836
|
+
<span class="share-links">
|
837
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1mp29&title=Baauer+-+In+My+Nose"><img src="/images/icon-fb-share.gif" /> Share</a>
|
838
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type=-player&url=http%3A%2F%2F.com%2Fitem%2F1mp29&text=Baauer+-+In+My+Nose%20on%20@&via="></a>
|
839
|
+
</span>
|
523
840
|
|
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
|
-
“‘Together’, crafted by the side-project of French house legends DJ Falcon and Thomas Bangalter (of Daft Punk) – also known…”
|
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…">
|
559
|
-
Posted 9 hrs ago »<span style="background:url(
|
560
|
-
http://static-ak.m.net/thumbs/7/1462247.png
|
561
|
-
);"></span></a>
|
562
|
-
|
563
|
-
</p>
|
564
841
|
|
565
|
-
|
842
|
+
|
566
843
|
|
567
844
|
|
845
|
+
<a class="thumb"
|
846
|
+
href="/track/1mp29/Baauer+-+In+My+Nose"
|
847
|
+
title="In My Nose - go to page for this track"
|
848
|
+
style="background:url(http://static-ak..net/thumbs/8/1833938.png);">
|
849
|
+
</a>
|
568
850
|
|
569
|
-
<
|
570
|
-
|
851
|
+
<h3 class="track_name">
|
852
|
+
|
853
|
+
<a class="artist" title="Baauer - search for this artist" href="/artist/Baauer">Baauer</a> - <a class="track" title="In My Nose - go to page for this track" href="/track/1mp29/Baauer+-+In+My+Nose">
|
854
|
+
<span class="base-title">In My Nose</span></a>
|
855
|
+
|
571
856
|
|
857
|
+
|
858
|
+
|
859
|
+
</h3>
|
572
860
|
|
573
861
|
|
574
862
|
|
575
863
|
|
864
|
+
<ul class="tools">
|
865
|
+
<li class="playdiv">
|
866
|
+
<a id="play_ctrl_1mp29" class="play-ctrl play"
|
867
|
+
title="Play"
|
868
|
+
href="">Play<span></span>
|
869
|
+
</a>
|
870
|
+
</li>
|
871
|
+
|
872
|
+
<li class="favdiv">
|
873
|
+
|
874
|
+
<a title="Favorited by 51 others"
|
875
|
+
class="toggle-favorites favcount_1mp29 favcount-off"
|
876
|
+
id="favcount_1mp29"
|
877
|
+
href="">51 </a>
|
878
|
+
|
879
|
+
<a class="fav_item_1mp29 fav-off"
|
880
|
+
id="fav_item_1mp29"
|
881
|
+
onclick="toggle_favorite('item','1mp29');return false;"
|
882
|
+
title = "Favorite"
|
883
|
+
href="">Favorite<span></span>
|
884
|
+
</a>
|
885
|
+
</li>
|
886
|
+
|
887
|
+
|
888
|
+
|
889
|
+
</ul>
|
890
|
+
|
891
|
+
<div class="meta">
|
892
|
+
<span class="buy">
|
893
|
+
|
894
|
+
Download Artist:
|
895
|
+
<a rel="nofollow" href="/go/emusic_search/Baauer">eMusic (<strong>$10 FREE</strong>)</a> •
|
896
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Baauer">Amazon</a>
|
897
|
+
• <a rel="nofollow" href="/go/itunes_web/baauer%2Fid526199085?entity=artist">iTunes</a>
|
898
|
+
</span>
|
899
|
+
</div>
|
576
900
|
|
901
|
+
|
902
|
+
<p>
|
903
|
+
<a
|
904
|
+
class="blog-fav-off"
|
905
|
+
title="See other tracks posted by this blog"
|
906
|
+
href="/blog/vacay+wave/12526">Vacay Wave</a><a class="follow-pill fav_site_12526 follow"
|
907
|
+
onclick="toggle_favorite('site','12526');return false;"
|
908
|
+
href="#"><em></em><span>Follow</span></a>
|
909
|
+
|
910
|
+
“awesome Surprise examination vacayers, your vitamin intake is steady as always I hope but with the recent trap explosion I…” <a
|
911
|
+
class="readpost"
|
912
|
+
href="http://www.vacayvitamins.com/rap/trapptitude-test-drankenstein-monolith-crnkn-more/"
|
913
|
+
title="Read this post: Trapptitude Test (Drankenstein | Mo…">
|
914
|
+
|
915
|
+
Posted on Jun 7th »
|
916
|
+
|
917
|
+
<span style="background:url(http://static-ak..net/thumbs/8/1833938.png);"></span>
|
918
|
+
</a>
|
919
|
+
|
920
|
+
</p>
|
921
|
+
|
922
|
+
|
923
|
+
|
924
|
+
|
925
|
+
<div class="act_info" style="display:none"></div>
|
926
|
+
|
577
927
|
|
578
928
|
|
579
929
|
|
580
930
|
</div><!-- section player -->
|
931
|
+
</div><!-- section track -->
|
932
|
+
<div data-itemid="1m736" id="section-track-1m736" class="section section-track odd" >
|
933
|
+
<div class="track-info">Loved 2 hrs ago</div>
|
934
|
+
|
935
|
+
<div class="section-player">
|
936
|
+
|
937
|
+
<span class="share-links">
|
938
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type=-player&url=http%3A%2F%2F.com%2Fitem%2F1m736&title=Baauer+-+Yaow%21"><img src="/images/icon-fb-share.gif" /> Share</a>
|
939
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type=-player&url=http%3A%2F%2F.com%2Fitem%2F1m736&text=Baauer+-+Yaow%21%20on%20@&via"></a>
|
940
|
+
</span>
|
581
941
|
|
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 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> •
|
639
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> •
|
640
|
-
<a rel="nofollow" href="/go/itunes_search/Earl+Da+Grey">iTunes</a>
|
641
|
-
</span>
|
642
|
-
</div>
|
643
942
|
|
943
|
+
|
944
|
+
|
945
|
+
|
946
|
+
<a class="thumb"
|
947
|
+
href="/track/1m736/Baauer+-+Yaow%21"
|
948
|
+
title="Yaow! - go to page for this track"
|
949
|
+
style="background:url(http://static-ak.net/thumbs/4/1902984.png);">
|
950
|
+
</a>
|
951
|
+
|
952
|
+
<h3 class="track_name">
|
953
|
+
|
954
|
+
<a class="artist" title="Baauer - search for this artist" href="/artist/Baauer">Baauer</a> - <a class="track" title="Yaow! - go to page for this track" href="/track/1m736/Baauer+-+Yaow%21">
|
955
|
+
<span class="base-title">Yaow!</span></a>
|
956
|
+
|
957
|
+
|
958
|
+
|
959
|
+
|
960
|
+
</h3>
|
961
|
+
|
962
|
+
|
963
|
+
|
964
|
+
|
965
|
+
<ul class="tools">
|
966
|
+
<li class="playdiv">
|
967
|
+
<a id="play_ctrl_1m736" class="play-ctrl play"
|
968
|
+
title="Play"
|
969
|
+
href="">Play<span></span>
|
970
|
+
</a>
|
971
|
+
</li>
|
972
|
+
|
973
|
+
<li class="favdiv">
|
974
|
+
|
975
|
+
<a title="Favorited by 406 others"
|
976
|
+
class="toggle-favorites favcount_1m736 favcount-off"
|
977
|
+
id="favcount_1m736"
|
978
|
+
href="">406 </a>
|
979
|
+
|
980
|
+
<a class="fav_item_1m736 fav-off"
|
981
|
+
id="fav_item_1m736"
|
982
|
+
onclick="toggle_favorite('item','1m736');return false;"
|
983
|
+
title = "Favorite"
|
984
|
+
href="">Favorite<span></span>
|
985
|
+
</a>
|
986
|
+
</li>
|
987
|
+
|
988
|
+
|
989
|
+
|
990
|
+
</ul>
|
991
|
+
|
644
992
|
<div class="meta">
|
993
|
+
<span class="buy">
|
994
|
+
<a href="" class="toggle-reposts">
|
995
|
+
Posted by
|
996
|
+
10 blogs</a> •
|
997
|
+
|
998
|
+
Download Artist:
|
999
|
+
<a rel="nofollow" href="/go/emusic_search/Baauer">eMusic (<strong>$10 FREE</strong>)</a> •
|
1000
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Baauer">Amazon</a>
|
1001
|
+
• <a rel="nofollow" href="/go/itunes_web/yaow%21%2Fid526199073%3Fi%3D526199110?entity=album">iTunes</a>
|
1002
|
+
</span>
|
1003
|
+
</div>
|
645
1004
|
|
1005
|
+
|
1006
|
+
<p>
|
1007
|
+
<a
|
1008
|
+
class="blog-fav-off"
|
1009
|
+
title="See other tracks posted by this blog"
|
1010
|
+
href="/blog/gottadancedirty/10215">gottadancedirty</a><a class="follow-pill fav_site_10215 follow"
|
1011
|
+
onclick="toggle_favorite('site','10215');return false;"
|
1012
|
+
href="#"><em></em><span>Follow</span></a>
|
1013
|
+
|
1014
|
+
“Ms. Tamara Sky and myself, Tre are on dirt duty this week and we have some splendidly fresh sounds for…” <a
|
1015
|
+
class="readpost"
|
1016
|
+
href="http://www.gottadancedirty.com/2012/08/16/the-dirt-85-tre-tamara-sky/"
|
1017
|
+
title="Read this post: The Dirt #85: Tre + Tamara Sky">
|
1018
|
+
|
1019
|
+
Posted 5 days ago »
|
1020
|
+
|
1021
|
+
<span style="background:url(http://static-ak.net/thumbs/4/1902984.png);"></span>
|
1022
|
+
</a>
|
646
1023
|
|
647
|
-
|
1024
|
+
</p>
|
648
1025
|
|
649
|
-
|
650
|
-
|
651
|
-
|
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
|
-
“Hey guys It's Nite again, and Today I'm going to just post a quick one on request of a Mr.…”
|
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 »<span style="background:url(
|
685
|
-
http://static-ak.m.net/thumbs/3/1457903.png
|
686
|
-
);"></span></a>
|
687
|
-
|
688
|
-
</p>
|
689
|
-
|
1026
|
+
|
1027
|
+
|
1028
|
+
|
690
1029
|
<div class="act_info" style="display:none"></div>
|
691
1030
|
|
692
1031
|
|
693
1032
|
|
694
|
-
<div class="track-info"> Loved yesterday
|
695
|
-
</div><!-- end track-info -->
|
696
1033
|
|
1034
|
+
</div><!-- section player -->
|
1035
|
+
</div><!-- section track -->
|
1036
|
+
<a class="notice" onclick="show_lightbox('signup');return false;" href=""><span>Customize the with the music YOU <em>Love</em> • <strong>Sign Up Now »</strong></span></a>
|
1037
|
+
<div data-itemid="1p8x5" id="section-track-1p8x5" class="section section-track even" >
|
1038
|
+
<div class="track-info">Loved 23 hrs ago</div>
|
1039
|
+
|
1040
|
+
<div class="section-player">
|
1041
|
+
|
1042
|
+
<span class="share-links">
|
1043
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p8x5&title=DJ+L%27Aquarium+-+Let+Your+Voice+Be+Heard+%28Morodisco+Edit%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1044
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p8x5&text=DJ+L%27Aquarium+-+Let+Your+Voice+Be+Heard+%28Morodisco+Edit%29%20on%20&via"></a>
|
1045
|
+
</span>
|
697
1046
|
|
1047
|
+
|
1048
|
+
|
1049
|
+
|
698
1050
|
|
1051
|
+
<a class="thumb"
|
1052
|
+
href="/track/1p8x5/DJ+L%27Aquarium+-+Let+Your+Voice+Be+Heard+%28Morodisco+Edit%29"
|
1053
|
+
title="Let Your Voice Be Heard (Morodisco Edit) - go to page for this track"
|
1054
|
+
style="background:url(http://static-ak.net/thumbs/3/1904993.png);">
|
1055
|
+
</a>
|
699
1056
|
|
1057
|
+
<h3 class="track_name">
|
1058
|
+
<span class="remix-icon"></span>
|
1059
|
+
<a class="artist" title="DJ L'Aquarium - search for this artist" href="/artist/DJ+L%27Aquarium">DJ L'Aquarium</a> - <a class="track" title="Let Your Voice Be Heard (Morodisco Edit) - go to page for this track" href="/track/1p8x5/DJ+L%27Aquarium+-+Let+Your+Voice+Be+Heard+%28Morodisco+Edit%29">
|
1060
|
+
<span class="base-title">Let Your Voice Be Heard</span> <span class="remix-link">Morodisco Edit</span> </a>
|
1061
|
+
|
700
1062
|
|
1063
|
+
|
1064
|
+
|
1065
|
+
</h3>
|
701
1066
|
|
702
1067
|
|
703
1068
|
|
704
1069
|
|
705
|
-
|
1070
|
+
<ul class="tools">
|
1071
|
+
<li class="playdiv">
|
1072
|
+
<a id="play_ctrl_1p8x5" class="play-ctrl play"
|
1073
|
+
title="Play"
|
1074
|
+
href="">Play<span></span>
|
1075
|
+
</a>
|
1076
|
+
</li>
|
1077
|
+
|
1078
|
+
<li class="favdiv">
|
1079
|
+
|
1080
|
+
<a title="Favorited by 13 others"
|
1081
|
+
class="toggle-favorites favcount_1p8x5 favcount-off"
|
1082
|
+
id="favcount_1p8x5"
|
1083
|
+
href="">13 </a>
|
1084
|
+
|
1085
|
+
<a class="fav_item_1p8x5 fav-off"
|
1086
|
+
id="fav_item_1p8x5"
|
1087
|
+
onclick="toggle_favorite('item','1p8x5');return false;"
|
1088
|
+
title = "Favorite"
|
1089
|
+
href="">Favorite<span></span>
|
1090
|
+
</a>
|
1091
|
+
</li>
|
1092
|
+
|
1093
|
+
|
1094
|
+
|
1095
|
+
</ul>
|
1096
|
+
|
1097
|
+
<div class="meta">
|
1098
|
+
<span class="buy">
|
1099
|
+
|
1100
|
+
Download Artist:
|
1101
|
+
<a rel="nofollow" href="/go/emusic_search/DJ+L%27Aquarium">eMusic (<strong>$10 FREE</strong>)</a> •
|
1102
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/DJ+L%27Aquarium">Amazon</a>
|
1103
|
+
• <a rel="nofollow" href="/go/itunes_web/dj-laquarium%2Fid502532395?entity=artist">iTunes</a>
|
1104
|
+
</span>
|
1105
|
+
</div>
|
706
1106
|
|
1107
|
+
|
1108
|
+
<p>
|
1109
|
+
<a
|
1110
|
+
class="blog-fav-off"
|
1111
|
+
title="See other tracks posted by this blog"
|
1112
|
+
href="/blog/aerial+noise/12376">aerial noise</a><a class="follow-pill fav_site_12376 follow"
|
1113
|
+
onclick="toggle_favorite('site','12376');return false;"
|
1114
|
+
href="#"><em></em><span>Follow</span></a>
|
1115
|
+
|
1116
|
+
“Yep! This has Giorgio Moroder influences written all over it alright! With ‘Let Your Voice Be Heard’ retaining a blatent…” <a
|
1117
|
+
class="readpost"
|
1118
|
+
href="http://www.aerialnoise.com/2012/08/20/dj-laquarium-let-your-voice-be-heard-morodisco-edit/"
|
1119
|
+
title="Read this post: DJ L’AQUARIUM – Let Your Voice Be H…">
|
1120
|
+
|
1121
|
+
Posted 2 days ago »
|
1122
|
+
|
1123
|
+
<span style="background:url(http://static-ak.net/thumbs/3/1904993.png);"></span>
|
1124
|
+
</a>
|
707
1125
|
|
1126
|
+
</p>
|
708
1127
|
|
709
|
-
|
1128
|
+
|
1129
|
+
|
1130
|
+
|
1131
|
+
<div class="act_info" style="display:none"></div>
|
1132
|
+
|
710
1133
|
|
711
|
-
<div class="same-post section-track" >
|
712
|
-
<h3 class="track_name">
|
713
|
-
<a class="artist" title="Earl Da Grey - search 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
1134
|
|
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> •
|
755
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> •
|
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
1135
|
|
785
|
-
</div><!-- section
|
1136
|
+
</div><!-- section player -->
|
1137
|
+
</div><!-- section track -->
|
1138
|
+
<div data-itemid="1p404" id="section-track-1p404" class="section section-track odd" >
|
1139
|
+
<div class="track-info">Loved 23 hrs ago</div>
|
1140
|
+
|
1141
|
+
<div class="section-player">
|
1142
|
+
|
1143
|
+
<span class="share-links">
|
1144
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p404&title=Com+Truise+-+Chemical+Legs"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1145
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p404&text=Com+Truise+-+Chemical+Legs%20on%20&via"></a>
|
1146
|
+
</span>
|
786
1147
|
|
1148
|
+
|
1149
|
+
|
1150
|
+
|
787
1151
|
|
788
|
-
<
|
1152
|
+
<a class="thumb"
|
1153
|
+
href="/track/1p404/Com+Truise+-+Chemical+Legs"
|
1154
|
+
title="Chemical Legs - go to page for this track"
|
1155
|
+
style="background:url(http://static-ak.net/thumbs/8/1907418.png);">
|
1156
|
+
</a>
|
789
1157
|
|
790
|
-
<
|
791
|
-
<h3 class="track_name">
|
792
|
-
<a class="artist" title="Earl Da Grey - search 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
|
-
|
1158
|
+
<h3 class="track_name">
|
797
1159
|
|
798
|
-
|
799
|
-
|
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>
|
1160
|
+
<a class="artist" title="Com Truise - search for this artist" href="/artist/Com+Truise">Com Truise</a> - <a class="track" title="Chemical Legs - go to page for this track" href="/track/1p404/Com+Truise+-+Chemical+Legs">
|
1161
|
+
<span class="base-title">Chemical Legs</span></a>
|
822
1162
|
|
823
|
-
</li>
|
824
1163
|
|
825
|
-
|
826
|
-
|
827
|
-
|
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> •
|
834
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> •
|
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 -->
|
1164
|
+
|
1165
|
+
|
1166
|
+
</h3>
|
863
1167
|
|
864
|
-
</div><!-- section-player -->
|
865
1168
|
|
866
1169
|
|
867
|
-
<div class="section-player same" >
|
868
1170
|
|
869
|
-
<
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
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>
|
1171
|
+
<ul class="tools">
|
1172
|
+
<li class="playdiv">
|
1173
|
+
<a id="play_ctrl_1p404" class="play-ctrl play"
|
1174
|
+
title="Play"
|
1175
|
+
href="">Play<span></span>
|
1176
|
+
</a>
|
1177
|
+
</li>
|
1178
|
+
|
1179
|
+
<li class="favdiv">
|
1180
|
+
|
1181
|
+
<a title="Favorited by 118 others"
|
1182
|
+
class="toggle-favorites favcount_1p404 favcount-off"
|
1183
|
+
id="favcount_1p404"
|
1184
|
+
href="">118 </a>
|
1185
|
+
|
1186
|
+
<a class="fav_item_1p404 fav-off"
|
1187
|
+
id="fav_item_1p404"
|
1188
|
+
onclick="toggle_favorite('item','1p404');return false;"
|
1189
|
+
title = "Favorite"
|
1190
|
+
href="">Favorite<span></span>
|
1191
|
+
</a>
|
1192
|
+
</li>
|
1193
|
+
|
1194
|
+
|
1195
|
+
|
1196
|
+
</ul>
|
901
1197
|
|
902
|
-
</li>
|
903
|
-
|
904
|
-
</ul>
|
905
|
-
|
906
1198
|
<div class="meta">
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
Download Artist:
|
912
|
-
<a rel="nofollow" href="/go/emusic_search/Earl Da Grey">eMusic (<strong>$10 FREE</strong>)</a> •
|
913
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Earl+Da+Grey">Amazon</a> •
|
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 with the music YOU <em>Love</em> • <strong>Sign Up Now »</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 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">
|
1199
|
+
<span class="buy">
|
1200
|
+
<a href="" class="toggle-reposts">
|
1201
|
+
Posted by
|
1202
|
+
15 blogs</a> •
|
999
1203
|
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
<div class="meta">
|
1204
|
+
Download Artist:
|
1205
|
+
<a rel="nofollow" href="/go/emusic_search/Com+Truise">eMusic (<strong>$10 FREE</strong>)</a> •
|
1206
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Com+Truise">Amazon</a>
|
1207
|
+
• <a rel="nofollow" href="/go/itunes_web/com-truise%2Fid407016659?entity=artist">iTunes</a>
|
1208
|
+
</span>
|
1209
|
+
</div>
|
1008
1210
|
|
1211
|
+
|
1212
|
+
<p>
|
1213
|
+
<a
|
1214
|
+
class="blog-fav-off"
|
1215
|
+
title="See other tracks posted by this blog"
|
1216
|
+
href="/blog/turntable+kitchen/10871">Turntable Kitchen</a><a class="follow-pill fav_site_10871 follow"
|
1217
|
+
onclick="toggle_favorite('site','10871');return false;"
|
1218
|
+
href="#"><em></em><span>Follow</span></a>
|
1219
|
+
|
1220
|
+
“Something tells me you might be sniffing around here for some new music. If my hunch is correct, then you’re…” <a
|
1221
|
+
class="readpost"
|
1222
|
+
href="http://www.turntablekitchen.com/2012/08/turntable-kitchen-the-august-2012-mix/"
|
1223
|
+
title="Read this post: Turntable Kitchen :: The August 201…">
|
1224
|
+
|
1225
|
+
Posted 9 hrs ago »
|
1226
|
+
|
1227
|
+
<span style="background:url(http://static-ak.net/thumbs/8/1907418.png);"></span>
|
1228
|
+
</a>
|
1009
1229
|
|
1010
|
-
|
1230
|
+
</p>
|
1011
1231
|
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
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
|
-
“To all of my fellow Boston Vacayers, if you haven’t already, make sure you clear your schedule for the week…”
|
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…">
|
1047
|
-
Posted 4 days ago »<span style="background:url(
|
1048
|
-
http://static-ak.m.net/thumbs/5/1458305.png
|
1049
|
-
);"></span></a>
|
1050
|
-
|
1051
|
-
</p>
|
1052
|
-
|
1232
|
+
|
1233
|
+
|
1234
|
+
|
1053
1235
|
<div class="act_info" style="display:none"></div>
|
1054
1236
|
|
1055
1237
|
|
1056
1238
|
|
1057
|
-
<div class="track-info"> Loved yesterday
|
1058
|
-
</div><!-- end track-info -->
|
1059
1239
|
|
1240
|
+
</div><!-- section player -->
|
1241
|
+
</div><!-- section track -->
|
1242
|
+
<div data-itemid="1p1ed" id="section-track-1p1ed" class="section section-track even" >
|
1243
|
+
<div class="track-info">Loved 23 hrs ago</div>
|
1060
1244
|
|
1245
|
+
<div class="section-player">
|
1246
|
+
|
1247
|
+
<span class="share-links">
|
1248
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p1ed&title=Capital+Cities+-+Nothing+Compares+2+U"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1249
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p1ed&text=Capital+Cities+-+Nothing+Compares+2+U%20on%20&via"></a>
|
1250
|
+
</span>
|
1061
1251
|
|
1252
|
+
|
1253
|
+
|
1254
|
+
|
1062
1255
|
|
1256
|
+
<a class="thumb"
|
1257
|
+
href="/track/1p1ed/Capital+Cities+-+Nothing+Compares+2+U"
|
1258
|
+
title="Nothing Compares 2 U - go to page for this track"
|
1259
|
+
style="background:url(http://static-ak.net/thumbs/3/1905293.png);">
|
1260
|
+
</a>
|
1063
1261
|
|
1262
|
+
<h3 class="track_name">
|
1263
|
+
|
1264
|
+
<a class="artist" title="Capital Cities - search for this artist" href="/artist/Capital+Cities">Capital Cities</a> - <a class="track" title="Nothing Compares 2 U - go to page for this track" href="/track/1p1ed/Capital+Cities+-+Nothing+Compares+2+U">
|
1265
|
+
<span class="base-title">Nothing Compares 2 U</span></a>
|
1266
|
+
|
1064
1267
|
|
1268
|
+
|
1269
|
+
|
1270
|
+
</h3>
|
1065
1271
|
|
1066
1272
|
|
1067
1273
|
|
1068
|
-
</div><!-- section player -->
|
1069
1274
|
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
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>
|
1275
|
+
<ul class="tools">
|
1276
|
+
<li class="playdiv">
|
1277
|
+
<a id="play_ctrl_1p1ed" class="play-ctrl play"
|
1278
|
+
title="Play"
|
1279
|
+
href="">Play<span></span>
|
1280
|
+
</a>
|
1281
|
+
</li>
|
1282
|
+
|
1283
|
+
<li class="favdiv">
|
1284
|
+
|
1285
|
+
<a title="Favorited by 5761 others"
|
1286
|
+
class="toggle-favorites favcount_1p1ed favcount-off"
|
1287
|
+
id="favcount_1p1ed"
|
1288
|
+
href="">5.8K </a>
|
1289
|
+
|
1290
|
+
<a class="fav_item_1p1ed fav-off"
|
1291
|
+
id="fav_item_1p1ed"
|
1292
|
+
onclick="toggle_favorite('item','1p1ed');return false;"
|
1293
|
+
title = "Favorite"
|
1294
|
+
href="">Favorite<span></span>
|
1295
|
+
</a>
|
1296
|
+
</li>
|
1297
|
+
|
1298
|
+
|
1299
|
+
|
1300
|
+
</ul>
|
1121
1301
|
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1302
|
+
<div class="meta">
|
1303
|
+
<span class="buy">
|
1304
|
+
<a href="" class="toggle-reposts">
|
1125
1305
|
Posted by
|
1126
|
-
|
1127
|
-
</a>
|
1306
|
+
12 blogs</a> •
|
1128
1307
|
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
<div class="meta">
|
1308
|
+
Download Artist:
|
1309
|
+
<a rel="nofollow" href="/go/emusic_search/Capital+Cities">eMusic (<strong>$10 FREE</strong>)</a> •
|
1310
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Capital+Cities">Amazon</a>
|
1311
|
+
• <a rel="nofollow" href="/go/itunes_web/capital-cities%2Fid398949430?entity=artist">iTunes</a>
|
1312
|
+
</span>
|
1313
|
+
</div>
|
1137
1314
|
|
1315
|
+
|
1316
|
+
<p>
|
1317
|
+
<a
|
1318
|
+
class="blog-fav-off"
|
1319
|
+
title="See other tracks posted by this blog"
|
1320
|
+
href="/blog/et+musique+pour+tous/10096">Et Musique Pour Tous</a><a class="follow-pill fav_site_10096 follow"
|
1321
|
+
onclick="toggle_favorite('site','10096');return false;"
|
1322
|
+
href="#"><em></em><span>Follow</span></a>
|
1323
|
+
|
1324
|
+
“To identify with a track means several things. One, you are trusting in an artists’ capability to dictate your emotions.…” <a
|
1325
|
+
class="readpost"
|
1326
|
+
href="http://www.etmusiquepourtous.com/2012/08/20/capital-cities-nothin-compares-2-u/"
|
1327
|
+
title="Read this post: Capital Cities – Nothin’ Compares 2…">
|
1328
|
+
|
1329
|
+
Posted 2 days ago »
|
1330
|
+
|
1331
|
+
<span style="background:url(http://static-ak.net/thumbs/3/1905293.png);"></span>
|
1332
|
+
</a>
|
1138
1333
|
|
1139
|
-
|
1334
|
+
</p>
|
1140
1335
|
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
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
|
-
“ATG had the opportunity to sit down with Jamaicaâs Antoine Hilaire (guitar/vox) and Florent Lyonnet (bass/vox) earlier this week to…”
|
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 »<span style="background:url(
|
1177
|
-
http://static-ak.m.net/thumbs/6/1458346.png
|
1178
|
-
);"></span></a>
|
1179
|
-
|
1180
|
-
</p>
|
1181
|
-
|
1336
|
+
|
1337
|
+
|
1338
|
+
|
1182
1339
|
<div class="act_info" style="display:none"></div>
|
1183
1340
|
|
1184
1341
|
|
1185
1342
|
|
1186
|
-
<div class="track-info"> Loved yesterday
|
1187
|
-
</div><!-- end track-info -->
|
1188
1343
|
|
1344
|
+
</div><!-- section player -->
|
1345
|
+
</div><!-- section track -->
|
1346
|
+
<div data-itemid="1mpdy" id="section-track-1mpdy" class="section section-track odd" >
|
1347
|
+
<div class="track-info">Loved 23 hrs ago</div>
|
1189
1348
|
|
1349
|
+
<div class="section-player">
|
1350
|
+
|
1351
|
+
<span class="share-links">
|
1352
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1mpdy&title=Atlas+Genius+-+Symptoms"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1353
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1mpdy&text=Atlas+Genius+-+Symptoms%20on%20&via"></a>
|
1354
|
+
</span>
|
1190
1355
|
|
1356
|
+
|
1357
|
+
|
1358
|
+
|
1191
1359
|
|
1360
|
+
<a class="thumb"
|
1361
|
+
href="/track/1mpdy/Atlas+Genius+-+Symptoms"
|
1362
|
+
title="Symptoms - go to page for this track"
|
1363
|
+
style="background:url(http://static-ak.net/thumbs/9/1905299.png);">
|
1364
|
+
</a>
|
1192
1365
|
|
1366
|
+
<h3 class="track_name">
|
1367
|
+
|
1368
|
+
<a class="artist" title="Atlas Genius - search for this artist" href="/artist/Atlas+Genius">Atlas Genius</a> - <a class="track" title="Symptoms - go to page for this track" href="/track/1mpdy/Atlas+Genius+-+Symptoms">
|
1369
|
+
<span class="base-title">Symptoms</span></a>
|
1370
|
+
|
1193
1371
|
|
1372
|
+
|
1373
|
+
|
1374
|
+
</h3>
|
1194
1375
|
|
1195
1376
|
|
1196
1377
|
|
1197
|
-
</div><!-- section player -->
|
1198
1378
|
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
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>
|
1379
|
+
<ul class="tools">
|
1380
|
+
<li class="playdiv">
|
1381
|
+
<a id="play_ctrl_1mpdy" class="play-ctrl play"
|
1382
|
+
title="Play"
|
1383
|
+
href="">Play<span></span>
|
1384
|
+
</a>
|
1385
|
+
</li>
|
1386
|
+
|
1387
|
+
<li class="favdiv">
|
1388
|
+
|
1389
|
+
<a title="Favorited by 883 others"
|
1390
|
+
class="toggle-favorites favcount_1mpdy favcount-off"
|
1391
|
+
id="favcount_1mpdy"
|
1392
|
+
href="">883 </a>
|
1393
|
+
|
1394
|
+
<a class="fav_item_1mpdy fav-off"
|
1395
|
+
id="fav_item_1mpdy"
|
1396
|
+
onclick="toggle_favorite('item','1mpdy');return false;"
|
1397
|
+
title = "Favorite"
|
1398
|
+
href="">Favorite<span></span>
|
1399
|
+
</a>
|
1400
|
+
</li>
|
1401
|
+
|
1402
|
+
|
1403
|
+
|
1404
|
+
</ul>
|
1250
1405
|
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1406
|
+
<div class="meta">
|
1407
|
+
<span class="buy">
|
1408
|
+
<a href="" class="toggle-reposts">
|
1254
1409
|
Posted by
|
1255
|
-
|
1256
|
-
</a>
|
1410
|
+
6 blogs</a> •
|
1257
1411
|
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
<div class="meta">
|
1412
|
+
Download Artist:
|
1413
|
+
<a rel="nofollow" href="/go/emusic_search/Atlas+Genius">eMusic (<strong>$10 FREE</strong>)</a> •
|
1414
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Atlas+Genius">Amazon</a>
|
1415
|
+
• <a rel="nofollow" href="/go/itunes_web/symptoms%2Fid530971175%3Fi%3D530971180?entity=album">iTunes</a>
|
1416
|
+
</span>
|
1417
|
+
</div>
|
1266
1418
|
|
1419
|
+
|
1420
|
+
<p>
|
1421
|
+
<a
|
1422
|
+
class="blog-fav-off"
|
1423
|
+
title="See other tracks posted by this blog"
|
1424
|
+
href="/blog/kick+kick+snare/12821">Kick Kick Snare</a><a class="follow-pill fav_site_12821 follow"
|
1425
|
+
onclick="toggle_favorite('site','12821');return false;"
|
1426
|
+
href="#"><em></em><span>Follow</span></a>
|
1427
|
+
|
1428
|
+
“Atlas Genius, three brothers from Adelaide, Australia, have just released the video for their track ‘Symptoms.’ The melancholic video officially…” <a
|
1429
|
+
class="readpost"
|
1430
|
+
href="http://kickkicksnare.com/2012/08/20/video-atlas-genius-symptoms/"
|
1431
|
+
title="Read this post: [VIDEO] Atlas Genius: Symptoms">
|
1432
|
+
|
1433
|
+
Posted 2 days ago »
|
1434
|
+
|
1435
|
+
<span style="background:url(http://static-ak.net/thumbs/9/1905299.png);"></span>
|
1436
|
+
</a>
|
1267
1437
|
|
1268
|
-
|
1438
|
+
</p>
|
1269
1439
|
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
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
|
-
“At Tympanogram, most of the acts covered are generally fairly obscure, often even by “indie” standards. I feel no guilt…”
|
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…">
|
1305
|
-
Posted 14 hrs ago »<span style="background:url(
|
1306
|
-
http://static-ak.m.net/thumbs/0/1461900.png
|
1307
|
-
);"></span></a>
|
1308
|
-
|
1309
|
-
</p>
|
1310
|
-
|
1440
|
+
|
1441
|
+
|
1442
|
+
|
1311
1443
|
<div class="act_info" style="display:none"></div>
|
1312
1444
|
|
1313
1445
|
|
1314
1446
|
|
1315
|
-
<div class="track-info"> Loved yesterday
|
1316
|
-
</div><!-- end track-info -->
|
1317
1447
|
|
1448
|
+
</div><!-- section player -->
|
1449
|
+
</div><!-- section track -->
|
1450
|
+
<div data-itemid="1nw41" id="section-track-1nw41" class="section section-track even" >
|
1451
|
+
<div class="track-info">Loved 23 hrs ago</div>
|
1318
1452
|
|
1453
|
+
<div class="section-player">
|
1454
|
+
|
1455
|
+
<span class="share-links">
|
1456
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1nw41&title=Sneaky+Sound+System+-+Friends+%28Jonny+Pow%21%21+Remix%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1457
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1nw41&text=Sneaky+Sound+System+-+Friends+%28Jonny+Pow%21%21+Remix%29%20on%20&via"></a>
|
1458
|
+
</span>
|
1319
1459
|
|
1460
|
+
|
1461
|
+
|
1462
|
+
|
1320
1463
|
|
1464
|
+
<a class="thumb"
|
1465
|
+
href="/track/1nw41/Sneaky+Sound+System+-+Friends+%28Jonny+Pow%21%21+Remix%29"
|
1466
|
+
title="Friends (Jonny Pow!! Remix) - go to page for this track"
|
1467
|
+
style="background:url(http://static-ak.net/thumbs/4/1905294.png);">
|
1468
|
+
</a>
|
1321
1469
|
|
1470
|
+
<h3 class="track_name">
|
1471
|
+
<span class="remix-icon"></span>
|
1472
|
+
<a class="artist" title="Sneaky Sound System - search for this artist" href="/artist/Sneaky+Sound+System">Sneaky Sound System</a> - <a class="track" title="Friends (Jonny Pow!! Remix) - go to page for this track" href="/track/1nw41/Sneaky+Sound+System+-+Friends+%28Jonny+Pow%21%21+Remix%29">
|
1473
|
+
<span class="base-title">Friends</span> <span class="remix-link">Jonny Pow!! Remix</span> <span class="remix-count"> +3 more</span></a>
|
1474
|
+
|
1322
1475
|
|
1476
|
+
|
1477
|
+
|
1478
|
+
</h3>
|
1323
1479
|
|
1324
1480
|
|
1325
1481
|
|
1326
|
-
</div><!-- section player -->
|
1327
1482
|
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
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>
|
1483
|
+
<ul class="tools">
|
1484
|
+
<li class="playdiv">
|
1485
|
+
<a id="play_ctrl_1nw41" class="play-ctrl play"
|
1486
|
+
title="Play"
|
1487
|
+
href="">Play<span></span>
|
1488
|
+
</a>
|
1489
|
+
</li>
|
1490
|
+
|
1491
|
+
<li class="favdiv">
|
1492
|
+
|
1493
|
+
<a title="Favorited by 68 others"
|
1494
|
+
class="toggle-favorites favcount_1nw41 favcount-off"
|
1495
|
+
id="favcount_1nw41"
|
1496
|
+
href="">68 </a>
|
1497
|
+
|
1498
|
+
<a class="fav_item_1nw41 fav-off"
|
1499
|
+
id="fav_item_1nw41"
|
1500
|
+
onclick="toggle_favorite('item','1nw41');return false;"
|
1501
|
+
title = "Favorite"
|
1502
|
+
href="">Favorite<span></span>
|
1503
|
+
</a>
|
1504
|
+
</li>
|
1505
|
+
|
1506
|
+
|
1507
|
+
|
1508
|
+
</ul>
|
1379
1509
|
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1510
|
+
<div class="meta">
|
1511
|
+
<span class="buy">
|
1512
|
+
<a href="" class="toggle-reposts">
|
1383
1513
|
Posted by
|
1384
|
-
|
1385
|
-
</a>
|
1514
|
+
2 blogs</a> •
|
1386
1515
|
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
<div class="meta">
|
1516
|
+
Download Artist:
|
1517
|
+
<a rel="nofollow" href="/go/emusic_search/Sneaky+Sound+System">eMusic (<strong>$10 FREE</strong>)</a> •
|
1518
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Sneaky+Sound+System">Amazon</a>
|
1519
|
+
• <a rel="nofollow" href="/go/itunes_web/friends-jonny-pow%21%21-remix%2Fid544514334%3Fi%3D544514424?entity=album">iTunes</a>
|
1520
|
+
</span>
|
1521
|
+
</div>
|
1395
1522
|
|
1523
|
+
|
1524
|
+
<p>
|
1525
|
+
<a
|
1526
|
+
class="blog-fav-off"
|
1527
|
+
title="See other tracks posted by this blog"
|
1528
|
+
href="/blog/chubby+beavers/12063">Chubby Beavers</a><a class="follow-pill fav_site_12063 follow"
|
1529
|
+
onclick="toggle_favorite('site','12063');return false;"
|
1530
|
+
href="#"><em></em><span>Follow</span></a>
|
1531
|
+
|
1532
|
+
“Probably thinking like what?? Yea I found this gem of a remix dating back to the yesteryears of 2005. Kevin…” <a
|
1533
|
+
class="readpost"
|
1534
|
+
href="http://www.chubbybeavers.com/turn-me-on/"
|
1535
|
+
title="Read this post: Turn Me On">
|
1536
|
+
|
1537
|
+
Posted 2 days ago »
|
1538
|
+
|
1539
|
+
<span style="background:url(http://static-ak.net/thumbs/4/1905294.png);"></span>
|
1540
|
+
</a>
|
1396
1541
|
|
1397
|
-
|
1542
|
+
</p>
|
1398
1543
|
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
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
|
-
“Glitch Mob's OOAH has delivered another big chun for the Dubstep community. This is the the kind of heat coming…”
|
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…">
|
1434
|
-
Posted yesterday »<span style="background:url(
|
1435
|
-
http://static-ak.m.net/thumbs/1/1461131.png
|
1436
|
-
);"></span></a>
|
1437
|
-
|
1438
|
-
</p>
|
1439
|
-
|
1544
|
+
|
1545
|
+
|
1546
|
+
|
1440
1547
|
<div class="act_info" style="display:none"></div>
|
1441
1548
|
|
1442
1549
|
|
1443
1550
|
|
1444
|
-
<div class="track-info"> Loved yesterday
|
1445
|
-
</div><!-- end track-info -->
|
1446
1551
|
|
1552
|
+
</div><!-- section player -->
|
1553
|
+
</div><!-- section track -->
|
1554
|
+
<div data-itemid="1kdgz" id="section-track-1kdgz" class="section section-track odd" >
|
1555
|
+
<div class="track-info">Loved 24 hrs ago</div>
|
1447
1556
|
|
1557
|
+
<div class="section-player">
|
1558
|
+
|
1559
|
+
<span class="share-links">
|
1560
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1kdgz&title=Seven+Lions+-+Polarized+%28feat.+Shaz+Sparks%29+%28Extended+DJ+Edit%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1561
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1kdgz&text=Seven+Lions+-+Polarized+%28feat.+Shaz+Sparks%29+%28Extended+DJ+Edit%29%20on%20&via"></a>
|
1562
|
+
</span>
|
1448
1563
|
|
1564
|
+
|
1565
|
+
|
1566
|
+
|
1449
1567
|
|
1568
|
+
<a class="thumb"
|
1569
|
+
href="/track/1kdgz/Seven+Lions+-+Polarized+%28feat.+Shaz+Sparks%29+%28Extended+DJ+Edit%29"
|
1570
|
+
title="Polarized (feat. Shaz Sparks) (Extended DJ Edit) - go to page for this track"
|
1571
|
+
style="background:url(http://static-ak.net/thumbs/1/1905521.png);">
|
1572
|
+
</a>
|
1450
1573
|
|
1574
|
+
<h3 class="track_name">
|
1575
|
+
<span class="remix-icon"></span>
|
1576
|
+
<a class="artist" title="Seven Lions - search for this artist" href="/artist/Seven+Lions">Seven Lions</a> - <a class="track" title="Polarized (feat. Shaz Sparks) (Extended DJ Edit) - go to page for this track" href="/track/1kdgz/Seven+Lions+-+Polarized+%28feat.+Shaz+Sparks%29+%28Extended+DJ+Edit%29">
|
1577
|
+
<span class="base-title">Polarized (feat. Shaz Sparks)</span> <span class="remix-link">Extended DJ Edit</span> </a>
|
1578
|
+
|
1451
1579
|
|
1580
|
+
|
1581
|
+
|
1582
|
+
</h3>
|
1452
1583
|
|
1453
1584
|
|
1454
1585
|
|
1455
|
-
</div><!-- section player -->
|
1456
1586
|
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
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>
|
1587
|
+
<ul class="tools">
|
1588
|
+
<li class="playdiv">
|
1589
|
+
<a id="play_ctrl_1kdgz" class="play-ctrl play"
|
1590
|
+
title="Play"
|
1591
|
+
href="">Play<span></span>
|
1592
|
+
</a>
|
1593
|
+
</li>
|
1594
|
+
|
1595
|
+
<li class="favdiv">
|
1596
|
+
|
1597
|
+
<a title="Favorited by 88 others"
|
1598
|
+
class="toggle-favorites favcount_1kdgz favcount-off"
|
1599
|
+
id="favcount_1kdgz"
|
1600
|
+
href="">88 </a>
|
1601
|
+
|
1602
|
+
<a class="fav_item_1kdgz fav-off"
|
1603
|
+
id="fav_item_1kdgz"
|
1604
|
+
onclick="toggle_favorite('item','1kdgz');return false;"
|
1605
|
+
title = "Favorite"
|
1606
|
+
href="">Favorite<span></span>
|
1607
|
+
</a>
|
1608
|
+
</li>
|
1609
|
+
|
1610
|
+
|
1611
|
+
|
1612
|
+
</ul>
|
1508
1613
|
|
1509
|
-
|
1510
|
-
|
1511
|
-
|
1614
|
+
<div class="meta">
|
1615
|
+
<span class="buy">
|
1616
|
+
<a href="" class="toggle-reposts">
|
1512
1617
|
Posted by
|
1513
|
-
|
1514
|
-
</a>
|
1618
|
+
2 blogs</a> •
|
1515
1619
|
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
<div class="meta">
|
1620
|
+
Download Artist:
|
1621
|
+
<a rel="nofollow" href="/go/emusic_search/Seven+Lions">eMusic (<strong>$10 FREE</strong>)</a> •
|
1622
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Seven+Lions">Amazon</a>
|
1623
|
+
• <a rel="nofollow" href="/go/itunes_web/seven-lions%2Fid461065242?entity=artist">iTunes</a>
|
1624
|
+
</span>
|
1625
|
+
</div>
|
1524
1626
|
|
1627
|
+
|
1628
|
+
<p>
|
1629
|
+
<a
|
1630
|
+
class="blog-fav-off"
|
1631
|
+
title="See other tracks posted by this blog"
|
1632
|
+
href="/blog/salacious+sound/6988">Salacious Sound</a><a class="follow-pill fav_site_6988 follow"
|
1633
|
+
onclick="toggle_favorite('site','6988');return false;"
|
1634
|
+
href="#"><em></em><span>Follow</span></a>
|
1635
|
+
|
1636
|
+
“‘Introducing’ is a weekly feature highlighting new and upcoming artists from the world of electronic music. Every Sunday we are…” <a
|
1637
|
+
class="readpost"
|
1638
|
+
href="http://salacioussound.com/2012/08/introducing-seven-lions/"
|
1639
|
+
title="Read this post: Introducing: Seven Lions">
|
1640
|
+
|
1641
|
+
Posted 2 days ago »
|
1642
|
+
|
1643
|
+
<span style="background:url(http://static-ak.net/thumbs/1/1905521.png);"></span>
|
1644
|
+
</a>
|
1525
1645
|
|
1526
|
-
|
1646
|
+
</p>
|
1527
1647
|
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
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
|
-
“Over the weekend, Alex Metric, ex BBC Radio 1 DJ, super producer, musician, became the latest artist to pump out…”
|
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…">
|
1563
|
-
Posted 3 days ago »<span style="background:url(
|
1564
|
-
http://static-ak.m.net/thumbs/0/1458840.png
|
1565
|
-
);"></span></a>
|
1566
|
-
|
1567
|
-
</p>
|
1568
|
-
|
1648
|
+
|
1649
|
+
|
1650
|
+
|
1569
1651
|
<div class="act_info" style="display:none"></div>
|
1570
1652
|
|
1571
1653
|
|
1572
1654
|
|
1573
|
-
<div class="track-info"> Loved yesterday
|
1574
|
-
</div><!-- end track-info -->
|
1575
|
-
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
1655
|
|
1656
|
+
</div><!-- section player -->
|
1657
|
+
</div><!-- section track -->
|
1658
|
+
<div data-itemid="1kdh0" id="section-track-1kdh0" class="section section-track odd same" >
|
1659
|
+
<div class="track-info">Loved 24 hrs ago</div>
|
1580
1660
|
|
1661
|
+
<div class="section-player">
|
1662
|
+
|
1663
|
+
<span class="share-links">
|
1664
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1kdh0&title=Seven+Lions+-+Below+Us+%28feat.+Shaz+Sparks%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1665
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1kdh0&text=Seven+Lions+-+Below+Us+%28feat.+Shaz+Sparks%29%20on%20&via"></a>
|
1666
|
+
</span>
|
1581
1667
|
|
1668
|
+
|
1669
|
+
|
1670
|
+
|
1582
1671
|
|
1672
|
+
<h3 class="track_name">
|
1673
|
+
|
1674
|
+
<a class="artist" title="Seven Lions - search for this artist" href="/artist/Seven+Lions">Seven Lions</a> - <a class="track" title="Below Us (feat. Shaz Sparks) - go to page for this track" href="/track/1kdh0/Seven+Lions+-+Below+Us+%28feat.+Shaz+Sparks%29">
|
1675
|
+
<span class="base-title">Below Us (feat. Shaz Sparks)</span></a>
|
1676
|
+
|
1583
1677
|
|
1584
|
-
|
1678
|
+
|
1679
|
+
|
1680
|
+
</h3>
|
1585
1681
|
|
1586
1682
|
|
1587
1683
|
|
1588
|
-
<div class="section-player same" >
|
1589
1684
|
|
1590
|
-
<
|
1591
|
-
|
1592
|
-
|
1593
|
-
|
1594
|
-
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
|
1608
|
-
|
1609
|
-
|
1610
|
-
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
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>
|
1685
|
+
<ul class="tools">
|
1686
|
+
<li class="playdiv">
|
1687
|
+
<a id="play_ctrl_1kdh0" class="play-ctrl play"
|
1688
|
+
title="Play"
|
1689
|
+
href="">Play<span></span>
|
1690
|
+
</a>
|
1691
|
+
</li>
|
1692
|
+
|
1693
|
+
<li class="favdiv">
|
1694
|
+
|
1695
|
+
<a title="Favorited by 133 others"
|
1696
|
+
class="toggle-favorites favcount_1kdh0 favcount-off"
|
1697
|
+
id="favcount_1kdh0"
|
1698
|
+
href="">133 </a>
|
1699
|
+
|
1700
|
+
<a class="fav_item_1kdh0 fav-off"
|
1701
|
+
id="fav_item_1kdh0"
|
1702
|
+
onclick="toggle_favorite('item','1kdh0');return false;"
|
1703
|
+
title = "Favorite"
|
1704
|
+
href="">Favorite<span></span>
|
1705
|
+
</a>
|
1706
|
+
</li>
|
1707
|
+
|
1708
|
+
|
1709
|
+
|
1710
|
+
</ul>
|
1622
1711
|
|
1623
|
-
</li>
|
1624
|
-
|
1625
|
-
</ul>
|
1626
|
-
|
1627
1712
|
<div class="meta">
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1637
|
-
|
1638
|
-
</div>
|
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 -->
|
1713
|
+
<span class="buy">
|
1714
|
+
<a href="" class="toggle-reposts">
|
1715
|
+
Posted by
|
1716
|
+
2 blogs</a> •
|
1717
|
+
|
1718
|
+
Download Artist:
|
1719
|
+
<a rel="nofollow" href="/go/emusic_search/Seven+Lions">eMusic (<strong>$10 FREE</strong>)</a> •
|
1720
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Seven+Lions">Amazon</a>
|
1721
|
+
• <a rel="nofollow" href="/go/itunes_web/below-us-feat.-shaz-sparks%2Fid519796552%3Fi%3D519796752?entity=album">iTunes</a>
|
1722
|
+
</span>
|
1723
|
+
</div>
|
1724
|
+
<div class="act_info" style="display:none"></div>
|
1665
1725
|
|
1666
1726
|
|
1667
|
-
<div class="section-player same" >
|
1668
1727
|
|
1669
|
-
<div class="same-post section-track" >
|
1670
|
-
<h3 class="track_name">
|
1671
|
-
<a class="artist" title="Cassian - search 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
1728
|
|
1704
|
-
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1709
|
-
|
1710
|
-
|
1711
|
-
Download Artist:
|
1712
|
-
<a rel="nofollow" href="/go/emusic_search/Cassian">eMusic (<strong>$10 FREE</strong>)</a> •
|
1713
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Cassian">Amazon</a> •
|
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 -->
|
1729
|
+
</div><!-- section player -->
|
1730
|
+
</div><!-- section track -->
|
1731
|
+
<div data-itemid="1p98r" id="section-track-1p98r" class="section section-track even" >
|
1732
|
+
<div class="track-info">Loved 24 hrs ago</div>
|
1742
1733
|
|
1743
|
-
|
1734
|
+
<div class="section-player">
|
1735
|
+
|
1736
|
+
<span class="share-links">
|
1737
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p98r&title=Suncatcher+-+Welcome+Home+%28Ost+%26+Meyer+Remix%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1738
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1p98r&text=Suncatcher+-+Welcome+Home+%28Ost+%26+Meyer+Remix%29%20on%20&via"></a>
|
1739
|
+
</span>
|
1744
1740
|
|
1741
|
+
|
1742
|
+
|
1743
|
+
|
1745
1744
|
|
1746
|
-
<
|
1745
|
+
<a class="thumb"
|
1746
|
+
href="/track/1p98r/Suncatcher+-+Welcome+Home+%28Ost+%26+Meyer+Remix%29"
|
1747
|
+
title="Welcome Home (Ost & Meyer Remix) - go to page for this track"
|
1748
|
+
style="background:url(http://static-ak.net/thumbs/6/1905556.png);">
|
1749
|
+
</a>
|
1747
1750
|
|
1748
|
-
<
|
1749
|
-
<
|
1750
|
-
|
1751
|
-
|
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>
|
1751
|
+
<h3 class="track_name">
|
1752
|
+
<span class="remix-icon"></span>
|
1753
|
+
<a class="artist" title="Suncatcher - search for this artist" href="/artist/Suncatcher">Suncatcher</a> - <a class="track" title="Welcome Home (Ost & Meyer Remix) - go to page for this track" href="/track/1p98r/Suncatcher+-+Welcome+Home+%28Ost+%26+Meyer+Remix%29">
|
1754
|
+
<span class="base-title">Welcome Home</span> <span class="remix-link">Ost & Meyer Remix</span> </a>
|
1780
1755
|
|
1781
|
-
</li>
|
1782
1756
|
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
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> •
|
1792
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Les+Rythmes+Digitales">Amazon</a> •
|
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 -->
|
1757
|
+
|
1758
|
+
|
1759
|
+
</h3>
|
1821
1760
|
|
1822
|
-
</div><!-- section-player -->
|
1823
1761
|
|
1824
1762
|
|
1825
|
-
<div class="section-player same" >
|
1826
1763
|
|
1827
|
-
<
|
1828
|
-
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1833
|
-
|
1834
|
-
|
1835
|
-
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1841
|
-
|
1842
|
-
|
1843
|
-
|
1844
|
-
|
1845
|
-
|
1846
|
-
|
1847
|
-
|
1848
|
-
|
1849
|
-
|
1850
|
-
|
1851
|
-
|
1852
|
-
|
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>
|
1764
|
+
<ul class="tools">
|
1765
|
+
<li class="playdiv">
|
1766
|
+
<a id="play_ctrl_1p98r" class="play-ctrl play"
|
1767
|
+
title="Play"
|
1768
|
+
href="">Play<span></span>
|
1769
|
+
</a>
|
1770
|
+
</li>
|
1771
|
+
|
1772
|
+
<li class="favdiv">
|
1773
|
+
|
1774
|
+
<a title="Favorited by 7 others"
|
1775
|
+
class="toggle-favorites favcount_1p98r favcount-off"
|
1776
|
+
id="favcount_1p98r"
|
1777
|
+
href="">7 </a>
|
1778
|
+
|
1779
|
+
<a class="fav_item_1p98r fav-off"
|
1780
|
+
id="fav_item_1p98r"
|
1781
|
+
onclick="toggle_favorite('item','1p98r');return false;"
|
1782
|
+
title = "Favorite"
|
1783
|
+
href="">Favorite<span></span>
|
1784
|
+
</a>
|
1785
|
+
</li>
|
1786
|
+
|
1787
|
+
|
1788
|
+
|
1789
|
+
</ul>
|
1859
1790
|
|
1860
|
-
</li>
|
1861
|
-
|
1862
|
-
</ul>
|
1863
|
-
|
1864
1791
|
<div class="meta">
|
1865
|
-
|
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> •
|
1878
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/BeatauCue">Amazon</a> •
|
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 with the music YOU <em>Love</em> • <strong>Sign Up Now »</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 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> •
|
1967
|
-
</a>
|
1968
|
-
|
1969
|
-
Download Artist:
|
1970
|
-
<a rel="nofollow" href="/go/emusic_search/Toddla T">eMusic (<strong>$10 FREE</strong>)</a> •
|
1971
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Toddla+T">Amazon</a> •
|
1972
|
-
<a rel="nofollow" href="/go/itunes_search/Toddla+T">iTunes</a>
|
1973
|
-
</span>
|
1974
|
-
</div>
|
1792
|
+
<span class="buy">
|
1975
1793
|
|
1976
|
-
|
1794
|
+
Download Artist:
|
1795
|
+
<a rel="nofollow" href="/go/emusic_search/Suncatcher">eMusic (<strong>$10 FREE</strong>)</a> •
|
1796
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Suncatcher">Amazon</a>
|
1797
|
+
• <a rel="nofollow" href="/go/itunes_web/suncatcher%2Fid284214644?entity=artist">iTunes</a>
|
1798
|
+
</span>
|
1799
|
+
</div>
|
1977
1800
|
|
1801
|
+
|
1802
|
+
<p>
|
1803
|
+
<a
|
1804
|
+
class="blog-fav-off"
|
1805
|
+
title="See other tracks posted by this blog"
|
1806
|
+
href="/blog/aerial+noise/12376">aerial noise</a><a class="follow-pill fav_site_12376 follow"
|
1807
|
+
onclick="toggle_favorite('site','12376');return false;"
|
1808
|
+
href="#"><em></em><span>Follow</span></a>
|
1809
|
+
|
1810
|
+
“Founded in 2008 by British trance & progressive DJ / producer Will Holland, Enhanced Music has grown on from strength…” <a
|
1811
|
+
class="readpost"
|
1812
|
+
href="http://www.aerialnoise.com/2012/08/20/spotlight-enhanced-music-recordings/"
|
1813
|
+
title="Read this post: Spotlight :: ENHANCED MUSIC / RECOR…">
|
1814
|
+
|
1815
|
+
Posted 2 days ago »
|
1816
|
+
|
1817
|
+
<span style="background:url(http://static-ak.net/thumbs/6/1905556.png);"></span>
|
1818
|
+
</a>
|
1978
1819
|
|
1979
|
-
|
1820
|
+
</p>
|
1980
1821
|
|
1981
|
-
|
1982
|
-
|
1983
|
-
|
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
|
-
“This past Sunday Vancouver & Blueprint hosted to two of the biggest heavy weights in dubstep, and us Schitheadz managed…”
|
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 »<span style="background:url(
|
2017
|
-
http://static-ak.m.net/thumbs/4/1461244.png
|
2018
|
-
);"></span></a>
|
2019
|
-
|
2020
|
-
</p>
|
2021
|
-
|
1822
|
+
|
1823
|
+
|
1824
|
+
|
2022
1825
|
<div class="act_info" style="display:none"></div>
|
2023
1826
|
|
2024
1827
|
|
2025
1828
|
|
2026
|
-
<div class="track-info"> Loved yesterday
|
2027
|
-
</div><!-- end track-info -->
|
2028
1829
|
|
1830
|
+
</div><!-- section player -->
|
1831
|
+
</div><!-- section track -->
|
1832
|
+
<div data-itemid="1gtfz" id="section-track-1gtfz" class="section section-track odd" >
|
1833
|
+
<div class="track-info">Loved yesterday</div>
|
2029
1834
|
|
1835
|
+
<div class="section-player">
|
1836
|
+
|
1837
|
+
<span class="share-links">
|
1838
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1gtfz&title=Isaak+the+Chris+-+Wicked+Game+%28Final+DJs+2011+Funky+Bass+Rmx%29"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1839
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1gtfz&text=Isaak+the+Chris+-+Wicked+Game+%28Final+DJs+2011+Funky+Bass+Rmx%29%20on%20&via"></a>
|
1840
|
+
</span>
|
2030
1841
|
|
1842
|
+
|
1843
|
+
|
1844
|
+
|
2031
1845
|
|
1846
|
+
<a class="thumb"
|
1847
|
+
href="/track/1gtfz/Isaak+the+Chris+-+Wicked+Game+%28Final+DJs+2011+Funky+Bass+Rmx%29"
|
1848
|
+
title="Wicked Game (Final DJs 2011 Funky Bass Rmx) - go to page for this track"
|
1849
|
+
style="background:url(http://static-ak.net/thumbs/7/1905917.png);">
|
1850
|
+
</a>
|
2032
1851
|
|
1852
|
+
<h3 class="track_name">
|
1853
|
+
<span class="remix-icon"></span>
|
1854
|
+
<a class="artist" title="Isaak the Chris - search for this artist" href="/artist/Isaak+the+Chris">Isaak the Chris</a> - <a class="track" title="Wicked Game (Final DJs 2011 Funky Bass Rmx) - go to page for this track" href="/track/1gtfz/Isaak+the+Chris+-+Wicked+Game+%28Final+DJs+2011+Funky+Bass+Rmx%29">
|
1855
|
+
<span class="base-title">Wicked Game</span> <span class="remix-link">Final DJs 2011 Funky Bass Rmx</span> </a>
|
1856
|
+
|
2033
1857
|
|
1858
|
+
|
1859
|
+
|
1860
|
+
</h3>
|
2034
1861
|
|
2035
1862
|
|
2036
1863
|
|
2037
|
-
</div><!-- section player -->
|
2038
1864
|
|
2039
|
-
|
2040
|
-
|
2041
|
-
|
2042
|
-
|
2043
|
-
|
2044
|
-
|
2045
|
-
|
2046
|
-
|
2047
|
-
|
2048
|
-
|
2049
|
-
|
2050
|
-
|
2051
|
-
|
2052
|
-
|
2053
|
-
|
2054
|
-
|
2055
|
-
|
2056
|
-
|
2057
|
-
|
2058
|
-
|
2059
|
-
|
2060
|
-
|
2061
|
-
|
2062
|
-
|
2063
|
-
|
2064
|
-
|
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>
|
1865
|
+
<ul class="tools">
|
1866
|
+
<li class="playdiv">
|
1867
|
+
<a id="play_ctrl_1gtfz" class="play-ctrl play"
|
1868
|
+
title="Play"
|
1869
|
+
href="">Play<span></span>
|
1870
|
+
</a>
|
1871
|
+
</li>
|
1872
|
+
|
1873
|
+
<li class="favdiv">
|
1874
|
+
|
1875
|
+
<a title="Favorited by 62 others"
|
1876
|
+
class="toggle-favorites favcount_1gtfz favcount-off"
|
1877
|
+
id="favcount_1gtfz"
|
1878
|
+
href="">62 </a>
|
1879
|
+
|
1880
|
+
<a class="fav_item_1gtfz fav-off"
|
1881
|
+
id="fav_item_1gtfz"
|
1882
|
+
onclick="toggle_favorite('item','1gtfz');return false;"
|
1883
|
+
title = "Favorite"
|
1884
|
+
href="">Favorite<span></span>
|
1885
|
+
</a>
|
1886
|
+
</li>
|
1887
|
+
|
1888
|
+
|
1889
|
+
|
1890
|
+
</ul>
|
2090
1891
|
|
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> •
|
2096
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/Danger+Granger">Amazon</a> •
|
2097
|
-
<a rel="nofollow" href="/go/itunes_search/Danger+Granger">iTunes</a>
|
2098
|
-
</span>
|
2099
|
-
</div>
|
2100
|
-
|
2101
1892
|
<div class="meta">
|
1893
|
+
<span class="buy">
|
1894
|
+
<a href="" class="toggle-reposts">
|
1895
|
+
Posted by
|
1896
|
+
4 blogs</a> •
|
1897
|
+
|
1898
|
+
Download Artist:
|
1899
|
+
<a rel="nofollow" href="/go/emusic_search/Isaak+the+Chris">eMusic (<strong>$10 FREE</strong>)</a> •
|
1900
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/Isaak+the+Chris">Amazon</a>
|
1901
|
+
</span>
|
1902
|
+
</div>
|
2102
1903
|
|
1904
|
+
|
1905
|
+
<p>
|
1906
|
+
<a
|
1907
|
+
class="blog-fav-off"
|
1908
|
+
title="See other tracks posted by this blog"
|
1909
|
+
href="/blog/tilt/12387">TILT</a><a class="follow-pill fav_site_12387 follow"
|
1910
|
+
onclick="toggle_favorite('site','12387');return false;"
|
1911
|
+
href="#"><em></em><span>Follow</span></a>
|
1912
|
+
|
1913
|
+
“Germany! The land of Octoberfest, beer, blonde St. Pauly Women and great Dance Music! Our Friends from Germany Final DJ's…” <a
|
1914
|
+
class="readpost"
|
1915
|
+
href="http://tiltla.blogspot.com/2012/08/mixtape-monday-featuring-final-djs.html"
|
1916
|
+
title="Read this post: Mixtape Monday #32 featuring FINAL…">
|
1917
|
+
|
1918
|
+
Posted yesterday »
|
1919
|
+
|
1920
|
+
<span style="background:url(http://static-ak.net/thumbs/7/1905917.png);"></span>
|
1921
|
+
</a>
|
2103
1922
|
|
2104
|
-
|
1923
|
+
</p>
|
2105
1924
|
|
2106
|
-
|
2107
|
-
|
2108
|
-
|
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
|
-
“Mashup Monday going to melt you faces off with enough mashed up music to make you wanna slap…”
|
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 »<span style="background:url(
|
2142
|
-
http://static-ak.m.net/thumbs/9/1459019.png
|
2143
|
-
);"></span></a>
|
2144
|
-
|
2145
|
-
</p>
|
2146
|
-
|
1925
|
+
|
1926
|
+
|
1927
|
+
|
2147
1928
|
<div class="act_info" style="display:none"></div>
|
2148
1929
|
|
2149
1930
|
|
2150
1931
|
|
2151
|
-
<div class="track-info"> Loved yesterday
|
2152
|
-
</div><!-- end track-info -->
|
2153
1932
|
|
1933
|
+
</div><!-- section player -->
|
1934
|
+
</div><!-- section track -->
|
1935
|
+
<div data-itemid="1m714" id="section-track-1m714" class="section section-track odd same" >
|
1936
|
+
<div class="track-info">Loved yesterday</div>
|
2154
1937
|
|
1938
|
+
<div class="section-player">
|
1939
|
+
|
1940
|
+
<span class="share-links">
|
1941
|
+
<a class="facebook-share" href="/share.php?s_provider=awesm&share_type=facebook&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1m714&title=FiNAL+DJs+-+Salt+on+Our+Skin"><img src="/images/icon-fb-share.gif" /> Share</a>
|
1942
|
+
<a class="twitter-share" href="/share.php?s_provider=awesm&share_type=twitter&create_type-player&url=http%3A%2F%2.com%2Fitem%2F1m714&text=FiNAL+DJs+-+Salt+on+Our+Skin%20on%20&via"></a>
|
1943
|
+
</span>
|
2155
1944
|
|
1945
|
+
|
1946
|
+
|
1947
|
+
|
2156
1948
|
|
1949
|
+
<h3 class="track_name">
|
1950
|
+
|
1951
|
+
<a class="artist" title="FiNAL DJs - search for this artist" href="/artist/FiNAL+DJs">FiNAL DJs</a> - <a class="track" title="Salt on Our Skin - go to page for this track" href="/track/1m714/FiNAL+DJs+-+Salt+on+Our+Skin">
|
1952
|
+
<span class="base-title">Salt on Our Skin</span></a>
|
1953
|
+
|
2157
1954
|
|
1955
|
+
|
1956
|
+
|
1957
|
+
</h3>
|
2158
1958
|
|
2159
1959
|
|
2160
1960
|
|
2161
1961
|
|
2162
|
-
|
1962
|
+
<ul class="tools">
|
1963
|
+
<li class="playdiv">
|
1964
|
+
<a id="play_ctrl_1m714" class="play-ctrl play"
|
1965
|
+
title="Play"
|
1966
|
+
href="">Play<span></span>
|
1967
|
+
</a>
|
1968
|
+
</li>
|
1969
|
+
|
1970
|
+
<li class="favdiv">
|
1971
|
+
|
1972
|
+
<a title="Favorited by 27 others"
|
1973
|
+
class="toggle-favorites favcount_1m714 favcount-off"
|
1974
|
+
id="favcount_1m714"
|
1975
|
+
href="">27 </a>
|
1976
|
+
|
1977
|
+
<a class="fav_item_1m714 fav-off"
|
1978
|
+
id="fav_item_1m714"
|
1979
|
+
onclick="toggle_favorite('item','1m714');return false;"
|
1980
|
+
title = "Favorite"
|
1981
|
+
href="">Favorite<span></span>
|
1982
|
+
</a>
|
1983
|
+
</li>
|
1984
|
+
|
1985
|
+
|
1986
|
+
|
1987
|
+
</ul>
|
1988
|
+
|
1989
|
+
<div class="meta">
|
1990
|
+
<span class="buy">
|
1991
|
+
<a href="" class="toggle-reposts">
|
1992
|
+
Posted by
|
1993
|
+
2 blogs</a> •
|
1994
|
+
|
1995
|
+
Download Artist:
|
1996
|
+
<a rel="nofollow" href="/go/emusic_search/FiNAL+DJs">eMusic (<strong>$10 FREE</strong>)</a> •
|
1997
|
+
<a rel="nofollow" href="/go/amazon_mp3_search/FiNAL+DJs">Amazon</a>
|
1998
|
+
• <a rel="nofollow" href="/go/itunes_web/salt-on-our-skin%2Fid523508919%3Fi%3D523508997?entity=album">iTunes</a>
|
1999
|
+
</span>
|
2000
|
+
</div>
|
2001
|
+
<div class="act_info" style="display:none"></div>
|
2163
2002
|
|
2164
2003
|
|
2165
2004
|
|
2166
|
-
<div class="section-player same" >
|
2167
2005
|
|
2168
|
-
|
2169
|
-
|
2170
|
-
<a class="artist" title="DEFEP - search 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>
|
2006
|
+
</div><!-- section player -->
|
2007
|
+
</div><!-- section track -->
|
2202
2008
|
|
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> •
|
2212
|
-
<a rel="nofollow" href="/go/amazon_mp3_search/DEFEP">Amazon</a> •
|
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 »</a></div>
|
2244
|
-
|
2245
|
-
</div><!-- loved -->
|
2246
|
-
|
2247
|
-
</div><!-- content-left -->
|
2248
2009
|
|
2249
|
-
|
2250
|
-
|
2251
|
-
|
2252
|
-
|
2253
|
-
|
2254
|
-
<
|
2255
|
-
|
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
|
-
|
2010
|
+
<div class="paginator infinite">
|
2011
|
+
<span class="this-page">1</span><a rel="nofollow" href="/kanye/2/">2</a> <a rel="nofollow" href="/kanye/3/">3</a> <span class="break second">...</span><a rel="nofollow" href="/kanye/123/">123</a><a rel="nofollow" class="next" href="/kanye/2/">Next Page »</a>
|
2012
|
+
<a href="#" id="infinite-tracks-button">See more ∞</a>
|
2013
|
+
</div>
|
2014
|
+
|
2015
|
+
<script type="text/javascript">
|
2016
|
+
enable_infinite_page_scroll();
|
2017
|
+
</script>
|
2276
2018
|
|
2019
|
+
|
2020
|
+
</div><!-- recently-posted -->
|
2277
2021
|
|
2278
|
-
|
2279
|
-
</div> <!-- content-right -->
|
2022
|
+
</div><!-- content-left -->
|
2280
2023
|
|
2281
|
-
<
|
2024
|
+
<script type="text/javascript">
|
2025
|
+
enable_notification_check();</script>
|
2282
2026
|
|
2283
|
-
|
2027
|
+
<div id="tracks-inject"></div>
|
2284
2028
|
|
2285
|
-
<!--
|
2029
|
+
<!-- google_ad_section_end -->
|
2030
|
+
<script type="application/json" id="displayList-data">
|
2031
|
+
{"page_cur":"\/kanye\/1?ax=1&ts=13456707686779229641","page_num":"1","page_mode":"loved","profile_user":"kanye","tracks":[{"type":"normal","id":"1p979","time":340,"ts":1345670365,"postid":1906913,"posturl":"http:\/\/www.aerialnoise.com\/2012\/08\/21\/heren-shane-infin8y-sasha-plus-moiez-hlm\/","fav":0,"key":"257b886a4937d560b0837c284baefe35","artist":"Dragonette","song":"Live In This City ( Heren Remix )","thumb_url_large":""},{"type":"normal","id":"1pa35","time":301,"ts":1345670310,"postid":1906979,"posturl":"http:\/\/www.gottadancedirty.com\/2012\/08\/21\/download-frank-ocean-pyramids-kastle-remix\/","fav":0,"key":"a85f8bb388b2f961793d01311dc06be7","artist":"Frank Ocean","song":"Pyramids (Kastle Remix)","thumb_url_large":""},{"type":"normal","id":"1pa5m","time":251,"ts":1345669700,"postid":1907048,"posturl":"http:\/\/kickkicksnare.com\/2012\/08\/21\/taryn-manning-send-me-your-love-ft-sultan-ned-shepard\/","fav":0,"key":"60d175399a28c0d20d48417bbdc95aba","artist":"Taryn Manning","song":"Send Me Your Love ft. Sultan + Ned Shepa...","thumb_url_large":""},{"type":"normal","id":"1pa86","time":158,"ts":1345669602,"postid":1907107,"posturl":"http:\/\/www.gottadancedirty.com\/2012\/08\/21\/review-paige-at-pacha-nyc-81712\/","fav":0,"key":"baefcbf9359ba46f5ac6eb3a36efa667","artist":"Zedd","song":"Spectrum (Deniz Koyu Remix) Preview Edit","thumb_url_large":""},{"type":"normal","id":"1p9zx","time":322,"ts":1345668938,"postid":1907716,"posturl":"http:\/\/kickkicksnare.com\/2012\/08\/22\/hello-wednesday-remixes-18\/","fav":0,"key":"5110dd22414452c25f96cf6214482b03","artist":"M\u00fam","song":"Ballad Of Broken Birdie Records (Cry Wol...","thumb_url_large":""},{"type":"normal","id":"1jd14","time":204,"ts":1345667740,"postid":1907811,"posturl":"http:\/\/www.etmusiquepourtous.com\/2012\/08\/22\/neil-young-old-man-sound-remedy-remix\/","fav":0,"key":"ae69f7f4ca2564ea5b0fc5df7930e745","artist":"Neil Young","song":"Old Man (Sound Remedy Remix)","thumb_url_large":""},{"type":"normal","id":"1p7rs","time":218,"ts":1345667663,"postid":1907813,"posturl":"http:\/\/www.etmusiquepourtous.com\/2012\/08\/22\/alunageorge-your-drums-your-love\/","fav":0,"key":"1f028312dee1ba31a5df3fbeef98373d","artist":"AlunaGeorge","song":"Your Drums, Your Love","thumb_url_large":""},{"type":"normal","id":"1nsqc","time":203,"ts":1345667566,"postid":1907952,"posturl":"http:\/\/www.indieshuffle.com\/crystal-fighters-at-home\/","fav":0,"key":"cc63f90f6406aa12bd4533c1b6d3b343","artist":"Crystal Fighters","song":"At Home (US Radio Edit)","thumb_url_large":""},{"type":"normal","id":"1mp29","time":152,"ts":1345662688,"postid":1833938,"posturl":"http:\/\/www.vacayvitamins.com\/rap\/trapptitude-test-drankenstein-monolith-crnkn-more\/","fav":0,"key":"15f8a45774896b20a37f86401d3c207c","artist":"Baauer","song":"In My Nose","thumb_url_large":""},{"type":"normal","id":"1m736","time":130,"ts":1345662593,"postid":1902984,"posturl":"http:\/\/www.gottadancedirty.com\/2012\/08\/16\/the-dirt-85-tre-tamara-sky\/","fav":0,"key":"2c50d15399fa6960be8ec7114f39e4bf","artist":"Baauer","song":"Yaow!","thumb_url_large":""},{"type":"normal","id":"1p8x5","time":446,"ts":1345589682,"postid":1904993,"posturl":"http:\/\/www.aerialnoise.com\/2012\/08\/20\/dj-laquarium-let-your-voice-be-heard-morodisco-edit\/","fav":0,"key":"7dd86aefaad61dccb0d7e62524e86231","artist":"DJ L'Aquarium","song":"Let Your Voice Be Heard (Morodisco Edit)","thumb_url_large":""},{"type":"normal","id":"1p404","time":288,"ts":1345589185,"postid":1907418,"posturl":"http:\/\/www.turntablekitchen.com\/2012\/08\/turntable-kitchen-the-august-2012-mix\/","fav":0,"key":"1bf379ce4637aafe977d993187dc4d34","artist":"Com Truise","song":"Chemical Legs","thumb_url_large":""},{"type":"normal","id":"1p1ed","time":257,"ts":1345588868,"postid":1905293,"posturl":"http:\/\/www.etmusiquepourtous.com\/2012\/08\/20\/capital-cities-nothin-compares-2-u\/","fav":0,"key":"8a0119abf6c1fb315d53e2c14fdcb013","artist":"Capital Cities","song":"Nothing Compares 2 U","thumb_url_large":""},{"type":"normal","id":"1mpdy","time":200,"ts":1345588665,"postid":1905299,"posturl":"http:\/\/kickkicksnare.com\/2012\/08\/20\/video-atlas-genius-symptoms\/","fav":0,"key":"89d8a22b2e1dcbc8d1673a9de363b3be","artist":"Atlas Genius","song":"Symptoms","thumb_url_large":""},{"type":"normal","id":"1nw41","time":332,"ts":1345588384,"postid":1905294,"posturl":"http:\/\/www.chubbybeavers.com\/turn-me-on\/","fav":0,"key":"e9d2de646bd78008a66f6694ff39274b","artist":"Sneaky Sound System","song":"Friends (Jonny Pow!! Remix)","thumb_url_large":""},{"type":"normal","id":"1kdgz","time":275,"ts":1345585533,"postid":1905521,"posturl":"http:\/\/salacioussound.com\/2012\/08\/introducing-seven-lions\/","fav":0,"key":"ce751d05ccf003a30e8d40e4d18d00cc","artist":"Seven Lions","song":"Polarized (feat. Shaz Sparks) (Extended...","thumb_url_large":""},{"type":"normal","id":"1kdh0","time":203,"ts":1345585410,"postid":1905521,"posturl":"http:\/\/salacioussound.com\/2012\/08\/introducing-seven-lions\/","fav":0,"key":"f6268304540a3048b47901d9288f5a49","artist":"Seven Lions","song":"Below Us (feat. Shaz Sparks)","thumb_url_large":""},{"type":"normal","id":"1p98r","time":120,"ts":1345584470,"postid":1905556,"posturl":"http:\/\/www.aerialnoise.com\/2012\/08\/20\/spotlight-enhanced-music-recordings\/","fav":0,"key":"1899ada7922fef749a5983324085a5d7","artist":"Suncatcher","song":"Welcome Home (Ost & Meyer Remix)","thumb_url_large":""},{"type":"normal","id":"1gtfz","time":370,"ts":1345583915,"postid":1905917,"posturl":"http:\/\/tiltla.blogspot.com\/2012\/08\/mixtape-monday-featuring-final-djs.html","fav":0,"key":"463750d8e628f5ea80893846e908837f","artist":"Isaak the Chris","song":"Wicked Game (Final DJs 2011 Funky Bass R...","thumb_url_large":""},{"type":"normal","id":"1m714","time":317,"ts":1345583870,"postid":1905917,"posturl":"http:\/\/tiltla.blogspot.com\/2012\/08\/mixtape-monday-featuring-final-djs.html","fav":0,"key":"d8852acc625f3e78bbe3238e1622b127","artist":"FiNAL DJs","song":"Salt on Our Skin","thumb_url_large":""}],"page_name":"profile","title":"kanye's loved songs","page_next":"\/kanye\/2"} </script>
|
2032
|
+
</div><!-- container -->
|
2033
|
+
</div><!-- content -->
|
2034
|
+
<noscript><a href="http://www.quantcast.com/p-f66q2dQu9xpU2" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-f66q2dQu9xpU2.gif" style="display: none" border="0" height="1" width="1" alt="Quantcast"/></a></noscript>
|
2035
|
+
<!-- PAGE TOTAL: 0.174s -->
|