disqussed 0.0.2
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/.gitignore +22 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +84 -0
- data/Rakefile +2 -0
- data/disqussed.gemspec +26 -0
- data/lib/disqussed.rb +19 -0
- data/lib/disqussed/api.rb +44 -0
- data/lib/disqussed/posts.rb +23 -0
- data/lib/disqussed/threads.rb +64 -0
- data/lib/disqussed/version.rb +3 -0
- data/spec/disqussed/api_spec.rb +90 -0
- data/spec/disqussed/posts_spec.rb +114 -0
- data/spec/disqussed/threads_spec.rb +123 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Posts/create/failure/no_message.yml +34 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Posts/create/failure/no_privileges.yml +35 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Posts/create/failure/no_thread.yml +39 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Posts/create/success.yml +97 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Posts/list/success/all_thread_posts.yml +570 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Posts/list/success/specific_thread_posts.yml +326 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Threads/create/success.yml +80 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Threads/details/success.yml +142 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Threads/post_count/success.yml +125 -0
- data/spec/fixtures/vcr_cassettes/Disqussed_Threads/remove/success.yml +80 -0
- data/spec/spec_helper.rb +44 -0
- metadata +201 -0
@@ -0,0 +1,123 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))
|
2
|
+
|
3
|
+
describe Disqussed::Threads do
|
4
|
+
before :each do
|
5
|
+
Disqussed::defaults[:sso] = true
|
6
|
+
|
7
|
+
@user = { :username => "Tester", :id => "1", :email => "test_account1@stipple.com" }
|
8
|
+
@user2 = { :username => "Tester 2", :id => "2", :email => "test_account2@stipple.com" }
|
9
|
+
end
|
10
|
+
|
11
|
+
describe "create" do
|
12
|
+
context "success" do
|
13
|
+
use_vcr_cassette
|
14
|
+
|
15
|
+
before :each do
|
16
|
+
@resp = Disqussed::Threads.create(Disqussed::defaults[:forum], Time.now.to_f)
|
17
|
+
end
|
18
|
+
|
19
|
+
after :each do
|
20
|
+
Disqussed::Threads.remove(@resp['response']['id'])
|
21
|
+
end
|
22
|
+
|
23
|
+
it "returns with a 200 HTTP Status code" do
|
24
|
+
@resp.code.should == 200
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe "details" do
|
30
|
+
context "success" do
|
31
|
+
use_vcr_cassette
|
32
|
+
|
33
|
+
before :each do
|
34
|
+
@thread = Disqussed::Threads.create(Disqussed::defaults[:forum], Time.now.to_f)
|
35
|
+
Disqussed::Posts.create("test1", { :thread => @thread['response']['id'] }, @user2)
|
36
|
+
|
37
|
+
@details = Disqussed::Threads.details(@thread['response']['id'])
|
38
|
+
end
|
39
|
+
|
40
|
+
it "returns with a 200 HTTP Status code" do
|
41
|
+
@details.code.should == 200
|
42
|
+
end
|
43
|
+
|
44
|
+
it "returns a count of the posts" do
|
45
|
+
@details["response"]["posts"].should == 1
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
#describe "get_thread_id_by_ident" do
|
51
|
+
# context "success"do
|
52
|
+
# use_vcr_cassette
|
53
|
+
#
|
54
|
+
# before :each do
|
55
|
+
# @ident = SecureRandom.hex(10)
|
56
|
+
#
|
57
|
+
# @thread = Disqussed::Threads.create(Disqussed::defaults[:forum], Time.now.to_f, {:identifier => @ident })
|
58
|
+
#
|
59
|
+
# @id = Disqussed::Threads.get_thread_id_by_ident(@ident)
|
60
|
+
# end
|
61
|
+
#
|
62
|
+
# after :each do
|
63
|
+
# @thread = Disqussed::Threads.remove_thread_by_ident(@ident)
|
64
|
+
# end
|
65
|
+
#
|
66
|
+
# it "returns with a 200 HTTP Status code" do
|
67
|
+
# @id.code.should == 200
|
68
|
+
# end
|
69
|
+
#
|
70
|
+
# it "returns the id" do
|
71
|
+
# @id["response"]["id"].should == @thread["response"]["id"]
|
72
|
+
# end
|
73
|
+
# end
|
74
|
+
#end
|
75
|
+
|
76
|
+
describe "post_count" do
|
77
|
+
context "success" do
|
78
|
+
use_vcr_cassette
|
79
|
+
|
80
|
+
before :each do
|
81
|
+
@thread = Disqussed::Threads.create(Disqussed::defaults[:forum], Time.now.to_f)
|
82
|
+
Disqussed::Posts.create("test", { :thread => @thread['response']['id'] }, @user)
|
83
|
+
end
|
84
|
+
|
85
|
+
it "returns a count of the posts" do
|
86
|
+
@count = Disqussed::Threads.post_count(@thread['response']['id'])
|
87
|
+
|
88
|
+
@count.should == 1
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe "remove" do
|
94
|
+
context "success" do
|
95
|
+
use_vcr_cassette
|
96
|
+
|
97
|
+
before :each do
|
98
|
+
@create = Disqussed::Threads.create(Disqussed::defaults[:forum], Time.now.to_f)
|
99
|
+
@delete = Disqussed::Threads.remove(@create['response']['id'])
|
100
|
+
end
|
101
|
+
|
102
|
+
it "returns with a 200 HTTP Status code" do
|
103
|
+
@delete.code.should == 200
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
#describe "remove_thread_by_ident" do
|
109
|
+
# context "success"do
|
110
|
+
# use_vcr_cassette
|
111
|
+
#
|
112
|
+
# before :each do
|
113
|
+
# ident = "Test-Photo"
|
114
|
+
# @thread = Disqussed::Threads.create(Disqussed::defaults[:forum], Time.now.to_f, {:identifier => ident })
|
115
|
+
# @thread = Disqussed::Threads.remove_thread_by_ident(ident)
|
116
|
+
# end
|
117
|
+
#
|
118
|
+
# it "returns with a 200 HTTP Status code" do
|
119
|
+
# @thread.code.should == 200
|
120
|
+
# end
|
121
|
+
# end
|
122
|
+
#end
|
123
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://disqus.com/api/3.0/posts/create.json
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: message=&api_key=<API_KEY>&api_secret=<SECRET_KEY>&remote_auth=<AUTH_S3>
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 400
|
13
|
+
message: BAD REQUEST
|
14
|
+
headers:
|
15
|
+
date:
|
16
|
+
- Tue, 02 Oct 2012 22:22:21 GMT
|
17
|
+
server:
|
18
|
+
- Apache
|
19
|
+
vary:
|
20
|
+
- Cookie,Accept-Encoding
|
21
|
+
p3p:
|
22
|
+
- CP="DSP IDC CUR ADM DELi STP NAV COM UNI INT PHY DEM"
|
23
|
+
connection:
|
24
|
+
- close
|
25
|
+
transfer-encoding:
|
26
|
+
- chunked
|
27
|
+
content-type:
|
28
|
+
- application/json
|
29
|
+
body:
|
30
|
+
encoding: US-ASCII
|
31
|
+
string: ! '{"code": 2, "response": "Missing required argument: ''message''"}'
|
32
|
+
http_version: '1.1'
|
33
|
+
recorded_at: Tue, 02 Oct 2012 22:22:21 GMT
|
34
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,35 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://disqus.com/api/3.0/posts/create.json
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: thread=808&message=no%20privileges&api_key=<API_KEY>&api_secret=<SECRET_KEY>&remote_auth=<AUTH_S3>
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 400
|
13
|
+
message: BAD REQUEST
|
14
|
+
headers:
|
15
|
+
date:
|
16
|
+
- Tue, 02 Oct 2012 22:22:22 GMT
|
17
|
+
server:
|
18
|
+
- Apache
|
19
|
+
vary:
|
20
|
+
- Cookie,Accept-Encoding
|
21
|
+
p3p:
|
22
|
+
- CP="DSP IDC CUR ADM DELi STP NAV COM UNI INT PHY DEM"
|
23
|
+
connection:
|
24
|
+
- close
|
25
|
+
transfer-encoding:
|
26
|
+
- chunked
|
27
|
+
content-type:
|
28
|
+
- application/json
|
29
|
+
body:
|
30
|
+
encoding: US-ASCII
|
31
|
+
string: ! '{"code": 2, "response": "You must authenticate the user or provide
|
32
|
+
author_name and author_email"}'
|
33
|
+
http_version: '1.1'
|
34
|
+
recorded_at: Tue, 02 Oct 2012 22:22:22 GMT
|
35
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,39 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://disqus.com/api/3.0/posts/create.json
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: message=missing%20thread&api_key=<API_KEY>&api_secret=<SECRET_KEY>&remote_auth=<AUTH_S3>
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 400
|
13
|
+
message: BAD REQUEST
|
14
|
+
headers:
|
15
|
+
date:
|
16
|
+
- Tue, 02 Oct 2012 22:22:21 GMT
|
17
|
+
server:
|
18
|
+
- Apache
|
19
|
+
vary:
|
20
|
+
- Cookie,Accept-Encoding
|
21
|
+
x-user:
|
22
|
+
- loginas:None:32045129
|
23
|
+
p3p:
|
24
|
+
- CP="DSP IDC CUR ADM DELi STP NAV COM UNI INT PHY DEM"
|
25
|
+
set-cookie:
|
26
|
+
- disqusauth="1|stipple-c4ca4238a0b923820dcc509a6f75849b|0|0|0||32045129|http%3A//mediacdn.disqus.com/1349204341/images/noavatar32.png|0";
|
27
|
+
Domain=.disqus.com; Max-Age=2592000; Path=/
|
28
|
+
connection:
|
29
|
+
- close
|
30
|
+
transfer-encoding:
|
31
|
+
- chunked
|
32
|
+
content-type:
|
33
|
+
- application/json
|
34
|
+
body:
|
35
|
+
encoding: US-ASCII
|
36
|
+
string: ! '{"code": 2, "response": "Missing required argument: ''thread''"}'
|
37
|
+
http_version: '1.1'
|
38
|
+
recorded_at: Tue, 02 Oct 2012 22:22:21 GMT
|
39
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,97 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://disqus.com/api/3.0/threads/create.json
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: forum=<FORUM_NAME>&title=1349216542.487149&api_key=<API_KEY>&api_secret=<SECRET_KEY>&access_token=<ACCESS_TOKEN>
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
date:
|
16
|
+
- Tue, 02 Oct 2012 22:22:22 GMT
|
17
|
+
server:
|
18
|
+
- Apache
|
19
|
+
vary:
|
20
|
+
- Cookie,Accept-Encoding
|
21
|
+
x-user:
|
22
|
+
- loginas:None:24478449
|
23
|
+
p3p:
|
24
|
+
- CP="DSP IDC CUR ADM DELi STP NAV COM UNI INT PHY DEM"
|
25
|
+
set-cookie:
|
26
|
+
- disqusauth="1|Stipple|0|1|0||24478449|http%3A//mediacdn.disqus.com/1349204341/images/noavatar32.png|1";
|
27
|
+
Domain=.disqus.com; Max-Age=2592000; Path=/
|
28
|
+
content-length:
|
29
|
+
- '505'
|
30
|
+
connection:
|
31
|
+
- close
|
32
|
+
content-type:
|
33
|
+
- application/json
|
34
|
+
body:
|
35
|
+
encoding: US-ASCII
|
36
|
+
string: ! '{"code": 0, "response": {"feed": "http://<FORUM_NAME>.disqus.com/1349216542487149/latest.rss",
|
37
|
+
"reactions": 0, "author": "24478449", "forum": "<FORUM_NAME>", "title": "1349216542.487149",
|
38
|
+
"userScore": 0, "identifiers": [], "dislikes": 0, "createdAt": "2012-10-02T22:22:22",
|
39
|
+
"slug": "1349216542487149", "isClosed": false, "posts": 0, "userSubscription":
|
40
|
+
false, "link": null, "likes": 0, "message": "", "category": "1748258", "ipAddress":
|
41
|
+
"208.80.69.2", "id": "868744993", "isDeleted": false}}'
|
42
|
+
http_version: '1.1'
|
43
|
+
recorded_at: Tue, 02 Oct 2012 22:22:23 GMT
|
44
|
+
- request:
|
45
|
+
method: post
|
46
|
+
uri: https://disqus.com/api/3.0/posts/create.json
|
47
|
+
body:
|
48
|
+
encoding: US-ASCII
|
49
|
+
string: thread=868744993&message=Saskatoon&api_key=<API_KEY>&api_secret=<SECRET_KEY>&remote_auth=<AUTH_S3>
|
50
|
+
headers: {}
|
51
|
+
response:
|
52
|
+
status:
|
53
|
+
code: 200
|
54
|
+
message: OK
|
55
|
+
headers:
|
56
|
+
date:
|
57
|
+
- Tue, 02 Oct 2012 22:22:23 GMT
|
58
|
+
server:
|
59
|
+
- Apache
|
60
|
+
vary:
|
61
|
+
- Cookie,Accept-Encoding
|
62
|
+
x-user:
|
63
|
+
- loginas:None:32045129
|
64
|
+
p3p:
|
65
|
+
- CP="DSP IDC CUR ADM DELi STP NAV COM UNI INT PHY DEM"
|
66
|
+
set-cookie:
|
67
|
+
- disqusauth="1|stipple-c4ca4238a0b923820dcc509a6f75849b|0|0|0||32045129|http%3A//mediacdn.disqus.com/1349204341/images/noavatar32.png|0";
|
68
|
+
Domain=.disqus.com; Max-Age=2592000; Path=/
|
69
|
+
connection:
|
70
|
+
- close
|
71
|
+
transfer-encoding:
|
72
|
+
- chunked
|
73
|
+
content-type:
|
74
|
+
- application/json
|
75
|
+
body:
|
76
|
+
encoding: US-ASCII
|
77
|
+
string: ! '{"code": 0, "response": {"isJuliaFlagged": true, "isFlagged": false,
|
78
|
+
"forum": "<FORUM_NAME>", "parent": null, "author": {"username": "stipple-c4ca4238a0b923820dcc509a6f75849b",
|
79
|
+
"about": "", "name": "Tester", "url": "", "joinedAt": "2012-09-12T18:08:50",
|
80
|
+
"rep": 1.277142, "isFollowing": false, "isFollowedBy": false, "profileUrl":
|
81
|
+
"http://disqus.com/stipple-c4ca4238a0b923820dcc509a6f75849b/", "emailHash":
|
82
|
+
"500a98812f392cd2ec694901cef0ca68", "reputation": 1.277142, "location": "",
|
83
|
+
"isPrimary": true, "isAnonymous": false, "id": "32045129", "avatar": {"small":
|
84
|
+
{"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=500a98812f392cd2ec694901cef0ca68",
|
85
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=500a98812f392cd2ec694901cef0ca68"},
|
86
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=500a98812f392cd2ec694901cef0ca68",
|
87
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=500a98812f392cd2ec694901cef0ca68"},
|
88
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=500a98812f392cd2ec694901cef0ca68",
|
89
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=500a98812f392cd2ec694901cef0ca68"}},
|
90
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
91
|
+
"Saskatoon", "createdAt": "2012-10-02T22:22:23", "id": "669097774", "thread":
|
92
|
+
"868744993", "numReports": 0, "likes": 0, "isEdited": false, "points": 0,
|
93
|
+
"message": "<p>Saskatoon</p>", "isSpam": false, "isHighlighted": false, "userScore":
|
94
|
+
0}}'
|
95
|
+
http_version: '1.1'
|
96
|
+
recorded_at: Tue, 02 Oct 2012 22:22:24 GMT
|
97
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,570 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://disqus.com/api/3.0/posts/list.json?api_key=<API_KEY>&api_secret=<SECRET_KEY>&remote_auth=<AUTH_S3>
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
date:
|
16
|
+
- Tue, 02 Oct 2012 22:22:24 GMT
|
17
|
+
server:
|
18
|
+
- Apache
|
19
|
+
vary:
|
20
|
+
- Cookie,Accept-Encoding
|
21
|
+
p3p:
|
22
|
+
- CP="DSP IDC CUR ADM DELi STP NAV COM UNI INT PHY DEM"
|
23
|
+
connection:
|
24
|
+
- close
|
25
|
+
transfer-encoding:
|
26
|
+
- chunked
|
27
|
+
content-type:
|
28
|
+
- application/json
|
29
|
+
body:
|
30
|
+
encoding: US-ASCII
|
31
|
+
string: ! '{"cursor": {"prev": null, "hasNext": true, "next": "1349216523714831:0:0",
|
32
|
+
"hasPrev": false, "total": null, "id": "1349216523714831:0:0", "more": true},
|
33
|
+
"code": 0, "response": [{"isJuliaFlagged": true, "isFlagged": false, "forum":
|
34
|
+
"makeharmony", "parent": null, "author": {"username": "letsmakeharmony", "about":
|
35
|
+
"", "name": "letsmakeharmony", "url": "", "joinedAt": "2012-10-02T22:13:10",
|
36
|
+
"rep": 1.232124, "profileUrl": "http://disqus.com/letsmakeharmony/", "emailHash":
|
37
|
+
"0c051fe84bda45332806a6bc73f1da2a", "reputation": 1.232124, "location": "",
|
38
|
+
"isPrimary": true, "isAnonymous": false, "id": "33537024", "avatar": {"small":
|
39
|
+
{"permalink": "http://disqus.com/api/users/avatars/letsmakeharmony.jpg", "cache":
|
40
|
+
"https://securecdn.disqus.com/uploads/users/3353/7024/avatar32.jpg?1349215990"},
|
41
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/letsmakeharmony.jpg",
|
42
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3353/7024/avatar92.jpg?1349215990",
|
43
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/letsmakeharmony.jpg",
|
44
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3353/7024/avatar92.jpg?1349215990"}}},
|
45
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
46
|
+
"Welcome to Make Harmony! This is an open forum, so let''s start talking about
|
47
|
+
what you''d like to see this space become!", "createdAt": "2012-10-02T22:22:05",
|
48
|
+
"id": "669097538", "thread": "868737526", "numReports": 0, "likes": 0, "isEdited":
|
49
|
+
false, "points": 0, "message": "<p>Welcome to Make Harmony! This is an open
|
50
|
+
forum, so let''s start talking about what you''d like to see this space become!</p>",
|
51
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
52
|
+
true, "isFlagged": false, "forum": "donalupa", "parent": 669096901, "author":
|
53
|
+
{"username": "JosySant", "about": "", "name": "\u273f~Josy\u273f~", "url":
|
54
|
+
"", "joinedAt": "2012-09-20T13:28:02", "rep": 1.3631629999999999, "profileUrl":
|
55
|
+
"http://disqus.com/JosySant/", "emailHash": "d58f2af4ddb92aa5e75cc2e76ae7cfcc",
|
56
|
+
"reputation": 1.3631629999999999, "location": "", "isPrimary": true, "isAnonymous":
|
57
|
+
false, "id": "32525581", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/JosySant.jpg",
|
58
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3252/5581/avatar32.jpg?1349216477"},
|
59
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/JosySant.jpg",
|
60
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3252/5581/avatar92.jpg?1349216477",
|
61
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/JosySant.jpg",
|
62
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3252/5581/avatar92.jpg?1349216477"}}},
|
63
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
64
|
+
"vc t\u00e1 por aki??? encontrou o nome do livro???? tentei no google.. mas
|
65
|
+
n\u00e3o consegui. vc tem amais alguma informa\u00e7\u00e3o???", "createdAt":
|
66
|
+
"2012-10-02T22:22:05", "id": "669097537", "thread": "868301375", "numReports":
|
67
|
+
0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>vc t\u00e1 por
|
68
|
+
aki??? encontrou o nome do livro???? tentei no google.. mas n\u00e3o consegui.
|
69
|
+
vc tem amais alguma informa\u00e7\u00e3o???</p>", "isSpam": false, "isHighlighted":
|
70
|
+
false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged": false, "forum":
|
71
|
+
"bellevilleintelligencer", "parent": null, "author": {"username": "blazer91",
|
72
|
+
"about": "", "name": "blazer91", "url": "", "joinedAt": "2012-08-01T17:17:49",
|
73
|
+
"rep": 1.3053729999999999, "profileUrl": "http://disqus.com/blazer91/", "emailHash":
|
74
|
+
"a55f7682f26374bd900eb994bfbf8d96", "reputation": 1.3053729999999999, "location":
|
75
|
+
"", "isPrimary": true, "isAnonymous": false, "id": "29920007", "avatar": {"small":
|
76
|
+
{"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=a55f7682f26374bd900eb994bfbf8d96",
|
77
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=a55f7682f26374bd900eb994bfbf8d96"},
|
78
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a55f7682f26374bd900eb994bfbf8d96",
|
79
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a55f7682f26374bd900eb994bfbf8d96"},
|
80
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a55f7682f26374bd900eb994bfbf8d96",
|
81
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a55f7682f26374bd900eb994bfbf8d96"}},
|
82
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
83
|
+
"66,000 $ salary for driving the ministers around, wow! welcome to the entitled
|
84
|
+
club.\nand those senior bureaucrats are living on their own planet, their
|
85
|
+
salaries are obscene.", "createdAt": "2012-10-02T22:22:05", "id": "669097539",
|
86
|
+
"thread": "868062187", "numReports": 0, "likes": 0, "isEdited": false, "points":
|
87
|
+
0, "message": "<p>66,000 $ salary for driving the ministers around, wow! welcome
|
88
|
+
to the entitled club.<br>and those senior bureaucrats are living on their
|
89
|
+
own planet, their salaries are obscene.</p>", "isSpam": false, "isHighlighted":
|
90
|
+
false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged": false, "forum":
|
91
|
+
"bloomberg", "parent": 669081881, "author": {"username": "yahoo-UEDIKXH77VYJJA757NBAJVRT6M",
|
92
|
+
"about": "", "name": "Joe", "url": "http://profile.yahoo.com/UEDIKXH77VYJJA757NBAJVRT6M",
|
93
|
+
"joinedAt": "2012-02-01T18:55:07", "rep": 1.2867139999999999, "profileUrl":
|
94
|
+
"http://disqus.com/yahoo-UEDIKXH77VYJJA757NBAJVRT6M/", "emailHash": "d41d8cd98f00b204e9800998ecf8427e",
|
95
|
+
"reputation": 1.2867139999999999, "location": "", "isPrimary": true, "isAnonymous":
|
96
|
+
false, "id": "21833072", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/yahoo-UEDIKXH77VYJJA757NBAJVRT6M.jpg",
|
97
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2183/3072/avatar32.jpg?1349216525"},
|
98
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/yahoo-UEDIKXH77VYJJA757NBAJVRT6M.jpg",
|
99
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2183/3072/avatar92.jpg?1349216525",
|
100
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/yahoo-UEDIKXH77VYJJA757NBAJVRT6M.jpg",
|
101
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2183/3072/avatar92.jpg?1349216525"}}},
|
102
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
103
|
+
"You are exactly right, the atrocities occurring today are being applied by
|
104
|
+
the \"pen\" opposed to the sword but the pain and suffering is no less real.
|
105
|
+
So many innocent people being slaughtered in the name of the plutocracy.",
|
106
|
+
"createdAt": "2012-10-02T22:22:05", "id": "669097533", "thread": "867524043",
|
107
|
+
"numReports": 0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>You
|
108
|
+
are exactly right, the atrocities occurring today are being applied by the
|
109
|
+
\"pen\" opposed to the sword but the pain and suffering is no less real. So
|
110
|
+
many innocent people being slaughtered in the name of the plutocracy.</p>",
|
111
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
112
|
+
true, "isFlagged": false, "forum": "thehill-v4", "parent": null, "author":
|
113
|
+
{"username": "Undettered", "about": "", "name": "Undettered", "url": "", "joinedAt":
|
114
|
+
"2011-01-31T19:18:34", "rep": 1.583232, "profileUrl": "http://disqus.com/Undettered/",
|
115
|
+
"emailHash": "1dd61fe16e71f141b5721c07b6cc6f8c", "reputation": 1.583232, "location":
|
116
|
+
"", "isPrimary": true, "isAnonymous": false, "id": "6954868", "avatar": {"small":
|
117
|
+
{"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=1dd61fe16e71f141b5721c07b6cc6f8c",
|
118
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=1dd61fe16e71f141b5721c07b6cc6f8c"},
|
119
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=1dd61fe16e71f141b5721c07b6cc6f8c",
|
120
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=1dd61fe16e71f141b5721c07b6cc6f8c"},
|
121
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=1dd61fe16e71f141b5721c07b6cc6f8c",
|
122
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=1dd61fe16e71f141b5721c07b6cc6f8c"}},
|
123
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
124
|
+
"My prior thoughts about Obama being tried and sent to Fort Leavanworth\u00a0
|
125
|
+
over Libyagate, Fast and Furious....etc. 10-22 that idea, if Obama is removed
|
126
|
+
from office we would have Biden as President.\u00a0 ", "createdAt": "2012-10-02T22:22:05",
|
127
|
+
"id": "669097532", "thread": "868420395", "numReports": 0, "likes": 0, "isEdited":
|
128
|
+
false, "points": 0, "message": "<p>My prior thoughts about Obama being tried
|
129
|
+
and sent to Fort Leavanworth\u00a0 over Libyagate, Fast and Furious....etc.
|
130
|
+
10-22 that idea, if Obama is removed from office we would have Biden as President.\u00a0
|
131
|
+
</p>", "isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
132
|
+
true, "isFlagged": false, "forum": "petrmitrichevblog", "parent": null, "author":
|
133
|
+
{"username": "google-ec77b503e87c45514d085a5a5dd80311", "about": "", "name":
|
134
|
+
"Przemys\u0142aw Uzna\u0144ski", "url": "", "joinedAt": "2012-10-02T22:19:49",
|
135
|
+
"rep": 1.2324929999999998, "profileUrl": "http://disqus.com/google-ec77b503e87c45514d085a5a5dd80311/",
|
136
|
+
"emailHash": "ec77b503e87c45514d085a5a5dd80311", "reputation": 1.2324929999999998,
|
137
|
+
"location": "", "isPrimary": true, "isAnonymous": false, "id": "33537664",
|
138
|
+
"avatar": {"small": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=ec77b503e87c45514d085a5a5dd80311",
|
139
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=ec77b503e87c45514d085a5a5dd80311"},
|
140
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ec77b503e87c45514d085a5a5dd80311",
|
141
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ec77b503e87c45514d085a5a5dd80311"},
|
142
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ec77b503e87c45514d085a5a5dd80311",
|
143
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ec77b503e87c45514d085a5a5dd80311"}},
|
144
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
145
|
+
"my thoughts on 250:\nfind set of all (x,y) such as x^2+y^2=d, and that should
|
146
|
+
be 2 finger search through set of all squares\nfind gcd of all x, call it
|
147
|
+
k\ninput coordinates are multiplies of k => YES, otherwise NO", "createdAt":
|
148
|
+
"2012-10-02T22:22:05", "id": "669097531", "thread": "868708134", "numReports":
|
149
|
+
0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>my thoughts
|
150
|
+
on 250:<br>find set of all (x,y) such as x^2+y^2=d, and that should be 2 finger
|
151
|
+
search through set of all squares<br>find gcd of all x, call it k<br>input
|
152
|
+
coordinates are multiplies of k => YES, otherwise NO</p>", "isSpam": false,
|
153
|
+
"isHighlighted": false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged":
|
154
|
+
false, "forum": "newzimbabwe", "parent": 669092315, "author": {"username":
|
155
|
+
"bhora", "about": "", "name": "Bhora", "url": "", "joinedAt": "2012-09-30T14:37:15",
|
156
|
+
"rep": 1.2481229999999999, "profileUrl": "http://disqus.com/bhora/", "emailHash":
|
157
|
+
"93106d58a30023e0f0f00bb5e3e10415", "reputation": 1.2481229999999999, "location":
|
158
|
+
"", "isPrimary": true, "isAnonymous": false, "id": "33312257", "avatar": {"small":
|
159
|
+
{"permalink": "http://disqus.com/api/users/avatars/bhora.jpg", "cache": "https://securecdn.disqus.com/uploads/users/3331/2257/avatar32.jpg?1349215631"},
|
160
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/bhora.jpg",
|
161
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3331/2257/avatar92.jpg?1349215631",
|
162
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/bhora.jpg", "cache":
|
163
|
+
"https://securecdn.disqus.com/uploads/users/3331/2257/avatar92.jpg?1349215631"}}},
|
164
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
165
|
+
"You can laugh all you want, This week justice for the people of Ivory Coast
|
166
|
+
who were brutally killed under the orders of Gbago who remains locked up waiting
|
167
|
+
trial took off with the trial of one ruthless general who led the on-slaughter
|
168
|
+
of innocent civilians. Believe me, Zimbabweans will see the same justice.
|
169
|
+
", "createdAt": "2012-10-02T22:22:05", "id": "669097534", "thread": "868436776",
|
170
|
+
"numReports": 0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>You
|
171
|
+
can laugh all you want, This week justice for the people of Ivory Coast who
|
172
|
+
were brutally killed under the orders of Gbago who remains locked up waiting
|
173
|
+
trial took off with the trial of one ruthless general who led the on-slaughter
|
174
|
+
of innocent civilians. Believe me, Zimbabweans will see the same justice.
|
175
|
+
</p>", "isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
176
|
+
true, "isFlagged": false, "forum": "metsblog", "parent": 669089604, "author":
|
177
|
+
{"username": "pedros_rooster", "about": "", "name": "pedros_rooster", "url":
|
178
|
+
"", "joinedAt": "2011-01-12T22:24:23", "rep": 2.3442079999999996, "profileUrl":
|
179
|
+
"http://disqus.com/pedros_rooster/", "emailHash": "d6c23541fb9f47f4c7a2f63ae105b28a",
|
180
|
+
"reputation": 2.3442079999999996, "location": "", "isPrimary": true, "isAnonymous":
|
181
|
+
false, "id": "6404194", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/pedros_rooster.jpg",
|
182
|
+
"cache": "https://securecdn.disqus.com/uploads/users/640/4194/avatar32.jpg?1304094850"},
|
183
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/pedros_rooster.jpg",
|
184
|
+
"cache": "https://securecdn.disqus.com/uploads/users/640/4194/avatar92.jpg?1304094850",
|
185
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/pedros_rooster.jpg",
|
186
|
+
"cache": "https://securecdn.disqus.com/uploads/users/640/4194/avatar92.jpg?1304094850"}}},
|
187
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
188
|
+
"Because Murphy is actually a below-average fielder and his offensive contribution
|
189
|
+
is minimal. If Valdespin can play 2B and hit at the ML level, he''s a huge
|
190
|
+
upgrade at that position.", "createdAt": "2012-10-02T22:22:05", "id": "669097530",
|
191
|
+
"thread": "868669564", "numReports": 0, "likes": 0, "isEdited": false, "points":
|
192
|
+
0, "message": "<p>Because Murphy is actually a below-average fielder and his
|
193
|
+
offensive contribution is minimal. If Valdespin can play 2B and hit at the
|
194
|
+
ML level, he''s a huge upgrade at that position.</p>", "isSpam": false, "isHighlighted":
|
195
|
+
false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged": false, "forum":
|
196
|
+
"technobuffalobeta", "parent": null, "author": {"username": "facebook-665255899",
|
197
|
+
"about": "", "name": "Pedro Cohn", "url": "http://www.facebook.com/pecohn",
|
198
|
+
"joinedAt": "2012-05-23T22:43:44", "rep": 1.2365519999999999, "profileUrl":
|
199
|
+
"http://disqus.com/facebook-665255899/", "emailHash": "d41d8cd98f00b204e9800998ecf8427e",
|
200
|
+
"reputation": 1.2365519999999999, "location": "", "isPrimary": true, "isAnonymous":
|
201
|
+
false, "id": "26551159", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/facebook-665255899.jpg",
|
202
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2655/1159/avatar32.jpg?1348614538"},
|
203
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/facebook-665255899.jpg",
|
204
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2655/1159/avatar92.jpg?1348614538",
|
205
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/facebook-665255899.jpg",
|
206
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2655/1159/avatar92.jpg?1348614538"}}},
|
207
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
208
|
+
"Why not... ", "createdAt": "2012-10-02T22:22:05", "id": "669097528", "thread":
|
209
|
+
"868726450", "numReports": 0, "likes": 0, "isEdited": false, "points": 0,
|
210
|
+
"message": "<p>Why not... </p>", "isSpam": false, "isHighlighted": false,
|
211
|
+
"userScore": 0}, {"isJuliaFlagged": true, "isFlagged": false, "forum": "jaidefinichon",
|
212
|
+
"parent": 669095484, "author": {"username": "wn_perdio", "about": "", "name":
|
213
|
+
"wn_perdio", "url": "", "joinedAt": "2012-09-21T17:25:36", "rep": 1.2239449999999998,
|
214
|
+
"profileUrl": "http://disqus.com/wn_perdio/", "emailHash": "310eda0055c2f79b053741c01440980b",
|
215
|
+
"reputation": 1.2239449999999998, "location": "", "isPrimary": true, "isAnonymous":
|
216
|
+
false, "id": "32657300", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/wn_perdio.jpg",
|
217
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3265/7300/avatar32.jpg?1348263066"},
|
218
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/wn_perdio.jpg",
|
219
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3265/7300/avatar92.jpg?1348263066",
|
220
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/wn_perdio.jpg",
|
221
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3265/7300/avatar92.jpg?1348263066"}}},
|
222
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
223
|
+
"uno que exuda amor hasta por los granos, pero se quedan con wns musculosos
|
224
|
+
que lo unico que hacen es sudar", "createdAt": "2012-10-02T22:22:05", "id":
|
225
|
+
"669097527", "thread": "868741036", "numReports": 0, "likes": 0, "isEdited":
|
226
|
+
false, "points": 0, "message": "<p>uno que exuda amor hasta por los granos,
|
227
|
+
pero se quedan con wns musculosos que lo unico que hacen es sudar</p>", "isSpam":
|
228
|
+
false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged":
|
229
|
+
false, "forum": "ilesfuneralhomes", "parent": null, "author": {"name": "Larry
|
230
|
+
and Bonnie ", "url": "", "profileUrl": "http://disqus.com/guest/a056cdc954b7d2a2ac72c3a07f275af9/",
|
231
|
+
"emailHash": "a056cdc954b7d2a2ac72c3a07f275af9", "avatar": {"small": {"permalink":
|
232
|
+
"http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=a056cdc954b7d2a2ac72c3a07f275af9",
|
233
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=a056cdc954b7d2a2ac72c3a07f275af9"},
|
234
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a056cdc954b7d2a2ac72c3a07f275af9",
|
235
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a056cdc954b7d2a2ac72c3a07f275af9"},
|
236
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a056cdc954b7d2a2ac72c3a07f275af9",
|
237
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=a056cdc954b7d2a2ac72c3a07f275af9"},
|
238
|
+
"isAnonymous": true}, "media": [], "isDeleted": false, "isApproved": true,
|
239
|
+
"dislikes": 0, "raw_message": "Marlene was a great home maker and wonderful
|
240
|
+
person.", "createdAt": "2012-10-02T22:22:05", "id": "669097525", "thread":
|
241
|
+
"868261368", "numReports": 0, "likes": 0, "isEdited": false, "points": 0,
|
242
|
+
"message": "<p>Marlene was a great home maker and wonderful person.</p>",
|
243
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
244
|
+
true, "isFlagged": false, "forum": "kansascity", "parent": 668896567, "author":
|
245
|
+
{"username": "tresdognite", "about": "\"Earthy, and relevant\"....or, so I''m
|
246
|
+
told..", "name": "tresdognite", "url": "", "joinedAt": "2010-10-21T22:03:56",
|
247
|
+
"rep": 13.161677999999998, "profileUrl": "http://disqus.com/tresdognite/",
|
248
|
+
"emailHash": "26a019f5940655330bc310ba207c9514", "reputation": 13.161677999999998,
|
249
|
+
"location": "prairie village", "isPrimary": true, "isAnonymous": false, "id":
|
250
|
+
"4947561", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/tresdognite.jpg",
|
251
|
+
"cache": "https://securecdn.disqus.com/uploads/users/494/7561/avatar32.jpg?1304631945"},
|
252
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/tresdognite.jpg",
|
253
|
+
"cache": "https://securecdn.disqus.com/uploads/users/494/7561/avatar92.jpg?1304631945",
|
254
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/tresdognite.jpg",
|
255
|
+
"cache": "https://securecdn.disqus.com/uploads/users/494/7561/avatar92.jpg?1304631945"}}},
|
256
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
257
|
+
"what planet was he from again..?", "createdAt": "2012-10-02T22:22:04", "id":
|
258
|
+
"669097523", "thread": "867283411", "numReports": 0, "likes": 0, "isEdited":
|
259
|
+
false, "points": 0, "message": "<p>what planet was he from again..?</p>",
|
260
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
261
|
+
true, "isFlagged": false, "forum": "worldstar", "parent": 668868940, "author":
|
262
|
+
{"username": "210FinestCountdownCity", "about": "", "name": "210FinestCountdownCity",
|
263
|
+
"url": "", "joinedAt": "2012-01-21T04:16:38", "rep": 1.462839, "profileUrl":
|
264
|
+
"http://disqus.com/210FinestCountdownCity/", "emailHash": "35dc468c83e6108c10c8c59e117bece4",
|
265
|
+
"reputation": 1.462839, "location": "", "isPrimary": true, "isAnonymous":
|
266
|
+
false, "id": "21424097", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/210FinestCountdownCity.jpg",
|
267
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2142/4097/avatar32.jpg?1327137845"},
|
268
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/210FinestCountdownCity.jpg",
|
269
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2142/4097/avatar92.jpg?1327137845",
|
270
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/210FinestCountdownCity.jpg",
|
271
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2142/4097/avatar92.jpg?1327137845"}}},
|
272
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
273
|
+
"He jus gave the ppl what they were askin for ever since the battle...all
|
274
|
+
of us really wanted to hear that 2nd verse cuz of how dope the 3rd one was!\u00a0",
|
275
|
+
"createdAt": "2012-10-02T22:22:04", "id": "669097522", "thread": "866067115",
|
276
|
+
"numReports": 0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>He
|
277
|
+
jus gave the ppl what they were askin for ever since the battle...all of us
|
278
|
+
really wanted to hear that 2nd verse cuz of how dope the 3rd one was!\u00a0</p>",
|
279
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
280
|
+
true, "isFlagged": false, "forum": "sdpnoticias", "parent": 668935600, "author":
|
281
|
+
{"name": "Fernando ", "url": "", "profileUrl": "http://disqus.com/guest/c240b6cc60a53e3758b0433dcefdb254/",
|
282
|
+
"emailHash": "c240b6cc60a53e3758b0433dcefdb254", "avatar": {"small": {"permalink":
|
283
|
+
"http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=c240b6cc60a53e3758b0433dcefdb254",
|
284
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=c240b6cc60a53e3758b0433dcefdb254"},
|
285
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=c240b6cc60a53e3758b0433dcefdb254",
|
286
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=c240b6cc60a53e3758b0433dcefdb254"},
|
287
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=c240b6cc60a53e3758b0433dcefdb254",
|
288
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=c240b6cc60a53e3758b0433dcefdb254"},
|
289
|
+
"isAnonymous": true}, "media": [], "isDeleted": false, "isApproved": true,
|
290
|
+
"dislikes": 0, "raw_message": "CALMADO PINOCHET DE CHICONCUAC, ES USTED VERGUENZA
|
291
|
+
DE ESE LABORIOSO LUGAR.", "createdAt": "2012-10-02T22:22:04", "id": "669097521",
|
292
|
+
"thread": "868494062", "numReports": 0, "likes": 0, "isEdited": false, "points":
|
293
|
+
0, "message": "<p>CALMADO PINOCHET DE CHICONCUAC, ES USTED VERGUENZA DE ESE
|
294
|
+
LABORIOSO LUGAR.</p>", "isSpam": false, "isHighlighted": false, "userScore":
|
295
|
+
0}, {"isJuliaFlagged": true, "isFlagged": false, "forum": "blogsdiariosur",
|
296
|
+
"parent": null, "author": {"username": "diariosur-f642bc91378fbcd8ef4d89d644c91fe9",
|
297
|
+
"about": "", "name": "henojosa", "url": "", "joinedAt": "2012-10-02T22:21:49",
|
298
|
+
"rep": 1.232124, "profileUrl": "http://disqus.com/diariosur-f642bc91378fbcd8ef4d89d644c91fe9/",
|
299
|
+
"emailHash": "35b0ab08cd84f42f5b31a046d8a635b6", "reputation": 1.232124, "location":
|
300
|
+
"", "isPrimary": true, "isAnonymous": false, "id": "33537951", "avatar": {"small":
|
301
|
+
{"permalink": "http://disqus.com/api/users/avatars/diariosur-f642bc91378fbcd8ef4d89d644c91fe9.jpg",
|
302
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3353/7951/avatar32.jpg?1349216525"},
|
303
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/diariosur-f642bc91378fbcd8ef4d89d644c91fe9.jpg",
|
304
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3353/7951/avatar92.jpg?1349216525",
|
305
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/diariosur-f642bc91378fbcd8ef4d89d644c91fe9.jpg",
|
306
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3353/7951/avatar92.jpg?1349216525"}}},
|
307
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
308
|
+
"Cuando menos resulta curioso. \u00bfes posible asesorarme sobre un peque\u00f1o
|
309
|
+
patio de vecinos?\nGracias", "createdAt": "2012-10-02T22:22:04", "id": "669097519",
|
310
|
+
"thread": "867982200", "numReports": 0, "likes": 0, "isEdited": false, "points":
|
311
|
+
0, "message": "<p>Cuando menos resulta curioso. \u00bfes posible asesorarme
|
312
|
+
sobre un peque\u00f1o patio de vecinos?<br>Gracias</p>", "isSpam": false,
|
313
|
+
"isHighlighted": false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged":
|
314
|
+
false, "forum": "golfchannel", "parent": null, "author": {"username": "golfchannel-ab49a3e0b70106fe6e40b674fe39477c",
|
315
|
+
"about": "", "name": "u000006407994", "url": "", "joinedAt": "2012-03-01T04:43:02",
|
316
|
+
"rep": 0.82007999999999992, "profileUrl": "http://disqus.com/golfchannel-ab49a3e0b70106fe6e40b674fe39477c/",
|
317
|
+
"emailHash": "e7364cdc7bd3378d6340f06564dd5d78", "reputation": 0.82007999999999992,
|
318
|
+
"location": "", "isPrimary": true, "isAnonymous": false, "id": "23019661",
|
319
|
+
"avatar": {"small": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=e7364cdc7bd3378d6340f06564dd5d78",
|
320
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=e7364cdc7bd3378d6340f06564dd5d78"},
|
321
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=e7364cdc7bd3378d6340f06564dd5d78",
|
322
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=e7364cdc7bd3378d6340f06564dd5d78"},
|
323
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=e7364cdc7bd3378d6340f06564dd5d78",
|
324
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=e7364cdc7bd3378d6340f06564dd5d78"}},
|
325
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
326
|
+
"\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\"One Opinion\"\nWhat the Ryder Cup provided
|
327
|
+
us once again was the \u201cthrill of\nvictory\u201d for one team and the
|
328
|
+
\u201cagony of defeat\u201d for the losers; someone was\ngoing to win and
|
329
|
+
someone was destined to finish second best. That was no\nsurprise but the
|
330
|
+
shock was that the U.S.A. had the opportunity to win on its\nhome soil and
|
331
|
+
snatched defeat from the jaws of victory instead. The hard line critics enjoy
|
332
|
+
using the phrase\n\u201cthey choked\u201d while the middle of the roader say
|
333
|
+
the Americans were outplayed.\nSome of the Euros thought they were lucky to
|
334
|
+
come away with the Cup while\nothers say they \u201cbeat the U.S.A.\u201d\n\n\nWhat
|
335
|
+
the average golf fan got was some very exciting golf\nplayed at the highest
|
336
|
+
professional level. \nUnlikely heroes and then the ever-present \u201cgoats.\u201d Let\u2019s
|
337
|
+
not forget the \u201csecond guessers\u201d who\nseemingly find their way out
|
338
|
+
of the woodwork after the event is completed. We should remember that we
|
339
|
+
witnessed\nsomething very special in terms of our species, which clearly demonstrating\nthat
|
340
|
+
the \u201cwill\u201d to triumph, when combined with golfing skill, can produce
|
341
|
+
a\nheart warming, almost surreal spectacular moment in time and space. \n\n\nFor
|
342
|
+
the winners, dancing, singing, a never ending\ncelebration topped off with
|
343
|
+
a drink or two and the Ryder Cup Trophy\nitself. For the victorious Captain,
|
344
|
+
a\ngreat feeling of accomplishment and relief that the ordeal is over; for
|
345
|
+
the\nlosing leader, many questions to answer, words of encouragement to his
|
346
|
+
fallen\nteam for a job well done (I could never figure that one out) and saying
|
347
|
+
how\nproud he was of them for their collective efforts. For the unfortunate
|
348
|
+
players, feelings of\nhumbleness and perhaps numbness as to why it got away. So
|
349
|
+
it is with any major sporting event that\nhas gone before this one and for
|
350
|
+
those, which follow it. \n\n\nAs a famous celebrity used to say in his closing,
|
351
|
+
\u201cThanks\nfor the memories.\u201d\n", "createdAt": "2012-10-02T22:22:04",
|
352
|
+
"id": "669097517", "thread": "866608854", "numReports": 0, "likes": 0, "isEdited":
|
353
|
+
false, "points": 0, "message": "<p></p>\n\n<p>\"One Opinion\"<br>What the
|
354
|
+
Ryder Cup provided us once again was the \u201cthrill of<br>victory\u201d
|
355
|
+
for one team and the \u201cagony of defeat\u201d for the losers; someone was<br>going
|
356
|
+
to win and someone was destined to finish second best. That was no<br>surprise
|
357
|
+
but the shock was that the U.S.A. had the opportunity to win on its<br>home
|
358
|
+
soil and snatched defeat from the jaws of victory instead. The hard line
|
359
|
+
critics enjoy using the phrase<br>\u201cthey choked\u201d while the middle
|
360
|
+
of the roader say the Americans were outplayed.<br>Some of the Euros thought
|
361
|
+
they were lucky to come away with the Cup while<br>others say they \u201cbeat
|
362
|
+
the U.S.A.\u201d</p>\n\n<p>What the average golf fan got was some very exciting
|
363
|
+
golf<br>played at the highest professional level. <br>Unlikely heroes and
|
364
|
+
then the ever-present \u201cgoats.\u201d Let\u2019s not forget the \u201csecond
|
365
|
+
guessers\u201d who<br>seemingly find their way out of the woodwork after the
|
366
|
+
event is completed. We should remember that we witnessed<br>something very
|
367
|
+
special in terms of our species, which clearly demonstrating<br>that the \u201cwill\u201d
|
368
|
+
to triumph, when combined with golfing skill, can produce a<br>heart warming,
|
369
|
+
almost surreal spectacular moment in time and space. </p>\n\n<p>For the winners,
|
370
|
+
dancing, singing, a never ending<br>celebration topped off with a drink or
|
371
|
+
two and the Ryder Cup Trophy<br>itself. For the victorious Captain, a<br>great
|
372
|
+
feeling of accomplishment and relief that the ordeal is over; for the<br>losing
|
373
|
+
leader, many questions to answer, words of encouragement to his fallen<br>team
|
374
|
+
for a job well done (I could never figure that one out) and saying how<br>proud
|
375
|
+
he was of them for their collective efforts. For the unfortunate players,
|
376
|
+
feelings of<br>humbleness and perhaps numbness as to why it got away. So
|
377
|
+
it is with any major sporting event that<br>has gone before this one and for
|
378
|
+
those, which follow it. </p>\n\n<p>As a famous celebrity used to say in his
|
379
|
+
closing, \u201cThanks<br>for the memories.\u201d<br></p>", "isSpam": false,
|
380
|
+
"isHighlighted": false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged":
|
381
|
+
false, "forum": "droidlife", "parent": null, "author": {"username": "paladaxar",
|
382
|
+
"about": "", "name": "Paladaxar", "url": "https://twitter.com/paladaxar",
|
383
|
+
"joinedAt": "2011-07-25T18:00:55", "rep": 1.3383499999999999, "profileUrl":
|
384
|
+
"http://disqus.com/paladaxar/", "emailHash": "eadc59b19537240d139402dfce6c2c59",
|
385
|
+
"reputation": 1.3383499999999999, "location": "", "isPrimary": true, "isAnonymous":
|
386
|
+
false, "id": "14487514", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/paladaxar.jpg",
|
387
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1448/7514/avatar32.jpg?1343754407"},
|
388
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/paladaxar.jpg",
|
389
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1448/7514/avatar92.jpg?1343754407",
|
390
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/paladaxar.jpg",
|
391
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1448/7514/avatar92.jpg?1343754407"}}},
|
392
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
393
|
+
"Cool...until everyone starts using it...and then it gets a virus...and then
|
394
|
+
all the doors around the entire globe unlock simultaneously...and then thieves
|
395
|
+
run rampant in the streets looting every house the pass...and then chaos ensues...then
|
396
|
+
total anarchy...etc...\n\nBut other than that...it''s pretty cool :)", "createdAt":
|
397
|
+
"2012-10-02T22:22:04", "id": "669097514", "thread": "868725224", "numReports":
|
398
|
+
0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>Cool...until
|
399
|
+
everyone starts using it...and then it gets a virus...and then all the doors
|
400
|
+
around the entire globe unlock simultaneously...and then thieves run rampant
|
401
|
+
in the streets looting every house the pass...and then chaos ensues...then
|
402
|
+
total anarchy...etc...</p>\n\n<p>But other than that...it''s pretty cool :)</p>",
|
403
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
404
|
+
true, "isFlagged": false, "forum": "muumuse", "parent": null, "author": {"name":
|
405
|
+
"Alexander Clark", "url": "", "profileUrl": "http://disqus.com/guest/ad8451ea5559783503ae834f2d042230/",
|
406
|
+
"emailHash": "ad8451ea5559783503ae834f2d042230", "avatar": {"small": {"permalink":
|
407
|
+
"http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=ad8451ea5559783503ae834f2d042230",
|
408
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=ad8451ea5559783503ae834f2d042230"},
|
409
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ad8451ea5559783503ae834f2d042230",
|
410
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ad8451ea5559783503ae834f2d042230"},
|
411
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ad8451ea5559783503ae834f2d042230",
|
412
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=ad8451ea5559783503ae834f2d042230"},
|
413
|
+
"isAnonymous": true}, "media": [], "isDeleted": false, "isApproved": true,
|
414
|
+
"dislikes": 0, "raw_message": "PROFESSIONAL GRIEFERS", "createdAt": "2012-10-02T22:22:04",
|
415
|
+
"id": "669097515", "thread": "859443269", "numReports": 0, "likes": 0, "isEdited":
|
416
|
+
false, "points": 0, "message": "<p>PROFESSIONAL GRIEFERS</p>", "isSpam": false,
|
417
|
+
"isHighlighted": false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged":
|
418
|
+
false, "forum": "droidlife", "parent": null, "author": {"username": "JulianZHuang",
|
419
|
+
"about": "", "name": "JulianZHuang", "url": "", "joinedAt": "2011-12-02T18:03:20",
|
420
|
+
"rep": 1.802276, "profileUrl": "http://disqus.com/JulianZHuang/", "emailHash":
|
421
|
+
"415b802baa32de1a4f065abe2681f19f", "reputation": 1.802276, "location": "",
|
422
|
+
"isPrimary": true, "isAnonymous": false, "id": "19728925", "avatar": {"small":
|
423
|
+
{"permalink": "http://disqus.com/api/users/avatars/JulianZHuang.jpg", "cache":
|
424
|
+
"https://securecdn.disqus.com/uploads/users/1972/8925/avatar32.jpg?1349201179"},
|
425
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/JulianZHuang.jpg",
|
426
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1972/8925/avatar92.jpg?1349201179",
|
427
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/JulianZHuang.jpg",
|
428
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1972/8925/avatar92.jpg?1349201179"}}},
|
429
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
430
|
+
"I''m using galaxy nexus and buy i5 at the end of this month. Thank goodness
|
431
|
+
I''m not in that 63%, don''t want to live in a well for the rest of my life.
|
432
|
+
", "createdAt": "2012-10-02T22:22:04", "id": "669097513", "thread": "868641327",
|
433
|
+
"numReports": 0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>I''m
|
434
|
+
using galaxy nexus and buy i5 at the end of this month. Thank goodness I''m
|
435
|
+
not in that 63%, don''t want to live in a well for the rest of my life. </p>",
|
436
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
437
|
+
true, "isFlagged": false, "forum": "jaidefinichon", "parent": null, "author":
|
438
|
+
{"name": "Yomismo", "url": "", "profileUrl": "http://disqus.com/guest/17e5fb0482bf9bb73fb91f322108c116/",
|
439
|
+
"emailHash": "17e5fb0482bf9bb73fb91f322108c116", "avatar": {"small": {"permalink":
|
440
|
+
"http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=17e5fb0482bf9bb73fb91f322108c116",
|
441
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=17e5fb0482bf9bb73fb91f322108c116"},
|
442
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=17e5fb0482bf9bb73fb91f322108c116",
|
443
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=17e5fb0482bf9bb73fb91f322108c116"},
|
444
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=17e5fb0482bf9bb73fb91f322108c116",
|
445
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=17e5fb0482bf9bb73fb91f322108c116"},
|
446
|
+
"isAnonymous": true}, "media": [], "isDeleted": false, "isApproved": true,
|
447
|
+
"dislikes": 0, "raw_message": "Por lo que veo, colocolinos con aji en el hoyo
|
448
|
+
en 3...2...1.... ", "createdAt": "2012-10-02T22:22:04", "id": "669097512",
|
449
|
+
"thread": "868739489", "numReports": 0, "likes": 0, "isEdited": false, "points":
|
450
|
+
0, "message": "<p>Por lo que veo, colocolinos con aji en el hoyo en 3...2...1....
|
451
|
+
</p>", "isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
452
|
+
true, "isFlagged": false, "forum": "engadget2", "parent": 668924951, "author":
|
453
|
+
{"username": "twitter-48566748", "about": "", "name": "Matt", "url": "http://twitter.com/Matt7twit",
|
454
|
+
"joinedAt": "2011-05-10T22:43:08", "rep": 2.5458080000000001, "profileUrl":
|
455
|
+
"http://disqus.com/twitter-48566748/", "emailHash": "d41d8cd98f00b204e9800998ecf8427e",
|
456
|
+
"reputation": 2.5458080000000001, "location": "", "isPrimary": true, "isAnonymous":
|
457
|
+
false, "id": "10203286", "avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/twitter-48566748.jpg",
|
458
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1020/3286/avatar32.jpg?1349201201"},
|
459
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/twitter-48566748.jpg",
|
460
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1020/3286/avatar92.jpg?1349201201",
|
461
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/twitter-48566748.jpg",
|
462
|
+
"cache": "https://securecdn.disqus.com/uploads/users/1020/3286/avatar92.jpg?1349201201"}}},
|
463
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
464
|
+
"Don''t take this from him. I get the feeling it might be all he has. \u00a0
|
465
|
+
", "createdAt": "2012-10-02T22:22:04", "id": "669097511", "thread": "868488186",
|
466
|
+
"numReports": 0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>Don''t
|
467
|
+
take this from him. I get the feeling it might be all he has. \u00a0 </p>",
|
468
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
469
|
+
true, "isFlagged": false, "forum": "aljazeera4", "parent": 668779777, "author":
|
470
|
+
{"username": "americansyrian", "about": "", "name": "Zak", "url": "", "joinedAt":
|
471
|
+
"2012-04-17T18:22:16", "rep": 2.7119330000000001, "profileUrl": "http://disqus.com/americansyrian/",
|
472
|
+
"emailHash": "8cf9504a1189a2fe14f6e0862b4f8057", "reputation": 2.7119330000000001,
|
473
|
+
"location": "", "isPrimary": true, "isAnonymous": false, "id": "24967891",
|
474
|
+
"avatar": {"small": {"permalink": "http://disqus.com/api/users/avatars/americansyrian.jpg",
|
475
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2496/7891/avatar32.jpg?1346696228"},
|
476
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/americansyrian.jpg",
|
477
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2496/7891/avatar92.jpg?1346696228",
|
478
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/americansyrian.jpg",
|
479
|
+
"cache": "https://securecdn.disqus.com/uploads/users/2496/7891/avatar92.jpg?1346696228"}}},
|
480
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
481
|
+
"I understand what you mean about how it looks for the American perspective.
|
482
|
+
I think the violent mobs over a video did more to harm the Syrian cause than
|
483
|
+
Assad could have hoped for.\n\nI understand that a risk of getting involved
|
484
|
+
is that Americans will have freed a country where the most radical, ignorant
|
485
|
+
elements would cause trouble... very risky situation, I know. \n\nI don''t
|
486
|
+
think Mursi should be characterized as \"radically Muslim\" though. So long
|
487
|
+
as he doesn''t ban alcohol or force women to wear the scarf, he''s just a
|
488
|
+
regular Muslim. But of course we''ll see over time if he decides to really
|
489
|
+
show us some nastiness under the guise of Islam.", "createdAt": "2012-10-02T22:22:03",
|
490
|
+
"id": "669097510", "thread": "799474942", "numReports": 0, "likes": 0, "isEdited":
|
491
|
+
false, "points": 0, "message": "<p>I understand what you mean about how it
|
492
|
+
looks for the American perspective. I think the violent mobs over a video
|
493
|
+
did more to harm the Syrian cause than Assad could have hoped for.</p>\n\n<p>I
|
494
|
+
understand that a risk of getting involved is that Americans will have freed
|
495
|
+
a country where the most radical, ignorant elements would cause trouble...
|
496
|
+
very risky situation, I know. </p>\n\n<p>I don''t think Mursi should be characterized
|
497
|
+
as \"radically Muslim\" though. So long as he doesn''t ban alcohol or force
|
498
|
+
women to wear the scarf, he''s just a regular Muslim. But of course we''ll
|
499
|
+
see over time if he decides to really show us some nastiness under the guise
|
500
|
+
of Islam.</p>", "isSpam": false, "isHighlighted": false, "userScore": 0},
|
501
|
+
{"isJuliaFlagged": true, "isFlagged": false, "forum": "charlotteobserver",
|
502
|
+
"parent": 668729857, "author": {"username": "Thankyoucomrades4", "about":
|
503
|
+
"", "name": "Thank You Comrades!", "url": "http://www.ThankYouComrades.com/",
|
504
|
+
"joinedAt": "2012-09-09T17:29:49", "rep": 1.336757, "profileUrl": "http://disqus.com/Thankyoucomrades4/",
|
505
|
+
"emailHash": "f6e85141310e6084ebabd093b53d1bcf", "reputation": 1.336757, "location":
|
506
|
+
"", "isPrimary": true, "isAnonymous": false, "id": "31878777", "avatar": {"small":
|
507
|
+
{"permalink": "http://disqus.com/api/users/avatars/Thankyoucomrades4.jpg",
|
508
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3187/8777/avatar32.jpg?1347230221"},
|
509
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/Thankyoucomrades4.jpg",
|
510
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3187/8777/avatar92.jpg?1347230221",
|
511
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/Thankyoucomrades4.jpg",
|
512
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3187/8777/avatar92.jpg?1347230221"}}},
|
513
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
514
|
+
"Politics are strange. ", "createdAt": "2012-10-02T22:22:03", "id": "669097509",
|
515
|
+
"thread": "867416929", "numReports": 0, "likes": 0, "isEdited": false, "points":
|
516
|
+
0, "message": "<p>Politics are strange. </p>", "isSpam": false, "isHighlighted":
|
517
|
+
false, "userScore": 0}, {"isJuliaFlagged": true, "isFlagged": false, "forum":
|
518
|
+
"avpixlat", "parent": 669049261, "author": {"username": "nuvetvi", "about":
|
519
|
+
"", "name": "nuvetvi", "url": "", "joinedAt": "2010-04-02T14:11:09", "rep":
|
520
|
+
11.416555000000001, "profileUrl": "http://disqus.com/nuvetvi/", "emailHash":
|
521
|
+
"9dacd943a499db994a5e816ae3fb7ccf", "reputation": 11.416555000000001, "location":
|
522
|
+
"", "isPrimary": true, "isAnonymous": false, "id": "2495497", "avatar": {"small":
|
523
|
+
{"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=9dacd943a499db994a5e816ae3fb7ccf",
|
524
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar32.png&size=32&gravatar_id=9dacd943a499db994a5e816ae3fb7ccf"},
|
525
|
+
"large": {"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=9dacd943a499db994a5e816ae3fb7ccf",
|
526
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=9dacd943a499db994a5e816ae3fb7ccf"},
|
527
|
+
"permalink": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=9dacd943a499db994a5e816ae3fb7ccf",
|
528
|
+
"cache": "http://www.gravatar.com/avatar.php?default=http%3A%2F%2Fmediacdn.disqus.com%2F1349204341%2Fimages%2Fnoavatar92.png&size=92&gravatar_id=9dacd943a499db994a5e816ae3fb7ccf"}},
|
529
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
530
|
+
"Bryr sig inte om fall medeltiden \u00e5terkommer.\u00a0Ja, tyv\u00e4rr \u00e4r
|
531
|
+
det s\u00e5. \u00c4ndrar sig inte sj\u00e4lvmant. Hur de nu t\u00e4nker? Lever
|
532
|
+
\u00f6lr stunden. Gl\u00f6mmer. Vill inte p\u00e5minnas.\u00a0Det sv\u00e5ra.",
|
533
|
+
"createdAt": "2012-10-02T22:22:03", "id": "669097507", "thread": "868514763",
|
534
|
+
"numReports": 0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>Bryr
|
535
|
+
sig inte om fall medeltiden \u00e5terkommer.\u00a0Ja, tyv\u00e4rr \u00e4r
|
536
|
+
det s\u00e5. \u00c4ndrar sig inte sj\u00e4lvmant. Hur de nu t\u00e4nker? Lever
|
537
|
+
\u00f6lr stunden. Gl\u00f6mmer. Vill inte p\u00e5minnas.\u00a0Det sv\u00e5ra.</p>",
|
538
|
+
"isSpam": false, "isHighlighted": false, "userScore": 0}, {"isJuliaFlagged":
|
539
|
+
true, "isFlagged": false, "forum": "wnd-news", "parent": 669088082, "author":
|
540
|
+
{"username": "Mikeyh0", "about": "", "name": "Mikeyh0", "url": "", "joinedAt":
|
541
|
+
"2012-08-03T13:30:25", "rep": 1.804278, "profileUrl": "http://disqus.com/Mikeyh0/",
|
542
|
+
"emailHash": "47abfd9e8cf9c5a9d67a4433e1299f85", "reputation": 1.804278, "location":
|
543
|
+
"", "isPrimary": true, "isAnonymous": false, "id": "30008591", "avatar": {"small":
|
544
|
+
{"permalink": "http://disqus.com/api/users/avatars/Mikeyh0.jpg", "cache":
|
545
|
+
"https://securecdn.disqus.com/uploads/users/3000/8591/avatar32.jpg?1344001521"},
|
546
|
+
"isCustom": false, "permalink": "http://disqus.com/api/users/avatars/Mikeyh0.jpg",
|
547
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3000/8591/avatar92.jpg?1344001521",
|
548
|
+
"large": {"permalink": "http://disqus.com/api/users/avatars/Mikeyh0.jpg",
|
549
|
+
"cache": "https://securecdn.disqus.com/uploads/users/3000/8591/avatar92.jpg?1344001521"}}},
|
550
|
+
"media": [], "isDeleted": false, "isApproved": true, "dislikes": 0, "raw_message":
|
551
|
+
"You can see how a person who sees what he regards as perversion as sort of
|
552
|
+
lapping over into other areas he thinks of as sinful or unacceptable. \"Homosexual
|
553
|
+
behavior is homosexual behavior is homosexual behavior\" - to totally mangle
|
554
|
+
Gertrude Stein. But a father would not allow his son to be alone with a gay
|
555
|
+
person from fear, maybe, or just wanting to protect the boy because there
|
556
|
+
is a perceived threat. Unreasonable? Perhaps. But in the father''s eyes a
|
557
|
+
necessary precaution. And not a sign of hate. See the problem? ", "createdAt":
|
558
|
+
"2012-10-02T22:22:03", "id": "669097508", "thread": "867474790", "numReports":
|
559
|
+
0, "likes": 0, "isEdited": false, "points": 0, "message": "<p>You can see
|
560
|
+
how a person who sees what he regards as perversion as sort of lapping over
|
561
|
+
into other areas he thinks of as sinful or unacceptable. \"Homosexual behavior
|
562
|
+
is homosexual behavior is homosexual behavior\" - to totally mangle Gertrude
|
563
|
+
Stein. But a father would not allow his son to be alone with a gay person
|
564
|
+
from fear, maybe, or just wanting to protect the boy because there is a perceived
|
565
|
+
threat. Unreasonable? Perhaps. But in the father''s eyes a necessary precaution.
|
566
|
+
And not a sign of hate. See the problem? </p>", "isSpam": false, "isHighlighted":
|
567
|
+
false, "userScore": 0}]}'
|
568
|
+
http_version: '1.1'
|
569
|
+
recorded_at: Tue, 02 Oct 2012 22:22:25 GMT
|
570
|
+
recorded_with: VCR 2.2.5
|