dribble 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +1 -1
- data/README.rdoc +89 -12
- data/Rakefile +8 -5
- data/VERSION +1 -1
- data/dribble.gemspec +28 -14
- data/examples/barebones/player.rb +10 -10
- data/examples/barebones/shot.rb +12 -12
- data/examples/player.rb +15 -15
- data/lib/dribble/request.rb +24 -7
- data/lib/dribble.rb +2 -3
- data/spec/core_ext/hash_spec.rb +94 -0
- data/spec/core_ext/object_spec.rb +44 -0
- data/spec/dribble/api/player_spec.rb +200 -0
- data/spec/dribble/api/shot_spec.rb +184 -0
- data/spec/dribble/version_spec.rb +19 -0
- data/spec/fake_data/player/player_draftees.json +1 -0
- data/spec/fake_data/player/player_find_shots.json +1 -0
- data/spec/fake_data/player/player_followers.json +1 -0
- data/spec/fake_data/player/player_following_shots.json +1 -0
- data/spec/fake_data/player/player_profile.json +1 -0
- data/spec/fake_data/shot/shot_debuts.json +1 -0
- data/spec/fake_data/shot/shot_everyones.json +1 -0
- data/spec/fake_data/shot/shot_for.json +1 -0
- data/spec/fake_data/shot/shot_popular.json +1 -0
- data/spec/spec_helper.rb +11 -0
- data/spec/support/fake_eventmachine_requests.rb +43 -0
- metadata +32 -18
- data/spec/dribble/core_ext/hash_spec.rb +0 -56
- data/spec/dribble/core_ext/object_spec.rb +0 -19
- data/spec/rcov.opts +0 -4
- data/spec/support/fakeweb_yajl.rb +0 -17
@@ -0,0 +1,200 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '../../../spec_helper')
|
2
|
+
|
3
|
+
describe Dribble::API::Player do
|
4
|
+
|
5
|
+
describe "A Players draftees" do
|
6
|
+
before(:all) do
|
7
|
+
@draftees = Dribble::API::Player.draftees('simplebits')
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should not be empty" do
|
11
|
+
@draftees.should_not be_empty
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should be a hash" do
|
15
|
+
@draftees.class.should == Hash
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should have the per page count be 30, the default" do
|
19
|
+
@draftees[:per_page].should == 30
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should have sent back the first page" do
|
23
|
+
@draftees[:page].should == 1
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should have an array of players" do
|
27
|
+
@draftees[:players].class.should == Array
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should have an array of shots that is not empty" do
|
31
|
+
@draftees[:players].should_not be_nil
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should have the number of pages" do
|
35
|
+
@draftees[:pages].should_not be_nil
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should have the total number of shots for this player" do
|
39
|
+
@draftees[:total].should_not be_nil
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe "A Players followers" do
|
44
|
+
before(:all) do
|
45
|
+
@followers = Dribble::API::Player.followers('simplebits')
|
46
|
+
end
|
47
|
+
|
48
|
+
it "should not be empty" do
|
49
|
+
@followers.should_not be_empty
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should be a hash" do
|
53
|
+
@followers.class.should == Hash
|
54
|
+
end
|
55
|
+
|
56
|
+
it "should have the per page count be 30, the default" do
|
57
|
+
@followers[:per_page].should == 30
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should have sent back the first page" do
|
61
|
+
@followers[:page].should == 1
|
62
|
+
end
|
63
|
+
|
64
|
+
it "should have an array of players" do
|
65
|
+
@followers[:players].class.should == Array
|
66
|
+
end
|
67
|
+
|
68
|
+
it "should have an array of shots that is not empty" do
|
69
|
+
@followers[:players].should_not be_nil
|
70
|
+
end
|
71
|
+
|
72
|
+
it "should have the number of pages" do
|
73
|
+
@followers[:pages].should_not be_nil
|
74
|
+
end
|
75
|
+
|
76
|
+
it "should have the total number of shots for this player" do
|
77
|
+
@followers[:total].should_not be_nil
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
describe "The shots a player is following" do
|
82
|
+
before(:all) do
|
83
|
+
@shots_following = Dribble::API::Player.following_shots('simplebits')
|
84
|
+
end
|
85
|
+
|
86
|
+
it "should not be empty" do
|
87
|
+
@shots_following.should_not be_empty
|
88
|
+
end
|
89
|
+
|
90
|
+
it "should be a hash" do
|
91
|
+
@shots_following.class.should == Hash
|
92
|
+
end
|
93
|
+
|
94
|
+
it "should have the per page count be 30, the default" do
|
95
|
+
@shots_following[:per_page].should == 30
|
96
|
+
end
|
97
|
+
|
98
|
+
it "should have sent back the first page" do
|
99
|
+
@shots_following[:page].should == 1
|
100
|
+
end
|
101
|
+
|
102
|
+
it "should have an array of shots" do
|
103
|
+
@shots_following[:shots].class.should == Array
|
104
|
+
end
|
105
|
+
|
106
|
+
it "should have an array of shots that is not empty" do
|
107
|
+
@shots_following[:shots].should_not be_empty
|
108
|
+
end
|
109
|
+
|
110
|
+
it "should have the number of pages" do
|
111
|
+
@shots_following[:pages].should_not be_nil
|
112
|
+
end
|
113
|
+
|
114
|
+
it "should have the total number of shots for this player" do
|
115
|
+
@shots_following[:total].should_not be_nil
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe "A Players profile" do
|
120
|
+
before(:all) do
|
121
|
+
@profile = Dribble::API::Player.profile('simplebits')
|
122
|
+
end
|
123
|
+
|
124
|
+
it "should not be empty" do
|
125
|
+
@profile.should_not be_empty
|
126
|
+
end
|
127
|
+
|
128
|
+
it "should be a hash" do
|
129
|
+
@profile.class.should == Hash
|
130
|
+
end
|
131
|
+
|
132
|
+
it "should have the location" do
|
133
|
+
@profile[:location].should_not be_nil
|
134
|
+
end
|
135
|
+
|
136
|
+
it "should have date the account was created at" do
|
137
|
+
@profile[:created_at].should_not be_nil
|
138
|
+
end
|
139
|
+
|
140
|
+
it "should have the following count" do
|
141
|
+
@profile[:following_count].should_not be_nil
|
142
|
+
end
|
143
|
+
|
144
|
+
it "should have the draftees count" do
|
145
|
+
@profile[:draftees_count].should_not be_nil
|
146
|
+
end
|
147
|
+
|
148
|
+
it "should have the shots count" do
|
149
|
+
@profile[:shots_count].should_not be_nil
|
150
|
+
end
|
151
|
+
|
152
|
+
it "should have the drafted by player" do
|
153
|
+
@profile[:drafted_by_player].should be_nil
|
154
|
+
end
|
155
|
+
|
156
|
+
it "should have the avatar url" do
|
157
|
+
@profile[:avatar_url].should_not be_nil
|
158
|
+
end
|
159
|
+
|
160
|
+
end
|
161
|
+
|
162
|
+
describe "Finding shots for a player" do
|
163
|
+
before(:all) do
|
164
|
+
@player_shots = Dribble::API::Player.find_shots('simplebits')
|
165
|
+
end
|
166
|
+
|
167
|
+
it "should not be nil" do
|
168
|
+
@player_shots.should_not be_nil
|
169
|
+
end
|
170
|
+
|
171
|
+
it "should be a hash" do
|
172
|
+
@player_shots.class.should == Hash
|
173
|
+
end
|
174
|
+
|
175
|
+
it "should have the per page count be 30, the default" do
|
176
|
+
@player_shots[:per_page].should == 30
|
177
|
+
end
|
178
|
+
|
179
|
+
it "should have sent back the first page" do
|
180
|
+
@player_shots[:page].should == 1
|
181
|
+
end
|
182
|
+
|
183
|
+
it "should have an array of shots" do
|
184
|
+
@player_shots[:shots].class.should == Array
|
185
|
+
end
|
186
|
+
|
187
|
+
it "should have an array of shots that is not empty" do
|
188
|
+
@player_shots[:shots].should_not be_empty
|
189
|
+
end
|
190
|
+
|
191
|
+
it "should have the number of pages" do
|
192
|
+
@player_shots[:pages].should_not be_nil
|
193
|
+
end
|
194
|
+
|
195
|
+
it "should have the total number of shots for this player" do
|
196
|
+
@player_shots[:total].should_not be_nil
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
end
|
@@ -0,0 +1,184 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '../../../spec_helper')
|
2
|
+
|
3
|
+
describe Dribble::API::Shot do
|
4
|
+
|
5
|
+
describe "Debuts shot" do
|
6
|
+
before(:all) do
|
7
|
+
@shots = Dribble::API::Shot.debuts
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should not be empty" do
|
11
|
+
@shots.should_not be_empty
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should be a hash" do
|
15
|
+
@shots.class.should == Hash
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should have the per page count be 30, the default" do
|
19
|
+
@shots[:per_page].should == 30
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should have sent back the first page" do
|
23
|
+
@shots[:page].should == 1
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should have an array of players" do
|
27
|
+
@shots[:shots].class.should == Array
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should have an array of shots that is not empty" do
|
31
|
+
@shots[:shots].should_not be_nil
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should have the number of pages" do
|
35
|
+
@shots[:pages].should_not be_nil
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should have the total number of shots for this player" do
|
39
|
+
@shots[:total].should_not be_nil
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe "Popular shot" do
|
44
|
+
before(:all) do
|
45
|
+
@shots = Dribble::API::Shot.popular
|
46
|
+
end
|
47
|
+
|
48
|
+
it "should not be empty" do
|
49
|
+
@shots.should_not be_empty
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should be a hash" do
|
53
|
+
@shots.class.should == Hash
|
54
|
+
end
|
55
|
+
|
56
|
+
it "should have the per page count be 30, the default" do
|
57
|
+
@shots[:per_page].should == 30
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should have sent back the first page" do
|
61
|
+
@shots[:page].should == 1
|
62
|
+
end
|
63
|
+
|
64
|
+
it "should have an array of players" do
|
65
|
+
@shots[:shots].class.should == Array
|
66
|
+
end
|
67
|
+
|
68
|
+
it "should have an array of shots that is not empty" do
|
69
|
+
@shots[:shots].should_not be_nil
|
70
|
+
end
|
71
|
+
|
72
|
+
it "should have the number of pages" do
|
73
|
+
@shots[:pages].should_not be_nil
|
74
|
+
end
|
75
|
+
|
76
|
+
it "should have the total number of shots for this player" do
|
77
|
+
@shots[:total].should_not be_nil
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
describe "Everyone's shot" do
|
82
|
+
before(:all) do
|
83
|
+
@shots = Dribble::API::Shot.everyones
|
84
|
+
end
|
85
|
+
|
86
|
+
it "should not be empty" do
|
87
|
+
@shots.should_not be_empty
|
88
|
+
end
|
89
|
+
|
90
|
+
it "should be a hash" do
|
91
|
+
@shots.class.should == Hash
|
92
|
+
end
|
93
|
+
|
94
|
+
it "should have the per page count be 30, the default" do
|
95
|
+
@shots[:per_page].should == 30
|
96
|
+
end
|
97
|
+
|
98
|
+
it "should have sent back the first page" do
|
99
|
+
@shots[:page].should == 1
|
100
|
+
end
|
101
|
+
|
102
|
+
it "should have an array of players" do
|
103
|
+
@shots[:shots].class.should == Array
|
104
|
+
end
|
105
|
+
|
106
|
+
it "should have an array of shots that is not empty" do
|
107
|
+
@shots[:shots].should_not be_nil
|
108
|
+
end
|
109
|
+
|
110
|
+
it "should have the number of pages" do
|
111
|
+
@shots[:pages].should_not be_nil
|
112
|
+
end
|
113
|
+
|
114
|
+
it "should have the total number of shots for this player" do
|
115
|
+
@shots[:total].should_not be_nil
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe "Finding a specific shot by its ID" do
|
120
|
+
before(:all) do
|
121
|
+
@shot = Dribble::API::Shot.for(1)
|
122
|
+
end
|
123
|
+
|
124
|
+
it "should not be empty" do
|
125
|
+
@shot.should_not be_empty
|
126
|
+
end
|
127
|
+
|
128
|
+
it "should be a hash" do
|
129
|
+
@shot.class.should == Hash
|
130
|
+
end
|
131
|
+
|
132
|
+
it "should have the height" do
|
133
|
+
@shot[:height].should_not be_nil
|
134
|
+
end
|
135
|
+
|
136
|
+
it "should have an image url" do
|
137
|
+
@shot[:image_url].should_not be_nil
|
138
|
+
end
|
139
|
+
|
140
|
+
it "should have a views count" do
|
141
|
+
@shot[:views_count].should_not be_nil
|
142
|
+
end
|
143
|
+
|
144
|
+
it "should have the datetime in which it was created" do
|
145
|
+
@shot[:created_at].should_not be_nil
|
146
|
+
end
|
147
|
+
|
148
|
+
it "should have the title of the shot" do
|
149
|
+
@shot[:title].should_not be_nil
|
150
|
+
end
|
151
|
+
|
152
|
+
it "should have the comment count" do
|
153
|
+
@shot[:comments_count].should_not be_nil
|
154
|
+
end
|
155
|
+
|
156
|
+
it "should have the likes count" do
|
157
|
+
@shot[:likes_count].should_not be_nil
|
158
|
+
end
|
159
|
+
|
160
|
+
it "should have the player's information" do
|
161
|
+
@shot[:player].should_not be_nil
|
162
|
+
end
|
163
|
+
|
164
|
+
it "should have the rebounds count" do
|
165
|
+
@shot[:rebounds_count].should_not be_nil
|
166
|
+
end
|
167
|
+
|
168
|
+
it "should have the url of the image" do
|
169
|
+
@shot[:url].should_not be_nil
|
170
|
+
end
|
171
|
+
|
172
|
+
it "should have the image teaser" do
|
173
|
+
@shot[:image_teaser_url].should_not be_nil
|
174
|
+
end
|
175
|
+
|
176
|
+
it "should have the shot id" do
|
177
|
+
@shot[:id].should_not be_nil
|
178
|
+
end
|
179
|
+
|
180
|
+
it "should have the width of the image" do
|
181
|
+
@shot[:width].should_not be_nil
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), '../spec_helper')
|
2
|
+
|
3
|
+
describe Dribble::Version do
|
4
|
+
|
5
|
+
describe "When the version is set" do
|
6
|
+
before(:all) do
|
7
|
+
@version = Dribble.version
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should not be blank" do
|
11
|
+
@version.should_not be_empty
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should match the correct pattern" do
|
15
|
+
@version.should match /\d{1,2}\.\d{1,2}\.\d{1,2}/
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"players":[{"shots_count":10,"twitter_screen_name":"prettyuglydsgn","avatar_url":"http://dribbble.com/system/users/3902/avatars/thumb/41653_758886023_160_n.jpg?1280856614","name":"Ben Didier","created_at":"2010/08/03 13:25:13 -0400","location":"Vancouver","following_count":5,"url":"http://dribbble.com/players/prettyuglydesign","draftees_count":0,"id":3902,"drafted_by_player_id":1,"followers_count":6},{"shots_count":0,"twitter_screen_name":"lukew","avatar_url":"http://dribbble.com/system/users/3818/avatars/thumb/lukew_plain100x100.png?1280512717","name":"LukeW","created_at":"2010/07/30 13:56:56 -0400","location":"Silicon Valley, CA","following_count":1,"url":"http://dribbble.com/players/lukew","draftees_count":0,"id":3818,"drafted_by_player_id":1,"followers_count":2},{"shots_count":0,"twitter_screen_name":"jazer","avatar_url":"http://dribbble.com/system/users/2984/avatars/thumb/me-square.jpg?1276200669","name":"John Zeratsky","created_at":"2010/06/10 16:01:53 -0400","location":"San Francisco","following_count":6,"url":"http://dribbble.com/players/jazer","draftees_count":0,"id":2984,"drafted_by_player_id":1,"followers_count":3},{"shots_count":8,"twitter_screen_name":"ryancarson","avatar_url":"http://dribbble.com/system/users/2113/avatars/thumb/ryan-head_bigger_bigger.jpg?1274653630","name":"Ryan Carson","created_at":"2010/05/23 18:22:59 -0400","location":"Bath, UK","following_count":39,"url":"http://dribbble.com/players/ryancarson","draftees_count":1,"id":2113,"drafted_by_player_id":1,"followers_count":200},{"shots_count":2,"twitter_screen_name":"BGramer","avatar_url":"http://dribbble.com/images/avatar-default.gif","name":"Brendan Gramer","created_at":"2010/05/14 11:30:36 -0400","location":"Seattle, WA","following_count":24,"url":"http://dribbble.com/players/bgramer","draftees_count":0,"id":2090,"drafted_by_player_id":1,"followers_count":3},{"shots_count":8,"twitter_screen_name":"TadCarpenter","avatar_url":"http://dribbble.com/system/users/2060/avatars/thumb/tadcarpenter.png?1273165269","name":"Tad Carpenter","created_at":"2010/05/06 12:52:11 -0400","location":"Kansas Ciy, Missouri ","following_count":28,"url":"http://dribbble.com/players/TadCarpenter","draftees_count":0,"id":2060,"drafted_by_player_id":1,"followers_count":94},{"shots_count":8,"twitter_screen_name":null,"avatar_url":"http://dribbble.com/system/users/2050/avatars/thumb/MarkWyner3.jpg?1272997230","name":"Mark Wyner","created_at":"2010/05/04 14:06:23 -0400","location":"Portland, OR","following_count":7,"url":"http://dribbble.com/players/markwyner","draftees_count":0,"id":2050,"drafted_by_player_id":1,"followers_count":16},{"shots_count":9,"twitter_screen_name":"mikeyburton","avatar_url":"http://dribbble.com/system/users/2046/avatars/thumb/16147_203231429011_604494011_4049481_7951041_n.jpg?1272937807","name":"Mikey Burton","created_at":"2010/05/03 21:40:00 -0400","location":"Philadelphia, PA","following_count":29,"url":"http://dribbble.com/players/mikeyburton","draftees_count":2,"id":2046,"drafted_by_player_id":1,"followers_count":111},{"shots_count":7,"twitter_screen_name":"IconBlock","avatar_url":"http://dribbble.com/system/users/1992/avatars/thumb/blockhead.jpg?1271773046","name":"The IconBlock Ltd.","created_at":"2010/04/20 10:14:04 -0400","location":"NewYork","following_count":28,"url":"http://dribbble.com/players/IconBlock","draftees_count":1,"id":1992,"drafted_by_player_id":1,"followers_count":93},{"shots_count":0,"twitter_screen_name":"danoliver","avatar_url":"http://dribbble.com/system/users/1937/avatars/thumb/dan_goggles.jpg?1271197002","name":"Dan Oliver","created_at":"2010/04/13 18:12:43 -0400","location":null,"following_count":0,"url":"http://dribbble.com/players/danoliver","draftees_count":0,"id":1937,"drafted_by_player_id":1,"followers_count":10},{"shots_count":5,"twitter_screen_name":"fontfabric","avatar_url":"http://dribbble.com/system/users/1935/avatars/thumb/avatar-sve.png?1271351933","name":"Svetoslav Simov","created_at":"2010/04/13 16:28:00 -0400","location":"Sofia","following_count":41,"url":"http://dribbble.com/players/fontfabric","draftees_count":0,"id":1935,"drafted_by_player_id":1,"followers_count":34},{"shots_count":4,"twitter_screen_name":"@coppermanland","avatar_url":"http://dribbble.com/system/users/1915/avatars/thumb/brian.gif?1271923225","name":"Brian Copperman","created_at":"2010/04/12 12:25:37 -0400","location":"San Diego","following_count":57,"url":"http://dribbble.com/players/coppermanland","draftees_count":0,"id":1915,"drafted_by_player_id":1,"followers_count":2},{"shots_count":2,"twitter_screen_name":"phae","avatar_url":"http://dribbble.com/system/users/1894/avatars/thumb/4915315.jpg?1270830086","name":"Frances Berriman","created_at":"2010/04/09 12:20:20 -0400","location":"London, UK","following_count":8,"url":"http://dribbble.com/players/phae","draftees_count":2,"id":1894,"drafted_by_player_id":1,"followers_count":8},{"shots_count":0,"twitter_screen_name":"sixfoot6","avatar_url":"http://dribbble.com/system/users/1865/avatars/thumb/mustache.jpg?1270672755","name":"Ryan Gantz","created_at":"2010/04/07 16:36:30 -0400","location":"Washington, DC","following_count":7,"url":"http://dribbble.com/players/sixfoot6","draftees_count":0,"id":1865,"drafted_by_player_id":1,"followers_count":2},{"shots_count":4,"twitter_screen_name":"meyerweb","avatar_url":"http://dribbble.com/system/users/1814/avatars/thumb/halo2emblem.jpeg?1270507854","name":"Eric Meyer","created_at":"2010/04/05 18:35:32 -0400","location":"my head","following_count":19,"url":"http://dribbble.com/players/meyerweb","draftees_count":0,"id":1814,"drafted_by_player_id":1,"followers_count":36},{"shots_count":8,"twitter_screen_name":"presentday","avatar_url":"http://dribbble.com/system/users/1773/avatars/thumb/Mr.jpeg?1270319220","name":"Piotr","created_at":"2010/04/03 12:46:31 -0400","location":"Florence","following_count":12,"url":"http://dribbble.com/players/presentday","draftees_count":0,"id":1773,"drafted_by_player_id":1,"followers_count":13},{"shots_count":0,"twitter_screen_name":"pmaiorana","avatar_url":"http://dribbble.com/system/users/1730/avatars/thumb/IMG_2472.jpg?1274365342","name":"Paul Maiorana","created_at":"2010/03/29 16:16:33 -0400","location":"Brooklyn, NY","following_count":17,"url":"http://dribbble.com/players/pmaiorana","draftees_count":0,"id":1730,"drafted_by_player_id":1,"followers_count":2},{"shots_count":4,"twitter_screen_name":"Jathu","avatar_url":"http://dribbble.com/system/users/1709/avatars/thumb/43462097_N06.jpg.jpeg?1269741710","name":"Jathu Satkunarajah","created_at":"2010/03/27 22:00:46 -0400","location":"Toronto, Canada","following_count":23,"url":"http://dribbble.com/players/Jathu","draftees_count":2,"id":1709,"drafted_by_player_id":1,"followers_count":30},{"shots_count":4,"twitter_screen_name":"k","avatar_url":"http://dribbble.com/system/users/1472/avatars/thumb/kc_gradient_160.jpg?1269036027","name":"Kevin Cheng","created_at":"2010/03/19 17:58:47 -0400","location":"San Francisco, CA","following_count":45,"url":"http://dribbble.com/players/kevnull","draftees_count":0,"id":1472,"drafted_by_player_id":1,"followers_count":18},{"shots_count":15,"twitter_screen_name":"Larkef","avatar_url":"http://dribbble.com/system/users/1019/avatars/thumb/Screen_shot_2010-03-11_at_22.13.47.png?1268331262","name":"Jord Riekwel","created_at":"2010/03/11 10:51:46 -0500","location":"Rotterdam","following_count":137,"url":"http://dribbble.com/players/Larkef","draftees_count":5,"id":1019,"drafted_by_player_id":1,"followers_count":108},{"shots_count":2,"twitter_screen_name":"jasperhauser","avatar_url":"http://dribbble.com/system/users/1018/avatars/thumb/jasper_reference.jpg?1268321571","name":"Jasper Hauser","created_at":"2010/03/11 10:23:45 -0500","location":"Amsterdam","following_count":21,"url":"http://dribbble.com/players/jasperhauser","draftees_count":0,"id":1018,"drafted_by_player_id":1,"followers_count":66},{"shots_count":4,"twitter_screen_name":"teleject","avatar_url":"http://dribbble.com/system/users/1013/avatars/thumb/120x120_illus_digg.gif?1268255769","name":"Christopher Schmitt","created_at":"2010/03/10 16:12:04 -0500","location":"Austin, TX","following_count":52,"url":"http://dribbble.com/players/teleject","draftees_count":1,"id":1013,"drafted_by_player_id":1,"followers_count":17},{"shots_count":0,"twitter_screen_name":"garyvee","avatar_url":"http://dribbble.com/system/users/1009/avatars/thumb/Photo_2.jpg?1268224509","name":"Gary Vaynerchuk","created_at":"2010/03/10 07:33:29 -0500","location":"NYC","following_count":5,"url":"http://dribbble.com/players/garyvee","draftees_count":0,"id":1009,"drafted_by_player_id":1,"followers_count":17},{"shots_count":4,"twitter_screen_name":"dustinwalker","avatar_url":"http://dribbble.com/images/avatar-default.gif","name":"Dustin Walker","created_at":"2010/03/08 07:02:29 -0500","location":"Raleigh, NC","following_count":16,"url":"http://dribbble.com/players/dustinwalker","draftees_count":2,"id":990,"drafted_by_player_id":1,"followers_count":3},{"shots_count":15,"twitter_screen_name":"http://twitter.com/bastianallgeier","avatar_url":"http://dribbble.com/system/users/987/avatars/thumb/bastian.jpg?1267900809","name":"Bastian Allgeier","created_at":"2010/03/06 13:38:17 -0500","location":"Mannheim, Germany","following_count":72,"url":"http://dribbble.com/players/bastianallgeier","draftees_count":4,"id":987,"drafted_by_player_id":1,"followers_count":75},{"shots_count":2,"twitter_screen_name":"cadler","avatar_url":"http://dribbble.com/system/users/981/avatars/thumb/cadler.jpg?1269280624","name":"Charles Adler","created_at":"2010/03/03 14:29:13 -0500","location":"Chicago","following_count":132,"url":"http://dribbble.com/players/cadler","draftees_count":0,"id":981,"drafted_by_player_id":1,"followers_count":23},{"shots_count":5,"twitter_screen_name":"troygilbert","avatar_url":"http://dribbble.com/system/users/960/avatars/thumb/technicolor-troy.png?1267493580","name":"Troy Gilbert","created_at":"2010/03/01 13:03:43 -0500","location":"Austin","following_count":32,"url":"http://dribbble.com/players/troygilbert","draftees_count":1,"id":960,"drafted_by_player_id":1,"followers_count":5},{"shots_count":8,"twitter_screen_name":"mattdavey","avatar_url":"http://dribbble.com/system/users/958/avatars/thumb/DSC_0083.png?1267458990","name":"Matt Davey","created_at":"2010/03/01 10:50:11 -0500","location":"Suffolk, UK","following_count":99,"url":"http://dribbble.com/players/mattdavey","draftees_count":2,"id":958,"drafted_by_player_id":1,"followers_count":29},{"shots_count":7,"twitter_screen_name":"decadent77","avatar_url":"http://dribbble.com/system/users/950/avatars/thumb/anthonydines.jpg?1267190237","name":"Anthony Dines","created_at":"2010/02/25 12:20:06 -0500","location":"Brooklyn, NY","following_count":32,"url":"http://dribbble.com/players/anthonydines","draftees_count":0,"id":950,"drafted_by_player_id":1,"followers_count":11},{"shots_count":0,"twitter_screen_name":null,"avatar_url":"http://dribbble.com/images/avatar-default.gif","name":"Keith Butters","created_at":"2010/02/25 12:17:10 -0500","location":null,"following_count":2,"url":"http://dribbble.com/players/keithters","draftees_count":0,"id":949,"drafted_by_player_id":1,"followers_count":2}],"total":103,"pages":4,"page":1,"per_page":30}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"total":148,"shots":[{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/08/09 16:48:49 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/43424/shot_1281386929.png","title":"Path","likes_count":20,"url":"http://dribbble.com/shots/43424-Path","rebounds_count":1,"id":43424,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/43424/shot_1281386929_teaser.png","height":300,"views_count":1078,"comments_count":17,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/07/23 16:51:55 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/37656/shot_1279918315.png","title":"WIP","likes_count":25,"url":"http://dribbble.com/shots/37656-WIP","rebounds_count":0,"id":37656,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/37656/shot_1279918315_teaser.png","height":300,"views_count":788,"comments_count":12,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/07/21 15:25:29 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/36994/shot_1279740328.png","title":"Possible t-shirt","likes_count":41,"url":"http://dribbble.com/shots/36994-Possible-t-shirt","rebounds_count":0,"id":36994,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/36994/shot_1279740328_teaser.png","height":300,"views_count":773,"comments_count":20,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/07/09 16:25:13 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/34056/shot_1278707113.png","title":"Stacked","likes_count":83,"url":"http://dribbble.com/shots/34056-Stacked","rebounds_count":0,"id":34056,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/34056/shot_1278707113_teaser.png","height":300,"views_count":2362,"comments_count":16,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/06/28 11:25:50 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/31180/shot_1277738750.png","title":"Choices","likes_count":92,"url":"http://dribbble.com/shots/31180-Choices","rebounds_count":0,"id":31180,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/31180/shot_1277738750_teaser.png","height":300,"views_count":4246,"comments_count":36,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/06/25 21:53:08 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/30826/shot_1277517188.png","title":"Lifted","likes_count":91,"url":"http://dribbble.com/shots/30826-Lifted","rebounds_count":0,"id":30826,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/30826/shot_1277517188_teaser.png","height":300,"views_count":3242,"comments_count":19,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/06/14 15:45:50 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/27490/shot_1276544750.png","title":"Yep, they work perfectly.","likes_count":95,"url":"http://dribbble.com/shots/27490-Yep-they-work-perfectly-","rebounds_count":0,"id":27490,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/27490/shot_1276544750_teaser.png","height":300,"views_count":4822,"comments_count":20,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/06/10 13:22:42 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/26446/shot_1276190562.png","title":"Flagged","likes_count":56,"url":"http://dribbble.com/shots/26446-Flagged","rebounds_count":0,"id":26446,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/26446/shot_1276190562_teaser.png","height":300,"views_count":1874,"comments_count":21,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/06/07 16:24:48 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/25237/shot_1275942288.png","title":"Moss","likes_count":166,"url":"http://dribbble.com/shots/25237-Moss","rebounds_count":0,"id":25237,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/25237/shot_1275942288_teaser.png","height":300,"views_count":4640,"comments_count":48,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/06/01 16:22:49 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/22799/shot_1275423768.png","title":"Kraftwork","likes_count":75,"url":"http://dribbble.com/shots/22799-Kraftwork","rebounds_count":0,"id":22799,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/22799/shot_1275423768_teaser.png","height":300,"views_count":2788,"comments_count":23,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/05/21 16:34:42 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/21603/shot_1274474082.png","title":"Moon","likes_count":15,"url":"http://dribbble.com/shots/21603-Moon","rebounds_count":0,"id":21603,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/21603/shot_1274474082_teaser.png","height":300,"views_count":1866,"comments_count":4,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/05/13 12:21:53 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/20406/shot_1273767713.png","title":"Rough pixel work","likes_count":21,"url":"http://dribbble.com/shots/20406-Rough-pixel-work","rebounds_count":0,"id":20406,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/20406/shot_1273767713_teaser.png","height":300,"views_count":2200,"comments_count":17,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/05/05 12:07:43 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/19172/shot_1273075663.png","title":"Short Spaghetti Revolution","likes_count":85,"url":"http://dribbble.com/shots/19172-Short-Spaghetti-Revolution","rebounds_count":1,"id":19172,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/19172/shot_1273075663_teaser.png","height":300,"views_count":4052,"comments_count":28,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/04/19 16:37:54 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/16554/shot_1271709474.png","title":"Infield Rebound","likes_count":65,"url":"http://dribbble.com/shots/16554-Infield-Rebound","rebounds_count":1,"id":16554,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/16554/shot_1271709474_teaser.png","height":300,"views_count":3047,"comments_count":16,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/04/14 16:54:56 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/15675/shot_1271278496.png","title":"#03c","likes_count":9,"url":"http://dribbble.com/shots/15675--03c","rebounds_count":0,"id":15675,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/15675/shot_1271278496_teaser.png","height":300,"views_count":2074,"comments_count":17,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/04/12 13:47:35 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/15077/shot_1271094455.png","title":"Embryo","likes_count":6,"url":"http://dribbble.com/shots/15077-Embryo","rebounds_count":0,"id":15077,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/15077/shot_1271094455_teaser.png","height":300,"views_count":1794,"comments_count":15,"width":74},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/04/01 13:52:36 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/12909/shot_1270144356.png","title":"Caption me.","likes_count":23,"url":"http://dribbble.com/shots/12909-Caption-me-","rebounds_count":38,"id":12909,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/12909/shot_1270144356_teaser.png","height":300,"views_count":5587,"comments_count":46,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/29 15:12:41 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/12250/shot_1269889961.png","title":"e on.","likes_count":35,"url":"http://dribbble.com/shots/12250-e-on-","rebounds_count":0,"id":12250,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/12250/shot_1269889961_teaser.png","height":300,"views_count":3018,"comments_count":21,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/26 12:54:17 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/11716/Picture-29.png","title":"Pixel worn","likes_count":7,"url":"http://dribbble.com/shots/11716-Pixel-worn","rebounds_count":0,"id":11716,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/11716/Picture-29_teaser.png","height":300,"views_count":1310,"comments_count":8,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/23 13:13:57 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/10745/rebound-me.png","title":"Rebound me.","likes_count":20,"url":"http://dribbble.com/shots/10745-Rebound-me-","rebounds_count":94,"id":10745,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/10745/rebound-me_teaser.png","height":300,"views_count":2787,"comments_count":20,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/15 11:28:59 -0400","image_url":"http://dribbble.com/system/users/1/screenshots/8805/Picture-28.png","title":"Typew","likes_count":24,"url":"http://dribbble.com/shots/8805-Typew","rebounds_count":0,"id":8805,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/8805/Picture-28_teaser.png","height":300,"views_count":1459,"comments_count":13,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/13 12:39:30 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/8720/11.png","title":"Refined","likes_count":46,"url":"http://dribbble.com/shots/8720-Refined","rebounds_count":1,"id":8720,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/8720/11_teaser.png","height":300,"views_count":2642,"comments_count":29,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/13 10:54:20 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/8717/Picture-25.png","title":"Location, website, twitter","likes_count":10,"url":"http://dribbble.com/shots/8717-Location-website-twitter","rebounds_count":1,"id":8717,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/8717/Picture-25_teaser.png","height":300,"views_count":1353,"comments_count":3,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/09 13:45:12 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/8324/Picture-22.png","title":"Stacked","likes_count":3,"url":"http://dribbble.com/shots/8324-Stacked","rebounds_count":0,"id":8324,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/8324/Picture-22_teaser.png","height":300,"views_count":734,"comments_count":10,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/04 11:41:57 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/7938/Picture-19.png","title":"World's worst maze","likes_count":7,"url":"http://dribbble.com/shots/7938-World-s-worst-maze","rebounds_count":1,"id":7938,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/7938/Picture-19_teaser.png","height":300,"views_count":617,"comments_count":4,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/03/02 08:04:46 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/7701/rebound-me.png","title":"Rebound Playoff","likes_count":3,"url":"http://dribbble.com/shots/7701-Rebound-Playoff","rebounds_count":25,"id":7701,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/7701/rebound-me_teaser.png","height":300,"views_count":1036,"comments_count":16,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/02/25 13:16:05 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/7355/Picture-12.png","title":"A Day Apart","likes_count":31,"url":"http://dribbble.com/shots/7355-A-Day-Apart","rebounds_count":0,"id":7355,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/7355/Picture-12_teaser.png","height":300,"views_count":2021,"comments_count":18,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/02/24 07:11:15 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/7206/Picture-11.png","title":"Ssachusetts","likes_count":15,"url":"http://dribbble.com/shots/7206-Ssachusetts","rebounds_count":0,"id":7206,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/7206/Picture-11_teaser.png","height":107,"views_count":794,"comments_count":10,"width":138},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/02/23 07:07:17 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/7123/oliver.jpg","title":"Oliver","likes_count":24,"url":"http://dribbble.com/shots/7123-Oliver","rebounds_count":0,"id":7123,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/7123/oliver_teaser.jpg","height":300,"views_count":795,"comments_count":10,"width":400},{"player":{"shots_count":148,"twitter_screen_name":"simplebits","avatar_url":"http://dribbble.com/system/users/1/avatars/thumb/dancederholm-peek.jpg?1261060245","name":"Dan Cederholm","created_at":"2009/07/07 21:51:22 -0400","location":"Salem, MA","following_count":375,"url":"http://dribbble.com/players/simplebits","draftees_count":103,"id":1,"drafted_by_player_id":null,"followers_count":2119},"created_at":"2010/02/22 12:06:34 -0500","image_url":"http://dribbble.com/system/users/1/screenshots/7061/framed-three-color.png","title":"Framed (three color)","likes_count":56,"url":"http://dribbble.com/shots/7061-Framed-three-color-","rebounds_count":0,"id":7061,"image_teaser_url":"http://dribbble.com/system/users/1/screenshots/7061/framed-three-color_teaser.png","height":300,"views_count":1454,"comments_count":31,"width":400}],"pages":5,"page":1,"per_page":30}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"players":[{"shots_count":1,"twitter_screen_name":"kevin","avatar_url":"http://dribbble.com/system/users/3997/avatars/thumb/n202012_5870.jpg?1281657667","name":"Kevin Systrom","created_at":"2010/08/07 04:15:31 -0400","location":"San Francisco","following_count":6,"url":"http://dribbble.com/players/systrom","draftees_count":0,"id":3997,"drafted_by_player_id":1997,"followers_count":4},{"shots_count":1,"twitter_screen_name":"http://twitter.com/preist","avatar_url":"http://dribbble.com/system/users/4093/avatars/thumb/Screen_shot_2010-08-13_at_12.02.08_AM.png?1281646949","name":"Igor","created_at":"2010/08/12 10:57:40 -0400","location":"Planet Earth","following_count":10,"url":"http://dribbble.com/players/preist","draftees_count":0,"id":4093,"drafted_by_player_id":98,"followers_count":3},{"shots_count":1,"twitter_screen_name":"darkwark","avatar_url":"http://dribbble.com/system/users/4101/avatars/thumb/Kamil.jpeg?1281643625","name":"Kamil Khadeyev","created_at":"2010/08/12 16:06:25 -0400","location":"Russia, Kazan","following_count":8,"url":"http://dribbble.com/players/darkwark","draftees_count":0,"id":4101,"drafted_by_player_id":1269,"followers_count":4},{"shots_count":16,"twitter_screen_name":"addisonkowalski","avatar_url":"http://dribbble.com/system/users/1086/avatars/thumb/l_f30a844bf698403cb7beeeaf4a80b2bc.jpg?1268922192","name":"Addison Kowalski","created_at":"2010/03/18 10:22:34 -0400","location":"San Francisco, California","following_count":20,"url":"http://dribbble.com/players/addison","draftees_count":3,"id":1086,"drafted_by_player_id":831,"followers_count":41},{"shots_count":1,"twitter_screen_name":"julie_cha","avatar_url":"http://dribbble.com/system/users/4095/avatars/thumb/145418_large_3.jpg?1281630758","name":"Julie Chabin","created_at":"2010/08/12 11:56:56 -0400","location":"Paris, France","following_count":6,"url":"http://dribbble.com/players/sys","draftees_count":0,"id":4095,"drafted_by_player_id":2082,"followers_count":2},{"shots_count":2,"twitter_screen_name":"jasonr44240","avatar_url":"http://dribbble.com/system/users/4089/avatars/thumb/jason_richardson.jpg?1281623362","name":"Jason Richardson","created_at":"2010/08/12 09:54:55 -0400","location":"Kent, Ohio","following_count":5,"url":"http://dribbble.com/players/jasonr44240","draftees_count":0,"id":4089,"drafted_by_player_id":466,"followers_count":3},{"shots_count":21,"twitter_screen_name":"LukeRitchie","avatar_url":"http://dribbble.com/system/users/4005/avatars/thumb/twitter_pic.jpg?1281445137","name":"Luke Ritchie","created_at":"2010/08/08 08:04:58 -0400","location":"stellenbosch south africa","following_count":35,"url":"http://dribbble.com/players/Luke","draftees_count":0,"id":4005,"drafted_by_player_id":99,"followers_count":8},{"shots_count":6,"twitter_screen_name":"traxor","avatar_url":"http://dribbble.com/system/users/3754/avatars/thumb/Luke_Jones.jpeg?1280397543","name":"Luke Jones","created_at":"2010/07/29 05:54:50 -0400","location":"Birmingham, UK","following_count":9,"url":"http://dribbble.com/players/traxor","draftees_count":0,"id":3754,"drafted_by_player_id":1528,"followers_count":4},{"shots_count":22,"twitter_screen_name":"http://twitter.com/WeaslyGrizzly","avatar_url":"http://dribbble.com/system/users/3832/avatars/thumb/12019358.jpg?1280563060","name":"Weasly Grizzly","created_at":"2010/07/31 03:48:32 -0400","location":"Russia, Saint-Petersburg","following_count":5,"url":"http://dribbble.com/players/WeaslyGrizzly","draftees_count":0,"id":3832,"drafted_by_player_id":3093,"followers_count":40},{"shots_count":1,"twitter_screen_name":"harrylove","avatar_url":"http://dribbble.com/system/users/4084/avatars/thumb/harry.jpg?1281567386","name":"Harry Love","created_at":"2010/08/11 18:42:25 -0400","location":"Seattle, WA","following_count":25,"url":"http://dribbble.com/players/harrylove","draftees_count":0,"id":4084,"drafted_by_player_id":81,"followers_count":5},{"shots_count":2,"twitter_screen_name":"jamesbuckley","avatar_url":"http://dribbble.com/system/users/3862/avatars/thumb/Me1.jpg?1280790448","name":"James Buckley","created_at":"2010/08/02 12:23:55 -0400","location":"Wandering Currently","following_count":33,"url":"http://dribbble.com/players/jamesbuckley","draftees_count":0,"id":3862,"drafted_by_player_id":473,"followers_count":7},{"shots_count":9,"twitter_screen_name":"thisisrobv","avatar_url":"http://dribbble.com/system/users/1277/avatars/thumb/l_28ad0ead3eb84537bf1e36f18ffbebf6.JPG?1269353110","name":"Robert Velasquez","created_at":"2010/03/18 14:11:48 -0400","location":"San Antonio, TX","following_count":55,"url":"http://dribbble.com/players/thisisrobv","draftees_count":1,"id":1277,"drafted_by_player_id":336,"followers_count":7},{"shots_count":1,"twitter_screen_name":"http://ncrow.deviantart.com/","avatar_url":"http://dribbble.com/system/users/4048/avatars/thumb/ava_88x88.png?1281513397","name":"Nikolay Verin","created_at":"2010/08/10 08:22:59 -0400","location":"Russia Tver","following_count":11,"url":"http://dribbble.com/players/nikolayverin","draftees_count":0,"id":4048,"drafted_by_player_id":1992,"followers_count":7},{"shots_count":2,"twitter_screen_name":"Paul_Johnson","avatar_url":"http://dribbble.com/system/users/4022/avatars/thumb/Profile-Picture.jpg?1281313585","name":"Paul Johnson","created_at":"2010/08/08 20:20:55 -0400","location":"Greenville SC","following_count":26,"url":"http://dribbble.com/players/pauljohnson","draftees_count":0,"id":4022,"drafted_by_player_id":1131,"followers_count":8},{"shots_count":0,"twitter_screen_name":"flixic","avatar_url":"http://dribbble.com/images/avatar-default.gif","name":"Jonas Lekevicius","created_at":"2010/08/11 10:44:00 -0400","location":"Aarhus, Denmark","following_count":32,"url":"http://dribbble.com/players/flixic","draftees_count":0,"id":4069,"drafted_by_player_id":1214,"followers_count":1},{"shots_count":21,"twitter_screen_name":"stanton","avatar_url":"http://dribbble.com/system/users/826/avatars/thumb/headshot.jpg?1264763961","name":"Paul Stanton","created_at":"2010/01/29 06:14:20 -0500","location":"Leeds, UK","following_count":74,"url":"http://dribbble.com/players/stanton","draftees_count":5,"id":826,"drafted_by_player_id":37,"followers_count":72},{"shots_count":7,"twitter_screen_name":"andrioabero","avatar_url":"http://dribbble.com/system/users/3653/avatars/thumb/andrio-logo.png?1280364271","name":"Andrio Abero","created_at":"2010/07/27 13:40:31 -0400","location":"Brooklyn, NY","following_count":19,"url":"http://dribbble.com/players/andrioabero","draftees_count":0,"id":3653,"drafted_by_player_id":472,"followers_count":19},{"shots_count":0,"twitter_screen_name":"budesigns","avatar_url":"http://dribbble.com/system/users/4071/avatars/thumb/AmericanMustache2.jpg?1281548955","name":"Ben Ullman","created_at":"2010/08/11 12:09:44 -0400","location":"Charlotte, NC","following_count":22,"url":"http://dribbble.com/players/budesigns","draftees_count":0,"id":4071,"drafted_by_player_id":1037,"followers_count":2},{"shots_count":1,"twitter_screen_name":"Designer023","avatar_url":"http://dribbble.com/system/users/3597/avatars/thumb/avatar.jpg?1281362430","name":"Carl","created_at":"2010/07/27 06:45:03 -0400","location":"Chester","following_count":22,"url":"http://dribbble.com/players/Designer023","draftees_count":0,"id":3597,"drafted_by_player_id":1061,"followers_count":7},{"shots_count":23,"twitter_screen_name":"BRINKERHOFF","avatar_url":"http://dribbble.com/system/users/2693/avatars/thumb/4471619227_917f8dbc02_o.jpg?1275667035","name":"Ryan Brinkerhoff","created_at":"2010/06/04 11:34:09 -0400","location":"columbus, oh","following_count":37,"url":"http://dribbble.com/players/bandito_design_co","draftees_count":1,"id":2693,"drafted_by_player_id":1817,"followers_count":77},{"shots_count":1,"twitter_screen_name":"davidpcrawford","avatar_url":"http://dribbble.com/system/users/4060/avatars/thumb/Sparky_80x80_dpc.jpg?1281494278","name":"David Crawford","created_at":"2010/08/10 22:21:59 -0400","location":"Pittsburgh, PA","following_count":26,"url":"http://dribbble.com/players/dpc","draftees_count":0,"id":4060,"drafted_by_player_id":705,"followers_count":7},{"shots_count":1,"twitter_screen_name":"pixelnourish","avatar_url":"http://dribbble.com/system/users/4058/avatars/thumb/manga.jpg?1281486465","name":"Kate Payton","created_at":"2010/08/10 19:49:49 -0400","location":"Melbourne, Australia","following_count":42,"url":"http://dribbble.com/players/pixelnourish","draftees_count":0,"id":4058,"drafted_by_player_id":2675,"followers_count":4},{"shots_count":3,"twitter_screen_name":"pijornification","avatar_url":"http://dribbble.com/system/users/3039/avatars/thumb/4550_651664093026_25500038_37623203_2462609_n.jpg?1280353970","name":"David Pijor","created_at":"2010/06/12 19:32:23 -0400","location":"Richmond, VA","following_count":10,"url":"http://dribbble.com/players/pijornification","draftees_count":0,"id":3039,"drafted_by_player_id":1076,"followers_count":3},{"shots_count":2,"twitter_screen_name":"jarodl","avatar_url":"http://dribbble.com/system/users/4056/avatars/thumb/Photo_on_2010-07-10_at_17.33.jpg?1281468809","name":"Jarod Luebbert","created_at":"2010/08/10 15:32:08 -0400","location":"San Francisco, CA","following_count":10,"url":"http://dribbble.com/players/jarodl","draftees_count":0,"id":4056,"drafted_by_player_id":2303,"followers_count":2},{"shots_count":3,"twitter_screen_name":"playoutpt","avatar_url":"http://dribbble.com/system/users/2268/avatars/thumb/plt.png?1281461496","name":"Tiago Machado","created_at":"2010/06/02 12:03:09 -0400","location":"Lisbon","following_count":37,"url":"http://dribbble.com/players/playout","draftees_count":0,"id":2268,"drafted_by_player_id":614,"followers_count":3},{"shots_count":2,"twitter_screen_name":"justcreative","avatar_url":"http://dribbble.com/system/users/3652/avatars/thumb/jacob-cass.jpg?1280252655","name":"Jacob Cass","created_at":"2010/07/27 13:40:16 -0400","location":"New York","following_count":11,"url":"http://dribbble.com/players/justcreative","draftees_count":0,"id":3652,"drafted_by_player_id":2069,"followers_count":46},{"shots_count":7,"twitter_screen_name":"versamo","avatar_url":"http://dribbble.com/system/users/3608/avatars/thumb/24738_626422287795_24409505_35823120_3871060_n.jpg?1280236374","name":"Luke Alessi","created_at":"2010/07/27 09:08:04 -0400","location":"Rochester, NY","following_count":37,"url":"http://dribbble.com/players/LukeAlessi","draftees_count":0,"id":3608,"drafted_by_player_id":590,"followers_count":11},{"shots_count":1,"twitter_screen_name":"mauriz","avatar_url":"http://dribbble.com/images/avatar-default.gif","name":"Maurice Svay","created_at":"2010/08/10 11:23:52 -0400","location":"Paris, France","following_count":15,"url":"http://dribbble.com/players/mauricesvay","draftees_count":0,"id":4051,"drafted_by_player_id":1053,"followers_count":2},{"shots_count":1,"twitter_screen_name":"ephfx","avatar_url":"http://dribbble.com/system/users/4031/avatars/thumb/ephfx.150.jpg?1281391246","name":"Philippe Mignotte","created_at":"2010/08/09 12:54:35 -0400","location":"France","following_count":28,"url":"http://dribbble.com/players/ephfx","draftees_count":0,"id":4031,"drafted_by_player_id":1053,"followers_count":74},{"shots_count":1,"twitter_screen_name":"kamlesh_munot","avatar_url":"http://dribbble.com/system/users/4023/avatars/thumb/mee.jpg?1281328789","name":"Kamlesh Munot","created_at":"2010/08/08 22:38:17 -0400","location":"India","following_count":28,"url":"http://dribbble.com/players/kamlesh","draftees_count":0,"id":4023,"drafted_by_player_id":1994,"followers_count":7}],"total":2117,"pages":71,"page":1,"per_page":30}
|