plancast 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +58 -0
- data/VERSION +1 -0
- data/lib/plancast.rb +29 -0
- data/lib/plancast/client.rb +87 -0
- data/plancast.gemspec +86 -0
- data/test/fixtures/attend.json +44 -0
- data/test/fixtures/comment.json +11 -0
- data/test/fixtures/create_friendship.json +26 -0
- data/test/fixtures/featured.json +1 -0
- data/test/fixtures/home_timeline.json +529 -0
- data/test/fixtures/parse_when.json +1 -0
- data/test/fixtures/plan.json +342 -0
- data/test/fixtures/search.json +185 -0
- data/test/fixtures/subscribers.json +150 -0
- data/test/fixtures/subscriptions.json +150 -0
- data/test/fixtures/unattend.json +470 -0
- data/test/fixtures/update.json +20 -0
- data/test/fixtures/user.json +26 -0
- data/test/fixtures/user_search.json +11 -0
- data/test/fixtures/user_timeline.json +25 -0
- data/test/fixtures/verify_credentials.json +1477 -0
- data/test/helper.rb +44 -0
- data/test/test_plancast.rb +128 -0
- metadata +142 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Wynn Netherland
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= plancast
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Wynn Netherland. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "plancast"
|
8
|
+
gem.summary = %Q{Wrapper for the unpublished Plancast API}
|
9
|
+
gem.description = %Q{Wrapper for the unpublished Plancast API}
|
10
|
+
gem.email = "wynn.netherland@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/pengwynn/plancast"
|
12
|
+
gem.authors = ["Wynn Netherland"]
|
13
|
+
|
14
|
+
gem.add_dependency('hashie', '>= 0.1.3')
|
15
|
+
gem.add_dependency('httparty', '>= 0.5.0')
|
16
|
+
|
17
|
+
gem.add_development_dependency('shoulda', '>= 2.10.1')
|
18
|
+
gem.add_development_dependency('matchy', '0.4.0')
|
19
|
+
gem.add_development_dependency('fakeweb', '>= 1.2.5')
|
20
|
+
gem.add_development_dependency "yard", ">= 0"
|
21
|
+
end
|
22
|
+
Jeweler::GemcutterTasks.new
|
23
|
+
rescue LoadError
|
24
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
25
|
+
end
|
26
|
+
|
27
|
+
require 'rake/testtask'
|
28
|
+
Rake::TestTask.new(:test) do |test|
|
29
|
+
test.libs << 'lib' << 'test'
|
30
|
+
test.pattern = 'test/**/test_*.rb'
|
31
|
+
test.verbose = true
|
32
|
+
end
|
33
|
+
|
34
|
+
begin
|
35
|
+
require 'rcov/rcovtask'
|
36
|
+
Rcov::RcovTask.new do |test|
|
37
|
+
test.libs << 'test'
|
38
|
+
test.pattern = 'test/**/test_*.rb'
|
39
|
+
test.verbose = true
|
40
|
+
end
|
41
|
+
rescue LoadError
|
42
|
+
task :rcov do
|
43
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
task :test => :check_dependencies
|
48
|
+
|
49
|
+
task :default => :test
|
50
|
+
|
51
|
+
begin
|
52
|
+
require 'yard'
|
53
|
+
YARD::Rake::YardocTask.new
|
54
|
+
rescue LoadError
|
55
|
+
task :yardoc do
|
56
|
+
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
|
57
|
+
end
|
58
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.2
|
data/lib/plancast.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'httparty'
|
2
|
+
require 'hashie'
|
3
|
+
|
4
|
+
directory = File.expand_path(File.dirname(__FILE__))
|
5
|
+
|
6
|
+
Hash.send :include, Hashie::HashExtensions
|
7
|
+
|
8
|
+
module Plancast
|
9
|
+
|
10
|
+
class PlancastError < StandardError
|
11
|
+
attr_reader :data
|
12
|
+
|
13
|
+
def initialize(data)
|
14
|
+
@data = data
|
15
|
+
super
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
class ClientError < StandardError; end
|
20
|
+
class ServerError < PlancastError; end
|
21
|
+
class General < PlancastError; end
|
22
|
+
|
23
|
+
class Unauthorized < ClientError; end
|
24
|
+
class NotFound < ClientError; end
|
25
|
+
|
26
|
+
class Unavailable < StandardError; end
|
27
|
+
end
|
28
|
+
|
29
|
+
require File.join(directory, 'plancast', 'client')
|
@@ -0,0 +1,87 @@
|
|
1
|
+
module Plancast
|
2
|
+
class Client
|
3
|
+
include HTTParty
|
4
|
+
base_uri 'api.plancast.com/01'
|
5
|
+
format :json
|
6
|
+
|
7
|
+
attr_reader :username
|
8
|
+
|
9
|
+
def initialize(username, password)
|
10
|
+
@username = username
|
11
|
+
self.class.basic_auth username, password
|
12
|
+
end
|
13
|
+
|
14
|
+
def verify_credentials
|
15
|
+
Hashie::Mash.new(self.class.get("/account/verify_credentials.json"))
|
16
|
+
end
|
17
|
+
|
18
|
+
def home_timeline
|
19
|
+
Hashie::Mash.new(self.class.get("/plans/home_timeline.json"))
|
20
|
+
end
|
21
|
+
|
22
|
+
def user_timeline(username=self.username)
|
23
|
+
timeline = Hashie::Mash.new(self.class.get("/plans/user_timeline.json"))
|
24
|
+
end
|
25
|
+
|
26
|
+
def update(details={})
|
27
|
+
plan = Hashie::Mash.new(self.class.post("/plans/update.json", :body => details))
|
28
|
+
end
|
29
|
+
|
30
|
+
def attend(plan_id)
|
31
|
+
plan = Hashie::Mash.new(self.class.post("/plans/attend.json", :query => {:plan_id => plan_id}))
|
32
|
+
end
|
33
|
+
|
34
|
+
def unattend(attendance_id)
|
35
|
+
plan = Hashie::Mash.new(self.class.post("/plans/destroy.json", :query => {:attendance_id => attendance_id}))
|
36
|
+
end
|
37
|
+
|
38
|
+
def plan(attendance_id)
|
39
|
+
plan = Hashie::Mash.new(self.class.get("/plans/show.json", :query => {:attendance_id => attendance_id}))
|
40
|
+
end
|
41
|
+
|
42
|
+
def search_plans(q, options={})
|
43
|
+
results = Hashie::Mash.new(self.class.get("/plans/search.json", :query => options.merge({:q => q})))
|
44
|
+
end
|
45
|
+
|
46
|
+
def user(screen_name=nil)
|
47
|
+
user = Hashie::Mash.new(self.class.get("/users/show.json", :query => {:screen_name => screen_name}))
|
48
|
+
end
|
49
|
+
|
50
|
+
def search_users(q, options={})
|
51
|
+
results = Hashie::Mash.new(self.class.get("/users/search.json", :query => options.merge({:q => q})))
|
52
|
+
end
|
53
|
+
|
54
|
+
def subscriptions(user_id)
|
55
|
+
results = self.class.get("/users/subscriptions.json", :query => {:user_id => user_id}).map{|s| Hashie::Mash.new(s)}
|
56
|
+
end
|
57
|
+
|
58
|
+
def subscribers(user_id)
|
59
|
+
results = self.class.get("/users/subscribers.json", :query => {:user_id => user_id}).map{|s| Hashie::Mash.new(s)}
|
60
|
+
end
|
61
|
+
|
62
|
+
def create_comment(details={})
|
63
|
+
comment = Hashie::Mash.new(self.class.post("/comments/update.json", :body => details))
|
64
|
+
end
|
65
|
+
|
66
|
+
def create_friendship(user_id)
|
67
|
+
user = Hashie::Mash.new(self.class.post("/friendships/create.json", :body => {:user_id => user_id}))
|
68
|
+
end
|
69
|
+
|
70
|
+
|
71
|
+
def self.get(*args); handle_response super end
|
72
|
+
def self.post(*args); handle_response super end
|
73
|
+
|
74
|
+
def self.handle_response(response)
|
75
|
+
case response.code
|
76
|
+
when 401; raise Unauthorized.new
|
77
|
+
when 403; raise RateLimitExceeded.new
|
78
|
+
when 404; raise NotFound.new
|
79
|
+
when 400...500; raise ClientError.new
|
80
|
+
when 500...600; raise ServerError.new(response.code)
|
81
|
+
else; response
|
82
|
+
end
|
83
|
+
response
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
87
|
+
end
|
data/plancast.gemspec
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{plancast}
|
8
|
+
s.version = "0.0.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Wynn Netherland"]
|
12
|
+
s.date = %q{2010-03-21}
|
13
|
+
s.description = %q{Wrapper for the unpublished Plancast API}
|
14
|
+
s.email = %q{wynn.netherland@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/plancast.rb",
|
27
|
+
"lib/plancast/client.rb",
|
28
|
+
"plancast.gemspec",
|
29
|
+
"test/fixtures/attend.json",
|
30
|
+
"test/fixtures/comment.json",
|
31
|
+
"test/fixtures/create_friendship.json",
|
32
|
+
"test/fixtures/featured.json",
|
33
|
+
"test/fixtures/home_timeline.json",
|
34
|
+
"test/fixtures/parse_when.json",
|
35
|
+
"test/fixtures/plan.json",
|
36
|
+
"test/fixtures/search.json",
|
37
|
+
"test/fixtures/subscribers.json",
|
38
|
+
"test/fixtures/subscriptions.json",
|
39
|
+
"test/fixtures/unattend.json",
|
40
|
+
"test/fixtures/update.json",
|
41
|
+
"test/fixtures/user.json",
|
42
|
+
"test/fixtures/user_search.json",
|
43
|
+
"test/fixtures/user_timeline.json",
|
44
|
+
"test/fixtures/verify_credentials.json",
|
45
|
+
"test/helper.rb",
|
46
|
+
"test/test_plancast.rb"
|
47
|
+
]
|
48
|
+
s.homepage = %q{http://github.com/pengwynn/plancast}
|
49
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
50
|
+
s.require_paths = ["lib"]
|
51
|
+
s.rubygems_version = %q{1.3.5}
|
52
|
+
s.summary = %q{Wrapper for the unpublished Plancast API}
|
53
|
+
s.test_files = [
|
54
|
+
"test/helper.rb",
|
55
|
+
"test/test_plancast.rb"
|
56
|
+
]
|
57
|
+
|
58
|
+
if s.respond_to? :specification_version then
|
59
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
60
|
+
s.specification_version = 3
|
61
|
+
|
62
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
63
|
+
s.add_runtime_dependency(%q<hashie>, [">= 0.1.3"])
|
64
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0.5.0"])
|
65
|
+
s.add_development_dependency(%q<shoulda>, [">= 2.10.1"])
|
66
|
+
s.add_development_dependency(%q<matchy>, ["= 0.4.0"])
|
67
|
+
s.add_development_dependency(%q<fakeweb>, [">= 1.2.5"])
|
68
|
+
s.add_development_dependency(%q<yard>, [">= 0"])
|
69
|
+
else
|
70
|
+
s.add_dependency(%q<hashie>, [">= 0.1.3"])
|
71
|
+
s.add_dependency(%q<httparty>, [">= 0.5.0"])
|
72
|
+
s.add_dependency(%q<shoulda>, [">= 2.10.1"])
|
73
|
+
s.add_dependency(%q<matchy>, ["= 0.4.0"])
|
74
|
+
s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
|
75
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
76
|
+
end
|
77
|
+
else
|
78
|
+
s.add_dependency(%q<hashie>, [">= 0.1.3"])
|
79
|
+
s.add_dependency(%q<httparty>, [">= 0.5.0"])
|
80
|
+
s.add_dependency(%q<shoulda>, [">= 2.10.1"])
|
81
|
+
s.add_dependency(%q<matchy>, ["= 0.4.0"])
|
82
|
+
s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
|
83
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
@@ -0,0 +1,44 @@
|
|
1
|
+
{
|
2
|
+
"attendance_id": "23rk",
|
3
|
+
"text": "#plan Android Developer Day (CoHabitat) Sat, Apr 10, 2010 http:\/\/plancast.com\/a\/23rk",
|
4
|
+
"user": {
|
5
|
+
"id": 9573,
|
6
|
+
"name": "Wynn Netherland",
|
7
|
+
"screen_name": "pengwynn",
|
8
|
+
"profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/485575482\/komikazee_normal.png"
|
9
|
+
},
|
10
|
+
"created_at": "Sun Mar 21 18:43:53 +0000 2010",
|
11
|
+
"created_since": "0 minutes",
|
12
|
+
"plan_id": "u6i",
|
13
|
+
"what": "Android Developer Day",
|
14
|
+
"when": "Saturday, April 10, 2010",
|
15
|
+
"where": "CoHabitat",
|
16
|
+
"start": "1270857600",
|
17
|
+
"stop": "1270944000",
|
18
|
+
"attendee_count": 4,
|
19
|
+
"attendees": [{
|
20
|
+
"id": 16258,
|
21
|
+
"name": "Marshall Culpepper",
|
22
|
+
"screen_name": "marshall_law",
|
23
|
+
"profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/441740644\/profile_normal.jpg"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"id": 19541,
|
27
|
+
"name": "Don Thorp",
|
28
|
+
"screen_name": "donthorp",
|
29
|
+
"profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/742915177\/Don-Profile-2010-300x300_normal.jpg"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"id": 20759,
|
33
|
+
"name": "Matt Priour",
|
34
|
+
"screen_name": null,
|
35
|
+
"profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/466664920\/july4_2009_normal.jpg"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"id": 9406,
|
39
|
+
"name": "launch DFW",
|
40
|
+
"screen_name": "launchDFW",
|
41
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/9406_pic_square_1267254229.png"
|
42
|
+
}],
|
43
|
+
"is_attending": 1
|
44
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{
|
2
|
+
"text": "This is a comment",
|
3
|
+
"created_at": "Sun Mar 21 18:41:59 +0000 2010",
|
4
|
+
"created_since": "0 minutes",
|
5
|
+
"user": {
|
6
|
+
"id": 9573,
|
7
|
+
"name": "Wynn Netherland",
|
8
|
+
"screen_name": "pengwynn",
|
9
|
+
"profile_image_url": "http:\/\/a1.twimg.com\/profile_images\/485575482\/komikazee_normal.png"
|
10
|
+
}
|
11
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
{
|
2
|
+
"id": 35,
|
3
|
+
"name": "Chris Wanstrath",
|
4
|
+
"screen_name": "defunkt",
|
5
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/35_pic_square_1266440559.png",
|
6
|
+
"location": "San Francisco, CA",
|
7
|
+
"description": "I work at GitHub",
|
8
|
+
"url": "http:\/\/github.com\/defunkt",
|
9
|
+
"protected": false,
|
10
|
+
"followers_count": 81,
|
11
|
+
"friends_count": 3,
|
12
|
+
"created_at": "Sat Aug 15 03:04:27 +0000 2009",
|
13
|
+
"created_since": "7 months, 1 week",
|
14
|
+
"utc_offset": -25200,
|
15
|
+
"time_zone": "America\/Los_Angeles",
|
16
|
+
"statuses_count": 15,
|
17
|
+
"upcoming_plans_count": 15,
|
18
|
+
"has_facebook": 0,
|
19
|
+
"syndicate_facebook": 0,
|
20
|
+
"facebook_username": null,
|
21
|
+
"has_twitter": 1,
|
22
|
+
"syndicate_twitter": 0,
|
23
|
+
"twitter_username": "defunkt",
|
24
|
+
"subscriber": 0,
|
25
|
+
"subscription": 1
|
26
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"id":1,"name":"Mark Hendrickson","screen_name":"mark","profile_image_url":"http:\/\/profile.ak.fbcdn.net\/v226\/1687\/90\/q4600185_6503.jpg","location":"San Francisco, CA","description":"Relapsed resident of the bay area","url":"http:\/\/ursusrex.com","protected":false,"followers_count":665,"friends_count":590,"created_at":"Fri Aug 07 17:18:54 +0000 2009","created_since":"7 months, 2 weeks","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":194,"upcoming_plans_count":194,"has_facebook":1,"syndicate_facebook":1,"facebook_username":"markmhendrickson","has_twitter":1,"syndicate_twitter":1,"twitter_username":"mhendric","subscriber":0,"subscription":0},{"id":30,"name":"MG Siegler","screen_name":"parislemon","profile_image_url":"http:\/\/profile.ak.fbcdn.net\/v225\/1918\/24\/q2225864_9878.jpg","location":"San Francisco, CA","description":"I roam the badlands...an outlaw hunting outlaws...a renegade.","url":"http:\/\/parislemon.com","protected":false,"followers_count":689,"friends_count":141,"created_at":"Thu Aug 13 04:55:31 +0000 2009","created_since":"7 months, 1 week","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":42,"upcoming_plans_count":42,"has_facebook":1,"syndicate_facebook":0,"facebook_username":"MGSiegler","has_twitter":1,"syndicate_twitter":0,"twitter_username":"parislemon","subscriber":0,"subscription":0},{"id":48,"name":"Jason Kincaid","screen_name":"Jason","profile_image_url":"http:\/\/profile.ak.fbcdn.net\/v22944\/179\/27\/q2500037_2985.jpg","location":"Danville, CA","description":"Mild-mannered reporter at TechCrunch","url":"","protected":false,"followers_count":141,"friends_count":19,"created_at":"Fri Aug 21 00:24:39 +0000 2009","created_since":"7 months","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":38,"upcoming_plans_count":38,"has_facebook":1,"syndicate_facebook":1,"facebook_username":"JasonKincaid","has_twitter":0,"syndicate_twitter":0,"twitter_username":null,"subscriber":0,"subscription":0},{"id":226,"name":"Dave McClure","screen_name":"davemcclure","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg","location":"Palo Alto, CA","description":"Geeks. Entrepreneurs. Startups. The Internet Revolution, Act II.","url":"http:\/\/500hats.typepad.com","protected":false,"followers_count":1420,"friends_count":561,"created_at":"Sun Nov 08 01:57:10 +0000 2009","created_since":"4 months, 1 week","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":127,"upcoming_plans_count":127,"has_facebook":1,"syndicate_facebook":1,"facebook_username":"davemcclure","has_twitter":1,"syndicate_twitter":1,"twitter_username":"davemcclure","subscriber":0,"subscription":1},{"id":564,"name":"Frank Gruber","screen_name":"frank","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/564_pic_square_1259637183.png","location":"Washington, DC","description":"Co-founder of TECH cocktail, Shiny Heart Ventures & Thankfulfor.com among others - http:\/\/bit.ly\/frankgruber5","url":"http:\/\/www.techcocktail.com","protected":false,"followers_count":315,"friends_count":93,"created_at":"Sat Nov 28 22:30:08 +0000 2009","created_since":"3 months, 3 weeks","utc_offset":-14400,"time_zone":"America\/New_York","statuses_count":50,"upcoming_plans_count":50,"has_facebook":1,"syndicate_facebook":1,"facebook_username":"frank.gruber","has_twitter":1,"syndicate_twitter":1,"twitter_username":"FrankGruber","subscriber":0,"subscription":0},{"id":1068,"name":"Larry Chiang","screen_name":"larrychiang","profile_image_url":"http:\/\/a1.twimg.com\/profile_images\/437940786\/cropped-head-shot_normal.jpg","location":"Palo Alto, CA","description":"CEO of Duck9 and I founded the BusinessWeek channel: What They Don't Teach in B-School","url":"http:\/\/bit.ly\/larrychiang","protected":false,"followers_count":299,"friends_count":15,"created_at":"Tue Dec 01 06:05:20 +0000 2009","created_since":"3 months, 2 weeks","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":44,"upcoming_plans_count":44,"has_facebook":1,"syndicate_facebook":1,"facebook_username":"larry.chiang","has_twitter":1,"syndicate_twitter":0,"twitter_username":"LarryChiang","subscriber":0,"subscription":0},{"id":1078,"name":"Tom Conrad","screen_name":"tconrad","profile_image_url":"http:\/\/profile.ak.fbcdn.net\/v225\/1726\/73\/q500013004_6396.jpg","location":"San Francisco, CA","description":"CTO @ Pandora","url":"http:\/\/tomconrad.net","protected":false,"followers_count":228,"friends_count":112,"created_at":"Tue Dec 01 06:09:17 +0000 2009","created_since":"3 months, 2 weeks","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":87,"upcoming_plans_count":87,"has_facebook":1,"syndicate_facebook":1,"facebook_username":"tconrad","has_twitter":1,"syndicate_twitter":0,"twitter_username":"tconrad","subscriber":0,"subscription":0},{"id":2281,"name":"Brian Solis","screen_name":"briansolis","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/2281_pic_square_1259692179.jpg","location":"San Francisco, CA","description":"Brian Solis is a new media author and thinker who tries to plan, but needs tools to do so effectively - http:\/\/en.wikipedia.org\/wiki\/Brian_Solis","url":"http:\/\/www.briansolis.com","protected":false,"followers_count":976,"friends_count":29,"created_at":"Tue Dec 01 18:29:39 +0000 2009","created_since":"3 months, 2 weeks","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":30,"upcoming_plans_count":30,"has_facebook":1,"syndicate_facebook":0,"facebook_username":"BrianSolis","has_twitter":1,"syndicate_twitter":0,"twitter_username":"briansolis","subscriber":0,"subscription":0},{"id":3177,"name":"Jacob Mullins","screen_name":"jacobmullins","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/610312387\/Underground_Twitter_picv3_normal.png","location":"San Francisco, CA","description":"Entrepreneur, @BizSpark and @WebsiteSpark US marketing guy, MSFT startup guy, bon vivant","url":"http:\/\/jacobmullins.com","protected":false,"followers_count":107,"friends_count":20,"created_at":"Thu Dec 03 20:55:51 +0000 2009","created_since":"3 months, 2 weeks","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":67,"upcoming_plans_count":67,"has_facebook":0,"syndicate_facebook":0,"facebook_username":null,"has_twitter":1,"syndicate_twitter":1,"twitter_username":"jacob","subscriber":0,"subscription":0},{"id":4226,"name":"Robert Scoble","screen_name":"Scobleizer","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/4226_pic_square_1260835558.jpg","location":"HALF MOON BAY, CA","description":"A geek who grew up in Silicon Valley.","url":"http:\/\/scobleizer.com","protected":false,"followers_count":1408,"friends_count":1290,"created_at":"Tue Dec 15 00:05:58 +0000 2009","created_since":"3 months","utc_offset":-25200,"time_zone":"America\/Los_Angeles","statuses_count":177,"upcoming_plans_count":177,"has_facebook":1,"syndicate_facebook":0,"facebook_username":"RobertScoble","has_twitter":0,"syndicate_twitter":0,"twitter_username":null,"subscriber":0,"subscription":0},{"id":7627,"name":"Amber Rae Lambke","screen_name":"heyamberrae","profile_image_url":"http:\/\/a3.twimg.com\/profile_images\/601070005\/amberrae-sq_normal.jpg","location":"nyc and the world","description":"i challenge the status quo.","url":"http:\/\/heyamberrae.com","protected":false,"followers_count":141,"friends_count":53,"created_at":"Mon Jan 18 18:20:31 +0000 2010","created_since":"2 months","utc_offset":-14400,"time_zone":"America\/New_York","statuses_count":35,"upcoming_plans_count":35,"has_facebook":1,"syndicate_facebook":0,"facebook_username":"amberrae","has_twitter":1,"syndicate_twitter":0,"twitter_username":"heyamberrae","subscriber":0,"subscription":0},{"id":11400,"name":"All SXSW Events","screen_name":"sxsw_all","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/11400_pic_square_1267425850.jpg","location":"Austin, TX","description":"An unofficial list of events and the people attending them during SXSW 2010 in Austin, TX","url":"","protected":false,"followers_count":83,"friends_count":5,"created_at":"Sun Feb 14 07:00:11 +0000 2010","created_since":"1 month","utc_offset":-18000,"time_zone":"America\/Chicago","statuses_count":4799,"upcoming_plans_count":4799,"has_facebook":0,"syndicate_facebook":0,"facebook_username":null,"has_twitter":0,"syndicate_twitter":0,"twitter_username":null,"subscriber":0,"subscription":0},{"id":11502,"name":"Interactive Events","screen_name":"sxswinteractive","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/11502_pic_square_1267419792.jpg","location":"Austin, TX","description":"An unofficial list of interactive events and the people attending them during SXSW 2010 in Austin, TX","url":"http:\/\/sxsw.com\/interactive","protected":false,"followers_count":361,"friends_count":5,"created_at":"Mon Feb 15 04:13:25 +0000 2010","created_since":"1 month","utc_offset":-18000,"time_zone":"America\/Chicago","statuses_count":848,"upcoming_plans_count":848,"has_facebook":0,"syndicate_facebook":0,"facebook_username":null,"has_twitter":0,"syndicate_twitter":0,"twitter_username":null,"subscriber":0,"subscription":1},{"id":11569,"name":"Music Events","screen_name":"sxswmusic","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/11569_pic_square_1267420614.jpg","location":"Austin, TX","description":"An unofficial list of music events and the people attending them during SXSW 2010 in Austin, TX","url":"http:\/\/sxsw.com\/music","protected":false,"followers_count":62,"friends_count":5,"created_at":"Mon Feb 15 18:04:35 +0000 2010","created_since":"1 month","utc_offset":-18000,"time_zone":"America\/Chicago","statuses_count":2925,"upcoming_plans_count":2925,"has_facebook":0,"syndicate_facebook":0,"facebook_username":null,"has_twitter":0,"syndicate_twitter":0,"twitter_username":null,"subscriber":0,"subscription":0},{"id":11570,"name":"Film Events","screen_name":"sxswfilm","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/11570_pic_square_1267420316.jpg","location":"Austin, TX","description":"An unofficial list of film events and the people attending them during SXSW 2010 in Austin, TX","url":"http:\/\/sxsw.com\/film","protected":false,"followers_count":38,"friends_count":5,"created_at":"Mon Feb 15 18:10:36 +0000 2010","created_since":"1 month","utc_offset":-18000,"time_zone":"America\/Chicago","statuses_count":898,"upcoming_plans_count":898,"has_facebook":0,"syndicate_facebook":0,"facebook_username":null,"has_twitter":0,"syndicate_twitter":0,"twitter_username":null,"subscriber":0,"subscription":0},{"id":12040,"name":"Party List","screen_name":"sxswparty","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/12040_pic_square_1267421999.jpg","location":"Austin, TX","description":"The complete list of Official and Unofficial Parties during SXSW 2010 in Austin, TX","url":"","protected":false,"followers_count":410,"friends_count":5,"created_at":"Thu Feb 18 19:32:58 +0000 2010","created_since":"1 month","utc_offset":-18000,"time_zone":"America\/Chicago","statuses_count":207,"upcoming_plans_count":207,"has_facebook":0,"syndicate_facebook":0,"facebook_username":null,"has_twitter":0,"syndicate_twitter":0,"twitter_username":null,"subscriber":0,"subscription":0},{"id":12109,"name":"Badgeless Events","screen_name":"sxswbadgeless","profile_image_url":"http:\/\/plancast.com\/uploads\/pics\/12109_pic_square_1267427489.jpg","location":"Austin, TX","description":"An unofficial list of events that do not require badges during SXSW 2010 in Austin, TX","url":"http:\/\/www.plancast.com\/sxswbadgeless","protected":false,"followers_count":117,"friends_count":5,"created_at":"Fri Feb 19 04:02:05 +0000 2010","created_since":"1 month","utc_offset":-18000,"time_zone":"America\/Chicago","statuses_count":102,"upcoming_plans_count":102,"has_facebook":0,"syndicate_facebook":0,"facebook_username":null,"has_twitter":1,"syndicate_twitter":1,"twitter_username":"SXSWBadgeless","subscriber":0,"subscription":0}]
|
@@ -0,0 +1,529 @@
|
|
1
|
+
{
|
2
|
+
"has_next_page": 1,
|
3
|
+
"next_page_offset": 27,
|
4
|
+
"plans": [{
|
5
|
+
"attendance_id": "mkg",
|
6
|
+
"text": "#plan Y Combinator - Demo Day (Mountain View, CA) Wed, Mar 24, 2010, 12pm-3:30pm http:\/\/plancast.com\/a\/mkg",
|
7
|
+
"user": {
|
8
|
+
"id": 226,
|
9
|
+
"name": "Dave McClure",
|
10
|
+
"screen_name": "davemcclure",
|
11
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
12
|
+
},
|
13
|
+
"created_at": "Sun Feb 14 16:09:54 +0000 2010",
|
14
|
+
"created_since": "1 month",
|
15
|
+
"plan_id": "c9f",
|
16
|
+
"what": "Y Combinator - Demo Day",
|
17
|
+
"when": "Wednesday, March 24, 2010, 12pm-3:30pm",
|
18
|
+
"where": "Mountain View, CA",
|
19
|
+
"start": "1269432000",
|
20
|
+
"stop": "1269444600",
|
21
|
+
"attendee_count": 45,
|
22
|
+
"is_attending": 0,
|
23
|
+
"group": "Wednesday"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"attendance_id": "49e",
|
27
|
+
"text": "#plan Freemium Summit (1675 Owens) Fri, Mar 26, 2010 http:\/\/plancast.com\/a\/49e",
|
28
|
+
"user": {
|
29
|
+
"id": 226,
|
30
|
+
"name": "Dave McClure",
|
31
|
+
"screen_name": "davemcclure",
|
32
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
33
|
+
},
|
34
|
+
"created_at": "Sun Dec 20 14:32:56 +0000 2009",
|
35
|
+
"created_since": "3 months",
|
36
|
+
"plan_id": "2n7",
|
37
|
+
"what": "Freemium Summit",
|
38
|
+
"when": "Friday, March 26, 2010",
|
39
|
+
"where": "1675 Owens",
|
40
|
+
"start": "1269561600",
|
41
|
+
"stop": "1269648000",
|
42
|
+
"attendee_count": 74,
|
43
|
+
"is_attending": 0,
|
44
|
+
"group": "Friday"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"attendance_id": "4pj",
|
48
|
+
"text": "#plan O'Reilly Where 2.0 Conference (#where20)... Mar 30- Apr 1, 2010 http:\/\/plancast.com\/a\/4pj",
|
49
|
+
"user": {
|
50
|
+
"id": 226,
|
51
|
+
"name": "Dave McClure",
|
52
|
+
"screen_name": "davemcclure",
|
53
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
54
|
+
},
|
55
|
+
"created_at": "Sun Dec 27 14:00:21 +0000 2009",
|
56
|
+
"created_since": "2 months, 3 weeks",
|
57
|
+
"plan_id": "2ux",
|
58
|
+
"what": "O'Reilly Where 2.0 Conference (#where20)",
|
59
|
+
"when": "March 30- April 1, 2010",
|
60
|
+
"where": "San Jose Marriott, 301 S. Market Street, San Jose, CA 95113",
|
61
|
+
"start": "1269907200",
|
62
|
+
"stop": "1270166400",
|
63
|
+
"attendee_count": 47,
|
64
|
+
"is_attending": 0,
|
65
|
+
"group": "Next Week"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"attendance_id": "53o",
|
69
|
+
"text": "#plan TEDxBerkeley cc @jessicamah #TEDxB (University of California, Berkeley) Sat, Apr 3, 2010 http:\/\/plancast.com\/a\/53o",
|
70
|
+
"user": {
|
71
|
+
"id": 226,
|
72
|
+
"name": "Dave McClure",
|
73
|
+
"screen_name": "davemcclure",
|
74
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
75
|
+
},
|
76
|
+
"created_at": "Sat Jan 02 04:31:25 +0000 2009",
|
77
|
+
"created_since": "2 months, 2 weeks",
|
78
|
+
"plan_id": "31y",
|
79
|
+
"what": "TEDxBerkeley cc @jessicamah #TEDxB",
|
80
|
+
"when": "Saturday, April 3, 2010",
|
81
|
+
"where": "University of California, Berkeley",
|
82
|
+
"start": "1270252800",
|
83
|
+
"stop": "1270339200",
|
84
|
+
"attendee_count": 45,
|
85
|
+
"is_attending": 0,
|
86
|
+
"group": "Next Week"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"attendance_id": "l7r",
|
90
|
+
"text": "#plan National Procreation Day (Everywhere) Wed, Apr 14, 2010, 6:35am-11:35pm http:\/\/plancast.com\/a\/l7r",
|
91
|
+
"user": {
|
92
|
+
"id": 226,
|
93
|
+
"name": "Dave McClure",
|
94
|
+
"screen_name": "davemcclure",
|
95
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
96
|
+
},
|
97
|
+
"created_at": "Fri Feb 12 17:19:04 +0000 2010",
|
98
|
+
"created_since": "1 month",
|
99
|
+
"plan_id": "c6k",
|
100
|
+
"what": "National Procreation Day",
|
101
|
+
"when": "Wednesday, April 14, 2010, 6:35am-11:35pm",
|
102
|
+
"where": "Everywhere",
|
103
|
+
"start": "1271226900",
|
104
|
+
"stop": "1271288100",
|
105
|
+
"attendee_count": 3,
|
106
|
+
"is_attending": 0,
|
107
|
+
"group": "Next Month"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"attendance_id": "ge2",
|
111
|
+
"text": "#plan Under the Radar (Microsoft, Conference Center, Building 1) Fri, Apr 16, 2010, 8am-6:00pm http:\/\/plancast.com\/a\/ge2",
|
112
|
+
"user": {
|
113
|
+
"id": 226,
|
114
|
+
"name": "Dave McClure",
|
115
|
+
"screen_name": "davemcclure",
|
116
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
117
|
+
},
|
118
|
+
"created_at": "Sat Jan 30 03:35:28 +0000 2010",
|
119
|
+
"created_since": "1 month, 2 weeks",
|
120
|
+
"plan_id": "4t2",
|
121
|
+
"what": "Under the Radar",
|
122
|
+
"when": "Friday, April 16, 2010, 8am-6:00pm",
|
123
|
+
"where": "Microsoft, Conference Center, Building 1",
|
124
|
+
"start": "1271404800",
|
125
|
+
"stop": "1271440800",
|
126
|
+
"attendee_count": 54,
|
127
|
+
"is_attending": 0,
|
128
|
+
"group": "Next Month"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"attendance_id": "34w",
|
132
|
+
"text": "#plan AdTech SF 2010 (#AdTech) (Moscone Center North, SF, CA) Apr 19-21, 2010 http:\/\/plancast.com\/a\/34w",
|
133
|
+
"user": {
|
134
|
+
"id": 226,
|
135
|
+
"name": "Dave McClure",
|
136
|
+
"screen_name": "davemcclure",
|
137
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
138
|
+
},
|
139
|
+
"created_at": "Mon Dec 07 07:20:59 +0000 2009",
|
140
|
+
"created_since": "3 months, 2 weeks",
|
141
|
+
"plan_id": "201",
|
142
|
+
"what": "AdTech SF 2010 (#AdTech)",
|
143
|
+
"when": "April 19-21, 2010",
|
144
|
+
"where": "Moscone Center North, SF, CA",
|
145
|
+
"start": "1271635200",
|
146
|
+
"stop": "1271894400",
|
147
|
+
"attendee_count": 72,
|
148
|
+
"is_attending": 0,
|
149
|
+
"group": "Next Month"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"attendance_id": "l7s",
|
153
|
+
"text": "#plan Inside Social Apps 2010 (San Francisco, CA) Tue, Apr 20, 2010, 9am-6:00pm http:\/\/plancast.com\/a\/l7s",
|
154
|
+
"user": {
|
155
|
+
"id": 226,
|
156
|
+
"name": "Dave McClure",
|
157
|
+
"screen_name": "davemcclure",
|
158
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
159
|
+
},
|
160
|
+
"created_at": "Fri Feb 12 17:19:08 +0000 2010",
|
161
|
+
"created_since": "1 month",
|
162
|
+
"plan_id": "9e5",
|
163
|
+
"what": "Inside Social Apps 2010",
|
164
|
+
"when": "Tuesday, April 20, 2010, 9am-6:00pm",
|
165
|
+
"where": "San Francisco, CA",
|
166
|
+
"start": "1271754000",
|
167
|
+
"stop": "1271786400",
|
168
|
+
"attendee_count": 112,
|
169
|
+
"is_attending": 0,
|
170
|
+
"group": "Next Month"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"attendance_id": "4dh",
|
174
|
+
"text": "#plan Facebook's f8 2010 (San Francisco, CA) Apr 21-22, 2010 http:\/\/plancast.com\/a\/4dh",
|
175
|
+
"user": {
|
176
|
+
"id": 226,
|
177
|
+
"name": "Dave McClure",
|
178
|
+
"screen_name": "davemcclure",
|
179
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
180
|
+
},
|
181
|
+
"created_at": "Tue Dec 22 03:56:23 +0000 2009",
|
182
|
+
"created_since": "2 months, 4 weeks",
|
183
|
+
"plan_id": "2mc",
|
184
|
+
"what": "Facebook's f8 2010",
|
185
|
+
"when": "April 21-22, 2010",
|
186
|
+
"where": "San Francisco, CA",
|
187
|
+
"start": "1271808000",
|
188
|
+
"stop": "1271980800",
|
189
|
+
"attendee_count": 157,
|
190
|
+
"is_attending": 0,
|
191
|
+
"group": "Next Month"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"attendance_id": "1ynj",
|
195
|
+
"text": "#plan Startup Lessons Learned - San Francisco... Fri, Apr 23, 2010, 9am-6:00pm http:\/\/plancast.com\/a\/1ynj",
|
196
|
+
"user": {
|
197
|
+
"id": 226,
|
198
|
+
"name": "Dave McClure",
|
199
|
+
"screen_name": "davemcclure",
|
200
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
201
|
+
},
|
202
|
+
"created_at": "Sun Mar 14 21:45:12 +0000 2010",
|
203
|
+
"created_since": "6 days, 17 hours",
|
204
|
+
"plan_id": "o2c",
|
205
|
+
"what": "Startup Lessons Learned - San Francisco",
|
206
|
+
"when": "Friday, April 23, 2010, 9am-6:00pm",
|
207
|
+
"where": "Westin San Francisco (Market Street)",
|
208
|
+
"start": "1272013200",
|
209
|
+
"stop": "1272045600",
|
210
|
+
"attendee_count": 13,
|
211
|
+
"is_attending": 0,
|
212
|
+
"group": "Next Month"
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"attendance_id": "7v8",
|
216
|
+
"text": "#plan The Future of Money and Technology (Hotel Kabuki) Mon, Apr 26, 2010 http:\/\/plancast.com\/a\/7v8",
|
217
|
+
"user": {
|
218
|
+
"id": 226,
|
219
|
+
"name": "Dave McClure",
|
220
|
+
"screen_name": "davemcclure",
|
221
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
222
|
+
},
|
223
|
+
"created_at": "Thu Jan 14 22:56:41 +0000 2010",
|
224
|
+
"created_since": "2 months",
|
225
|
+
"plan_id": "4im",
|
226
|
+
"what": "The Future of Money and Technology",
|
227
|
+
"when": "Monday, April 26, 2010",
|
228
|
+
"where": "Hotel Kabuki",
|
229
|
+
"start": "1272240000",
|
230
|
+
"stop": "1272326400",
|
231
|
+
"attendee_count": 12,
|
232
|
+
"is_attending": 0,
|
233
|
+
"group": "Next Month"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"attendance_id": "l7t",
|
237
|
+
"text": "#plan The Future of Money and Technology Summit (Hotel Kabuki) Mon, Apr 26, 2010, 9am-6:00pm http:\/\/plancast.com\/a\/l7t",
|
238
|
+
"user": {
|
239
|
+
"id": 226,
|
240
|
+
"name": "Dave McClure",
|
241
|
+
"screen_name": "davemcclure",
|
242
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
243
|
+
},
|
244
|
+
"created_at": "Fri Feb 12 17:19:11 +0000 2010",
|
245
|
+
"created_since": "1 month",
|
246
|
+
"plan_id": "9y7",
|
247
|
+
"what": "The Future of Money and Technology Summit",
|
248
|
+
"when": "Monday, April 26, 2010, 9am-6:00pm",
|
249
|
+
"where": "Hotel Kabuki",
|
250
|
+
"start": "1272272400",
|
251
|
+
"stop": "1272304800",
|
252
|
+
"attendee_count": 81,
|
253
|
+
"is_attending": 0,
|
254
|
+
"group": "Next Month"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"attendance_id": "34v",
|
258
|
+
"text": "#plan Web 2.0 Expo SF 2010 (#w2e @w2e) (Moscone West, San Francisco, CA) May 3-6, 2010 http:\/\/plancast.com\/a\/34v",
|
259
|
+
"user": {
|
260
|
+
"id": 226,
|
261
|
+
"name": "Dave McClure",
|
262
|
+
"screen_name": "davemcclure",
|
263
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
264
|
+
},
|
265
|
+
"created_at": "Mon Dec 07 07:17:54 +0000 2009",
|
266
|
+
"created_since": "3 months, 2 weeks",
|
267
|
+
"plan_id": "200",
|
268
|
+
"what": "Web 2.0 Expo SF 2010 (#w2e @w2e)",
|
269
|
+
"when": "May 3-6, 2010",
|
270
|
+
"where": "Moscone West, San Francisco, CA",
|
271
|
+
"start": "1272844800",
|
272
|
+
"stop": "1273190400",
|
273
|
+
"attendee_count": 104,
|
274
|
+
"is_attending": 0,
|
275
|
+
"group": "May 2010"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"attendance_id": "4aq",
|
279
|
+
"text": "#plan Social Gaming Summit 2010 (San Francisco, CA) Thu, May 6, 2010 http:\/\/plancast.com\/a\/4aq",
|
280
|
+
"user": {
|
281
|
+
"id": 226,
|
282
|
+
"name": "Dave McClure",
|
283
|
+
"screen_name": "davemcclure",
|
284
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
285
|
+
},
|
286
|
+
"created_at": "Mon Dec 21 07:05:48 +0000 2009",
|
287
|
+
"created_since": "3 months",
|
288
|
+
"plan_id": "2nk",
|
289
|
+
"what": "Social Gaming Summit 2010",
|
290
|
+
"when": "Thursday, May 6, 2010",
|
291
|
+
"where": "San Francisco, CA",
|
292
|
+
"start": "1273104000",
|
293
|
+
"stop": "1273190400",
|
294
|
+
"attendee_count": 28,
|
295
|
+
"is_attending": 0,
|
296
|
+
"group": "May 2010"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"attendance_id": "fce",
|
300
|
+
"text": "#plan Startup Camp 6 Montreal (Montreal, Canada) Thu, May 6, 2010 http:\/\/plancast.com\/a\/fce",
|
301
|
+
"user": {
|
302
|
+
"id": 226,
|
303
|
+
"name": "Dave McClure",
|
304
|
+
"screen_name": "davemcclure",
|
305
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
306
|
+
},
|
307
|
+
"created_at": "Wed Jan 27 17:15:06 +0000 2010",
|
308
|
+
"created_since": "1 month, 3 weeks",
|
309
|
+
"plan_id": "96a",
|
310
|
+
"what": "Startup Camp 6 Montreal",
|
311
|
+
"when": "Thursday, May 6, 2010",
|
312
|
+
"where": "Montreal, Canada",
|
313
|
+
"start": "1273104000",
|
314
|
+
"stop": "1273190400",
|
315
|
+
"attendee_count": 17,
|
316
|
+
"is_attending": 0,
|
317
|
+
"group": "May 2010"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"attendance_id": "88z",
|
321
|
+
"text": "#plan Social Gaming Summit 2010 (San Francisco, CA - Exact location TBA in about a week) May 6-7, 2010 http:\/\/plancast.com\/a\/88z",
|
322
|
+
"user": {
|
323
|
+
"id": 226,
|
324
|
+
"name": "Dave McClure",
|
325
|
+
"screen_name": "davemcclure",
|
326
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
327
|
+
},
|
328
|
+
"created_at": "Sat Jan 16 10:43:51 +0000 2010",
|
329
|
+
"created_since": "2 months",
|
330
|
+
"plan_id": "3yw",
|
331
|
+
"what": "Social Gaming Summit 2010",
|
332
|
+
"when": "May 6-7, 2010",
|
333
|
+
"where": "San Francisco, CA - Exact location TBA in about a week",
|
334
|
+
"start": "1273147200",
|
335
|
+
"stop": "1273248000",
|
336
|
+
"attendee_count": 79,
|
337
|
+
"is_attending": 0,
|
338
|
+
"group": "May 2010"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"attendance_id": "f3w",
|
342
|
+
"text": "#plan The SMASH Summit SF 2010 (info: http:\/\/SMASHsummit.com, register:... Wed, May 12, 2010 http:\/\/plancast.com\/a\/f3w",
|
343
|
+
"user": {
|
344
|
+
"id": 226,
|
345
|
+
"name": "Dave McClure",
|
346
|
+
"screen_name": "davemcclure",
|
347
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
348
|
+
},
|
349
|
+
"created_at": "Tue Jan 26 22:41:16 +0000 2010",
|
350
|
+
"created_since": "1 month, 3 weeks",
|
351
|
+
"plan_id": "926",
|
352
|
+
"what": "The SMASH Summit SF 2010 (info: http:\/\/SMASHsummit.com, register: http:\/\/bit.ly\/GetSMASHed #smash #mktg #socialmedia)",
|
353
|
+
"when": "Wednesday, May 12, 2010",
|
354
|
+
"where": "Hotel Intercontinental, 888 Howard St, San Francisco, CA 94103",
|
355
|
+
"start": "1273622400",
|
356
|
+
"stop": "1273708800",
|
357
|
+
"attendee_count": 34,
|
358
|
+
"is_attending": 0,
|
359
|
+
"group": "May 2010"
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"attendance_id": "349",
|
363
|
+
"text": "#plan Bay to Breakers (Market Street and Main Street, San Francisco) Sun, May 16, 2010 http:\/\/plancast.com\/a\/349",
|
364
|
+
"user": {
|
365
|
+
"id": 226,
|
366
|
+
"name": "Dave McClure",
|
367
|
+
"screen_name": "davemcclure",
|
368
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
369
|
+
},
|
370
|
+
"created_at": "Mon Dec 07 06:12:48 +0000 2009",
|
371
|
+
"created_since": "3 months, 2 weeks",
|
372
|
+
"plan_id": "1wn",
|
373
|
+
"what": "Bay to Breakers",
|
374
|
+
"when": "Sunday, May 16, 2010",
|
375
|
+
"where": "Market Street and Main Street, San Francisco",
|
376
|
+
"start": "1273968000",
|
377
|
+
"stop": "1274054400",
|
378
|
+
"attendee_count": 108,
|
379
|
+
"is_attending": 0,
|
380
|
+
"group": "May 2010"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"attendance_id": "4nh",
|
384
|
+
"text": "#plan Google I\/O 2010 (Moscone Center, San Francisco, CA) May 19-20, 2010 http:\/\/plancast.com\/a\/4nh",
|
385
|
+
"user": {
|
386
|
+
"id": 226,
|
387
|
+
"name": "Dave McClure",
|
388
|
+
"screen_name": "davemcclure",
|
389
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
390
|
+
},
|
391
|
+
"created_at": "Sat Dec 26 02:24:21 +0000 2009",
|
392
|
+
"created_since": "2 months, 3 weeks",
|
393
|
+
"plan_id": "2u7",
|
394
|
+
"what": "Google I\/O 2010",
|
395
|
+
"when": "May 19-20, 2010",
|
396
|
+
"where": "Moscone Center, San Francisco, CA",
|
397
|
+
"start": "1274227200",
|
398
|
+
"stop": "1274400000",
|
399
|
+
"attendee_count": 102,
|
400
|
+
"is_attending": 0,
|
401
|
+
"group": "May 2010"
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"attendance_id": "508",
|
405
|
+
"text": "#plan GeeksOnaPlane Asia 2010 (#goap)... May 21- May 31, 2010 http:\/\/plancast.com\/a\/508",
|
406
|
+
"user": {
|
407
|
+
"id": 226,
|
408
|
+
"name": "Dave McClure",
|
409
|
+
"screen_name": "davemcclure",
|
410
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
411
|
+
},
|
412
|
+
"created_at": "Fri Jan 01 09:15:26 +0000 2009",
|
413
|
+
"created_since": "2 months, 2 weeks",
|
414
|
+
"plan_id": "30c",
|
415
|
+
"what": "GeeksOnaPlane Asia 2010 (#goap)",
|
416
|
+
"when": "May 21- May 31, 2010",
|
417
|
+
"where": "Shanghai, Beijing, Seoul, Tokyo, Singapore (cities TBD)",
|
418
|
+
"start": "1274400000",
|
419
|
+
"stop": "1275350400",
|
420
|
+
"attendee_count": 111,
|
421
|
+
"is_attending": 0,
|
422
|
+
"group": "May 2010"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"attendance_id": "10o",
|
426
|
+
"text": "#plan [Re]Think : Shanghai and 2010 World Expo (Shanghai, China) May 23-25, 2010 http:\/\/plancast.com\/a\/10o",
|
427
|
+
"user": {
|
428
|
+
"id": 226,
|
429
|
+
"name": "Dave McClure",
|
430
|
+
"screen_name": "davemcclure",
|
431
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
432
|
+
},
|
433
|
+
"created_at": "Tue Dec 01 06:38:36 +0000 2009",
|
434
|
+
"created_since": "3 months, 2 weeks",
|
435
|
+
"plan_id": "6v",
|
436
|
+
"what": "[Re]Think : Shanghai and 2010 World Expo",
|
437
|
+
"when": "May 23-25, 2010",
|
438
|
+
"where": "Shanghai, China",
|
439
|
+
"start": "1274572800",
|
440
|
+
"stop": "1274832000",
|
441
|
+
"attendee_count": 43,
|
442
|
+
"is_attending": 0,
|
443
|
+
"group": "May 2010"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"attendance_id": "fcg",
|
447
|
+
"text": "#plan GeeksOnaPlane Beijing (#goap) (Beijing, China) May 26-29, 2010 http:\/\/plancast.com\/a\/fcg",
|
448
|
+
"user": {
|
449
|
+
"id": 226,
|
450
|
+
"name": "Dave McClure",
|
451
|
+
"screen_name": "davemcclure",
|
452
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
453
|
+
},
|
454
|
+
"created_at": "Wed Jan 27 17:16:55 +0000 2010",
|
455
|
+
"created_since": "1 month, 3 weeks",
|
456
|
+
"plan_id": "96c",
|
457
|
+
"what": "GeeksOnaPlane Beijing (#goap)",
|
458
|
+
"when": "May 26-29, 2010",
|
459
|
+
"where": "Beijing, China",
|
460
|
+
"start": "1274832000",
|
461
|
+
"stop": "1275177600",
|
462
|
+
"attendee_count": 10,
|
463
|
+
"is_attending": 0,
|
464
|
+
"group": "May 2010"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"attendance_id": "fch",
|
468
|
+
"text": "#plan GeeksOnaPlane Singapore (http:\/\/echelon2010.com #goap) (Singapore) Jun 1-2, 2010 http:\/\/plancast.com\/a\/fch",
|
469
|
+
"user": {
|
470
|
+
"id": 226,
|
471
|
+
"name": "Dave McClure",
|
472
|
+
"screen_name": "davemcclure",
|
473
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
474
|
+
},
|
475
|
+
"created_at": "Wed Jan 27 17:17:38 +0000 2010",
|
476
|
+
"created_since": "1 month, 3 weeks",
|
477
|
+
"plan_id": "96d",
|
478
|
+
"what": "GeeksOnaPlane Singapore (http:\/\/echelon2010.com #goap)",
|
479
|
+
"when": "June 1-2, 2010",
|
480
|
+
"where": "Singapore",
|
481
|
+
"start": "1275350400",
|
482
|
+
"stop": "1275523200",
|
483
|
+
"attendee_count": 7,
|
484
|
+
"is_attending": 0,
|
485
|
+
"group": "June 2010"
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"attendance_id": "wea",
|
489
|
+
"text": "#plan Social Developer Summit (The Palace Hotel) Tue, Jun 29, 2010, 8:35am-6:00pm http:\/\/plancast.com\/a\/wea",
|
490
|
+
"user": {
|
491
|
+
"id": 226,
|
492
|
+
"name": "Dave McClure",
|
493
|
+
"screen_name": "davemcclure",
|
494
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
495
|
+
},
|
496
|
+
"created_at": "Sun Feb 21 20:01:27 +0000 2010",
|
497
|
+
"created_since": "3 weeks, 6 days",
|
498
|
+
"plan_id": "eba",
|
499
|
+
"what": "Social Developer Summit",
|
500
|
+
"when": "Tuesday, June 29, 2010, 8:35am-6:00pm",
|
501
|
+
"where": "The Palace Hotel",
|
502
|
+
"start": "1277800500",
|
503
|
+
"stop": "1277834400",
|
504
|
+
"attendee_count": 42,
|
505
|
+
"is_attending": 0,
|
506
|
+
"group": "June 2010"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"attendance_id": "53m",
|
510
|
+
"text": "#plan BizTechDay cc @edithyeung #BizTechDay (TBD san francisco) Sat, Oct 23, 2010 http:\/\/plancast.com\/a\/53m",
|
511
|
+
"user": {
|
512
|
+
"id": 226,
|
513
|
+
"name": "Dave McClure",
|
514
|
+
"screen_name": "davemcclure",
|
515
|
+
"profile_image_url": "http:\/\/plancast.com\/uploads\/pics\/226_pic_square_1259914793.jpg"
|
516
|
+
},
|
517
|
+
"created_at": "Sat Jan 02 04:28:19 +0000 2009",
|
518
|
+
"created_since": "2 months, 2 weeks",
|
519
|
+
"plan_id": "31z",
|
520
|
+
"what": "BizTechDay cc @edithyeung #BizTechDay ",
|
521
|
+
"when": "Saturday, October 23, 2010",
|
522
|
+
"where": "TBD san francisco",
|
523
|
+
"start": "1287792000",
|
524
|
+
"stop": "1287878400",
|
525
|
+
"attendee_count": 16,
|
526
|
+
"is_attending": 0,
|
527
|
+
"group": "October 2010"
|
528
|
+
}]
|
529
|
+
}
|