micahwedemeyer-ri_cal 0.8.9
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +2 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +21 -0
- data/History.txt +402 -0
- data/Manifest.txt +161 -0
- data/README.txt +410 -0
- data/Rakefile +66 -0
- data/VERSION +1 -0
- data/bin/ri_cal +8 -0
- data/component_attributes/alarm.yml +10 -0
- data/component_attributes/calendar.yml +4 -0
- data/component_attributes/component_property_defs.yml +180 -0
- data/component_attributes/event.yml +45 -0
- data/component_attributes/freebusy.yml +16 -0
- data/component_attributes/journal.yml +35 -0
- data/component_attributes/timezone.yml +3 -0
- data/component_attributes/timezone_period.yml +11 -0
- data/component_attributes/todo.yml +46 -0
- data/copyrights.txt +1 -0
- data/docs/draft-ietf-calsify-2446bis-08.txt +7280 -0
- data/docs/draft-ietf-calsify-rfc2445bis-09.txt +10416 -0
- data/docs/incrementers.txt +7 -0
- data/docs/rfc2445.pdf +0 -0
- data/lib/ri_cal/component/alarm.rb +19 -0
- data/lib/ri_cal/component/calendar.rb +257 -0
- data/lib/ri_cal/component/event.rb +58 -0
- data/lib/ri_cal/component/freebusy.rb +16 -0
- data/lib/ri_cal/component/journal.rb +27 -0
- data/lib/ri_cal/component/non_standard.rb +33 -0
- data/lib/ri_cal/component/t_z_info_timezone.rb +153 -0
- data/lib/ri_cal/component/timezone/daylight_period.rb +25 -0
- data/lib/ri_cal/component/timezone/standard_period.rb +23 -0
- data/lib/ri_cal/component/timezone/timezone_period.rb +76 -0
- data/lib/ri_cal/component/timezone.rb +197 -0
- data/lib/ri_cal/component/todo.rb +42 -0
- data/lib/ri_cal/component.rb +256 -0
- data/lib/ri_cal/core_extensions/array/conversions.rb +15 -0
- data/lib/ri_cal/core_extensions/array.rb +7 -0
- data/lib/ri_cal/core_extensions/date/conversions.rb +56 -0
- data/lib/ri_cal/core_extensions/date.rb +13 -0
- data/lib/ri_cal/core_extensions/date_time/conversions.rb +50 -0
- data/lib/ri_cal/core_extensions/date_time.rb +15 -0
- data/lib/ri_cal/core_extensions/object/conversions.rb +20 -0
- data/lib/ri_cal/core_extensions/object.rb +8 -0
- data/lib/ri_cal/core_extensions/string/conversions.rb +57 -0
- data/lib/ri_cal/core_extensions/string.rb +8 -0
- data/lib/ri_cal/core_extensions/time/calculations.rb +153 -0
- data/lib/ri_cal/core_extensions/time/conversions.rb +42 -0
- data/lib/ri_cal/core_extensions/time/tzid_access.rb +50 -0
- data/lib/ri_cal/core_extensions/time/week_day_predicates.rb +55 -0
- data/lib/ri_cal/core_extensions/time.rb +14 -0
- data/lib/ri_cal/core_extensions.rb +11 -0
- data/lib/ri_cal/fast_date_time.rb +234 -0
- data/lib/ri_cal/floating_timezone.rb +32 -0
- data/lib/ri_cal/invalid_property_value.rb +8 -0
- data/lib/ri_cal/invalid_timezone_identifier.rb +20 -0
- data/lib/ri_cal/occurrence_enumerator.rb +265 -0
- data/lib/ri_cal/occurrence_period.rb +17 -0
- data/lib/ri_cal/parser.rb +145 -0
- data/lib/ri_cal/properties/alarm.rb +390 -0
- data/lib/ri_cal/properties/calendar.rb +164 -0
- data/lib/ri_cal/properties/event.rb +1523 -0
- data/lib/ri_cal/properties/freebusy.rb +593 -0
- data/lib/ri_cal/properties/journal.rb +1237 -0
- data/lib/ri_cal/properties/timezone.rb +150 -0
- data/lib/ri_cal/properties/timezone_period.rb +416 -0
- data/lib/ri_cal/properties/todo.rb +1559 -0
- data/lib/ri_cal/properties.rb +12 -0
- data/lib/ri_cal/property_value/array.rb +27 -0
- data/lib/ri_cal/property_value/cal_address.rb +11 -0
- data/lib/ri_cal/property_value/date.rb +184 -0
- data/lib/ri_cal/property_value/date_time/additive_methods.rb +44 -0
- data/lib/ri_cal/property_value/date_time/time_machine.rb +159 -0
- data/lib/ri_cal/property_value/date_time/timezone_support.rb +100 -0
- data/lib/ri_cal/property_value/date_time.rb +359 -0
- data/lib/ri_cal/property_value/duration.rb +110 -0
- data/lib/ri_cal/property_value/geo.rb +11 -0
- data/lib/ri_cal/property_value/integer.rb +12 -0
- data/lib/ri_cal/property_value/occurrence_list.rb +144 -0
- data/lib/ri_cal/property_value/period.rb +86 -0
- data/lib/ri_cal/property_value/recurrence_rule/enumeration_support_methods.rb +100 -0
- data/lib/ri_cal/property_value/recurrence_rule/enumerator.rb +79 -0
- data/lib/ri_cal/property_value/recurrence_rule/initialization_methods.rb +148 -0
- data/lib/ri_cal/property_value/recurrence_rule/negative_setpos_enumerator.rb +53 -0
- data/lib/ri_cal/property_value/recurrence_rule/numbered_span.rb +31 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_day_incrementer.rb +86 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_hour_incrementer.rb +31 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_minute_incrementer.rb +32 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_month_incrementer.rb +52 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_monthday_incrementer.rb +31 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_numbered_day_incrementer.rb +38 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_second_incrementer.rb +32 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_weekno_incrementer.rb +69 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/by_yearday_incrementer.rb +31 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/daily_incrementer.rb +28 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/frequency_incrementer.rb +80 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/hourly_incrementer.rb +23 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/list_incrementer.rb +106 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/minutely_incrementer.rb +23 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/monthly_incrementer.rb +33 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/null_sub_cycle_incrementer.rb +43 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/secondly_incrementer.rb +28 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/weekly_incrementer.rb +37 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer/yearly_incrementer.rb +57 -0
- data/lib/ri_cal/property_value/recurrence_rule/occurrence_incrementer.rb +135 -0
- data/lib/ri_cal/property_value/recurrence_rule/recurring_day.rb +131 -0
- data/lib/ri_cal/property_value/recurrence_rule/recurring_month_day.rb +64 -0
- data/lib/ri_cal/property_value/recurrence_rule/recurring_numbered_week.rb +33 -0
- data/lib/ri_cal/property_value/recurrence_rule/recurring_year_day.rb +53 -0
- data/lib/ri_cal/property_value/recurrence_rule/time_manipulation.rb +42 -0
- data/lib/ri_cal/property_value/recurrence_rule/validations.rb +125 -0
- data/lib/ri_cal/property_value/recurrence_rule.rb +154 -0
- data/lib/ri_cal/property_value/text.rb +44 -0
- data/lib/ri_cal/property_value/uri.rb +11 -0
- data/lib/ri_cal/property_value/utc_offset.rb +33 -0
- data/lib/ri_cal/property_value/zulu_date_time.rb +34 -0
- data/lib/ri_cal/property_value.rb +159 -0
- data/lib/ri_cal/required_timezones.rb +55 -0
- data/lib/ri_cal.rb +187 -0
- data/micahwedemeyer-ri_cal.gemspec +227 -0
- data/parked_specs/ri_cal/claudio_a_bug_spec.rb +100 -0
- data/performance/empty_propval/subject.rb +43 -0
- data/performance/paris_eastern/subject.rb +90 -0
- data/performance/penultimate_weekday/subject.rb +15 -0
- data/performance/psm_big_enum/ical.ics +3171 -0
- data/performance/psm_big_enum/subject.rb +16 -0
- data/performance/utah_cycling/subject.rb +55 -0
- data/sample_ical_files/from_ical_dot_app/test1.ics +38 -0
- data/script/benchmark_subject +23 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/profile_subject +29 -0
- data/script/txt2html +71 -0
- data/spec/ri_cal/bugreports_spec.rb +287 -0
- data/spec/ri_cal/component/alarm_spec.rb +12 -0
- data/spec/ri_cal/component/calendar_spec.rb +88 -0
- data/spec/ri_cal/component/event_spec.rb +735 -0
- data/spec/ri_cal/component/freebusy_spec.rb +12 -0
- data/spec/ri_cal/component/journal_spec.rb +37 -0
- data/spec/ri_cal/component/t_z_info_timezone_spec.rb +60 -0
- data/spec/ri_cal/component/timezone_spec.rb +236 -0
- data/spec/ri_cal/component/todo_spec.rb +112 -0
- data/spec/ri_cal/component_spec.rb +224 -0
- data/spec/ri_cal/core_extensions/string/conversions_spec.rb +78 -0
- data/spec/ri_cal/core_extensions/time/calculations_spec.rb +188 -0
- data/spec/ri_cal/core_extensions/time/week_day_predicates_spec.rb +45 -0
- data/spec/ri_cal/fast_date_time_spec.rb +77 -0
- data/spec/ri_cal/inf_loop_spec.rb +78 -0
- data/spec/ri_cal/occurrence_enumerator_spec.rb +611 -0
- data/spec/ri_cal/parser_spec.rb +337 -0
- data/spec/ri_cal/property_value/date_spec.rb +53 -0
- data/spec/ri_cal/property_value/date_time_spec.rb +383 -0
- data/spec/ri_cal/property_value/duration_spec.rb +126 -0
- data/spec/ri_cal/property_value/occurrence_list_spec.rb +72 -0
- data/spec/ri_cal/property_value/period_spec.rb +63 -0
- data/spec/ri_cal/property_value/recurrence_rule/recurring_year_day_spec.rb +21 -0
- data/spec/ri_cal/property_value/recurrence_rule_spec.rb +1814 -0
- data/spec/ri_cal/property_value/text_spec.rb +25 -0
- data/spec/ri_cal/property_value/utc_offset_spec.rb +48 -0
- data/spec/ri_cal/property_value_spec.rb +125 -0
- data/spec/ri_cal/required_timezones_spec.rb +67 -0
- data/spec/ri_cal_spec.rb +53 -0
- data/spec/spec.opts +4 -0
- data/spec/spec_helper.rb +50 -0
- data/tasks/gem_loader/load_active_support.rb +3 -0
- data/tasks/gem_loader/load_tzinfo_gem.rb +2 -0
- data/tasks/ri_cal.rake +412 -0
- data/tasks/spec.rake +102 -0
- data/website/images/rubytrends.png +0 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +159 -0
- metadata +307 -0
@@ -0,0 +1,3171 @@
|
|
1
|
+
BEGIN:VCALENDAR
|
2
|
+
PRODID:-//Google Inc//Google Calendar 70.9054//EN
|
3
|
+
VERSION:2.0
|
4
|
+
CALSCALE:GREGORIAN
|
5
|
+
METHOD:PUBLISH
|
6
|
+
X-WR-CALNAME:Australian Tech Events
|
7
|
+
X-WR-TIMEZONE:Australia/Sydney
|
8
|
+
X-WR-CALDESC:TO ADD EVENTS INVITE THIS ADDRESS\;\npf44opfb12hherild7h2pl11b
|
9
|
+
4@group.calendar.google.com\n\nThis is a public calendar to know what's com
|
10
|
+
ing up all around the country in the technology industry.\n\nIncludes digit
|
11
|
+
al\, internet\, web\, enterprise\, software\, hardware\, and it's various f
|
12
|
+
lavours. \n\nFeel free to add real events. Keep it real.
|
13
|
+
BEGIN:VTIMEZONE
|
14
|
+
TZID:Australia/Perth
|
15
|
+
X-LIC-LOCATION:Australia/Perth
|
16
|
+
BEGIN:STANDARD
|
17
|
+
TZOFFSETFROM:+0800
|
18
|
+
TZOFFSETTO:+0800
|
19
|
+
TZNAME:WST
|
20
|
+
DTSTART:19700101T000000
|
21
|
+
END:STANDARD
|
22
|
+
END:VTIMEZONE
|
23
|
+
BEGIN:VTIMEZONE
|
24
|
+
TZID:Australia/Sydney
|
25
|
+
X-LIC-LOCATION:Australia/Sydney
|
26
|
+
BEGIN:STANDARD
|
27
|
+
TZOFFSETFROM:+1100
|
28
|
+
TZOFFSETTO:+1000
|
29
|
+
TZNAME:EST
|
30
|
+
DTSTART:19700405T030000
|
31
|
+
RRULE:FREQ=YEARLY;BYMONTH=4;BYDAY=1SU
|
32
|
+
END:STANDARD
|
33
|
+
BEGIN:DAYLIGHT
|
34
|
+
TZOFFSETFROM:+1000
|
35
|
+
TZOFFSETTO:+1100
|
36
|
+
TZNAME:EST
|
37
|
+
DTSTART:19701004T020000
|
38
|
+
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=1SU
|
39
|
+
END:DAYLIGHT
|
40
|
+
END:VTIMEZONE
|
41
|
+
BEGIN:VTIMEZONE
|
42
|
+
TZID:Australia/Brisbane
|
43
|
+
X-LIC-LOCATION:Australia/Brisbane
|
44
|
+
BEGIN:STANDARD
|
45
|
+
TZOFFSETFROM:+1000
|
46
|
+
TZOFFSETTO:+1000
|
47
|
+
TZNAME:EST
|
48
|
+
DTSTART:19700101T000000
|
49
|
+
END:STANDARD
|
50
|
+
END:VTIMEZONE
|
51
|
+
BEGIN:VEVENT
|
52
|
+
DTSTART:20090524T023000Z
|
53
|
+
DTEND:20090524T053000Z
|
54
|
+
DTSTAMP:20090531T005744Z
|
55
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
56
|
+
UID:9pbl144kd7gnm6mke770b451e4@google.com
|
57
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
58
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
59
|
+
ndar.google.com
|
60
|
+
CLASS:PUBLIC
|
61
|
+
CREATED:20090514T110431Z
|
62
|
+
DESCRIPTION:
|
63
|
+
LAST-MODIFIED:20090524T103426Z
|
64
|
+
LOCATION:Tilley's\, Canberra
|
65
|
+
SEQUENCE:0
|
66
|
+
STATUS:CONFIRMED
|
67
|
+
SUMMARY:CBR: LindaTUB/CTUB
|
68
|
+
TRANSP:OPAQUE
|
69
|
+
END:VEVENT
|
70
|
+
BEGIN:VEVENT
|
71
|
+
DTSTART:20090528T053000Z
|
72
|
+
DTEND:20090528T093000Z
|
73
|
+
DTSTAMP:20090531T005744Z
|
74
|
+
UID:t5sv1t2igl0hpkmnflpcfv3o30@google.com
|
75
|
+
CLASS:PUBLIC
|
76
|
+
CREATED:20090524T074356Z
|
77
|
+
DESCRIPTION:For details\, link here: http://tedxsydney.eventbrite.com
|
78
|
+
LAST-MODIFIED:20090524T074356Z
|
79
|
+
LOCATION:Australian Technology Park - 1 Wyndham St - Alexandria - Sydney\,
|
80
|
+
New South Wales NSW 2015 - Australia
|
81
|
+
SEQUENCE:0
|
82
|
+
STATUS:CONFIRMED
|
83
|
+
SUMMARY:TEDxSydney
|
84
|
+
TRANSP:OPAQUE
|
85
|
+
END:VEVENT
|
86
|
+
BEGIN:VEVENT
|
87
|
+
DTSTART;TZID=Australia/Sydney:20090522T080000
|
88
|
+
DTEND;TZID=Australia/Sydney:20090522T100000
|
89
|
+
RRULE:FREQ=WEEKLY;BYDAY=FR;WKST=MO
|
90
|
+
DTSTAMP:20090531T005744Z
|
91
|
+
UID:stv9cip8ggbb21u10et27fseh0@google.com
|
92
|
+
CLASS:PUBLIC
|
93
|
+
CREATED:20090524T073957Z
|
94
|
+
DESCRIPTION:
|
95
|
+
LAST-MODIFIED:20090524T073957Z
|
96
|
+
LOCATION:Single Origin Cafe\, Surry Hills
|
97
|
+
SEQUENCE:0
|
98
|
+
STATUS:CONFIRMED
|
99
|
+
SUMMARY:Social Coffee Sydney
|
100
|
+
TRANSP:OPAQUE
|
101
|
+
END:VEVENT
|
102
|
+
BEGIN:VEVENT
|
103
|
+
DTSTART;TZID=Australia/Brisbane:20090530T100000
|
104
|
+
DTEND;TZID=Australia/Brisbane:20090530T120000
|
105
|
+
RRULE:FREQ=WEEKLY;INTERVAL=2;BYDAY=SA;WKST=MO
|
106
|
+
DTSTAMP:20090531T005744Z
|
107
|
+
ORGANIZER;CN=tyrone castillo:mailto:tyrone.castillo@gmail.com
|
108
|
+
UID:560kqu4fjkasgsagnjbrlkmm10@google.com
|
109
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
110
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
111
|
+
ndar.google.com
|
112
|
+
CLASS:PUBLIC
|
113
|
+
CREATED:20090522T224346Z
|
114
|
+
DESCRIPTION:OpenCoffee is about creating a regular\, informal\, meeting pla
|
115
|
+
ce for people involved in\, or who want to be involved in the Startup scene
|
116
|
+
. \n\nOpenCoffee Club was started to encourage entrepreneurs\, developers\,
|
117
|
+
creatives\, developers and investors to organise real-world informal meetu
|
118
|
+
ps to chat\, network and grow a better ecosystem for business startups. \n\
|
119
|
+
nWe know that Brisbane is a hive of innovative and talented people\, but we
|
120
|
+
've never really had a regular place for anyone with an interest in busines
|
121
|
+
s startups to just hang out.\n\nThe more we get to know each other\, the mo
|
122
|
+
re we help motivate and inspire ourselves through open discussion and hard
|
123
|
+
work.\n\nMeet us at New Farm every second Saturday between 10AM-12AM\n\nThe
|
124
|
+
key is a regular place and a regular time\, so feel free to join in anytim
|
125
|
+
e.\n\nJoin our Facebook group and receive all event updates.\n\nhttp://tiny
|
126
|
+
url.com/ocbrissie\n
|
127
|
+
LAST-MODIFIED:20090522T225448Z
|
128
|
+
LOCATION:Vue Lounge\, 83 Merthyr Road\, New Farm\, Brisbane
|
129
|
+
SEQUENCE:0
|
130
|
+
STATUS:CONFIRMED
|
131
|
+
SUMMARY:OpenCoffee Brisbane
|
132
|
+
TRANSP:TRANSPARENT
|
133
|
+
END:VEVENT
|
134
|
+
BEGIN:VEVENT
|
135
|
+
DTSTART:20090601T080000Z
|
136
|
+
DTEND:20090601T090000Z
|
137
|
+
DTSTAMP:20090531T005744Z
|
138
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
139
|
+
UID:snjcbjgh8b8mkmu8pnu878gp88@google.com
|
140
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
141
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
142
|
+
ndar.google.com
|
143
|
+
CLASS:PUBLIC
|
144
|
+
CREATED:20090519T221623Z
|
145
|
+
DESCRIPTION:Don Norman's The Design of Future Things (discussion) and 7 Hab
|
146
|
+
its of Highly Effective People (review by Ryan Merton and Jessica Enders)
|
147
|
+
LAST-MODIFIED:20090519T221624Z
|
148
|
+
LOCATION:TBC
|
149
|
+
SEQUENCE:0
|
150
|
+
STATUS:CONFIRMED
|
151
|
+
SUMMARY:CBR: UXbookclub Canberra
|
152
|
+
TRANSP:OPAQUE
|
153
|
+
END:VEVENT
|
154
|
+
BEGIN:VEVENT
|
155
|
+
DTSTART:20090626T230000Z
|
156
|
+
DTEND:20090627T080000Z
|
157
|
+
DTSTAMP:20090531T005744Z
|
158
|
+
ORGANIZER;CN=Jodie Miners:mailto:jminers@gmail.com
|
159
|
+
UID:3q80jammn3g7rfm9vr8grtmr54@google.com
|
160
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
161
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
162
|
+
ndar.google.com
|
163
|
+
CLASS:PUBLIC
|
164
|
+
CREATED:20090518T031247Z
|
165
|
+
DESCRIPTION:More details to come soon
|
166
|
+
LAST-MODIFIED:20090518T031344Z
|
167
|
+
LOCATION:ATP
|
168
|
+
SEQUENCE:1
|
169
|
+
STATUS:CONFIRMED
|
170
|
+
SUMMARY:BarCamp Sydney #5
|
171
|
+
TRANSP:TRANSPARENT
|
172
|
+
END:VEVENT
|
173
|
+
BEGIN:VEVENT
|
174
|
+
DTSTART:20090612T230000Z
|
175
|
+
DTEND:20090613T080000Z
|
176
|
+
DTSTAMP:20090531T005744Z
|
177
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
178
|
+
UID:1hrldln9ausmo7a9jspvjr7lnk@google.com
|
179
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
180
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
181
|
+
ndar.google.com
|
182
|
+
CLASS:PUBLIC
|
183
|
+
CREATED:20090426T053153Z
|
184
|
+
DESCRIPTION:http://anyvite.com/5qitmm44gl
|
185
|
+
LAST-MODIFIED:20090516T012324Z
|
186
|
+
LOCATION:Google Australia\, 48 Pirrama Road\, Pyrmont\, NSW 2009
|
187
|
+
SEQUENCE:2
|
188
|
+
STATUS:CONFIRMED
|
189
|
+
SUMMARY:SYD: OpenAustralia hackfest
|
190
|
+
TRANSP:TRANSPARENT
|
191
|
+
END:VEVENT
|
192
|
+
BEGIN:VEVENT
|
193
|
+
DTSTART:20090515T023000Z
|
194
|
+
DTEND:20090515T040000Z
|
195
|
+
DTSTAMP:20090531T005744Z
|
196
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
197
|
+
UID:4n4sl6habrssq3kd51bm6sl2e8@google.com
|
198
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
199
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
200
|
+
ndar.google.com
|
201
|
+
CLASS:PUBLIC
|
202
|
+
CREATED:20090513T100313Z
|
203
|
+
DESCRIPTION:http://www.facebook.com/event.php?eid=84721216885
|
204
|
+
LAST-MODIFIED:20090514T021041Z
|
205
|
+
LOCATION:Social Media Club Canberra
|
206
|
+
SEQUENCE:0
|
207
|
+
STATUS:CONFIRMED
|
208
|
+
SUMMARY:CBR: SMC lunch
|
209
|
+
TRANSP:OPAQUE
|
210
|
+
END:VEVENT
|
211
|
+
BEGIN:VEVENT
|
212
|
+
DTSTART:20090511T073000Z
|
213
|
+
DTEND:20090511T090000Z
|
214
|
+
DTSTAMP:20090531T005744Z
|
215
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
216
|
+
UID:dol0f1doomjg65tn4unn8r2ku0@google.com
|
217
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
218
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
219
|
+
ndar.google.com
|
220
|
+
CLASS:PUBLIC
|
221
|
+
CREATED:20090505T214835Z
|
222
|
+
DESCRIPTION:
|
223
|
+
LAST-MODIFIED:20090510T212337Z
|
224
|
+
LOCATION:
|
225
|
+
SEQUENCE:0
|
226
|
+
STATUS:CONFIRMED
|
227
|
+
SUMMARY:CBR: UXbookclub Canberra
|
228
|
+
TRANSP:OPAQUE
|
229
|
+
END:VEVENT
|
230
|
+
BEGIN:VEVENT
|
231
|
+
DTSTART;VALUE=DATE:20090611
|
232
|
+
DTEND;VALUE=DATE:20090612
|
233
|
+
DTSTAMP:20090531T005744Z
|
234
|
+
UID:s9gvsrummt0sc6sruk7bbl8kpo@google.com
|
235
|
+
CLASS:PUBLIC
|
236
|
+
CREATED:20090510T105750Z
|
237
|
+
DESCRIPTION:
|
238
|
+
LAST-MODIFIED:20090510T105750Z
|
239
|
+
LOCATION:
|
240
|
+
SEQUENCE:0
|
241
|
+
STATUS:CONFIRMED
|
242
|
+
SUMMARY:Remix Sydney
|
243
|
+
TRANSP:TRANSPARENT
|
244
|
+
END:VEVENT
|
245
|
+
BEGIN:VEVENT
|
246
|
+
DTSTART:20090509T030000Z
|
247
|
+
DTEND:20090509T043000Z
|
248
|
+
DTSTAMP:20090531T005744Z
|
249
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
250
|
+
UID:ri7lokmdd5ogf0uvm986p2bbo8@google.com
|
251
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
252
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
253
|
+
ndar.google.com
|
254
|
+
CLASS:PUBLIC
|
255
|
+
CREATED:20090507T130346Z
|
256
|
+
DESCRIPTION:
|
257
|
+
LAST-MODIFIED:20090509T012430Z
|
258
|
+
LOCATION:Pancake Parlour\, Canberra
|
259
|
+
SEQUENCE:0
|
260
|
+
STATUS:CONFIRMED
|
261
|
+
SUMMARY:CBR: CTUB
|
262
|
+
TRANSP:OPAQUE
|
263
|
+
END:VEVENT
|
264
|
+
BEGIN:VEVENT
|
265
|
+
DTSTART;VALUE=DATE:20091104
|
266
|
+
DTEND;VALUE=DATE:20091107
|
267
|
+
DTSTAMP:20090531T005744Z
|
268
|
+
UID:a503hkimhbltcq8egd42bg6q1o@google.com
|
269
|
+
CLASS:PUBLIC
|
270
|
+
CREATED:20090508T052901Z
|
271
|
+
DESCRIPTION:
|
272
|
+
LAST-MODIFIED:20090508T052901Z
|
273
|
+
LOCATION:
|
274
|
+
SEQUENCE:0
|
275
|
+
STATUS:CONFIRMED
|
276
|
+
SUMMARY:Edge of the Web Perth
|
277
|
+
TRANSP:TRANSPARENT
|
278
|
+
END:VEVENT
|
279
|
+
BEGIN:VEVENT
|
280
|
+
DTSTART:20090514T073000Z
|
281
|
+
DTEND:20090514T093000Z
|
282
|
+
DTSTAMP:20090531T005744Z
|
283
|
+
UID:kiqjld1fsvuvh3a55u2drvqr8s@google.com
|
284
|
+
CLASS:PUBLIC
|
285
|
+
CREATED:20090507T043353Z
|
286
|
+
DESCRIPTION:Product Talks 2: “Challenges Developing and Launching a New Pro
|
287
|
+
duct”\n\nThis month’s session will be led by Alan Jones (alan@pollenizer.co
|
288
|
+
m) who describes himself as an “online product guy with a background in com
|
289
|
+
munications\, Product Management and creative communications.” He’s been a
|
290
|
+
Product Manager since 1995 joining a startup team for a Microsoft product
|
291
|
+
and spending 6 years at Yahoo in Product Management. He is currently part o
|
292
|
+
f the Pollenizer team.\n\nRSVP: info@brainmates.com.au or +61 (2) 9232-8147
|
293
|
+
\n\nAbout Product Talks\n------------------------------\n\nProduct Talks is
|
294
|
+
a free event for Product Managers.\n\nWe started “Product Talks” to facili
|
295
|
+
tate conversations about the many common challenges faced by Product Manage
|
296
|
+
rs. To fuel discussion\, we’ve prepared a topic for each event. The session
|
297
|
+
s are generally led by Nick Coster who asks a series of questions and occas
|
298
|
+
ionally voices his own opinion. We encourage open debate so the group can l
|
299
|
+
earn from us and each other. On occasions\, “Product Talks” is led by a gue
|
300
|
+
st speaker.\n\n“Product Talks” is also a networking function. We’re keen fo
|
301
|
+
r Product Managers across different industries to meet up and exchange busi
|
302
|
+
ness cards. You never know where your next job offer will come from.
|
303
|
+
LAST-MODIFIED:20090507T043636Z
|
304
|
+
LOCATION:Brainmates\, Level 9\, 84 Pitt Street\, Sydney\, NSW 2000
|
305
|
+
SEQUENCE:2
|
306
|
+
STATUS:CONFIRMED
|
307
|
+
SUMMARY:Brainmates Product Talk: developing and launching new products
|
308
|
+
TRANSP:OPAQUE
|
309
|
+
END:VEVENT
|
310
|
+
BEGIN:VEVENT
|
311
|
+
DTSTART;VALUE=DATE:20090826
|
312
|
+
DTEND;VALUE=DATE:20090829
|
313
|
+
DTSTAMP:20090531T005744Z
|
314
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
315
|
+
UID:9alj0gmkduibksfnfklsnrjf4c@google.com
|
316
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
317
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
318
|
+
ndar.google.com
|
319
|
+
CLASS:PUBLIC
|
320
|
+
CREATED:20090207T233852Z
|
321
|
+
DESCRIPTION:UX Australia 2009 is a 3-day user experience design conference\
|
322
|
+
, with inspiring and practical presentations\, covering a range of topics a
|
323
|
+
bout how to design great experiences for people.\n\nIt will be held on 25-2
|
324
|
+
7 August 2009\, in Canberra (Australia). The venue is Hotel Realm\, a new 5
|
325
|
+
star hotel in Barton.\n\nUX Australia 2009 is a community conference\, wit
|
326
|
+
h presentations proposed from our community and reviewed by our community.
|
327
|
+
LAST-MODIFIED:20090504T091623Z
|
328
|
+
LOCATION:Hotel Realm\, 14 National Cct\, Barton
|
329
|
+
SEQUENCE:1
|
330
|
+
STATUS:CONFIRMED
|
331
|
+
SUMMARY:UXAustralia
|
332
|
+
TRANSP:TRANSPARENT
|
333
|
+
END:VEVENT
|
334
|
+
BEGIN:VEVENT
|
335
|
+
DTSTART;VALUE=DATE:20090512
|
336
|
+
DTEND;VALUE=DATE:20090515
|
337
|
+
DTSTAMP:20090531T005744Z
|
338
|
+
UID:n4d82odia4po4232qo53e8upl8@google.com
|
339
|
+
CLASS:PUBLIC
|
340
|
+
CREATED:20090501T000643Z
|
341
|
+
DESCRIPTION:
|
342
|
+
LAST-MODIFIED:20090501T000643Z
|
343
|
+
LOCATION:
|
344
|
+
SEQUENCE:0
|
345
|
+
STATUS:CONFIRMED
|
346
|
+
SUMMARY:CeBIT Sydney
|
347
|
+
TRANSP:TRANSPARENT
|
348
|
+
END:VEVENT
|
349
|
+
BEGIN:VEVENT
|
350
|
+
DTSTART;VALUE=DATE:20090515
|
351
|
+
DTEND;VALUE=DATE:20090517
|
352
|
+
DTSTAMP:20090531T005744Z
|
353
|
+
ORGANIZER;CN=Melbourne IT Events:mailto:9g6eqh0tpcsrd3fjc6s6sv51m0@group.ca
|
354
|
+
lendar.google.com
|
355
|
+
UID:7ttrj54ln0o3ls59o1q8nvlii8@google.com
|
356
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
357
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
358
|
+
ndar.google.com
|
359
|
+
CLASS:PUBLIC
|
360
|
+
CREATED:20081201T015018Z
|
361
|
+
DESCRIPTION:ACS Victorian Branch 2009 Conference "Greening ICT towards Sust
|
362
|
+
ainability"\n\nInvitation\nWelcome to the 2009 ACS Victorian Branch Confere
|
363
|
+
nce\, join us as we investigate how as ICT Professionals we can be more env
|
364
|
+
ironmentally sensitive in the use of computing and how we can mitigate agai
|
365
|
+
nst future risks. Hear how Intel is helping in Green ICT\, how ETS (Emissi
|
366
|
+
ons Trading Scheme) or Carbon Trading will impact on the ICT Industry\, lis
|
367
|
+
ten to speakers talk about Cloud Computing and how ICT is contributing to s
|
368
|
+
olving issues with Water Management.\n \nThis year again\, you will have th
|
369
|
+
e opportunity to add your experience and knowledge in the Symposium discuss
|
370
|
+
ions where you can have your say on such diverse topic as The Carbon Footpr
|
371
|
+
int\, Virtual IT Environments\, Innovation & New Technology\, ICT Sustainab
|
372
|
+
ility & its impact in the Environment\, Recycle & Reuse and much\, much mor
|
373
|
+
e.\n\nWe also offer several excellent Professional Development opportunitie
|
374
|
+
s on subjects such as Do More With Less - Lean Techniques for IT Profession
|
375
|
+
als\, Environmental responsibilities in Project Management\, Virtual Worlds
|
376
|
+
and The Green Business Analyst.\n\nAll this at the relaxing Novotel Forest
|
377
|
+
Resort in Creswick! This is the number one event for ACS Victoria in 2009
|
378
|
+
so don't miss the chance to mix with your peers\, share experiences and re
|
379
|
+
lax in a superb environmentally friendly environment. \n\nWayne Moncur MAC
|
380
|
+
S(Snr) CPA\n2009 ACS Victoria Conference Chairman\n\nConference Program\nA
|
381
|
+
full Conference Program including speaker photos & biographies will be publ
|
382
|
+
ished soon! Watch this space for details.\n\nAbout the Venue\nThe Novotel
|
383
|
+
Forest Resort Creswick is a brand new\, 4½ star luxury\, eco friendly hotel
|
384
|
+
that opened on 26th March 2008 . It features 144 beautiful accommodation r
|
385
|
+
ooms and is situated on 150 acres of bushland and surrounded by an 18 hole
|
386
|
+
golf course that was designed by professional golfer\, Robert Allenby.\n\nI
|
387
|
+
t is located just 80 minutes from Melbourne CBD in the heart of spa country
|
388
|
+
Victoria \, only 10 minutes from the historic city of Ballarat and 20 minu
|
389
|
+
tes from Daylesford and Hepburn Springs. Luxury features of the Resort incl
|
390
|
+
ude an a-la-carte restaurant\, lobby bar\, conference and function faciliti
|
391
|
+
es\, boutique day spa and numerous recreational facilities.\n\nFor more inf
|
392
|
+
ormation about the venue please visit http://www.novotel.forestresort.com.a
|
393
|
+
u/\n\nAccommodation Bookings\nPlease note Conference Registration excludes
|
394
|
+
accommodation.\n\nThe cost of accommodation at the Novotel Forest Resort\,
|
395
|
+
Creswick is $185 per delegate\, per night including gourmet buffet breakfas
|
396
|
+
t. If attending with a Partner\, an additional rate of $15 applies (to incl
|
397
|
+
ude breakfast).\n\nIf you wish to secure accommodation at Novotel Forest Re
|
398
|
+
sort\, the host venue\, please contact the Novotel Forest Resort on 1300 78
|
399
|
+
0 411 (Toll Free) or 03 5345 9600. Please note accommodation is payable at
|
400
|
+
time of booking.\n\nPlease quote "Australian Computer Society Conference"
|
401
|
+
at the time of booking to receive this discounted rate.\n\nPartners/Guests\
|
402
|
+
nPartners/Guests are welcome. Registration includes catering\, pre dinner
|
403
|
+
drinks & dinner (Friday evening). A fun & exciting Partner Program will al
|
404
|
+
so be available with details to be published in the New Year!
|
405
|
+
LAST-MODIFIED:20090428T043538Z
|
406
|
+
LOCATION:Novotel Forest Resort 1500 Midland Highway Creswick\, Vic 3363
|
407
|
+
SEQUENCE:0
|
408
|
+
STATUS:CONFIRMED
|
409
|
+
SUMMARY:Greening ICT towards Sustainability - ACS
|
410
|
+
TRANSP:TRANSPARENT
|
411
|
+
END:VEVENT
|
412
|
+
BEGIN:VEVENT
|
413
|
+
DTSTART:20090427T080000Z
|
414
|
+
DTEND:20090427T110000Z
|
415
|
+
DTSTAMP:20090531T005744Z
|
416
|
+
ORGANIZER;CN=engEDU & Events AU:mailto:google.com_nncftoqgvuerqsi67hda512k1
|
417
|
+
0@group.calendar.google.com
|
418
|
+
UID:mrictfscgc7ftmopns8c6qmvrc@google.com
|
419
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
420
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
421
|
+
ndar.google.com
|
422
|
+
CLASS:PUBLIC
|
423
|
+
CREATED:20090408T013757Z
|
424
|
+
DESCRIPTION:The Google App Engine team just announced various new features:
|
425
|
+
support for Java as a runtime language\, cron support\, database import\,
|
426
|
+
and access to firewalled data. \n\nJoin us for a talk by Google engineers t
|
427
|
+
hat have been working on the new App Engine features\, and learn how you ca
|
428
|
+
n get started using Google App Engine for your Java web apps.\n\nMore info
|
429
|
+
here:\nhttp://sites.google.com/site/gdeveloperworkshopsyd/\n
|
430
|
+
LAST-MODIFIED:20090426T104659Z
|
431
|
+
LOCATION:Level 5\, Jumbuck\, 48 Pirrama Rd\, Pyrmont (Google Sydney Office)
|
432
|
+
SEQUENCE:0
|
433
|
+
STATUS:CONFIRMED
|
434
|
+
SUMMARY:Google App Engine: Java & Other Shiny New Stuff
|
435
|
+
TRANSP:OPAQUE
|
436
|
+
END:VEVENT
|
437
|
+
BEGIN:VEVENT
|
438
|
+
DTSTART:20090512T000000Z
|
439
|
+
DTEND:20090512T090000Z
|
440
|
+
DTSTAMP:20090531T005744Z
|
441
|
+
ORGANIZER;CN=Russell Smith:mailto:russellsmit@gmail.com
|
442
|
+
UID:vutvuh53l1iskaal4epe41rt2g@google.com
|
443
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
444
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
445
|
+
ndar.google.com
|
446
|
+
CLASS:PUBLIC
|
447
|
+
CREATED:20090426T062519Z
|
448
|
+
DESCRIPTION:A series of 4 free seminars\, lead by Industry Experts for ISV'
|
449
|
+
s considering transitioning to SaaS\nFull details: http://saasclusternsw.co
|
450
|
+
m/\n
|
451
|
+
LAST-MODIFIED:20090426T064853Z
|
452
|
+
LOCATION:DSRD Parramatta
|
453
|
+
SEQUENCE:0
|
454
|
+
STATUS:CONFIRMED
|
455
|
+
SUMMARY:NSW SaaS Cluster Transition Seminars
|
456
|
+
TRANSP:OPAQUE
|
457
|
+
END:VEVENT
|
458
|
+
BEGIN:VEVENT
|
459
|
+
DTSTART:20090526T080000Z
|
460
|
+
DTEND:20090526T110000Z
|
461
|
+
DTSTAMP:20090531T005744Z
|
462
|
+
UID:dbcpqt07n2klmjtat9511ai9cs@google.com
|
463
|
+
CLASS:PUBLIC
|
464
|
+
CREATED:20090420T122434Z
|
465
|
+
DESCRIPTION:
|
466
|
+
LAST-MODIFIED:20090420T122434Z
|
467
|
+
LOCATION:
|
468
|
+
SEQUENCE:0
|
469
|
+
STATUS:CONFIRMED
|
470
|
+
SUMMARY:Growth Town 3 - Sydney
|
471
|
+
TRANSP:OPAQUE
|
472
|
+
END:VEVENT
|
473
|
+
BEGIN:VEVENT
|
474
|
+
DTSTART:20090515T040000Z
|
475
|
+
DTEND:20090515T070000Z
|
476
|
+
DTSTAMP:20090531T005744Z
|
477
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
478
|
+
UID:ijivkrgpjoqh4af5al2e0tk77c@google.com
|
479
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
480
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
481
|
+
ndar.google.com
|
482
|
+
CLASS:PUBLIC
|
483
|
+
CREATED:20090417T005220Z
|
484
|
+
DESCRIPTION:Canberra Web Standards Group meeting\, May 2009.\n\nIvan Herman
|
485
|
+
\, W3C - Introduction and applications of semantic web. Michael Smith\, W3C
|
486
|
+
- HTML5\, XHTML2: Learning from history about how to drive the future of t
|
487
|
+
he Web.
|
488
|
+
LAST-MODIFIED:20090417T005221Z
|
489
|
+
LOCATION:Bunker Theatre\, Department of Environment\, Water\, Heritage and
|
490
|
+
the Arts\, John Gorton Building\, King Edward Tce\, Parkes\, ACT 2600
|
491
|
+
SEQUENCE:0
|
492
|
+
STATUS:CONFIRMED
|
493
|
+
SUMMARY:CBR: WSG meeting
|
494
|
+
TRANSP:OPAQUE
|
495
|
+
END:VEVENT
|
496
|
+
BEGIN:VEVENT
|
497
|
+
DTSTART:20090410T050000Z
|
498
|
+
DTEND:20090410T070000Z
|
499
|
+
DTSTAMP:20090531T005744Z
|
500
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
501
|
+
UID:1pfjendpbl7paean2jbarhi9lc@google.com
|
502
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
503
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
504
|
+
ndar.google.com
|
505
|
+
CLASS:PUBLIC
|
506
|
+
CREATED:20090409T113349Z
|
507
|
+
DESCRIPTION:Canberra Twitter meetup.
|
508
|
+
LAST-MODIFIED:20090410T000508Z
|
509
|
+
LOCATION:CREAM Cafe\, Bunda Street\, Canberra
|
510
|
+
SEQUENCE:0
|
511
|
+
STATUS:CONFIRMED
|
512
|
+
SUMMARY:CBR: CTUB (DekTUB)
|
513
|
+
TRANSP:OPAQUE
|
514
|
+
END:VEVENT
|
515
|
+
BEGIN:VEVENT
|
516
|
+
DTSTART:20090406T073000Z
|
517
|
+
DTEND:20090406T090000Z
|
518
|
+
DTSTAMP:20090531T005744Z
|
519
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
520
|
+
UID:sklisoqio07njjq6iq9uadfk3c@google.com
|
521
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
522
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
523
|
+
ndar.google.com
|
524
|
+
CLASS:PUBLIC
|
525
|
+
CREATED:20090405T214326Z
|
526
|
+
DESCRIPTION:
|
527
|
+
LAST-MODIFIED:20090405T214327Z
|
528
|
+
LOCATION:Tea Lounge\, Hyatt
|
529
|
+
SEQUENCE:0
|
530
|
+
STATUS:CONFIRMED
|
531
|
+
SUMMARY:CBR: UX Bookclub
|
532
|
+
TRANSP:OPAQUE
|
533
|
+
END:VEVENT
|
534
|
+
BEGIN:VEVENT
|
535
|
+
DTSTART;TZID=Australia/Sydney:20090211T083000
|
536
|
+
DTEND;TZID=Australia/Sydney:20090211T100000
|
537
|
+
RRULE:FREQ=WEEKLY;INTERVAL=2;BYDAY=TH;WKST=SU
|
538
|
+
DTSTAMP:20090531T005744Z
|
539
|
+
ORGANIZER;CN=gee dot:mailto:geedot@gmail.com
|
540
|
+
UID:5a1grda7iinmbu6bmt0kr45fis@google.com
|
541
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
542
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
543
|
+
ndar.google.com
|
544
|
+
CLASS:PUBLIC
|
545
|
+
CREATED:20090208T112254Z
|
546
|
+
DESCRIPTION:Finally\, what we've all been waiting for...\n\nOpenCoffee is b
|
547
|
+
ased on a similar\, successful idea introduced in London\, and is about cre
|
548
|
+
ating a regular\, informal\, meeting place for people involved in\, or who
|
549
|
+
want to be involved in\, the Tech Startup Industry\n\nWe know Sydney has th
|
550
|
+
e talent\, but we've never really had a regular place for all the technolog
|
551
|
+
y entrepreneurs\, investors\, developers\, creatives and anyone else with a
|
552
|
+
n interest in tech startups to just hang out.\n\nThe more we get to know ea
|
553
|
+
ch other and spur each other on through collaboration and competition the f
|
554
|
+
aster the Sydney Tech Startup industry will grow and the quicker we can mak
|
555
|
+
e ourselves a global player.\n\nLet's do this.\n
|
556
|
+
LAST-MODIFIED:20090402T005044Z
|
557
|
+
LOCATION:Sydney CBD - CHECK THIS SITE FOR DETAILS - http://www.meetup.com/
|
558
|
+
open-coffee-sydney/
|
559
|
+
SEQUENCE:0
|
560
|
+
STATUS:CONFIRMED
|
561
|
+
SUMMARY:Sydney OpenCoffee Meetup
|
562
|
+
TRANSP:OPAQUE
|
563
|
+
END:VEVENT
|
564
|
+
BEGIN:VEVENT
|
565
|
+
DTSTART:20090416T073000Z
|
566
|
+
DTEND:20090416T100000Z
|
567
|
+
DTSTAMP:20090531T005744Z
|
568
|
+
ORGANIZER;CN=Club Events:mailto:f91a7itlb8rb132bsj4781biuo@group.calendar.g
|
569
|
+
oogle.com
|
570
|
+
UID:d5nlq059pjint697ot5nn71674@google.com
|
571
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
572
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
573
|
+
ndar.google.com
|
574
|
+
CLASS:PUBLIC
|
575
|
+
CREATED:20090205T052124Z
|
576
|
+
DESCRIPTION:Details at http://www.churchillclub.org.au/23.asp?eventId=192\n
|
577
|
+
\n
|
578
|
+
LAST-MODIFIED:20090331T213006Z
|
579
|
+
LOCATION:The Churchill Club : 7 Leveon Street\, Melbourne
|
580
|
+
SEQUENCE:0
|
581
|
+
STATUS:CONFIRMED
|
582
|
+
SUMMARY:Melbourne : The Future of Search
|
583
|
+
TRANSP:OPAQUE
|
584
|
+
END:VEVENT
|
585
|
+
BEGIN:VEVENT
|
586
|
+
DTSTART:20090409T073000Z
|
587
|
+
DTEND:20090409T100000Z
|
588
|
+
DTSTAMP:20090531T005744Z
|
589
|
+
ORGANIZER;CN=Club Events:mailto:f91a7itlb8rb132bsj4781biuo@group.calendar.g
|
590
|
+
oogle.com
|
591
|
+
UID:0j1563ae5oul602vh44flcuhcs@google.com
|
592
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
593
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
594
|
+
ndar.google.com
|
595
|
+
CLASS:PUBLIC
|
596
|
+
CREATED:20090205T045444Z
|
597
|
+
DESCRIPTION:http://www.churchillclub.org.au/23.asp?eventId=197\n\nThe Hypot
|
598
|
+
hetical\nAs the global economy slides into recession\, sovereign wealth fun
|
599
|
+
ds are continuing to rake in the money.\n\nAs bank shares head south\, Abu
|
600
|
+
Dhabi has made a play for ANZ. The matter has gone to the Foreign Investmen
|
601
|
+
t Review Board but pressure is building to give it the nod with Australian
|
602
|
+
banks increasingly exposed to bad debts and writedowns. The Treasurer Wayne
|
603
|
+
Swan has indicated the Government will give it full consideration. If the
|
604
|
+
Government approves the deal\, it will open the way for more acquisitions.
|
605
|
+
ANZ CEO Mike Smith says he sees no problem with the deal as Abu Dhabi’s fun
|
606
|
+
d has indicated it wants to keep the ANZ’s strategic plan in place.\n\nWhat
|
607
|
+
’s next?\n\nPrice $33 Members / $55 Non Members. Ticket price includes dri
|
608
|
+
nks\, canapés and a podcast from the evening.\n\nPanelists:\nDavid James -
|
609
|
+
Reporter at BRW\nProf Paul Kerrin - Melbourne Business School\n\nModerator\
|
610
|
+
nLeon Gettler
|
611
|
+
LAST-MODIFIED:20090331T212709Z
|
612
|
+
LOCATION:The Churchill Club : 7 Leveon Street\, Melbourne
|
613
|
+
SEQUENCE:0
|
614
|
+
STATUS:CONFIRMED
|
615
|
+
SUMMARY:Leon Gettler Hypothetical
|
616
|
+
TRANSP:OPAQUE
|
617
|
+
END:VEVENT
|
618
|
+
BEGIN:VEVENT
|
619
|
+
DTSTART:20090326T070000Z
|
620
|
+
DTEND:20090326T090000Z
|
621
|
+
DTSTAMP:20090531T005744Z
|
622
|
+
ORGANIZER;CN=Victorian Java User Goup:mailto:np46h4o4b0d6c4rtjb65luf640@gro
|
623
|
+
up.calendar.google.com
|
624
|
+
UID:frtt3flnk605r391polutiklkc@google.com
|
625
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
626
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
627
|
+
ndar.google.com
|
628
|
+
CLASS:PUBLIC
|
629
|
+
CREATED:20090324T234153Z
|
630
|
+
DESCRIPTION:D.I.Y Device Sensor Networks using Java.\n\nYou are strongly en
|
631
|
+
couraged to bring along some form of wireless GUI\, such as a netbook\, iPh
|
632
|
+
one\, iPod touch or mobile phone with 3G data plan. Make sure you have a Tw
|
633
|
+
itter account and a mobile client ready. Audience participation will make i
|
634
|
+
t more fun :) For more see: https://victorianjug.dev.java.net/2009/March/Ma
|
635
|
+
rch.html
|
636
|
+
LAST-MODIFIED:20090324T234455Z
|
637
|
+
LOCATION:Sun\, McKillop/Dunlop Room\, Level 7\, 476 St. Kilda Road
|
638
|
+
SEQUENCE:0
|
639
|
+
STATUS:CONFIRMED
|
640
|
+
SUMMARY:VJUG Meeting
|
641
|
+
TRANSP:OPAQUE
|
642
|
+
END:VEVENT
|
643
|
+
BEGIN:VEVENT
|
644
|
+
DTSTART:20090319T210000Z
|
645
|
+
DTEND:20090319T220000Z
|
646
|
+
DTSTAMP:20090531T005744Z
|
647
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
648
|
+
UID:d6lq832d6eq95rbe21sdqrh2a8@google.com
|
649
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
650
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
651
|
+
ndar.google.com
|
652
|
+
CLASS:PUBLIC
|
653
|
+
CREATED:20090319T114727Z
|
654
|
+
DESCRIPTION:Social Media Club Canberra breakfast\, CREAM Cafe\, Bunda Stree
|
655
|
+
t Canberra
|
656
|
+
LAST-MODIFIED:20090319T114728Z
|
657
|
+
LOCATION:
|
658
|
+
SEQUENCE:0
|
659
|
+
STATUS:CONFIRMED
|
660
|
+
SUMMARY:SMCC
|
661
|
+
TRANSP:OPAQUE
|
662
|
+
END:VEVENT
|
663
|
+
BEGIN:VEVENT
|
664
|
+
DTSTART:20090318T033000Z
|
665
|
+
DTEND:20090318T060000Z
|
666
|
+
DTSTAMP:20090531T005744Z
|
667
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
668
|
+
UID:djv7li3enfo404jir0o4k35754@google.com
|
669
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
670
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
671
|
+
ndar.google.com
|
672
|
+
CLASS:PUBLIC
|
673
|
+
CREATED:20090220T033400Z
|
674
|
+
DESCRIPTION:Stephen Collins and Mark Schenk presenting.
|
675
|
+
LAST-MODIFIED:20090318T061753Z
|
676
|
+
LOCATION:NLA\, Canberra
|
677
|
+
SEQUENCE:0
|
678
|
+
STATUS:CONFIRMED
|
679
|
+
SUMMARY:Canberra WSG meeting
|
680
|
+
TRANSP:OPAQUE
|
681
|
+
END:VEVENT
|
682
|
+
BEGIN:VEVENT
|
683
|
+
DTSTART:20090331T090000Z
|
684
|
+
DTEND:20090331T120000Z
|
685
|
+
DTSTAMP:20090531T005744Z
|
686
|
+
ORGANIZER;CN=Mike Boyd:mailto:miboyd@gmail.com
|
687
|
+
UID:aimikg11icftj4mio5khmumuac@google.com
|
688
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
689
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
690
|
+
ndar.google.com
|
691
|
+
CLASS:PUBLIC
|
692
|
+
CREATED:20090224T020449Z
|
693
|
+
DESCRIPTION:It is with great pleasure (and a huge sigh of relief!) that I p
|
694
|
+
resent the first ever Brisbane edition of The Hive.\n\nThe Hive is networki
|
695
|
+
ng for Entrepreneuers - monthly events that feature prominent entrepreneurs
|
696
|
+
from the local community\, who are kind enough to donate their time and sh
|
697
|
+
are with us some of their experiences and wisdom. This basic concept gives
|
698
|
+
rise to our motto: “The Hive - Connecting the entrepreneurs of today and to
|
699
|
+
morrow”.\n\nWe get together to share advice\, talk and hang out. Membership
|
700
|
+
is free and easy\, and everyone’s invited. If you have an idea and want to
|
701
|
+
launch a venture or already have a venture then make sure you come along.\
|
702
|
+
n\nThe Hive Brisbane is very excited to be kicking off the year with guest
|
703
|
+
entrepreneur Richard Eastes from Vroom Vroom Vroom!\n\nRichard Eastes\n\nTh
|
704
|
+
e details:\n\nThe Hive Brisbane meets Richard Eastes - VroomVroomVroom.com\
|
705
|
+
n\nWhen: Tuesday 31st March\, 2009\n\nWhere: The Fox Hotel - West End (Corn
|
706
|
+
er of Hope & Melbourne Streets\, South Brisbane)\n\nTime: 7 - 10pm\n\nCost:
|
707
|
+
FREE! (But you buy your own drinks!)\n\nEmail: brisbane “AT” thehive.org.a
|
708
|
+
u\n\nFaceBook: Join The Hive Facebook Group & RSVP to this Facebook event.\
|
709
|
+
nhttp://www.facebook.com/editevent.php?eid=73264960856#/event.php?eid=73264
|
710
|
+
960856&ref=nf\n\n\nWhat you can expect:\n\n- An introduction to The Hive\n-
|
711
|
+
Plenty of time to chat to fellow entrepreneurs and others interested in en
|
712
|
+
trepreneurship\, exchange ideas\, tips etc.\n- A short presentation by Rich
|
713
|
+
ard Eastes from from Vroom Vroom Vroom.\n\nRichard’s story:\n\nRichard took
|
714
|
+
a risk when he spent his life savings on VroomVroomVroom - a travel startu
|
715
|
+
p that was booking a mere 20 online car rental reservations per day. He qui
|
716
|
+
ckly grew it from his Brisbane bedroom into Australia’s fastest growing tra
|
717
|
+
vel company. Winning various business awards such as Deloitte FAST50\, it n
|
718
|
+
ow generates close to $5m in sales each month. The company is expanding glo
|
719
|
+
bally and is poised to becoming a great Australian export.\n\nAs a project
|
720
|
+
to compliment VroomVroomVroom.com’s carbon neutral car rental\, Richard sta
|
721
|
+
rted http://www.greenlogo.com which has calculated that the internet produc
|
722
|
+
es approximately 1200 tonnes of CO2 per hour. GreenLogo reduces this by tra
|
723
|
+
cking the CO2 produced by a website and then pays for its carbon credits us
|
724
|
+
ing sponsors.\n\nRichard loves networking nights\, innovative employees\, t
|
725
|
+
ouch rugby\, social media sites and is addicted to Twitter. Follow him at h
|
726
|
+
ttp://twitter.com/eastes\n—\n\nThis event is FREE but you buy your own drin
|
727
|
+
ks!\n\nIf anyone is interested in sponsoring the event\, please contact us.
|
728
|
+
\n\nSee you there!\n\nMike Boyd and The Hive Team\nhttp://www.thehive.org.a
|
729
|
+
u\nhttp://www.mikeboyd.com.au\n
|
730
|
+
LAST-MODIFIED:20090315T233235Z
|
731
|
+
LOCATION:The Fox Hotel - West End (Corner of Hope & Melbourne Streets\, Sou
|
732
|
+
th Brisbane)
|
733
|
+
SEQUENCE:0
|
734
|
+
STATUS:CONFIRMED
|
735
|
+
SUMMARY:The Hive Brisbane meets Richard Eastes - VroomVroomVroom.com
|
736
|
+
TRANSP:OPAQUE
|
737
|
+
END:VEVENT
|
738
|
+
BEGIN:VEVENT
|
739
|
+
DTSTART;VALUE=DATE:20090330
|
740
|
+
DTEND;VALUE=DATE:20090401
|
741
|
+
DTSTAMP:20090531T005744Z
|
742
|
+
ORGANIZER;CN=Ben Grubb:mailto:bengrubb@gmail.com
|
743
|
+
UID:CCAF2EF0-BC07-49B4-B780-F2C962E9CFF1
|
744
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
745
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
746
|
+
ndar.google.com
|
747
|
+
CLASS:PUBLIC
|
748
|
+
CREATED:20090315T080240Z
|
749
|
+
DESCRIPTION:http://getready.eventplanet.com.au/
|
750
|
+
LAST-MODIFIED:20090315T220131Z
|
751
|
+
LOCATION:Sydney's Hilton
|
752
|
+
SEQUENCE:4
|
753
|
+
STATUS:CONFIRMED
|
754
|
+
SUMMARY:Digital Television Conference
|
755
|
+
TRANSP:TRANSPARENT
|
756
|
+
END:VEVENT
|
757
|
+
BEGIN:VEVENT
|
758
|
+
DTSTART;VALUE=DATE:20090331
|
759
|
+
DTEND;VALUE=DATE:20090402
|
760
|
+
DTSTAMP:20090531T005744Z
|
761
|
+
ORGANIZER;CN=Ben Grubb:mailto:bengrubb@gmail.com
|
762
|
+
UID:35hjq9dhtksrkrpukd753d73e0@google.com
|
763
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
764
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
765
|
+
ndar.google.com
|
766
|
+
CLASS:PUBLIC
|
767
|
+
CREATED:20090315T215830Z
|
768
|
+
DESCRIPTION:http://www.commsday.com/node/313
|
769
|
+
LAST-MODIFIED:20090315T215904Z
|
770
|
+
LOCATION:Sydney's Swissotel.
|
771
|
+
SEQUENCE:0
|
772
|
+
STATUS:CONFIRMED
|
773
|
+
SUMMARY:CommsDay Summit 2009
|
774
|
+
TRANSP:TRANSPARENT
|
775
|
+
END:VEVENT
|
776
|
+
BEGIN:VEVENT
|
777
|
+
DTSTART:20090401T070000Z
|
778
|
+
DTEND:20090401T100000Z
|
779
|
+
DTSTAMP:20090531T005744Z
|
780
|
+
UID:3v3qde51nab559njrefgooq0c8@google.com
|
781
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
782
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
783
|
+
.google.com
|
784
|
+
CLASS:PUBLIC
|
785
|
+
CREATED:20090308T071250Z
|
786
|
+
DESCRIPTION:
|
787
|
+
LAST-MODIFIED:20090308T071258Z
|
788
|
+
LOCATION:
|
789
|
+
SEQUENCE:0
|
790
|
+
STATUS:CONFIRMED
|
791
|
+
SUMMARY:Growth Town - Sydney
|
792
|
+
TRANSP:OPAQUE
|
793
|
+
END:VEVENT
|
794
|
+
BEGIN:VEVENT
|
795
|
+
DTSTART;TZID=Australia/Sydney:20080821T190000
|
796
|
+
DTEND;TZID=Australia/Sydney:20080821T210000
|
797
|
+
RRULE:FREQ=MONTHLY;WKST=SU;UNTIL=20091217T080000Z;BYDAY=3TH
|
798
|
+
DTSTAMP:20090531T005744Z
|
799
|
+
ORGANIZER;CN=Work:mailto:18flh1ke19u4v1avj0a4k9r6vs@group.calendar.google.c
|
800
|
+
om
|
801
|
+
UID:qn72fma070fpp50cevkja8lv00@google.com
|
802
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
803
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
804
|
+
ndar.google.com
|
805
|
+
CLASS:PUBLIC
|
806
|
+
CREATED:20080822T055626Z
|
807
|
+
DESCRIPTION:http://groups.drupal.org/australia
|
808
|
+
LAST-MODIFIED:20090308T044806Z
|
809
|
+
LOCATION:ABC Center\, Ultimo
|
810
|
+
SEQUENCE:2
|
811
|
+
STATUS:CONFIRMED
|
812
|
+
SUMMARY:Sydney Drupal Users Group Meetup
|
813
|
+
TRANSP:OPAQUE
|
814
|
+
END:VEVENT
|
815
|
+
BEGIN:VEVENT
|
816
|
+
DTSTART:20090313T030000Z
|
817
|
+
DTEND:20090313T050000Z
|
818
|
+
DTSTAMP:20090531T005744Z
|
819
|
+
ORGANIZER;CN=Andrew Corbett-Jones:mailto:acj@batfink.com.au
|
820
|
+
UID:60k52dfn4s86n2mhvdooihele0@google.com
|
821
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
822
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
823
|
+
ndar.google.com
|
824
|
+
CLASS:PUBLIC
|
825
|
+
CREATED:20090304T213501Z
|
826
|
+
DESCRIPTION:Details and RSVP here\;\nhttp://startup-australia.wikidot.com/b
|
827
|
+
uilding-in-the-uk\n\nRSVP is a must\n\nAlex van Someren is a Cambridge-base
|
828
|
+
d entrepreneur and Dealmaker with the UK Global Entreprenuer Programme whic
|
829
|
+
h helps entrepreneurs and companies to locate in the UK. \n\nHis biography:
|
830
|
+
"I became involved with local firm Acorn Computer as a young teenager. I l
|
831
|
+
eft school at 17 to join the company\, working on the prototype BBC before
|
832
|
+
starting my own consulting firm. I went on to co-found ANT Limited in 1990
|
833
|
+
to produce networking products - ANT plc was listed on the London AIM marke
|
834
|
+
t in 2005 and is now positioned in the embedded software market for IPTV.\n
|
835
|
+
\nFrom 1996 I was CEO of nCipher which I co-founded with my brother to deve
|
836
|
+
lop internet security products. We raised a total of £14m ($28m) in venture
|
837
|
+
capital investments between 1996 and 2000\; nCipher plc was listed on the
|
838
|
+
London Stock Exchange in 2000\, raising a further £108m ($216m) at IPO. I e
|
839
|
+
xpanded the company by making four acquisitions before recruiting my succes
|
840
|
+
sor and exiting the business in December 2007. The company was sold to Thal
|
841
|
+
es SA in October 2008."
|
842
|
+
LAST-MODIFIED:20090306T051411Z
|
843
|
+
LOCATION:British Consulate-General\, Level 16 The Gateway\, 1 Macquarie Pl
|
844
|
+
ace
|
845
|
+
SEQUENCE:0
|
846
|
+
STATUS:CONFIRMED
|
847
|
+
SUMMARY:Meet Alex van Someren\, UK entrepreneur
|
848
|
+
TRANSP:OPAQUE
|
849
|
+
END:VEVENT
|
850
|
+
BEGIN:VEVENT
|
851
|
+
DTSTART:20090306T070000Z
|
852
|
+
DTEND:20090306T090000Z
|
853
|
+
DTSTAMP:20090531T005744Z
|
854
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
855
|
+
UID:ssj0qsp3d2g5aiaonos7m02um8@google.com
|
856
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
857
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
858
|
+
ndar.google.com
|
859
|
+
CLASS:PUBLIC
|
860
|
+
CREATED:20090224T205104Z
|
861
|
+
DESCRIPTION:Follow @CTUB for details.
|
862
|
+
LAST-MODIFIED:20090305T044343Z
|
863
|
+
LOCATION:
|
864
|
+
SEQUENCE:1
|
865
|
+
STATUS:CONFIRMED
|
866
|
+
SUMMARY:CTUB
|
867
|
+
TRANSP:OPAQUE
|
868
|
+
END:VEVENT
|
869
|
+
BEGIN:VEVENT
|
870
|
+
DTSTART:20090321T020000Z
|
871
|
+
DTEND:20090321T040000Z
|
872
|
+
DTSTAMP:20090531T005744Z
|
873
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
874
|
+
UID:r006uv677tilj7a729emsn7jr4@google.com
|
875
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
876
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
877
|
+
ndar.google.com
|
878
|
+
CLASS:PUBLIC
|
879
|
+
CREATED:20090214T212630Z
|
880
|
+
DESCRIPTION:#NoCleanFeed. http://www.facebook.com/event.php?eid=50062819138
|
881
|
+
LAST-MODIFIED:20090303T033916Z
|
882
|
+
LOCATION:March
|
883
|
+
SEQUENCE:1
|
884
|
+
STATUS:CONFIRMED
|
885
|
+
SUMMARY:DLC March in March (Canberra)
|
886
|
+
TRANSP:OPAQUE
|
887
|
+
END:VEVENT
|
888
|
+
BEGIN:VEVENT
|
889
|
+
DTSTART:20090401T063000Z
|
890
|
+
DTEND:20090401T110000Z
|
891
|
+
DTSTAMP:20090531T005744Z
|
892
|
+
ORGANIZER;CN=Stephen Lead:mailto:stephen.lead@gmail.com
|
893
|
+
UID:6er15312tn8uv7dra3rehps6e8@google.com
|
894
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
895
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
896
|
+
ndar.google.com
|
897
|
+
CLASS:PUBLIC
|
898
|
+
CREATED:20090302T221814Z
|
899
|
+
DESCRIPTION:Ignite is coming to Melbourne!\n\nIgnite Web will feature short
|
900
|
+
\, sharp presentations all about the web. Each presentation consists of 20
|
901
|
+
slides\, which last for 15 seconds each\, giving a guaranteed 5 minute pres
|
902
|
+
entation.\n\nwww.IgniteWeb.com.au for more information and to register - it
|
903
|
+
's free.
|
904
|
+
LAST-MODIFIED:20090302T221814Z
|
905
|
+
LOCATION:The Apartment\, 401 Lt Bourke Street\, Melbourne\, VIC\, 30001
|
906
|
+
SEQUENCE:0
|
907
|
+
STATUS:CONFIRMED
|
908
|
+
SUMMARY:Ignite Web
|
909
|
+
TRANSP:OPAQUE
|
910
|
+
END:VEVENT
|
911
|
+
BEGIN:VEVENT
|
912
|
+
DTSTART:20090303T063000Z
|
913
|
+
DTEND:20090303T083000Z
|
914
|
+
DTSTAMP:20090531T005744Z
|
915
|
+
ORGANIZER;CN=Pamela Fox:mailto:pamelafox@google.com
|
916
|
+
UID:8hfmjsnjfh8ekflgttcvgru8h4@google.com
|
917
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
918
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
919
|
+
ndar.google.com
|
920
|
+
CLASS:PUBLIC
|
921
|
+
CREATED:20090129T004234Z
|
922
|
+
DESCRIPTION:Google App Engine enables you to build web applications on the
|
923
|
+
same scalable systems that power Google applications. The talk will give an
|
924
|
+
overview of the App Engine architecture from a developer's perspective\, f
|
925
|
+
ollowed by a live demonstration.\nThe codelab will involve making a wiki ap
|
926
|
+
plication.\n\nMore info here:\nhttp://sites.google.com/site/gdeveloperworks
|
927
|
+
hopsyd/\n
|
928
|
+
LAST-MODIFIED:20090301T225612Z
|
929
|
+
LOCATION:SYD-DAR-18-Fraser (20) VC
|
930
|
+
SEQUENCE:5
|
931
|
+
STATUS:CONFIRMED
|
932
|
+
SUMMARY:Google Developer Workshop: Google App Engine
|
933
|
+
TRANSP:OPAQUE
|
934
|
+
END:VEVENT
|
935
|
+
BEGIN:VEVENT
|
936
|
+
DTSTART;VALUE=DATE:20090301
|
937
|
+
DTEND;VALUE=DATE:20090302
|
938
|
+
DTSTAMP:20090531T005744Z
|
939
|
+
UID:ngq19tf0cujrt8666n1jhbppik@google.com
|
940
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
941
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
942
|
+
.google.com
|
943
|
+
CLASS:PUBLIC
|
944
|
+
CREATED:20080911T102427Z
|
945
|
+
DESCRIPTION:Let's get involved together and do some tidying up with Mr Kier
|
946
|
+
nan and friends.\nhttp://www.cleanup.org.au/au/Campaigns/clean_up_australia
|
947
|
+
_day.html\n
|
948
|
+
LAST-MODIFIED:20090217T213542Z
|
949
|
+
LOCATION:to be confirmed
|
950
|
+
SEQUENCE:0
|
951
|
+
STATUS:CONFIRMED
|
952
|
+
SUMMARY:Clean Up Austraya Day
|
953
|
+
TRANSP:TRANSPARENT
|
954
|
+
END:VEVENT
|
955
|
+
BEGIN:VEVENT
|
956
|
+
DTSTART:20090304T070000Z
|
957
|
+
DTEND:20090304T090000Z
|
958
|
+
DTSTAMP:20090531T005744Z
|
959
|
+
UID:8hlb9cvsqlgm3u41qj1ilrgne0@google.com
|
960
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
961
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
962
|
+
.google.com
|
963
|
+
CLASS:PUBLIC
|
964
|
+
CREATED:20090211T131627Z
|
965
|
+
DESCRIPTION:RSVP here please\n\nhttp://startup-australia.wikidot.com/growth
|
966
|
+
-town\n\n\nOpen meeting of people who are looking to grow their existing te
|
967
|
+
ch business. People who have successfully grown or successfully failed a ne
|
968
|
+
w business of their are asked to come and share their stories.
|
969
|
+
LAST-MODIFIED:20090217T043453Z
|
970
|
+
LOCATION:Atlassian office - 173-185 Sussex Street
|
971
|
+
SEQUENCE:2
|
972
|
+
STATUS:CONFIRMED
|
973
|
+
SUMMARY:Growth Town - Inaugural Event - Sydney
|
974
|
+
TRANSP:OPAQUE
|
975
|
+
END:VEVENT
|
976
|
+
BEGIN:VEVENT
|
977
|
+
DTSTART:20090212T210000Z
|
978
|
+
DTEND:20090212T220000Z
|
979
|
+
DTSTAMP:20090531T005744Z
|
980
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
981
|
+
UID:bjciislfa13qhvd40tmi41lqfs@google.com
|
982
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
983
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
984
|
+
ndar.google.com
|
985
|
+
CLASS:PUBLIC
|
986
|
+
CREATED:20090211T060449Z
|
987
|
+
DESCRIPTION:
|
988
|
+
LAST-MODIFIED:20090211T060520Z
|
989
|
+
LOCATION:CREAM cafe\, Civic\, Canberra
|
990
|
+
SEQUENCE:0
|
991
|
+
STATUS:CONFIRMED
|
992
|
+
SUMMARY:SMCC breakfast #3
|
993
|
+
TRANSP:OPAQUE
|
994
|
+
END:VEVENT
|
995
|
+
BEGIN:VEVENT
|
996
|
+
DTSTART;TZID=Australia/Brisbane:20090323T183000
|
997
|
+
DTEND;TZID=Australia/Brisbane:20090323T203000
|
998
|
+
DTSTAMP:20090531T005744Z
|
999
|
+
UID:E2A6531D-B8B0-4C36-862A-E90C84F66DF0
|
1000
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
1001
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
1002
|
+
.google.com
|
1003
|
+
RECURRENCE-ID;TZID=Australia/Brisbane:20090302T183000
|
1004
|
+
CLASS:PUBLIC
|
1005
|
+
CREATED:20090209T230154Z
|
1006
|
+
DESCRIPTION:
|
1007
|
+
LAST-MODIFIED:20090209T230244Z
|
1008
|
+
LOCATION:Toowong Library
|
1009
|
+
SEQUENCE:6
|
1010
|
+
STATUS:CONFIRMED
|
1011
|
+
SUMMARY:Brisbane Cocoaheads
|
1012
|
+
TRANSP:OPAQUE
|
1013
|
+
END:VEVENT
|
1014
|
+
BEGIN:VEVENT
|
1015
|
+
DTSTART;TZID=Australia/Brisbane:20090218T183000
|
1016
|
+
DTEND;TZID=Australia/Brisbane:20090218T203000
|
1017
|
+
DTSTAMP:20090531T005744Z
|
1018
|
+
UID:E2A6531D-B8B0-4C36-862A-E90C84F66DF0
|
1019
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1020
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1021
|
+
ndar.google.com
|
1022
|
+
RECURRENCE-ID;TZID=Australia/Brisbane:20090202T183000
|
1023
|
+
CLASS:PUBLIC
|
1024
|
+
CREATED:20090209T230154Z
|
1025
|
+
DESCRIPTION:Nathan Day is coming up from Sydney to talk about a whole bunch
|
1026
|
+
of Cocoa libraries/projects that he's authored:\n\nNDAlias\n•Alias Records
|
1027
|
+
\n•Core API\n•Alias File extension (Optional)\nNDLaunchServices\n•alternati
|
1028
|
+
ve to NSWorkspace\n•open array of files\nNDHotKeyEvent\n•what are Hot Key E
|
1029
|
+
vents\n•What NDHotKeyEvent does\nNDProcess\n•what is it\n•how it differs fr
|
1030
|
+
om UNIX information\nNDResourceFork\n•What are resource forks\n•structured
|
1031
|
+
data API\n•raw data API\nNDRunLoopMessenger\n•what is DO\n•why regular DO i
|
1032
|
+
s over kill\n•target:performSelector: methods\n•postNotification:\n•proxy\n
|
1033
|
+
NDScript\n•NDAppleScriptObject replacement\n•three kinds of AppleScript Dat
|
1034
|
+
a\n•script data\n•script handlers\n•script context (AppleScript)\n•coercion
|
1035
|
+
\n•other features\n•execution of script in separate thread\nNDFiber\n•What
|
1036
|
+
are fibers\n•use in NDScript\n•why you should not use them usually\nSTT(X)\
|
1037
|
+
n•generate XML from structured text\n•nested regular expressions\n•possible
|
1038
|
+
uses\n•headerDoc replacement\n•source code generation
|
1039
|
+
LAST-MODIFIED:20090209T230244Z
|
1040
|
+
LOCATION:Toowong Library
|
1041
|
+
SEQUENCE:8
|
1042
|
+
STATUS:CONFIRMED
|
1043
|
+
SUMMARY:Brisbane Cocoaheads
|
1044
|
+
TRANSP:OPAQUE
|
1045
|
+
END:VEVENT
|
1046
|
+
BEGIN:VEVENT
|
1047
|
+
DTSTART;TZID=Australia/Brisbane:20081006T183000
|
1048
|
+
DTEND;TZID=Australia/Brisbane:20081006T203000
|
1049
|
+
RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=1MO
|
1050
|
+
DTSTAMP:20090531T005744Z
|
1051
|
+
UID:E2A6531D-B8B0-4C36-862A-E90C84F66DF0
|
1052
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
1053
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
1054
|
+
.google.com
|
1055
|
+
CLASS:PUBLIC
|
1056
|
+
CREATED:20090209T230154Z
|
1057
|
+
DESCRIPTION:
|
1058
|
+
LAST-MODIFIED:20090209T230243Z
|
1059
|
+
LOCATION:Toowong Library
|
1060
|
+
SEQUENCE:5
|
1061
|
+
STATUS:CONFIRMED
|
1062
|
+
SUMMARY:Brisbane Cocoaheads
|
1063
|
+
TRANSP:OPAQUE
|
1064
|
+
END:VEVENT
|
1065
|
+
BEGIN:VEVENT
|
1066
|
+
DTSTART:20090204T033000Z
|
1067
|
+
DTEND:20090204T053000Z
|
1068
|
+
DTSTAMP:20090531T005744Z
|
1069
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
1070
|
+
UID:6l3ci9merssldbgrueam4jbjt8@google.com
|
1071
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1072
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1073
|
+
ndar.google.com
|
1074
|
+
CLASS:PUBLIC
|
1075
|
+
CREATED:20090113T011859Z
|
1076
|
+
DESCRIPTION:
|
1077
|
+
LAST-MODIFIED:20090204T022051Z
|
1078
|
+
LOCATION:National Library of Australia\, Canberra
|
1079
|
+
SEQUENCE:0
|
1080
|
+
STATUS:CONFIRMED
|
1081
|
+
SUMMARY:Canberra WSG meeting
|
1082
|
+
TRANSP:OPAQUE
|
1083
|
+
END:VEVENT
|
1084
|
+
BEGIN:VEVENT
|
1085
|
+
DTSTART:20090210T063000Z
|
1086
|
+
DTEND:20090210T080000Z
|
1087
|
+
DTSTAMP:20090531T005744Z
|
1088
|
+
ORGANIZER;CN=Pamela Fox:mailto:pamelafox@google.com
|
1089
|
+
UID:2plmfrlrst14vrc7nqg9kp5lsc@google.com
|
1090
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1091
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1092
|
+
ndar.google.com
|
1093
|
+
CLASS:PUBLIC
|
1094
|
+
CREATED:20090129T010355Z
|
1095
|
+
DESCRIPTION:GMail recently introduced offline support using the Gears plugi
|
1096
|
+
n. We'll go over the various modules in Gears\, and focus on those that ena
|
1097
|
+
ble offline support. \nThe codelab will involve taking a website offline (r
|
1098
|
+
esources and data).\n\nMore info here:\nhttp://sites.google.com/site/gdevel
|
1099
|
+
operworkshopsyd/\n
|
1100
|
+
LAST-MODIFIED:20090204T003547Z
|
1101
|
+
LOCATION:SYD-DAR-18-Fraser (20) VC
|
1102
|
+
SEQUENCE:0
|
1103
|
+
STATUS:CONFIRMED
|
1104
|
+
SUMMARY:Google Developer Workshop: Gears
|
1105
|
+
TRANSP:OPAQUE
|
1106
|
+
END:VEVENT
|
1107
|
+
BEGIN:VEVENT
|
1108
|
+
DTSTART:20090202T063000Z
|
1109
|
+
DTEND:20090202T083000Z
|
1110
|
+
DTSTAMP:20090531T005744Z
|
1111
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
1112
|
+
UID:eaketgv17tgdnfn1cdh4tkmur8@google.com
|
1113
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1114
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1115
|
+
ndar.google.com
|
1116
|
+
CLASS:PUBLIC
|
1117
|
+
CREATED:20090107T204523Z
|
1118
|
+
DESCRIPTION:http://groups.google.com.au/group/uxbookclubcanberra/\nhttp://u
|
1119
|
+
xbookclub.org/doku.php?id=canberra\n
|
1120
|
+
LAST-MODIFIED:20090202T122729Z
|
1121
|
+
LOCATION:Trinity\, Dickson
|
1122
|
+
SEQUENCE:0
|
1123
|
+
STATUS:CONFIRMED
|
1124
|
+
SUMMARY:UXBookClub Canberra
|
1125
|
+
TRANSP:OPAQUE
|
1126
|
+
END:VEVENT
|
1127
|
+
BEGIN:VEVENT
|
1128
|
+
DTSTART:20090212T203000Z
|
1129
|
+
DTEND:20090212T213000Z
|
1130
|
+
DTSTAMP:20090531T005744Z
|
1131
|
+
UID:ftdr3uh6qf3p96uekpram3r560@google.com
|
1132
|
+
CLASS:PUBLIC
|
1133
|
+
CREATED:20090202T110727Z
|
1134
|
+
DESCRIPTION:
|
1135
|
+
LAST-MODIFIED:20090202T110727Z
|
1136
|
+
LOCATION:
|
1137
|
+
SEQUENCE:0
|
1138
|
+
STATUS:CONFIRMED
|
1139
|
+
SUMMARY:Social Coffee - Sacred Grounds Surry Hills
|
1140
|
+
TRANSP:OPAQUE
|
1141
|
+
END:VEVENT
|
1142
|
+
BEGIN:VEVENT
|
1143
|
+
DTSTART:20080605T080000Z
|
1144
|
+
DTEND:20080605T110000Z
|
1145
|
+
DTSTAMP:20090531T005744Z
|
1146
|
+
ORGANIZER;CN=Sydney PHP Group:mailto:gd7e9voq3odsh6l2io5p1gonu4@group.calen
|
1147
|
+
dar.google.com
|
1148
|
+
UID:co50vn8pdeminu47uvnfcho4fg@google.com
|
1149
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1150
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1151
|
+
ndar.google.com
|
1152
|
+
RECURRENCE-ID:20080605T080000Z
|
1153
|
+
CLASS:PUBLIC
|
1154
|
+
CREATED:20080605T050305Z
|
1155
|
+
DESCRIPTION:The Sydney PHP Group meets every first Thursday of the month\,
|
1156
|
+
with the exception of January (holidays). For venue information\, visit syd
|
1157
|
+
php.org
|
1158
|
+
LAST-MODIFIED:20090201T233144Z
|
1159
|
+
LOCATION:Sydney\, Australia
|
1160
|
+
SEQUENCE:0
|
1161
|
+
STATUS:CONFIRMED
|
1162
|
+
SUMMARY:Sydney PHP Group monthly meeting
|
1163
|
+
TRANSP:TRANSPARENT
|
1164
|
+
END:VEVENT
|
1165
|
+
BEGIN:VEVENT
|
1166
|
+
DTSTART;TZID=Australia/Sydney:20080605T180000
|
1167
|
+
DTEND;TZID=Australia/Sydney:20080605T210000
|
1168
|
+
RRULE:FREQ=MONTHLY;BYDAY=1TH;WKST=SU
|
1169
|
+
EXDATE;TZID=Australia/Sydney:20090402T180000
|
1170
|
+
DTSTAMP:20090531T005744Z
|
1171
|
+
ORGANIZER;CN=Sydney PHP Group:mailto:gd7e9voq3odsh6l2io5p1gonu4@group.calen
|
1172
|
+
dar.google.com
|
1173
|
+
UID:co50vn8pdeminu47uvnfcho4fg@google.com
|
1174
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1175
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1176
|
+
ndar.google.com
|
1177
|
+
CLASS:PUBLIC
|
1178
|
+
CREATED:20080605T050305Z
|
1179
|
+
DESCRIPTION:The Sydney PHP Group meets every first Thursday of the month\,
|
1180
|
+
with the exception of January (holidays). For venue information\, visit syd
|
1181
|
+
php.org
|
1182
|
+
LAST-MODIFIED:20090201T233142Z
|
1183
|
+
LOCATION:Sydney\, Australia
|
1184
|
+
SEQUENCE:0
|
1185
|
+
STATUS:CONFIRMED
|
1186
|
+
SUMMARY:Sydney PHP Group monthly meeting
|
1187
|
+
TRANSP:TRANSPARENT
|
1188
|
+
END:VEVENT
|
1189
|
+
BEGIN:VEVENT
|
1190
|
+
DTSTART:20090204T060000Z
|
1191
|
+
DTEND:20090204T070000Z
|
1192
|
+
DTSTAMP:20090531T005744Z
|
1193
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
1194
|
+
UID:jdocil71vgt0p3pp1mrqbtd9l4@google.com
|
1195
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1196
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1197
|
+
ndar.google.com
|
1198
|
+
CLASS:PUBLIC
|
1199
|
+
CREATED:20090120T122438Z
|
1200
|
+
DESCRIPTION:Back-up plan is PJ's. Please RSVP direct to Nathanael Boehm @Na
|
1201
|
+
thanaelB and get on the CTUB mailing list.
|
1202
|
+
LAST-MODIFIED:20090201T201719Z
|
1203
|
+
LOCATION:Muddle Bar
|
1204
|
+
SEQUENCE:2
|
1205
|
+
STATUS:CONFIRMED
|
1206
|
+
SUMMARY:CTUB drinks at Muddle Bar
|
1207
|
+
TRANSP:OPAQUE
|
1208
|
+
END:VEVENT
|
1209
|
+
BEGIN:VEVENT
|
1210
|
+
DTSTART:20090203T063000Z
|
1211
|
+
DTEND:20090203T080000Z
|
1212
|
+
DTSTAMP:20090531T005744Z
|
1213
|
+
ORGANIZER;CN=Pamela Fox:mailto:pamelafox@google.com
|
1214
|
+
UID:8rhup4mc4oqfghc2lq41bv9t9o@google.com
|
1215
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1216
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1217
|
+
ndar.google.com
|
1218
|
+
CLASS:PUBLIC
|
1219
|
+
CREATED:20090129T010506Z
|
1220
|
+
DESCRIPTION:We'll go over what the new Maps API for Flash can do\, and show
|
1221
|
+
how to easily integrate it with other libraries for parsing XML/GeoRSS/KML
|
1222
|
+
/JSON. We'll also show how to use it with the HTTP version of the Google AJ
|
1223
|
+
AX libraries. The talk will include an introduction to ActionScript3\, Flex
|
1224
|
+
development\, and Flex controls.\nThe codelab will be making a map that us
|
1225
|
+
es all of the features of the API\, and the free Flex SDK.\n\nMore info her
|
1226
|
+
e:\nhttp://sites.google.com/site/gdeveloperworkshopsyd/\n
|
1227
|
+
LAST-MODIFIED:20090129T060401Z
|
1228
|
+
LOCATION:SYD-DAR-18-Fraser (20) VC
|
1229
|
+
SEQUENCE:0
|
1230
|
+
STATUS:CONFIRMED
|
1231
|
+
SUMMARY:Google Developer Workshop: The Maps API for Flash
|
1232
|
+
TRANSP:OPAQUE
|
1233
|
+
END:VEVENT
|
1234
|
+
BEGIN:VEVENT
|
1235
|
+
DTSTART:20090310T063000Z
|
1236
|
+
DTEND:20090310T083000Z
|
1237
|
+
DTSTAMP:20090531T005744Z
|
1238
|
+
ORGANIZER;CN=Pamela Fox:mailto:pamelafox@google.com
|
1239
|
+
UID:3p0b0iomvmlh1oiced0ai38ed0@google.com
|
1240
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1241
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1242
|
+
ndar.google.com
|
1243
|
+
CLASS:PUBLIC
|
1244
|
+
CREATED:20090129T003123Z
|
1245
|
+
DESCRIPTION:Google Spreadsheets is more than just a web version of Microsof
|
1246
|
+
t Excel - it also has a full read/write Google data (AtomPUB) API\, and sup
|
1247
|
+
port for Google Visualization API Gadgets. This talk will introduce both of
|
1248
|
+
these ways of enhancing the functionality of spreadsheets - from the simpl
|
1249
|
+
e to the sophisticated.\nThe codelab will involve making a spreadsheets-bas
|
1250
|
+
ed map\, and a spreadsheets-powered command-line database.\n\nMore info her
|
1251
|
+
e:\nhttp://sites.google.com/site/gdeveloperworkshopsyd/\n
|
1252
|
+
LAST-MODIFIED:20090129T035854Z
|
1253
|
+
LOCATION:SYD-DAR-18-Fraser (20) VC\, SYD-DAR-18-Perkins (20)
|
1254
|
+
SEQUENCE:4
|
1255
|
+
STATUS:CONFIRMED
|
1256
|
+
SUMMARY:Google Developer Workshop: Spreadsheets API & Gadgets
|
1257
|
+
TRANSP:OPAQUE
|
1258
|
+
END:VEVENT
|
1259
|
+
BEGIN:VEVENT
|
1260
|
+
DTSTART;TZID=Australia/Sydney:20090107T180000
|
1261
|
+
DTEND;TZID=Australia/Sydney:20090107T200000
|
1262
|
+
RRULE:FREQ=MONTHLY;BYDAY=1WE;WKST=MO;UNTIL=20090202T125959Z
|
1263
|
+
DTSTAMP:20090531T005744Z
|
1264
|
+
UID:1a4qtqirorlui4upotput1d1qs@google.com
|
1265
|
+
CLASS:PUBLIC
|
1266
|
+
CREATED:20090106T021722Z
|
1267
|
+
DESCRIPTION:http://maps.google.com.au/maps/ms?ie=UTF8&om=1&hl=en&msa=0&msid
|
1268
|
+
=106883881245726865333.00044470f9f8eacb3e8a2&ll=-33.868687\,151.193365&spn=
|
1269
|
+
0.002441\,0.004372&t=h&z=18
|
1270
|
+
LAST-MODIFIED:20090128T114617Z
|
1271
|
+
LOCATION:Pyrmont basketball courts
|
1272
|
+
SEQUENCE:1
|
1273
|
+
STATUS:CONFIRMED
|
1274
|
+
SUMMARY:Silicon Beach Basketball - Sydney
|
1275
|
+
TRANSP:OPAQUE
|
1276
|
+
END:VEVENT
|
1277
|
+
BEGIN:VEVENT
|
1278
|
+
DTSTART:20090204T073000Z
|
1279
|
+
DTEND:20090204T100000Z
|
1280
|
+
DTSTAMP:20090531T005744Z
|
1281
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
1282
|
+
UID:ndvls5hg6nvejcfkpuc9tdh27c@google.com
|
1283
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1284
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1285
|
+
ndar.google.com
|
1286
|
+
CLASS:PUBLIC
|
1287
|
+
CREATED:20090120T122515Z
|
1288
|
+
DESCRIPTION:Dickson Asian Noodle House. Please RSVP direct to Nathanael Boe
|
1289
|
+
hm @NathanaelB by midday 2 Feb.
|
1290
|
+
LAST-MODIFIED:20090120T122515Z
|
1291
|
+
LOCATION:DANH
|
1292
|
+
SEQUENCE:0
|
1293
|
+
STATUS:CONFIRMED
|
1294
|
+
SUMMARY:CTUB dinner at DANH
|
1295
|
+
TRANSP:OPAQUE
|
1296
|
+
END:VEVENT
|
1297
|
+
BEGIN:VEVENT
|
1298
|
+
DTSTART;VALUE=DATE:20090217
|
1299
|
+
DTEND;VALUE=DATE:20090218
|
1300
|
+
DTSTAMP:20090531T005744Z
|
1301
|
+
ORGANIZER;CN=P Rai:mailto:dekrazee1@gmail.com
|
1302
|
+
UID:h6ep9o55oo1789aln0j572gmg0@google.com
|
1303
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1304
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1305
|
+
ndar.google.com
|
1306
|
+
CLASS:PUBLIC
|
1307
|
+
CREATED:20090119T074940Z
|
1308
|
+
DESCRIPTION:http://adknowledgesydney.eventbrite.com/
|
1309
|
+
LAST-MODIFIED:20090119T075758Z
|
1310
|
+
LOCATION:
|
1311
|
+
SEQUENCE:0
|
1312
|
+
STATUS:CONFIRMED
|
1313
|
+
SUMMARY:The Digital Tipping Point:
|
1314
|
+
TRANSP:TRANSPARENT
|
1315
|
+
END:VEVENT
|
1316
|
+
BEGIN:VEVENT
|
1317
|
+
DTSTART:20090120T063000Z
|
1318
|
+
DTEND:20090120T093000Z
|
1319
|
+
DTSTAMP:20090531T005744Z
|
1320
|
+
ORGANIZER;CN=P Rai:mailto:dekrazee1@gmail.com
|
1321
|
+
UID:ld1c8tghjffcgm8uql0aururkg@google.com
|
1322
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1323
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1324
|
+
ndar.google.com
|
1325
|
+
CLASS:PUBLIC
|
1326
|
+
CREATED:20090119T073835Z
|
1327
|
+
DESCRIPTION:I'm available for any enquiries - T @deswalsh or 0413 089 355 -
|
1328
|
+
via Des Walsh
|
1329
|
+
LAST-MODIFIED:20090119T073836Z
|
1330
|
+
LOCATION:Melbourne Hotel\, West End
|
1331
|
+
SEQUENCE:0
|
1332
|
+
STATUS:CONFIRMED
|
1333
|
+
SUMMARY:Social Media Club meetup
|
1334
|
+
TRANSP:OPAQUE
|
1335
|
+
END:VEVENT
|
1336
|
+
BEGIN:VEVENT
|
1337
|
+
DTSTART;TZID=Australia/Sydney:20090127T180000
|
1338
|
+
DTEND;TZID=Australia/Sydney:20090127T200000
|
1339
|
+
RRULE:FREQ=WEEKLY;INTERVAL=2;BYDAY=TU;WKST=MO
|
1340
|
+
DTSTAMP:20090531T005744Z
|
1341
|
+
UID:vf6v37nuk5ec8p624gr71jrvq8@google.com
|
1342
|
+
CLASS:PUBLIC
|
1343
|
+
CREATED:20090106T021722Z
|
1344
|
+
DESCRIPTION:http://maps.google.com.au/maps/ms?ie=UTF8&om=1&hl=en&msa=0&msid
|
1345
|
+
=106883881245726865333.00044470f9f8eacb3e8a2&ll=-33.868687\,151.193365&spn=
|
1346
|
+
0.002441\,0.004372&t=h&z=18
|
1347
|
+
LAST-MODIFIED:20090119T061248Z
|
1348
|
+
LOCATION:Pyrmont basketball courts
|
1349
|
+
SEQUENCE:5
|
1350
|
+
STATUS:CONFIRMED
|
1351
|
+
SUMMARY:Silicon Bech Basketball - Sydney
|
1352
|
+
TRANSP:OPAQUE
|
1353
|
+
END:VEVENT
|
1354
|
+
BEGIN:VEVENT
|
1355
|
+
DTSTART;TZID=Australia/Sydney:20090123T080000
|
1356
|
+
DTEND;TZID=Australia/Sydney:20090123T100000
|
1357
|
+
RRULE:FREQ=WEEKLY;BYDAY=FR;WKST=SU
|
1358
|
+
DTSTAMP:20090531T005744Z
|
1359
|
+
UID:vt8n131fbgv6j01mb4vaadt5dk@google.com
|
1360
|
+
CLASS:PUBLIC
|
1361
|
+
CREATED:20090119T030944Z
|
1362
|
+
DESCRIPTION:Details at http://www.rosshill.com.au/article/social-media-brea
|
1363
|
+
kfast-melbourne/
|
1364
|
+
LAST-MODIFIED:20090119T030944Z
|
1365
|
+
LOCATION:Mr Tulk Cafe (at State Library opposite Melbourne Central)
|
1366
|
+
SEQUENCE:0
|
1367
|
+
STATUS:CONFIRMED
|
1368
|
+
SUMMARY:Melbourne Social Media Breakfast
|
1369
|
+
TRANSP:OPAQUE
|
1370
|
+
END:VEVENT
|
1371
|
+
BEGIN:VEVENT
|
1372
|
+
DTSTART;TZID=Australia/Brisbane:20081215T180000
|
1373
|
+
DTEND;TZID=Australia/Brisbane:20081215T200000
|
1374
|
+
RRULE:FREQ=MONTHLY;INTERVAL=1;UNTIL=20090118T135959Z;BYDAY=3MO
|
1375
|
+
DTSTAMP:20090531T005744Z
|
1376
|
+
UID:625E1795-5F15-400C-A7D3-0BA6F3DC1F0C
|
1377
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1378
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1379
|
+
ndar.google.com
|
1380
|
+
URL:http://events.linkedin.com/pub/13182
|
1381
|
+
CLASS:PUBLIC
|
1382
|
+
CREATED:20081215T012701Z
|
1383
|
+
DESCRIPTION:If you are based in Brisbane and want to surf the Mobile Tsunam
|
1384
|
+
i in to 2009\, then come and chat mo with other mobile monday industry prof
|
1385
|
+
essionals.\nThis event is open with no set agenda apart from introductions
|
1386
|
+
and if you want to demo what you do then let me know in advance.\nMobile Mo
|
1387
|
+
nday Brisbane - now happening every 3rd Monday of the Month.
|
1388
|
+
LAST-MODIFIED:20090115T231224Z
|
1389
|
+
LOCATION:V Lounge\, 115 Wickham Street Fortitude Valley\, 4006
|
1390
|
+
SEQUENCE:10
|
1391
|
+
STATUS:CONFIRMED
|
1392
|
+
SUMMARY:Mobile Monday Brisbane
|
1393
|
+
TRANSP:OPAQUE
|
1394
|
+
END:VEVENT
|
1395
|
+
BEGIN:VEVENT
|
1396
|
+
DTSTART;TZID=Australia/Brisbane:20090119T180000
|
1397
|
+
DTEND;TZID=Australia/Brisbane:20090119T200000
|
1398
|
+
RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=3MO
|
1399
|
+
DTSTAMP:20090531T005744Z
|
1400
|
+
UID:15F3591A-10A8-4E09-9D5B-25E4C00F185E
|
1401
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1402
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1403
|
+
ndar.google.com
|
1404
|
+
URL:http://events.linkedin.com/pub/29352
|
1405
|
+
CLASS:PUBLIC
|
1406
|
+
CREATED:20090115T231218Z
|
1407
|
+
DESCRIPTION:If you are based in Brisbane and want to surf the Mobile Tsunam
|
1408
|
+
i in to 2009\, then come and chat mo with other mobile monday industry prof
|
1409
|
+
essionals.\nThis event is open with no set agenda apart from introductions
|
1410
|
+
and if you want to demo what you do then let me know in advance.\nMobile Mo
|
1411
|
+
nday Brisbane - now happening every 3rd Monday of the Month.
|
1412
|
+
LAST-MODIFIED:20090115T231219Z
|
1413
|
+
LOCATION:V Lounge\, 115 Wickham Street Fortitude Valley\, 4006
|
1414
|
+
SEQUENCE:9
|
1415
|
+
STATUS:CONFIRMED
|
1416
|
+
SUMMARY:Mobile Monday Brisbane
|
1417
|
+
TRANSP:OPAQUE
|
1418
|
+
END:VEVENT
|
1419
|
+
BEGIN:VEVENT
|
1420
|
+
DTSTART:20090115T210000Z
|
1421
|
+
DTEND:20090115T220000Z
|
1422
|
+
DTSTAMP:20090531T005744Z
|
1423
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
1424
|
+
UID:1fkcbn880c638ov7rkdscnhpv4@google.com
|
1425
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1426
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1427
|
+
ndar.google.com
|
1428
|
+
CLASS:PUBLIC
|
1429
|
+
CREATED:20090113T203607Z
|
1430
|
+
DESCRIPTION:http://www.facebook.com/event.php?eid=60485730201
|
1431
|
+
LAST-MODIFIED:20090113T203650Z
|
1432
|
+
LOCATION:CREAM cafe\, Bunda Street\, Canberra\, Australia
|
1433
|
+
SEQUENCE:0
|
1434
|
+
STATUS:CONFIRMED
|
1435
|
+
SUMMARY:Social Media Club Canberra breakfast
|
1436
|
+
TRANSP:OPAQUE
|
1437
|
+
END:VEVENT
|
1438
|
+
BEGIN:VEVENT
|
1439
|
+
DTSTART:20090128T074500Z
|
1440
|
+
DTEND:20090128T110000Z
|
1441
|
+
DTSTAMP:20090531T005744Z
|
1442
|
+
UID:AE617672-AED1-46D9-AE1E-30CDAE5DFF41
|
1443
|
+
URL:http://barcamp.org/BrisbaneMobility2009-1
|
1444
|
+
CLASS:PUBLIC
|
1445
|
+
CREATED:20090111T222021Z
|
1446
|
+
DESCRIPTION:
|
1447
|
+
LAST-MODIFIED:20090111T222124Z
|
1448
|
+
LOCATION:UQ\, School of ITEE\, GP South Building
|
1449
|
+
SEQUENCE:6
|
1450
|
+
STATUS:CONFIRMED
|
1451
|
+
SUMMARY:Brisbane Android & Mobile Intenet User's Group
|
1452
|
+
TRANSP:OPAQUE
|
1453
|
+
END:VEVENT
|
1454
|
+
BEGIN:VEVENT
|
1455
|
+
DTSTART:20090327T220000Z
|
1456
|
+
DTEND:20090328T060000Z
|
1457
|
+
DTSTAMP:20090531T005744Z
|
1458
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
1459
|
+
UID:csqrs542lga4kajs026jptrq1g@google.com
|
1460
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1461
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1462
|
+
ndar.google.com
|
1463
|
+
CLASS:PUBLIC
|
1464
|
+
CREATED:20090109T213530Z
|
1465
|
+
DESCRIPTION:
|
1466
|
+
LAST-MODIFIED:20090109T213531Z
|
1467
|
+
LOCATION:ANU\, Canberra
|
1468
|
+
SEQUENCE:0
|
1469
|
+
STATUS:CONFIRMED
|
1470
|
+
SUMMARY:BarCampCanberra v2
|
1471
|
+
TRANSP:OPAQUE
|
1472
|
+
END:VEVENT
|
1473
|
+
BEGIN:VEVENT
|
1474
|
+
DTSTART;VALUE=DATE:20090117
|
1475
|
+
DTEND;VALUE=DATE:20090119
|
1476
|
+
DTSTAMP:20090531T005744Z
|
1477
|
+
ORGANIZER;CN=P Rai:mailto:dekrazee1@gmail.com
|
1478
|
+
UID:rjgtnqli2hlasls7lje86nsj4o@google.com
|
1479
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1480
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1481
|
+
ndar.google.com
|
1482
|
+
CLASS:PUBLIC
|
1483
|
+
CREATED:20090106T015805Z
|
1484
|
+
DESCRIPTION:'Exercise for entrepreneurs'\nhttp://www.startup-australia.org/
|
1485
|
+
startupcamp2signup
|
1486
|
+
LAST-MODIFIED:20090106T020307Z
|
1487
|
+
LOCATION:ATP Innovations Suite 145\, Level 1\, National Innovation Centre A
|
1488
|
+
ustralian Technology Park Eveleigh NSW 1430 http://www.atp-innovations.com.
|
1489
|
+
au/finding-us-directions/
|
1490
|
+
SEQUENCE:0
|
1491
|
+
STATUS:CONFIRMED
|
1492
|
+
SUMMARY:StartupCamp II (Sydney)
|
1493
|
+
TRANSP:TRANSPARENT
|
1494
|
+
END:VEVENT
|
1495
|
+
BEGIN:VEVENT
|
1496
|
+
DTSTART;TZID=Australia/Brisbane:20081117T180000
|
1497
|
+
DTEND;TZID=Australia/Brisbane:20081117T200000
|
1498
|
+
RRULE:FREQ=MONTHLY;INTERVAL=1;UNTIL=20081214T135959Z;BYDAY=3MO
|
1499
|
+
DTSTAMP:20090531T005744Z
|
1500
|
+
UID:47D77CCC-B219-41C5-98DB-9D83B3960B59
|
1501
|
+
URL:http://events.linkedin.com/pub/13182
|
1502
|
+
CLASS:PUBLIC
|
1503
|
+
CREATED:00001231T000000Z
|
1504
|
+
DESCRIPTION:The first Mobile Monday Brisbane.\nIf you are based in Brisbane
|
1505
|
+
and want to surf the Mobile Tsunami in to 2009\, then come and chat mo wit
|
1506
|
+
h other mobile monday industry professionals.\nThis event is open with no s
|
1507
|
+
et agenda apart from introductions and if you want to demo what you do then
|
1508
|
+
let me know in advance.\nMobile Monday Brisbane - now happening every 3rd
|
1509
|
+
Monday of the Month.
|
1510
|
+
LAST-MODIFIED:20081215T012705Z
|
1511
|
+
LOCATION:V Lounge\, 115 Wickham Street Fortitude Valley\, 4006
|
1512
|
+
SEQUENCE:10
|
1513
|
+
STATUS:CONFIRMED
|
1514
|
+
SUMMARY:Mobile Monday Brisbane
|
1515
|
+
TRANSP:OPAQUE
|
1516
|
+
END:VEVENT
|
1517
|
+
BEGIN:VEVENT
|
1518
|
+
DTSTART:20081216T070000Z
|
1519
|
+
DTEND:20081216T110000Z
|
1520
|
+
DTSTAMP:20090531T005744Z
|
1521
|
+
UID:4liq5mllmgtomtnsoguunen75o@google.com
|
1522
|
+
CLASS:PUBLIC
|
1523
|
+
CREATED:20081210T010948Z
|
1524
|
+
DESCRIPTION:http://www.facebook.com/home.php#/event.php?eid=43757231313\n\n
|
1525
|
+
Centennial Hotel (Front Bar)\nStreet:\n88 Oxford Street\, Woollahra
|
1526
|
+
LAST-MODIFIED:20081210T010949Z
|
1527
|
+
LOCATION:
|
1528
|
+
SEQUENCE:0
|
1529
|
+
STATUS:CONFIRMED
|
1530
|
+
SUMMARY:Entreprenuer and Self Employed
|
1531
|
+
TRANSP:OPAQUE
|
1532
|
+
END:VEVENT
|
1533
|
+
BEGIN:VEVENT
|
1534
|
+
DTSTART;TZID=Australia/Sydney:20080815T170000
|
1535
|
+
DTEND;TZID=Australia/Sydney:20080815T200000
|
1536
|
+
RRULE:FREQ=WEEKLY;BYDAY=FR;WKST=SU;UNTIL=20081211T125959Z
|
1537
|
+
DTSTAMP:20090531T005744Z
|
1538
|
+
UID:ta2m43n5fsntvnl52fid34mbik@google.com
|
1539
|
+
CLASS:PUBLIC
|
1540
|
+
CREATED:20080608T221354Z
|
1541
|
+
DESCRIPTION:Everyone is welcome for these Friday drinks a good pub. Anyone
|
1542
|
+
in IT\, web\, start-ups\, grown-ups\, programmers\, analysts\, entrepreneur
|
1543
|
+
s\, product people\, QA\, designers. \n\nSydney:\nEvery Friday from 5pm in
|
1544
|
+
the Grace Hotel 77Bar on the Mezzanine level\, cnr King and York\n\nPost on
|
1545
|
+
the Silicon Beach mailing list if unsure: http://siliconbeachaustralia.org
|
1546
|
+
LAST-MODIFIED:20081207T083213Z
|
1547
|
+
LOCATION:Sydney: Grace hotel
|
1548
|
+
SEQUENCE:1
|
1549
|
+
STATUS:CONFIRMED
|
1550
|
+
SUMMARY:Official Friday: Australian IT Geek Drinks
|
1551
|
+
TRANSP:OPAQUE
|
1552
|
+
END:VEVENT
|
1553
|
+
BEGIN:VEVENT
|
1554
|
+
DTSTART;TZID=Australia/Sydney:20081212T170000
|
1555
|
+
DTEND;TZID=Australia/Sydney:20081212T200000
|
1556
|
+
RRULE:FREQ=WEEKLY;BYDAY=FR;WKST=SU
|
1557
|
+
DTSTAMP:20090531T005744Z
|
1558
|
+
UID:loia1b0vm4ovlu5n56bi9564uc@google.com
|
1559
|
+
CLASS:PUBLIC
|
1560
|
+
CREATED:20080608T221354Z
|
1561
|
+
DESCRIPTION:Everyone is welcome for these Friday drinks a good pub. Anyone
|
1562
|
+
in IT\, web\, start-ups\, grown-ups\, programmers\, analysts\, entrepreneur
|
1563
|
+
s\, product people\, QA\, designers. \n\nSydney:\nEvery Friday from 5pm in
|
1564
|
+
the Grace Hotel 77Bar on the Mezzanine level\, cnr King and York\n\nMelbour
|
1565
|
+
ne:\nTrunk\, 275 Exhibition St Melbourne\n\nPost on the Silicon Beach mail
|
1566
|
+
ing list if unsure: http://siliconbeachaustralia.org
|
1567
|
+
LAST-MODIFIED:20081207T083213Z
|
1568
|
+
LOCATION:Sydney: Grace hotel
|
1569
|
+
SEQUENCE:3
|
1570
|
+
STATUS:CONFIRMED
|
1571
|
+
SUMMARY:Official Friday: Australian IT Geek Drinks
|
1572
|
+
TRANSP:OPAQUE
|
1573
|
+
END:VEVENT
|
1574
|
+
BEGIN:VEVENT
|
1575
|
+
DTSTART;VALUE=DATE:20081213
|
1576
|
+
DTEND;VALUE=DATE:20081214
|
1577
|
+
DTSTAMP:20090531T005744Z
|
1578
|
+
ORGANIZER;CN=Pamela Fox:mailto:pamelafox@google.com
|
1579
|
+
UID:4add59oorr2j3m0l31qfl7um40@google.com
|
1580
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1581
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1582
|
+
ndar.google.com
|
1583
|
+
CLASS:PUBLIC
|
1584
|
+
CREATED:20081124T043401Z
|
1585
|
+
DESCRIPTION:Join us for a half-day of hacking in the iGoogle OpenSocial san
|
1586
|
+
dbox!\n\nThis hackathon is intended for developers who are either already i
|
1587
|
+
Google OpenSocial developers and want an excuse to get some work done in th
|
1588
|
+
e company of others\, or experienced web developers who want to start creat
|
1589
|
+
ing OpenSocial apps.\n\nSeats are limited\, so follow the instructions on t
|
1590
|
+
he wiki to sign-up for the event:\nhttp://wiki.opensocial.org/index.php?tit
|
1591
|
+
le=IGoogle_OpenSocial_Hackathon\n\n
|
1592
|
+
LAST-MODIFIED:20081205T053649Z
|
1593
|
+
LOCATION:201 Sussex St Sydney Australia
|
1594
|
+
SEQUENCE:0
|
1595
|
+
STATUS:CONFIRMED
|
1596
|
+
SUMMARY:OpenSocial Hackathon
|
1597
|
+
TRANSP:TRANSPARENT
|
1598
|
+
END:VEVENT
|
1599
|
+
BEGIN:VEVENT
|
1600
|
+
DTSTART:20081212T070000Z
|
1601
|
+
DTEND:20081212T093000Z
|
1602
|
+
DTSTAMP:20090531T005744Z
|
1603
|
+
UID:9rnog2qpmcmpol93qt5rgoln40@google.com
|
1604
|
+
CLASS:PUBLIC
|
1605
|
+
CREATED:20081111T040351Z
|
1606
|
+
DESCRIPTION:
|
1607
|
+
LAST-MODIFIED:20081204T081717Z
|
1608
|
+
LOCATION:
|
1609
|
+
SEQUENCE:1
|
1610
|
+
STATUS:CONFIRMED
|
1611
|
+
SUMMARY:Webblast
|
1612
|
+
TRANSP:OPAQUE
|
1613
|
+
END:VEVENT
|
1614
|
+
BEGIN:VEVENT
|
1615
|
+
DTSTART:20081216T023000Z
|
1616
|
+
DTEND:20081216T033000Z
|
1617
|
+
DTSTAMP:20090531T005744Z
|
1618
|
+
UID:ABDD6B42-AC59-47AE-9D23-B73EFE0E020D
|
1619
|
+
URL:message:%3C7c8e03ed0812011742k21e835an9fd9f9090abfb570@mail.gmail.com%3
|
1620
|
+
E
|
1621
|
+
CLASS:PUBLIC
|
1622
|
+
CREATED:20081203T221135Z
|
1623
|
+
DESCRIPTION:Greg Davis will be giving a presentation on Highly Componentise
|
1624
|
+
d Java Systems\n\n"Employing XP practices in a disciplined way at the coal
|
1625
|
+
face has had a profound impact on our Java coding style. Extremely powerfu
|
1626
|
+
l concepts and patterns continually emerge and are harvested. These concep
|
1627
|
+
ts are then leverage by the team to ramp up their velocity.\n\n"This contin
|
1628
|
+
ual harvesting of patterns has created a Java programming style which is hi
|
1629
|
+
ghly "componentised". Small reusable patterns and approaches are assembled
|
1630
|
+
into "components" which produce rock solid\, easily understandable and doc
|
1631
|
+
umentable systems.\n\n"This presentation demonstrates this highly component
|
1632
|
+
ised approach and how it enables the establishment of powerful\, beneficial
|
1633
|
+
memes in development."\n\nPLEASE NOTE: a few changes for this months meeti
|
1634
|
+
ng. This month's meeting is in the Theatrette\, which is on the same level
|
1635
|
+
as the Community Room (just don't make a left turn at the escalators :)). I
|
1636
|
+
t only sits 40\, but hopefully that won't be a problem. Also\, there is no
|
1637
|
+
food allowed in the Threatrette (but then I haven't seen many people bring
|
1638
|
+
lunches lately).\n\nAnd thanks to JetBrains\, we'll be giving away one lice
|
1639
|
+
nse to a choice of one of their products (IntelliJ IDEA Personal License\,
|
1640
|
+
ReSharper Personal License\, TeamCity Build Agent (for their Continuous In
|
1641
|
+
tegration and Build Server)\, Ruby IDE Personal License (I think this is Ru
|
1642
|
+
byMine?) or dotTrace Personal License (memory & performance profiler)).
|
1643
|
+
LAST-MODIFIED:20081203T221321Z
|
1644
|
+
LOCATION:Theatrette (ground floor)\; Brisbane Square Library\,\; 266 George
|
1645
|
+
Street\,\; Brisbane
|
1646
|
+
SEQUENCE:6
|
1647
|
+
STATUS:CONFIRMED
|
1648
|
+
SUMMARY:Brisbane XP December Meeting
|
1649
|
+
TRANSP:OPAQUE
|
1650
|
+
END:VEVENT
|
1651
|
+
BEGIN:VEVENT
|
1652
|
+
DTSTART:20081201T070000Z
|
1653
|
+
DTEND:20081201T100000Z
|
1654
|
+
DTSTAMP:20090531T005744Z
|
1655
|
+
UID:b2790tdt6penakvckh6isgg1v8@google.com
|
1656
|
+
CLASS:PUBLIC
|
1657
|
+
CREATED:20081126T023729Z
|
1658
|
+
DESCRIPTION:
|
1659
|
+
LAST-MODIFIED:20081127T025135Z
|
1660
|
+
LOCATION:
|
1661
|
+
SEQUENCE:0
|
1662
|
+
STATUS:CONFIRMED
|
1663
|
+
SUMMARY:Mobile Monday Christmas Party
|
1664
|
+
TRANSP:OPAQUE
|
1665
|
+
END:VEVENT
|
1666
|
+
BEGIN:VEVENT
|
1667
|
+
DTSTART;VALUE=DATE:20081106
|
1668
|
+
DTEND;VALUE=DATE:20081108
|
1669
|
+
DTSTAMP:20090531T005744Z
|
1670
|
+
ORGANIZER;CN=Michael Liubinskas:mailto:bigmick@gmail.com
|
1671
|
+
UID:9jc4uj52d91dcp067f3esm9dfs@google.com
|
1672
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=DECLINED;CN=Australian
|
1673
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
1674
|
+
.google.com
|
1675
|
+
CLASS:PUBLIC
|
1676
|
+
CREATED:20080604T003335Z
|
1677
|
+
DESCRIPTION:http://www.edgeoftheweb.org.au/
|
1678
|
+
LAST-MODIFIED:20081118T095850Z
|
1679
|
+
LOCATION:Perth\, Australia
|
1680
|
+
SEQUENCE:0
|
1681
|
+
STATUS:CONFIRMED
|
1682
|
+
SUMMARY:Edge of the Web (Perth)
|
1683
|
+
TRANSP:TRANSPARENT
|
1684
|
+
END:VEVENT
|
1685
|
+
BEGIN:VEVENT
|
1686
|
+
DTSTART;VALUE=DATE:20081203
|
1687
|
+
DTEND;VALUE=DATE:20081206
|
1688
|
+
DTSTAMP:20090531T005744Z
|
1689
|
+
ORGANIZER;CN=OSDC Calendar:mailto:242u3g2hmfkiai7cnodllkqkrs@group.calendar
|
1690
|
+
.google.com
|
1691
|
+
UID:son62asfpdqm1qdnsgaq7uicrc@google.com
|
1692
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1693
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1694
|
+
ndar.google.com
|
1695
|
+
CLASS:PUBLIC
|
1696
|
+
CREATED:20080430T041719Z
|
1697
|
+
DESCRIPTION:http://www.osdc.com.au/2008/
|
1698
|
+
LAST-MODIFIED:20081117T071357Z
|
1699
|
+
LOCATION:SMC Conference Centre
|
1700
|
+
SEQUENCE:0
|
1701
|
+
STATUS:CONFIRMED
|
1702
|
+
SUMMARY:OSDC Conference
|
1703
|
+
TRANSP:TRANSPARENT
|
1704
|
+
END:VEVENT
|
1705
|
+
BEGIN:VEVENT
|
1706
|
+
DTSTART;VALUE=DATE:20081202
|
1707
|
+
DTEND;VALUE=DATE:20081203
|
1708
|
+
DTSTAMP:20090531T005744Z
|
1709
|
+
ORGANIZER;CN=OSDC Calendar:mailto:242u3g2hmfkiai7cnodllkqkrs@group.calendar
|
1710
|
+
.google.com
|
1711
|
+
UID:9tseenak3q5fp79l8a5fet98a0@google.com
|
1712
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1713
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1714
|
+
ndar.google.com
|
1715
|
+
CLASS:PUBLIC
|
1716
|
+
CREATED:20080430T041712Z
|
1717
|
+
DESCRIPTION:http://www.osdc.com.au/2008/ghackathon
|
1718
|
+
LAST-MODIFIED:20081117T071336Z
|
1719
|
+
LOCATION:SMC Conference Centre
|
1720
|
+
SEQUENCE:1
|
1721
|
+
STATUS:CONFIRMED
|
1722
|
+
SUMMARY:Google Hackathon @ OSDC 2008
|
1723
|
+
TRANSP:TRANSPARENT
|
1724
|
+
END:VEVENT
|
1725
|
+
BEGIN:VEVENT
|
1726
|
+
DTSTART:20081216T020000Z
|
1727
|
+
DTEND:20081216T080000Z
|
1728
|
+
DTSTAMP:20090531T005744Z
|
1729
|
+
UID:g1plplo3a306lcp4b177gffan8@google.com
|
1730
|
+
CLASS:PUBLIC
|
1731
|
+
CREATED:20081117T051356Z
|
1732
|
+
DESCRIPTION:http://www.slatteryit.com.au/FundingConnect2008/NSW/\n\n$220.00
|
1733
|
+
LAST-MODIFIED:20081117T051356Z
|
1734
|
+
LOCATION:The Mint
|
1735
|
+
SEQUENCE:0
|
1736
|
+
STATUS:CONFIRMED
|
1737
|
+
SUMMARY:Funding Connect Event
|
1738
|
+
TRANSP:OPAQUE
|
1739
|
+
END:VEVENT
|
1740
|
+
BEGIN:VEVENT
|
1741
|
+
DTSTART:20081107T090000Z
|
1742
|
+
DTEND:20081107T143000Z
|
1743
|
+
DTSTAMP:20090531T005744Z
|
1744
|
+
ORGANIZER;CN=Chris Barraud:mailto:thatgrumguy@gmail.com
|
1745
|
+
UID:dva50a8sggeibommcmdfnp2674@google.com
|
1746
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1747
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1748
|
+
ndar.google.com
|
1749
|
+
CLASS:PUBLIC
|
1750
|
+
CREATED:20081015T091255Z
|
1751
|
+
DESCRIPTION:http://www.wawebawards.com.au/
|
1752
|
+
LAST-MODIFIED:20081107T055121Z
|
1753
|
+
LOCATION:The University Club of Western Australia
|
1754
|
+
SEQUENCE:0
|
1755
|
+
STATUS:CONFIRMED
|
1756
|
+
SUMMARY:The WA Web Awards
|
1757
|
+
TRANSP:OPAQUE
|
1758
|
+
END:VEVENT
|
1759
|
+
BEGIN:VEVENT
|
1760
|
+
DTSTART:20081108T010000Z
|
1761
|
+
DTEND:20081108T143000Z
|
1762
|
+
DTSTAMP:20090531T005744Z
|
1763
|
+
ORGANIZER;CN=Chris Barraud:mailto:thatgrumguy@gmail.com
|
1764
|
+
UID:bmndjruns3ueem142op2h9rogc@google.com
|
1765
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1766
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1767
|
+
ndar.google.com
|
1768
|
+
CLASS:PUBLIC
|
1769
|
+
CREATED:20081015T091334Z
|
1770
|
+
DESCRIPTION:Taken from: http://ptub.info\n\nWith the WA Web Week upon us we
|
1771
|
+
thought that it was time to pull our finger out and give you lot a breakdo
|
1772
|
+
wn on what exactly is planned for PTUB Saturday. In true PTUB tradition\, w
|
1773
|
+
e wanted to make sure that all involved would be catered for so it was deci
|
1774
|
+
ded that we should all enjoy in the post-EOTW coital-esque afterglow by del
|
1775
|
+
ivering PTUB Saturday in three equally exciting yet delicious acts.\n\nEver
|
1776
|
+
yone is welcome to join us for acts 1 and 3 however if you wish to partake
|
1777
|
+
in the second act\, please contact @lu_lu or @thatgrumguy NOW to see if sea
|
1778
|
+
ts are still available.\n\nIn preparation for the long day we know some of
|
1779
|
+
you will be rather fragile from the debaucheries of the night before. Mothe
|
1780
|
+
r dearest always used to say the first step to a brilliant day out is to fi
|
1781
|
+
ll your belly up in a nutritious way.\n\nThat’s exactly what we’re going to
|
1782
|
+
do:\n\n\nACT 1 : BREAKFAST – 10:00 to 12:00\n\n\nTiger Tiger Coffee Bar is
|
1783
|
+
a favourite amongst the Perth Twitter crew with its great location\, great
|
1784
|
+
food\, great coffee and most importantly – free WiFi!\n\nThis little gem n
|
1785
|
+
estled deep inside the bowels of the Perth CBD is choc-full of delicious or
|
1786
|
+
al pleasures such as nutella and mascarpone cinnamon bagels\, oven-roasted
|
1787
|
+
field mushrooms with Brebirousse cheese and delicious buttery crumpets.\n\n
|
1788
|
+
We’ll be heading down to Tiger Tiger at around 10:00 to nom up some delicio
|
1789
|
+
us treats.\n\nTheir address is :\n\nShop 4 / 329 Murray Street\, Perth\n\nG
|
1790
|
+
oogle Map: http://tinyurl.com/TigerTigerMap\nTwitter : http://twitter.com/t
|
1791
|
+
igertigercb\nWebsite: http://tigertigercoffeebar.com/\nMenu: http://tinyurl
|
1792
|
+
.com/TigerTigerMenu\n\n\nACT 2 : WINE TOUR – 12:15 to 5:00\n\n\nAfter we ha
|
1793
|
+
ve stuffed ourselves silly with lots of coffee and treats\, we’ll be making
|
1794
|
+
our way down to the Wellington St Tourist Coach Stand which is evidently d
|
1795
|
+
irectly in front of the Wellington St Bus Station\, which is just west of t
|
1796
|
+
he Perth Train Station for those who aren’t from this lovely city of Perth.
|
1797
|
+
\n\nThis is the departure point for the wine tour so all attendees must be
|
1798
|
+
at the stand by 12:15 otherwise we will leave without you and tweet bad stu
|
1799
|
+
ff about you to the rest of the world.\n\nFrom there we journey towards to
|
1800
|
+
the valley where we will be:\n\n* Wine tasting at Lancaster Winery\n* Wine
|
1801
|
+
tasting and cheeseboard at Edgecombe Brothers Winery\n* Wine tasting and no
|
1802
|
+
ugat tasting at Charlies Winery\n* Beer sample and snack basket at Elmars i
|
1803
|
+
n the Valley Brewery\n* Chocolate tastings at Margaret River Chocolate Comp
|
1804
|
+
any\n\nWe shall be finishing up at 4:30 where we’ll jump back into the bus
|
1805
|
+
to return to the city.\n\n\nACT 3 : DINNER\, DRINKS\, SHITS & GIGGLES – 5:3
|
1806
|
+
0 to LATE\n\n\nDepending on how many haven’t passed out from the sheer exci
|
1807
|
+
tement of the day we will venture into the city in search of dinner and oth
|
1808
|
+
er forms of entertainment. At this stage plans will be fluid depending on t
|
1809
|
+
he outcome of the day however if you wish to join us\, follow @PTUB\, @lu_l
|
1810
|
+
u and @thatgrumguy on twitter for ongoing updates.\n\nSuggestions for post-
|
1811
|
+
PTUB:\n\n* Dinner & drinks at The Belgian Beer Cafe\n* Drinks & skydiving f
|
1812
|
+
rom several hundred meters in the air\n* A quick round of genuine Absinthe
|
1813
|
+
shooters followed by a game of Russian Roulette\n* Journey to Northbridge f
|
1814
|
+
or pasta\, clubs n' pubs\n\nWhatever we end up doing\, we intend to do it l
|
1815
|
+
ong and hard into the night.\n\n- love\, your unofficial official PTUB orga
|
1816
|
+
nisers.
|
1817
|
+
LAST-MODIFIED:20081107T054844Z
|
1818
|
+
LOCATION:Perth\, Western Australia
|
1819
|
+
SEQUENCE:4
|
1820
|
+
STATUS:CONFIRMED
|
1821
|
+
SUMMARY:PTUB @ the edge of Edge of the Web
|
1822
|
+
TRANSP:OPAQUE
|
1823
|
+
END:VEVENT
|
1824
|
+
BEGIN:VEVENT
|
1825
|
+
DTSTART:20081129T000000Z
|
1826
|
+
DTEND:20081129T120000Z
|
1827
|
+
DTSTAMP:20090531T005744Z
|
1828
|
+
UID:1A83950A-261E-4AA8-947E-A5ACE93DF4A4
|
1829
|
+
URL:http://barcamp.org/BarCampGoldCoast2
|
1830
|
+
CLASS:PUBLIC
|
1831
|
+
CREATED:20081103T065357Z
|
1832
|
+
DESCRIPTION:
|
1833
|
+
LAST-MODIFIED:20081103T065402Z
|
1834
|
+
LOCATION:
|
1835
|
+
SEQUENCE:3
|
1836
|
+
STATUS:CONFIRMED
|
1837
|
+
SUMMARY:BarCamp Gold Coast
|
1838
|
+
TRANSP:OPAQUE
|
1839
|
+
END:VEVENT
|
1840
|
+
BEGIN:VEVENT
|
1841
|
+
DTSTART:20081114T220000Z
|
1842
|
+
DTEND:20081115T070000Z
|
1843
|
+
DTSTAMP:20090531T005744Z
|
1844
|
+
UID:6htjc7gs5ip2evislthkp8gkvk@google.com
|
1845
|
+
CLASS:PUBLIC
|
1846
|
+
CREATED:20081103T024158Z
|
1847
|
+
DESCRIPTION:
|
1848
|
+
LAST-MODIFIED:20081103T024207Z
|
1849
|
+
LOCATION:
|
1850
|
+
SEQUENCE:0
|
1851
|
+
STATUS:CONFIRMED
|
1852
|
+
SUMMARY:Barcamp 4
|
1853
|
+
TRANSP:OPAQUE
|
1854
|
+
END:VEVENT
|
1855
|
+
BEGIN:VEVENT
|
1856
|
+
DTSTART:20081128T060000Z
|
1857
|
+
DTEND:20081128T103000Z
|
1858
|
+
DTSTAMP:20090531T005744Z
|
1859
|
+
UID:rkufivtu87jkiac11vncjle8c8@google.com
|
1860
|
+
CLASS:PUBLIC
|
1861
|
+
CREATED:20081103T012949Z
|
1862
|
+
DESCRIPTION:
|
1863
|
+
LAST-MODIFIED:20081103T012949Z
|
1864
|
+
LOCATION:
|
1865
|
+
SEQUENCE:0
|
1866
|
+
STATUS:CONFIRMED
|
1867
|
+
SUMMARY:Movember Party - Fox Studios
|
1868
|
+
TRANSP:OPAQUE
|
1869
|
+
END:VEVENT
|
1870
|
+
BEGIN:VEVENT
|
1871
|
+
DTSTART:20081111T080000Z
|
1872
|
+
DTEND:20081111T100000Z
|
1873
|
+
DTSTAMP:20090531T005744Z
|
1874
|
+
UID:k8sd0ei3tm6etf0a7q3u4242q8@google.com
|
1875
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
1876
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
1877
|
+
.google.com
|
1878
|
+
CLASS:PUBLIC
|
1879
|
+
CREATED:20081031T035010Z
|
1880
|
+
DESCRIPTION:For full details make sure you register at www.thehive.org.au
|
1881
|
+
LAST-MODIFIED:20081031T035935Z
|
1882
|
+
LOCATION:TBC\, Melbourne CBD.
|
1883
|
+
SEQUENCE:0
|
1884
|
+
STATUS:CONFIRMED
|
1885
|
+
SUMMARY:The Hive
|
1886
|
+
TRANSP:OPAQUE
|
1887
|
+
END:VEVENT
|
1888
|
+
BEGIN:VEVENT
|
1889
|
+
DTSTART:20081031T100000Z
|
1890
|
+
DTEND:20081031T150000Z
|
1891
|
+
DTSTAMP:20090531T005744Z
|
1892
|
+
ORGANIZER;CN=Chris Barraud:mailto:thatgrumguy@gmail.com
|
1893
|
+
UID:fus13644n0tbgc15cndp47see4@google.com
|
1894
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1895
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1896
|
+
ndar.google.com
|
1897
|
+
CLASS:PUBLIC
|
1898
|
+
CREATED:20081026T040026Z
|
1899
|
+
DESCRIPTION:Details at:\n\nhttp://tinyurl.com/halloweenptub\nhttp://twitter
|
1900
|
+
.com/ptub\n\nWith all the hullabaloo about the superfun winoTUB event happe
|
1901
|
+
ning after Edge of the Web\, we forgot all about the fact that this Friday
|
1902
|
+
will be Halloween!\n\nThe Perth crew decided to whip up a mini-shindig to c
|
1903
|
+
elebrate this rather American tradition by dressing up in the sexiest costu
|
1904
|
+
mes known to man and returning to the scene of the last PTUB dress-up party
|
1905
|
+
- Little Creatures in Freo.\n\nEveryone is invited\; young\, old\, male\,
|
1906
|
+
female\, geek\, nerd\, twitterer\, plurker\, whatever - the only prerequisi
|
1907
|
+
te is that you have a jolly old time and take as many incriminating photos
|
1908
|
+
of the people around you as you can.\n\nIf you do take pictures\, please re
|
1909
|
+
member to tag them PTUB and HalloweenPTUB.\n\nDETAILS!\n\nWhere: Little Cre
|
1910
|
+
atures Brewing - 40 Mews Road\, Fremantle\n(rough map: http://ut.ag/00kC )\
|
1911
|
+
nWhich day: Friday 31st October 2008\nWhat time: 7pm until late\n\nSign up
|
1912
|
+
at the Facebook event if you'd like to stalk your prey beforehand.\n\nhttp:
|
1913
|
+
//www.littlecreatures.com.au/\nhttp://www.facebook.com/event.php?eid=327612
|
1914
|
+
77895
|
1915
|
+
LAST-MODIFIED:20081031T022336Z
|
1916
|
+
LOCATION:Little Creatures Brewing - 40 Mews Road\, Fremantle
|
1917
|
+
SEQUENCE:1
|
1918
|
+
STATUS:CONFIRMED
|
1919
|
+
SUMMARY:MiniHalloweenPTUB at Little Creatures Freo
|
1920
|
+
TRANSP:OPAQUE
|
1921
|
+
END:VEVENT
|
1922
|
+
BEGIN:VEVENT
|
1923
|
+
DTSTART:20081029T080000Z
|
1924
|
+
DTEND:20081029T100000Z
|
1925
|
+
DTSTAMP:20090531T005744Z
|
1926
|
+
UID:D2D9DA6C-2AB7-478C-829A-2323948AAB19
|
1927
|
+
URL:http://www.meetup.com/Scrummaster/calendar/8885336/
|
1928
|
+
CLASS:PUBLIC
|
1929
|
+
CREATED:20081025T230302Z
|
1930
|
+
DESCRIPTION:Inaugural Meeting
|
1931
|
+
LAST-MODIFIED:20081025T230411Z
|
1932
|
+
LOCATION:Third floor Room 301 S Block\; QUT\, Gardens point campus Brisbane
|
1933
|
+
SEQUENCE:9
|
1934
|
+
STATUS:CONFIRMED
|
1935
|
+
SUMMARY:Brisbane Scrum Meetup
|
1936
|
+
TRANSP:OPAQUE
|
1937
|
+
END:VEVENT
|
1938
|
+
BEGIN:VEVENT
|
1939
|
+
DTSTART:20081212T063000Z
|
1940
|
+
DTEND:20081212T093000Z
|
1941
|
+
DTSTAMP:20090531T005744Z
|
1942
|
+
ORGANIZER;CN=P Rai:mailto:dekrazee1@gmail.com
|
1943
|
+
UID:7amn9lbp6dofub66ue54v0trs0@google.com
|
1944
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1945
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1946
|
+
ndar.google.com
|
1947
|
+
CLASS:PUBLIC
|
1948
|
+
CREATED:20081021T053127Z
|
1949
|
+
DESCRIPTION:http://www.ignitespatial.com/
|
1950
|
+
LAST-MODIFIED:20081021T053653Z
|
1951
|
+
LOCATION:Occidental Hotel
|
1952
|
+
SEQUENCE:1
|
1953
|
+
STATUS:CONFIRMED
|
1954
|
+
SUMMARY:Ignite Spatial
|
1955
|
+
TRANSP:OPAQUE
|
1956
|
+
END:VEVENT
|
1957
|
+
BEGIN:VEVENT
|
1958
|
+
DTSTART:20081023T060000Z
|
1959
|
+
DTEND:20081023T080000Z
|
1960
|
+
DTSTAMP:20090531T005744Z
|
1961
|
+
UID:kmfpg8tuq5ascg3i22ihm40k1g@google.com
|
1962
|
+
CLASS:PUBLIC
|
1963
|
+
CREATED:20081014T064920Z
|
1964
|
+
LAST-MODIFIED:20081014T064920Z
|
1965
|
+
SEQUENCE:0
|
1966
|
+
STATUS:CONFIRMED
|
1967
|
+
SUMMARY:Debate IT - Museum of Sydney
|
1968
|
+
TRANSP:OPAQUE
|
1969
|
+
END:VEVENT
|
1970
|
+
BEGIN:VEVENT
|
1971
|
+
DTSTART:20081106T083000Z
|
1972
|
+
DTEND:20081106T123000Z
|
1973
|
+
DTSTAMP:20090531T005744Z
|
1974
|
+
UID:eb601tn12qibpc3uecttv5dss0@google.com
|
1975
|
+
CLASS:PUBLIC
|
1976
|
+
CREATED:20081013T061241Z
|
1977
|
+
DESCRIPTION:Webjam 9 will rock Perth in conjunction with the Edge of the We
|
1978
|
+
b conference. Webjam attendance is open to anyone\, just register to attend
|
1979
|
+
at http://webjam.com.au/webjam9
|
1980
|
+
LAST-MODIFIED:20081013T061240Z
|
1981
|
+
LOCATION:UWA Tavern\, UWA\, Perth
|
1982
|
+
SEQUENCE:0
|
1983
|
+
STATUS:CONFIRMED
|
1984
|
+
SUMMARY:Webjam 9
|
1985
|
+
TRANSP:OPAQUE
|
1986
|
+
END:VEVENT
|
1987
|
+
BEGIN:VEVENT
|
1988
|
+
DTSTART:20081114T220000Z
|
1989
|
+
DTEND:20081116T060000Z
|
1990
|
+
DTSTAMP:20090531T005744Z
|
1991
|
+
ORGANIZER;CN=Jodie Miners:mailto:jminers@gmail.com
|
1992
|
+
UID:jm7dgl1nhslc4t03065nded3mg@google.com
|
1993
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
1994
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
1995
|
+
ndar.google.com
|
1996
|
+
CLASS:PUBLIC
|
1997
|
+
CREATED:20081007T020419Z
|
1998
|
+
DESCRIPTION:see www.officedevcon.com.au\n\nThis is a community run event fo
|
1999
|
+
r people interested in Microsoft Office Development. It is a free 2 day con
|
2000
|
+
ference.
|
2001
|
+
LAST-MODIFIED:20081007T020419Z
|
2002
|
+
LOCATION:Microsoft Offices
|
2003
|
+
SEQUENCE:0
|
2004
|
+
STATUS:CONFIRMED
|
2005
|
+
SUMMARY:Office Devcon
|
2006
|
+
TRANSP:OPAQUE
|
2007
|
+
END:VEVENT
|
2008
|
+
BEGIN:VEVENT
|
2009
|
+
DTSTART:20080924T223000Z
|
2010
|
+
DTEND:20080925T073000Z
|
2011
|
+
DTSTAMP:20090531T005744Z
|
2012
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2013
|
+
UID:th54rmnje9paqhh8ffv0h284uc@google.com
|
2014
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
2015
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
2016
|
+
.google.com
|
2017
|
+
RECURRENCE-ID:20080924T223000Z
|
2018
|
+
CLASS:PUBLIC
|
2019
|
+
CREATED:20080821T012023Z
|
2020
|
+
LAST-MODIFIED:20080923T230606Z
|
2021
|
+
LOCATION:Sydney\, Australia
|
2022
|
+
SEQUENCE:0
|
2023
|
+
STATUS:CONFIRMED
|
2024
|
+
SUMMARY:Web Directions South 2008
|
2025
|
+
TRANSP:OPAQUE
|
2026
|
+
END:VEVENT
|
2027
|
+
BEGIN:VEVENT
|
2028
|
+
DTSTART:20080924T070000Z
|
2029
|
+
DTEND:20080924T120000Z
|
2030
|
+
DTSTAMP:20090531T005744Z
|
2031
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2032
|
+
UID:f3blnlq4idi5l731f8k9qhli64@google.com
|
2033
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2034
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2035
|
+
ndar.google.com
|
2036
|
+
CLASS:PUBLIC
|
2037
|
+
CREATED:20080821T011254Z
|
2038
|
+
DESCRIPTION:
|
2039
|
+
LAST-MODIFIED:20080923T211631Z
|
2040
|
+
LOCATION:Harlequin Inn
|
2041
|
+
SEQUENCE:2
|
2042
|
+
STATUS:CONFIRMED
|
2043
|
+
SUMMARY:Pre-WDS port80 drinks
|
2044
|
+
TRANSP:OPAQUE
|
2045
|
+
END:VEVENT
|
2046
|
+
BEGIN:VEVENT
|
2047
|
+
DTSTART:20080919T110000Z
|
2048
|
+
DTEND:20080919T153000Z
|
2049
|
+
DTSTAMP:20090531T005744Z
|
2050
|
+
ORGANIZER;CN=Chris Barraud:mailto:thatgrumguy@gmail.com
|
2051
|
+
UID:lk03m0j2b1r1vh361nbccm8n2s@google.com
|
2052
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2053
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2054
|
+
ndar.google.com
|
2055
|
+
CLASS:PUBLIC
|
2056
|
+
CREATED:20080911T021149Z
|
2057
|
+
DESCRIPTION:This event is open to those who microblog in Perth\, Western Au
|
2058
|
+
stralia.\n\nMore information can be found at http://ptub.info\n\nAvast\, ye
|
2059
|
+
scurvy scallywags! With the warmer weather returnin'\, it be time for the
|
2060
|
+
PTUB crew t' emerge from its vast slumber and terrorise the citizens o' Per
|
2061
|
+
th. We shall be journeyin' towards the port o' the Fremantle t' crack open
|
2062
|
+
a Pale Ale or three at the Little Creatures Brewery for International Talk
|
2063
|
+
Like a Pirate Day!\n\nAttendees be encouraged t' dress up as their fa'orite
|
2064
|
+
pirate or wench\, and drink as much rum\, swill or grog as a PPTUBber can
|
2065
|
+
handle.\n\nAye\, so come one\, come all t' the piratest o' all pirate days
|
2066
|
+
on land\, garrrrrrrr!\n\n[TRANSLATION: Friday will be Talk Like a Pirate da
|
2067
|
+
y. There will be a PTUB at Little Creatures in Freo. Be there otherwise @lu
|
2068
|
+
_lu might stab you in the Jolly Rogers. Come in costume for extra points*!]
|
2069
|
+
\n\nDETAILS!\n\nWhere: (rough map: http://ut.ag/00kC )\nWhich day: Friday
|
2070
|
+
19th September 2008\nWhat time: 7pm until late\n\nhttp://www.littlecreature
|
2071
|
+
s.com.au/
|
2072
|
+
LAST-MODIFIED:20080918T061825Z
|
2073
|
+
LOCATION:Little Creatures Brewing - 40 Mews Road\, Fremantle\, Western Aust
|
2074
|
+
ralia
|
2075
|
+
SEQUENCE:4
|
2076
|
+
STATUS:CONFIRMED
|
2077
|
+
SUMMARY:PPTUB #1 - Perth Pirate Twitter Underground Brigade
|
2078
|
+
TRANSP:OPAQUE
|
2079
|
+
END:VEVENT
|
2080
|
+
BEGIN:VEVENT
|
2081
|
+
DTSTART:20080911T080000Z
|
2082
|
+
DTEND:20080911T110000Z
|
2083
|
+
DTSTAMP:20090531T005744Z
|
2084
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2085
|
+
UID:9kgd1c90pf0pdfpt3l2akgbgkk@google.com
|
2086
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2087
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2088
|
+
ndar.google.com
|
2089
|
+
CLASS:PUBLIC
|
2090
|
+
CREATED:20080910T230931Z
|
2091
|
+
DESCRIPTION:
|
2092
|
+
LAST-MODIFIED:20080910T230931Z
|
2093
|
+
LOCATION:82 Wentworth Avenue Kingston Canberra
|
2094
|
+
SEQUENCE:0
|
2095
|
+
STATUS:CONFIRMED
|
2096
|
+
SUMMARY:Adobe User Group Canberra
|
2097
|
+
TRANSP:OPAQUE
|
2098
|
+
END:VEVENT
|
2099
|
+
BEGIN:VEVENT
|
2100
|
+
DTSTART:20080925T093000Z
|
2101
|
+
DTEND:20080925T135900Z
|
2102
|
+
DTSTAMP:20090531T005744Z
|
2103
|
+
UID:6h7jnhtc6084tteh8hicd8i7os@google.com
|
2104
|
+
CLASS:PUBLIC
|
2105
|
+
CREATED:20080910T223301Z
|
2106
|
+
DESCRIPTION:Our first Webjam in 12 months is going to be the biggest ever!
|
2107
|
+
Get your proposals and RSVPs in now or miss out!\nhttp://webjam.com.au/webj
|
2108
|
+
am8
|
2109
|
+
LAST-MODIFIED:20080910T223301Z
|
2110
|
+
LOCATION:Bar Broadway\, corner of Regent and Broadway\, Sydney\, NSW
|
2111
|
+
SEQUENCE:0
|
2112
|
+
STATUS:CONFIRMED
|
2113
|
+
SUMMARY:Webjam 8
|
2114
|
+
TRANSP:OPAQUE
|
2115
|
+
END:VEVENT
|
2116
|
+
BEGIN:VEVENT
|
2117
|
+
DTSTART:20080925T093000Z
|
2118
|
+
DTEND:20080925T140000Z
|
2119
|
+
DTSTAMP:20090531T005744Z
|
2120
|
+
ORGANIZER;CN=Jodie Miners:mailto:jminers@gmail.com
|
2121
|
+
UID:hss4cuuu6jssf73hj1eopep2ds@google.com
|
2122
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2123
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2124
|
+
ndar.google.com
|
2125
|
+
CLASS:PUBLIC
|
2126
|
+
CREATED:20080908T073404Z
|
2127
|
+
DESCRIPTION:Come on down to the Pontoon bar after the free drinks run out a
|
2128
|
+
t Web Directions.
|
2129
|
+
LAST-MODIFIED:20080908T073404Z
|
2130
|
+
LOCATION:Pontoon Bar\, Darling Harbour
|
2131
|
+
SEQUENCE:0
|
2132
|
+
STATUS:CONFIRMED
|
2133
|
+
SUMMARY:AussieTUB (Twitter users from all around Australia and farther afie
|
2134
|
+
ld welcome)
|
2135
|
+
TRANSP:OPAQUE
|
2136
|
+
END:VEVENT
|
2137
|
+
BEGIN:VEVENT
|
2138
|
+
DTSTART:20080908T080000Z
|
2139
|
+
DTEND:20080908T110000Z
|
2140
|
+
DTSTAMP:20090531T005744Z
|
2141
|
+
UID:B75C1EF2-4435-48E0-98BC-8EDE818059BA
|
2142
|
+
URL:http://groups.google.com/group/qjug
|
2143
|
+
CLASS:PUBLIC
|
2144
|
+
CREATED:20080908T061006Z
|
2145
|
+
DESCRIPTION:Come and meet Groovy - the Java\, Ruby and Scala killer!
|
2146
|
+
LAST-MODIFIED:20080908T061238Z
|
2147
|
+
LOCATION:
|
2148
|
+
SEQUENCE:5
|
2149
|
+
STATUS:CONFIRMED
|
2150
|
+
SUMMARY:Queensland Java Users' Group
|
2151
|
+
TRANSP:OPAQUE
|
2152
|
+
END:VEVENT
|
2153
|
+
BEGIN:VEVENT
|
2154
|
+
DTSTART:20080912T080000Z
|
2155
|
+
DTEND:20080912T135900Z
|
2156
|
+
DTSTAMP:20090531T005744Z
|
2157
|
+
ORGANIZER;CN=Ben Grubb:mailto:bengrubb@gmail.com
|
2158
|
+
UID:7ughmkr2o30sujcds333a5ojfs@google.com
|
2159
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2160
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2161
|
+
ndar.google.com
|
2162
|
+
CLASS:PUBLIC
|
2163
|
+
CREATED:20080907T155138Z
|
2164
|
+
DESCRIPTION:When: Friday\, September 12th @ 6 PM though Ben will be later t
|
2165
|
+
han that...\nWhere: Ball & Chain Grill\nWhat to Bring: Money for food and d
|
2166
|
+
rinks as well as cameras!\nContact: ben.grubb[at]mactalk.com.au or myself o
|
2167
|
+
n mactalk[at]nigelhoneyphotos.com
|
2168
|
+
LAST-MODIFIED:20080907T155941Z
|
2169
|
+
LOCATION:Ball & Chain Grill Hobart
|
2170
|
+
SEQUENCE:0
|
2171
|
+
STATUS:CONFIRMED
|
2172
|
+
SUMMARY:MacTalk Hobart Meet
|
2173
|
+
TRANSP:OPAQUE
|
2174
|
+
END:VEVENT
|
2175
|
+
BEGIN:VEVENT
|
2176
|
+
DTSTART:20080914T020000Z
|
2177
|
+
DTEND:20080914T135900Z
|
2178
|
+
DTSTAMP:20090531T005744Z
|
2179
|
+
ORGANIZER;CN=Ben Grubb:mailto:bengrubb@gmail.com
|
2180
|
+
UID:cmte3i7r5kta3gvuhi17337ep8@google.com
|
2181
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2182
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2183
|
+
ndar.google.com
|
2184
|
+
CLASS:PUBLIC
|
2185
|
+
CREATED:20080907T155612Z
|
2186
|
+
DESCRIPTION:When: Sunday\, 14th September @ 12 noon\nWhere: South Perth For
|
2187
|
+
eshore:\n\nhttp://maps.google.com.au/maps/ms?ie=UTF8&om=1&hl=en&msa=0&msid=
|
2188
|
+
117653044730579597094.0004558f7860ae2a250ab&t=h&ll=-31.974454\,115.867814&s
|
2189
|
+
pn=0.004018\,0.007794&z=18\n\nWhat to Bring: It's BYO food & drink for the
|
2190
|
+
most part - MacTalk isn't putting up any cash for the meet due to being pau
|
2191
|
+
pers for our new server.\nContact: \nhttp://forums.mactalk.com.au/members/j
|
2192
|
+
eremy_warnock/
|
2193
|
+
LAST-MODIFIED:20080907T155801Z
|
2194
|
+
LOCATION:South Perth Foreshore
|
2195
|
+
SEQUENCE:0
|
2196
|
+
STATUS:CONFIRMED
|
2197
|
+
SUMMARY:MacTalk Perth Meet
|
2198
|
+
TRANSP:OPAQUE
|
2199
|
+
END:VEVENT
|
2200
|
+
BEGIN:VEVENT
|
2201
|
+
DTSTART:20080926T080000Z
|
2202
|
+
DTEND:20080926T135900Z
|
2203
|
+
DTSTAMP:20090531T005744Z
|
2204
|
+
ORGANIZER;CN=Ben Grubb:mailto:bengrubb@gmail.com
|
2205
|
+
UID:746E260B-877B-4620-BCA3-2A0CA8271920
|
2206
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2207
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2208
|
+
ndar.google.com
|
2209
|
+
CLASS:PUBLIC
|
2210
|
+
CREATED:20080725T153539Z
|
2211
|
+
DESCRIPTION:MacTalk.com.au and Brisbane Twitter Underground Brigade Unite!
|
2212
|
+
@ http://www.boardwalkbar.com.au/
|
2213
|
+
LAST-MODIFIED:20080907T154854Z
|
2214
|
+
LOCATION:Boardwalk Level Riparian Plaza\, 71 Eagle Street\, Brisbane\, QLD
|
2215
|
+
SEQUENCE:4
|
2216
|
+
STATUS:CONFIRMED
|
2217
|
+
SUMMARY:BTUB + MacTalk Meetup
|
2218
|
+
TRANSP:OPAQUE
|
2219
|
+
END:VEVENT
|
2220
|
+
BEGIN:VEVENT
|
2221
|
+
DTSTART:20080905T023000Z
|
2222
|
+
DTEND:20080905T033000Z
|
2223
|
+
DTSTAMP:20090531T005744Z
|
2224
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2225
|
+
UID:0vs353q1t3hktdiug9j4m6ugdo@google.com
|
2226
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2227
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2228
|
+
ndar.google.com
|
2229
|
+
CLASS:PUBLIC
|
2230
|
+
CREATED:20080829T013100Z
|
2231
|
+
DESCRIPTION:Follow @CTUB for more information and updates.
|
2232
|
+
LAST-MODIFIED:20080829T013212Z
|
2233
|
+
LOCATION:Civic\, Canberra
|
2234
|
+
SEQUENCE:0
|
2235
|
+
STATUS:CONFIRMED
|
2236
|
+
SUMMARY:CTUB lunch at King O'Malley's
|
2237
|
+
TRANSP:OPAQUE
|
2238
|
+
END:VEVENT
|
2239
|
+
BEGIN:VEVENT
|
2240
|
+
DTSTART;TZID=Australia/Sydney:20080925T083000
|
2241
|
+
DTEND;TZID=Australia/Sydney:20080925T173000
|
2242
|
+
RRULE:FREQ=DAILY;UNTIL=20080925T223000Z;WKST=MO
|
2243
|
+
DTSTAMP:20090531T005744Z
|
2244
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2245
|
+
UID:th54rmnje9paqhh8ffv0h284uc@google.com
|
2246
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2247
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2248
|
+
ndar.google.com
|
2249
|
+
CLASS:PUBLIC
|
2250
|
+
CREATED:20080821T012023Z
|
2251
|
+
LAST-MODIFIED:20080821T012023Z
|
2252
|
+
LOCATION:Sydney\, Australia
|
2253
|
+
SEQUENCE:0
|
2254
|
+
STATUS:CONFIRMED
|
2255
|
+
SUMMARY:Web Directions South 2008
|
2256
|
+
TRANSP:OPAQUE
|
2257
|
+
END:VEVENT
|
2258
|
+
BEGIN:VEVENT
|
2259
|
+
DTSTART;TZID=Australia/Sydney:20080606T170000
|
2260
|
+
DTEND;TZID=Australia/Sydney:20080606T200000
|
2261
|
+
RRULE:FREQ=WEEKLY;BYDAY=FR;WKST=SU;UNTIL=20080814T135959Z
|
2262
|
+
DTSTAMP:20090531T005744Z
|
2263
|
+
UID:12i0dac3jvq89ovmbj4k065fdk@google.com
|
2264
|
+
CLASS:PUBLIC
|
2265
|
+
CREATED:20080608T221354Z
|
2266
|
+
DESCRIPTION:Everyone is welcome for these Friday drinks a good pub. Anyone
|
2267
|
+
in IT\, web\, start-ups\, grown-ups\, programmers\, analysts\, entrepreneur
|
2268
|
+
s\, product people\, QA\, designers. \n\nSydney:\nWe usually meet by the po
|
2269
|
+
ol table on level 2.
|
2270
|
+
LAST-MODIFIED:20080819T050656Z
|
2271
|
+
LOCATION:Sydney: Shelbourne Hotel\, Cnr Market and Sussex
|
2272
|
+
SEQUENCE:0
|
2273
|
+
STATUS:CONFIRMED
|
2274
|
+
SUMMARY:FITSBAD: Friday IT Silicon Beach Australian Drinks
|
2275
|
+
TRANSP:OPAQUE
|
2276
|
+
END:VEVENT
|
2277
|
+
BEGIN:VEVENT
|
2278
|
+
DTSTART:20080815T000000Z
|
2279
|
+
DTEND:20080815T070000Z
|
2280
|
+
DTSTAMP:20090531T005744Z
|
2281
|
+
ORGANIZER;CN=Melbourne Jelly:mailto:mail@ppeach.com
|
2282
|
+
UID:6lqlbjq2gs8aig6eugn18boc3g@google.com
|
2283
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=DECLINED;CN=Australian
|
2284
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
2285
|
+
.google.com
|
2286
|
+
RECURRENCE-ID:20080815T000000Z
|
2287
|
+
CLASS:PUBLIC
|
2288
|
+
CREATED:20080803T073807Z
|
2289
|
+
DESCRIPTION:Change of work scenery\, hang around people doing interesting t
|
2290
|
+
hings for a day. Coworking in a a relaxed environment for people doing thin
|
2291
|
+
gs\, from geeks\, graphic designers\, to idea people.
|
2292
|
+
LAST-MODIFIED:20080811T053305Z
|
2293
|
+
LOCATION:Joe's Garage\, 366 Brunswick Street Fitzroy\, Victoria 3065
|
2294
|
+
SEQUENCE:0
|
2295
|
+
STATUS:CONFIRMED
|
2296
|
+
SUMMARY:Melbourne Jelly
|
2297
|
+
TRANSP:OPAQUE
|
2298
|
+
END:VEVENT
|
2299
|
+
BEGIN:VEVENT
|
2300
|
+
DTSTART:20080801T000000Z
|
2301
|
+
DTEND:20080801T070000Z
|
2302
|
+
DTSTAMP:20090531T005744Z
|
2303
|
+
ORGANIZER;CN=Melbourne Jelly:mailto:mail@ppeach.com
|
2304
|
+
UID:6lqlbjq2gs8aig6eugn18boc3g@google.com
|
2305
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2306
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2307
|
+
ndar.google.com
|
2308
|
+
RECURRENCE-ID:20080801T000000Z
|
2309
|
+
CLASS:PUBLIC
|
2310
|
+
CREATED:20080803T073807Z
|
2311
|
+
DESCRIPTION:Change of work scenery\, hang around people doing interesting t
|
2312
|
+
hings for a day. Coworking in a a relaxed environment for people doing thin
|
2313
|
+
gs\, from geeks\, graphic designers\, to idea people.
|
2314
|
+
LAST-MODIFIED:20080805T132952Z
|
2315
|
+
LOCATION:Joe's Garage\, 366 Brunswick Street Fitzroy\, Victoria 3065
|
2316
|
+
SEQUENCE:0
|
2317
|
+
STATUS:CONFIRMED
|
2318
|
+
SUMMARY:Melbourne Jelly
|
2319
|
+
TRANSP:OPAQUE
|
2320
|
+
END:VEVENT
|
2321
|
+
BEGIN:VEVENT
|
2322
|
+
DTSTART;TZID=Australia/Sydney:20080801T100000
|
2323
|
+
DTEND;TZID=Australia/Sydney:20080801T170000
|
2324
|
+
RRULE:FREQ=MONTHLY;WKST=MO;BYDAY=1FR,3FR
|
2325
|
+
DTSTAMP:20090531T005744Z
|
2326
|
+
ORGANIZER;CN=Melbourne Jelly:mailto:mail@ppeach.com
|
2327
|
+
UID:6lqlbjq2gs8aig6eugn18boc3g@google.com
|
2328
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2329
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2330
|
+
ndar.google.com
|
2331
|
+
CLASS:PUBLIC
|
2332
|
+
CREATED:20080803T073807Z
|
2333
|
+
DESCRIPTION:Change of work scenery\, hang around people doing interesting t
|
2334
|
+
hings for a day. Coworking in a a relaxed environment for people doing thin
|
2335
|
+
gs\, from geeks\, graphic designers\, to idea people.
|
2336
|
+
LAST-MODIFIED:20080805T132951Z
|
2337
|
+
LOCATION:Joe's Garage\, 366 Brunswick Street Fitzroy\, Victoria 3065
|
2338
|
+
SEQUENCE:0
|
2339
|
+
STATUS:CONFIRMED
|
2340
|
+
SUMMARY:Melbourne Jelly
|
2341
|
+
TRANSP:OPAQUE
|
2342
|
+
END:VEVENT
|
2343
|
+
BEGIN:VEVENT
|
2344
|
+
DTSTART:20080827T073000Z
|
2345
|
+
DTEND:20080827T130000Z
|
2346
|
+
DTSTAMP:20090531T005744Z
|
2347
|
+
ORGANIZER;CN=Jennifer Hiley:mailto:jenniferhiley@gmail.com
|
2348
|
+
UID:1clpemd4oul657uv3p24nraio8@google.com
|
2349
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2350
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2351
|
+
ndar.google.com
|
2352
|
+
CLASS:PUBLIC
|
2353
|
+
CREATED:20080803T233113Z
|
2354
|
+
DESCRIPTION:Swedish Beers Down Under (#2) – drink beer\, talk mobile\, drin
|
2355
|
+
k more beer\, talk nonsense…\n\nPeople keep asking when the next Swedish Be
|
2356
|
+
ers is happening. Well\, mark your diaries for Wednesday\, 27th August 2008
|
2357
|
+
at the Redoak Boutique Beer Café\, 201 Clarence Street\, Sydney – same ven
|
2358
|
+
ue as last time. Once again\, drinking commences @ 5.30pm. This month\, Swe
|
2359
|
+
dish Beers is being sponsored by the nice people at BlueCentral\, so when y
|
2360
|
+
ou have a drink\, you’ve got them to thank!\n\ncheck us out @ http://www.sw
|
2361
|
+
edishbeers.co.uk\n\nPlease feel free to invite anyone else who you find int
|
2362
|
+
eresting enough to attend!\n\nskål\n\nJen²\n\nSwedish Beers Sydney event is
|
2363
|
+
brought to you by Sydney mobilists\, Jen²\, who are Jennifer Hiley of 5th
|
2364
|
+
Finger & Jennifer Wilson of Lean Forward\n
|
2365
|
+
LAST-MODIFIED:20080803T233113Z
|
2366
|
+
LOCATION:The Redoak Beer Cafe\, 201 Clarence Street\, Sydney
|
2367
|
+
SEQUENCE:0
|
2368
|
+
STATUS:CONFIRMED
|
2369
|
+
SUMMARY:Swedish Beers Down Under
|
2370
|
+
TRANSP:TRANSPARENT
|
2371
|
+
END:VEVENT
|
2372
|
+
BEGIN:VEVENT
|
2373
|
+
DTSTART:20080729T090000Z
|
2374
|
+
DTEND:20080729T123000Z
|
2375
|
+
DTSTAMP:20090531T005744Z
|
2376
|
+
UID:vftif7it7pailqnujl2k8kl2k4@google.com
|
2377
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
2378
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
2379
|
+
.google.com
|
2380
|
+
CLASS:PUBLIC
|
2381
|
+
CREATED:20080720T103850Z
|
2382
|
+
DESCRIPTION:fromSYMONS DEBRA <debra.symons@alcatel-lucent.com.au>\ntomick@l
|
2383
|
+
iubinskas.com\ndateMon\, Jul 14\, 2008 at 10:05 AM\nsubjectaugmented realit
|
2384
|
+
y event\nmailed-bybounce.secureserver.net\n\nhide details Jul 14 (7 days ag
|
2385
|
+
o)\n\n\nReply\n\n\n\nHi Mick\,\n\nI hope all is going well for you.\n\nI’d
|
2386
|
+
like to invite you to AIMIA NSW’s next free event on augmented reality beca
|
2387
|
+
use I think this topic will be of great interest to you.\n\n \n\nWe are abo
|
2388
|
+
ut to experience myriad applications of augmented reality via our mobile ph
|
2389
|
+
ones. Mobile devices and augmented reality are made for each other and the
|
2390
|
+
possibilities of “AR” are impressive. It’s been said that a tremendous augm
|
2391
|
+
ented reality industry is waiting to emerge and will become one of the most
|
2392
|
+
influential technological shifts yet experienced.\n\n \n\nWe have a great
|
2393
|
+
panel to talk about the various forms of augmented reality (or location-bas
|
2394
|
+
ed services) and how they will impact our lives from both a commercial and
|
2395
|
+
a social viewpoint.\n\nJason Collins is our international guest speaker. He
|
2396
|
+
recently showed a mobile augmented reality interface prototype he develope
|
2397
|
+
d with Georgia Tech at CTIA Wireless in Las Vegas earlier in the year. He w
|
2398
|
+
ill be giving a similar demo on the night and talk about mobile augmented r
|
2399
|
+
eality services beyond QR codes.\n\nAaron Stafford is a researcher at the W
|
2400
|
+
earable Computer Lab\, School of Computer and Information Science\, Univers
|
2401
|
+
ity of South Australia. His projects remind me of Robocop technology in its
|
2402
|
+
infancy. He will show videos of the amazing work his department is doing a
|
2403
|
+
t the lab.\n\nViveka Weiley is a Geospatial and Collaborative Virtual Envir
|
2404
|
+
onments Researcher at the University of Technology\, Sydney. He will be tal
|
2405
|
+
king about his mixed-reality installation at The Powerhouse Museum.\n\nAdam
|
2406
|
+
Dunne is the Sales & Marketing Director at AURA Interactive and he will be
|
2407
|
+
talking about the marketing opportunities of augmented and mixed-reality s
|
2408
|
+
ervices.\n\n \n\nMick\, come and have a complimentary drink with us and hea
|
2409
|
+
r about local and international developments in this exciting new technolog
|
2410
|
+
y.\n\nI look forward to seeing you on Tuesday\, 29th July\, 6.30pm at The P
|
2411
|
+
rivilege Club\, cnr George and King Streets\, Sydney.\n\n \n\nBest regards\
|
2412
|
+
,\n\nDebra\n\n \n\nHere is a link to the event website for more info: http:
|
2413
|
+
//www.aimia.com.au/i-cms?page=4635\n\nPlease forward this invitation onto y
|
2414
|
+
our friends\, colleagues and networks. They are very welcome and I’m sure t
|
2415
|
+
he content will be of interest to them.\n\n \n\n \n\nDebra Symons\n\nWeb De
|
2416
|
+
signer and Developer\n\nIT Applications and Solutions\n\nAlcatel-Lucent Aus
|
2417
|
+
tralasia\n\n280 Botany Road\n\nAlexandria NSW 2015\n\nAustralia\n\n \n\nAlc
|
2418
|
+
anet: 2704 5879\n\nTelephone: +61 2 8306 5879\n\nFax: +61 2 8306 5684\n\nMo
|
2419
|
+
bile: 0417 665514\n\nEmail: debra.symons@alcatel-lucent.com.au\n\n \n
|
2420
|
+
LAST-MODIFIED:20080729T061902Z
|
2421
|
+
LOCATION:
|
2422
|
+
SEQUENCE:0
|
2423
|
+
STATUS:CONFIRMED
|
2424
|
+
SUMMARY:AIMIA Event - Privlidge bar
|
2425
|
+
TRANSP:OPAQUE
|
2426
|
+
END:VEVENT
|
2427
|
+
BEGIN:VEVENT
|
2428
|
+
DTSTART:20080804T080000Z
|
2429
|
+
DTEND:20080804T110000Z
|
2430
|
+
DTSTAMP:20090531T005744Z
|
2431
|
+
UID:0i4pj5dv2l6pq8atfopjfk48ic@google.com
|
2432
|
+
CLASS:PUBLIC
|
2433
|
+
CREATED:20080729T021512Z
|
2434
|
+
DESCRIPTION:http://www.mobilemondaysydney.com/2008/07/28/august-2008-mobile
|
2435
|
+
-futures-part-1-xumii-and-google/
|
2436
|
+
LAST-MODIFIED:20080729T021540Z
|
2437
|
+
LOCATION:Priviledge Bar\, Cnr King and George St
|
2438
|
+
SEQUENCE:0
|
2439
|
+
STATUS:CONFIRMED
|
2440
|
+
SUMMARY:Mobile Monday - Xumii and Google
|
2441
|
+
TRANSP:OPAQUE
|
2442
|
+
END:VEVENT
|
2443
|
+
BEGIN:VEVENT
|
2444
|
+
DTSTART:20080619T073000Z
|
2445
|
+
DTEND:20080619T103000Z
|
2446
|
+
DTSTAMP:20090531T005744Z
|
2447
|
+
UID:am61gnffu2o50ol9imf2ng24gg@google.com
|
2448
|
+
CLASS:PUBLIC
|
2449
|
+
CREATED:20080616T022213Z
|
2450
|
+
DESCRIPTION:Open Drinks. All welcome. For our inter-state guests. \n\nPass
|
2451
|
+
it on. \n\n5pm. Drop by the new apple store to mock them and pick up free t
|
2452
|
+
-shirt.\n5.30pm walk down to the Loft\n\nThe Loft\nKing St Wharf\nwww.thelo
|
2453
|
+
ftsydney.com
|
2454
|
+
LAST-MODIFIED:20080722T023957Z
|
2455
|
+
LOCATION:The Loft\, King St Wharf
|
2456
|
+
SEQUENCE:1
|
2457
|
+
STATUS:CONFIRMED
|
2458
|
+
SUMMARY:(Updated) Drinks for Web Hobbits
|
2459
|
+
TRANSP:OPAQUE
|
2460
|
+
END:VEVENT
|
2461
|
+
BEGIN:VEVENT
|
2462
|
+
DTSTART:20080723T043000Z
|
2463
|
+
DTEND:20080723T070000Z
|
2464
|
+
DTSTAMP:20090531T005744Z
|
2465
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2466
|
+
UID:htqhbq5hh3cq6frtfoqvq2ea04@google.com
|
2467
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2468
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2469
|
+
ndar.google.com
|
2470
|
+
CLASS:PUBLIC
|
2471
|
+
CREATED:20080708T043920Z
|
2472
|
+
DESCRIPTION:Jessica Enders of Formulate Information Design presents "The se
|
2473
|
+
crets of successful online forms" followed by Alexi Paschalidis (Oxide Inte
|
2474
|
+
ractive) and Tim Siers (Royal Australian Navy) presenting on the redevelop
|
2475
|
+
ment of the Royal Australian Navy web site.
|
2476
|
+
LAST-MODIFIED:20080721T035436Z
|
2477
|
+
LOCATION:National Library of Australia\, Canberra
|
2478
|
+
SEQUENCE:0
|
2479
|
+
STATUS:CONFIRMED
|
2480
|
+
SUMMARY:Canberra Web Standards Group
|
2481
|
+
TRANSP:OPAQUE
|
2482
|
+
END:VEVENT
|
2483
|
+
BEGIN:VEVENT
|
2484
|
+
DTSTART:20080714T230000Z
|
2485
|
+
DTEND:20080715T063000Z
|
2486
|
+
DTSTAMP:20090531T005744Z
|
2487
|
+
ORGANIZER;CN=Phil Pollenizer:mailto:kpdvgepahkppepcm6dbjkp3pac@group.calend
|
2488
|
+
ar.google.com
|
2489
|
+
UID:vlm598lkpeavdj125k9mpusqeo@google.com
|
2490
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2491
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2492
|
+
ndar.google.com
|
2493
|
+
CLASS:PUBLIC
|
2494
|
+
CREATED:20080714T031334Z
|
2495
|
+
DESCRIPTION:We'll be streaming FOM08 here:\nhttp://www.pollenizer.com/chase
|
2496
|
+
r/\n\nMore info:\nhttp://www.futureexploration.net/fom08/
|
2497
|
+
LAST-MODIFIED:20080714T031334Z
|
2498
|
+
LOCATION:http://www.pollenizer.com/chaser/
|
2499
|
+
SEQUENCE:0
|
2500
|
+
STATUS:CONFIRMED
|
2501
|
+
SUMMARY:Conference Chaser at FOM08
|
2502
|
+
TRANSP:OPAQUE
|
2503
|
+
END:VEVENT
|
2504
|
+
BEGIN:VEVENT
|
2505
|
+
DTSTART:20080724T213000Z
|
2506
|
+
DTEND:20080724T223000Z
|
2507
|
+
DTSTAMP:20090531T005744Z
|
2508
|
+
ORGANIZER;CN=Phil Pollenizer:mailto:kpdvgepahkppepcm6dbjkp3pac@group.calend
|
2509
|
+
ar.google.com
|
2510
|
+
UID:0cnshdfg3af4j51a8k4gr89unc@google.com
|
2511
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2512
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2513
|
+
ndar.google.com
|
2514
|
+
CLASS:PUBLIC
|
2515
|
+
CREATED:20080713T220228Z
|
2516
|
+
DESCRIPTION:Mike Cannon-Brookes\, Atlassian\n\n\nFriday 25 July 2008\n\n\nV
|
2517
|
+
enue: Slide Bar\, 41 Oxford Street\, Darlinghurst\, Sydney\n\n\nMike Cannon
|
2518
|
+
-Brookes from Atlassian will be our guest speaker for a breakfast on 25 Jul
|
2519
|
+
y.\n\nMike is co-founder and CEO of Atlassian Pty Ltd an innovative\, award
|
2520
|
+
-winning enterprise software company. As well as being frighteningly young
|
2521
|
+
and good-looking\, Mike has been instrumental in building Atlassian into on
|
2522
|
+
e of Australia's brightest technology exports. Amazingly\, Mike (along with
|
2523
|
+
his co-founder Scott Farquhar) has done this with no external funding. Com
|
2524
|
+
e along and hear this amazing and inspirational story in the unique Innovat
|
2525
|
+
ion Bay environment.\n\nAtlassian produces tools that help technical and bu
|
2526
|
+
siness teams collaborate\, plan projects and build software. Based in Austr
|
2527
|
+
alia\, Atlassian currently has over 10\,000 enterprise customers around the
|
2528
|
+
globe and has been named one of the "Fastest Growing Companies" by both De
|
2529
|
+
loitte and BRW Magazine.\n\nMike has received international recognition for
|
2530
|
+
his work including the Australian IT Professional of the Year in 2004 and
|
2531
|
+
being named Australian Entrepreneur Of The Year in 2006. Outside Atlassian\
|
2532
|
+
, he is an active investor and advisor to a few technology-focused ventures
|
2533
|
+
\, and participates in a number of open source projects.\n\nHis blog is ent
|
2534
|
+
itled rebelutionary\n\nPrice: $10 - payable in cash to a bucket on the door
|
2535
|
+
|
2536
|
+
LAST-MODIFIED:20080713T235117Z
|
2537
|
+
LOCATION:Slide Bar
|
2538
|
+
SEQUENCE:1
|
2539
|
+
STATUS:CONFIRMED
|
2540
|
+
SUMMARY:Innovation Bay with Mike Cannon-Brookes
|
2541
|
+
TRANSP:OPAQUE
|
2542
|
+
END:VEVENT
|
2543
|
+
BEGIN:VEVENT
|
2544
|
+
DTSTART;VALUE=DATE:20080801
|
2545
|
+
DTEND;VALUE=DATE:20080802
|
2546
|
+
DTSTAMP:20090531T005744Z
|
2547
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2548
|
+
UID:ncp21mi9r0g3u3r8rdhkprd6ko@google.com
|
2549
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2550
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2551
|
+
ndar.google.com
|
2552
|
+
CLASS:PUBLIC
|
2553
|
+
CREATED:20080711T052833Z
|
2554
|
+
DESCRIPTION:Join the Usability Challenge 2008 and participate in the world'
|
2555
|
+
s first global usability drive!\n\nOn 1 August 2008\, we are asking anyone
|
2556
|
+
with a passion for usability to solve a usability problem...any usability p
|
2557
|
+
roblem at all...and help make the world a better/safer/less annoying place.
|
2558
|
+
\n\n1. Find a usability problem\n\n2. Design a solution\n\n3. Share it with
|
2559
|
+
a person who can solve the problem by implementing your solution\n\nhttp:/
|
2560
|
+
/www.usabilitychallenge.org/
|
2561
|
+
LAST-MODIFIED:20080711T052833Z
|
2562
|
+
LOCATION:
|
2563
|
+
SEQUENCE:0
|
2564
|
+
STATUS:CONFIRMED
|
2565
|
+
SUMMARY:Usability Challenge 2008
|
2566
|
+
TRANSP:TRANSPARENT
|
2567
|
+
END:VEVENT
|
2568
|
+
BEGIN:VEVENT
|
2569
|
+
DTSTART:20080731T093000Z
|
2570
|
+
DTEND:20080731T110000Z
|
2571
|
+
DTSTAMP:20090531T005744Z
|
2572
|
+
ORGANIZER;CN=Phil Morle:mailto:phil.morle@gmail.com
|
2573
|
+
UID:g0firv96cm1nc45h206fpam3us@google.com
|
2574
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2575
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2576
|
+
ndar.google.com
|
2577
|
+
CLASS:PUBLIC
|
2578
|
+
CREATED:20080707T080221Z
|
2579
|
+
DESCRIPTION:
|
2580
|
+
LAST-MODIFIED:20080707T080222Z
|
2581
|
+
LOCATION:James Squire Brewhouse\, Darling Harbour
|
2582
|
+
SEQUENCE:0
|
2583
|
+
STATUS:CONFIRMED
|
2584
|
+
SUMMARY:Sydney Cocoa Users Group
|
2585
|
+
TRANSP:TRANSPARENT
|
2586
|
+
END:VEVENT
|
2587
|
+
BEGIN:VEVENT
|
2588
|
+
DTSTART:20080707T083000Z
|
2589
|
+
DTEND:20080707T123000Z
|
2590
|
+
DTSTAMP:20090531T005744Z
|
2591
|
+
UID:7ri347d4kpu4uvg8oci7jqjuic@google.com
|
2592
|
+
CLASS:PUBLIC
|
2593
|
+
CREATED:20080630T052306Z
|
2594
|
+
DESCRIPTION:http://www.mobilemondaysydney.com/\n\n:: 6.30pm for 7pm\, Mon 7
|
2595
|
+
th July 2008\n:: The Privilege Bar (part of the Blacket Hotel\n:: Entry on
|
2596
|
+
George St.\, (corner George and King.) Map here.\n
|
2597
|
+
LAST-MODIFIED:20080706T093617Z
|
2598
|
+
LOCATION:Privilege Bar Cnr George and King
|
2599
|
+
SEQUENCE:1
|
2600
|
+
STATUS:CONFIRMED
|
2601
|
+
SUMMARY:Mobile Monday
|
2602
|
+
TRANSP:OPAQUE
|
2603
|
+
END:VEVENT
|
2604
|
+
BEGIN:VEVENT
|
2605
|
+
DTSTART:20080703T080000Z
|
2606
|
+
DTEND:20080703T110000Z
|
2607
|
+
DTSTAMP:20090531T005744Z
|
2608
|
+
ORGANIZER;CN=Sydney PHP Group:mailto:gd7e9voq3odsh6l2io5p1gonu4@group.calen
|
2609
|
+
dar.google.com
|
2610
|
+
UID:co50vn8pdeminu47uvnfcho4fg@google.com
|
2611
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2612
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2613
|
+
ndar.google.com
|
2614
|
+
RECURRENCE-ID:20080703T080000Z
|
2615
|
+
CLASS:PUBLIC
|
2616
|
+
CREATED:20080605T050305Z
|
2617
|
+
DESCRIPTION:Update: July meeting cancelled due to illness. More at sydphp.o
|
2618
|
+
rg\n\nThe Sydney PHP Group meets every first Thursday of the month\, with t
|
2619
|
+
he exception of January (holidays). For more information\, visit sydphp.org
|
2620
|
+
LAST-MODIFIED:20080703T043258Z
|
2621
|
+
LOCATION:CodeGear offices\, Sydney\, Australia
|
2622
|
+
SEQUENCE:0
|
2623
|
+
STATUS:CONFIRMED
|
2624
|
+
SUMMARY:Sydney PHP Group monthly meeting
|
2625
|
+
TRANSP:TRANSPARENT
|
2626
|
+
END:VEVENT
|
2627
|
+
BEGIN:VEVENT
|
2628
|
+
DTSTART:20080704T073000Z
|
2629
|
+
DTEND:20080704T100000Z
|
2630
|
+
DTSTAMP:20090531T005744Z
|
2631
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2632
|
+
UID:be4rq4hhaqqbssj110jk0kg5kk@google.com
|
2633
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2634
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2635
|
+
ndar.google.com
|
2636
|
+
CLASS:PUBLIC
|
2637
|
+
CREATED:20080701T065653Z
|
2638
|
+
LAST-MODIFIED:20080702T042908Z
|
2639
|
+
LOCATION:Trinity Bar\, Dickson\, ACT
|
2640
|
+
SEQUENCE:1
|
2641
|
+
STATUS:CONFIRMED
|
2642
|
+
SUMMARY:CTUB 7
|
2643
|
+
TRANSP:OPAQUE
|
2644
|
+
END:VEVENT
|
2645
|
+
BEGIN:VEVENT
|
2646
|
+
DTSTART:20080703T060000Z
|
2647
|
+
DTEND:20080703T070000Z
|
2648
|
+
DTSTAMP:20090531T005744Z
|
2649
|
+
UID:pnoetmgev65ooho21db1g7l3vo@google.com
|
2650
|
+
CLASS:PUBLIC
|
2651
|
+
CREATED:20080626T222143Z
|
2652
|
+
LAST-MODIFIED:20080702T024206Z
|
2653
|
+
LOCATION:1 Barrack St\, Sydney\, NSW\, Australia
|
2654
|
+
SEQUENCE:1
|
2655
|
+
STATUS:CONFIRMED
|
2656
|
+
SUMMARY:Update: Co-Working Sydney Meetup
|
2657
|
+
TRANSP:OPAQUE
|
2658
|
+
END:VEVENT
|
2659
|
+
BEGIN:VEVENT
|
2660
|
+
DTSTART;TZID=Australia/Perth:20080702T180000
|
2661
|
+
DTEND;TZID=Australia/Perth:20080702T210000
|
2662
|
+
RRULE:FREQ=MONTHLY;BYDAY=1WE;WKST=SU
|
2663
|
+
DTSTAMP:20090531T005744Z
|
2664
|
+
ORGANIZER;CN=Perth Web Events:mailto:5ma3bsugrlhfq8tspln37hi2ko@group.calen
|
2665
|
+
dar.google.com
|
2666
|
+
UID:a2cpu0fqkv603j4dcs22sbpelc@google.com
|
2667
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2668
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2669
|
+
ndar.google.com
|
2670
|
+
CLASS:PUBLIC
|
2671
|
+
CREATED:20080701T042339Z
|
2672
|
+
DESCRIPTION:Join us at The Velvet Lounge next to the Flying Scotsman pub in
|
2673
|
+
Mt Lawley (corner of Beaufort and Grosvenor Streets) and meet your fellow
|
2674
|
+
web professionals. There’s free food\, a bar and each month we host two\, t
|
2675
|
+
en minute talks from members on their area of expertise.\n\nNo need to regi
|
2676
|
+
ster\, just rock up and join in! The night kicks off at 6.00pm. Talks start
|
2677
|
+
around 6:30pm
|
2678
|
+
LAST-MODIFIED:20080701T042340Z
|
2679
|
+
LOCATION:Velvet Lounge\, The Flying Scotsman 639 Beaufort St Mount Lawley W
|
2680
|
+
A 6050
|
2681
|
+
SEQUENCE:0
|
2682
|
+
STATUS:CONFIRMED
|
2683
|
+
SUMMARY:Port80 / AWIA MIni Talks
|
2684
|
+
TRANSP:OPAQUE
|
2685
|
+
END:VEVENT
|
2686
|
+
BEGIN:VEVENT
|
2687
|
+
DTSTART:20080627T020000Z
|
2688
|
+
DTEND:20080627T030000Z
|
2689
|
+
DTSTAMP:20090531T005744Z
|
2690
|
+
ORGANIZER;CN=Nathanael Boehm:mailto:nathanael.boehm@gmail.com
|
2691
|
+
UID:ua68rfb8mofhu44sigu3mnoqo0@google.com
|
2692
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2693
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2694
|
+
ndar.google.com
|
2695
|
+
CLASS:PUBLIC
|
2696
|
+
CREATED:20080626T045739Z
|
2697
|
+
DESCRIPTION:Canberra Twitter usergroup meet-up.
|
2698
|
+
LAST-MODIFIED:20080626T045740Z
|
2699
|
+
LOCATION:The Bakery Cafe\, Bunda Street\, Canberra
|
2700
|
+
SEQUENCE:0
|
2701
|
+
STATUS:CONFIRMED
|
2702
|
+
SUMMARY:CTUB 6
|
2703
|
+
TRANSP:OPAQUE
|
2704
|
+
END:VEVENT
|
2705
|
+
BEGIN:VEVENT
|
2706
|
+
DTSTART:20080712T010000Z
|
2707
|
+
DTEND:20080712T080000Z
|
2708
|
+
DTSTAMP:20090531T005744Z
|
2709
|
+
ORGANIZER;CN=Randal Leeb-du Toit:mailto:randal.leebdutoit@gmail.com
|
2710
|
+
UID:f6bniddmj63fkve55iha6hvg8s@google.com
|
2711
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2712
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2713
|
+
ndar.google.com
|
2714
|
+
CLASS:PUBLIC
|
2715
|
+
CREATED:20080625T005507Z
|
2716
|
+
DESCRIPTION:MySpace devJams are a great opportunity for developers to learn
|
2717
|
+
more about the MySpace Developer Platform\, the largest implementation of
|
2718
|
+
Open Social. \n\nHear inside views from the MySpace dev team\, get hot tips
|
2719
|
+
on building social media apps and have an unprecedented opportunity to wor
|
2720
|
+
k in teams on ... (truncated)\n-----\nSee http://upcoming.yahoo.com/event/8
|
2721
|
+
31277/ for all the details!
|
2722
|
+
LAST-MODIFIED:20080625T005507Z
|
2723
|
+
LOCATION:Mitchellake Sydney\, Level 1\, 1 O'Briens Lane\, Darlinghurst Sydn
|
2724
|
+
ey\, New South Wales 2010
|
2725
|
+
SEQUENCE:0
|
2726
|
+
STATUS:CONFIRMED
|
2727
|
+
SUMMARY:MySpace devJam Sydney
|
2728
|
+
TRANSP:OPAQUE
|
2729
|
+
END:VEVENT
|
2730
|
+
BEGIN:VEVENT
|
2731
|
+
DTSTART:20080719T010000Z
|
2732
|
+
DTEND:20080719T080000Z
|
2733
|
+
DTSTAMP:20090531T005744Z
|
2734
|
+
ORGANIZER;CN=Randal Leeb-du Toit:mailto:randal.leebdutoit@gmail.com
|
2735
|
+
UID:5ul9k7mbtbr9c6n45r6jajpfio@google.com
|
2736
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2737
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2738
|
+
ndar.google.com
|
2739
|
+
CLASS:PUBLIC
|
2740
|
+
CREATED:20080625T005439Z
|
2741
|
+
DESCRIPTION:MySpace devJams are a great opportunity for developers to learn
|
2742
|
+
more about the MySpace Developer Platform\, the largest implementation of
|
2743
|
+
Open Social.\n\nHear inside views from the MySpace dev team\, get hot tips
|
2744
|
+
on building social media apps and have an unprecedented opportunity to work
|
2745
|
+
in teams on a... (truncated)\n-----\nSee http://upcoming.yahoo.com/event/8
|
2746
|
+
31287/ for all the details!
|
2747
|
+
LAST-MODIFIED:20080625T005440Z
|
2748
|
+
LOCATION:Mitchellake Melbourne\, Suite 501\, 217 A'Beckett Street Melbourne
|
2749
|
+
\, Victoria 3000
|
2750
|
+
SEQUENCE:0
|
2751
|
+
STATUS:CONFIRMED
|
2752
|
+
SUMMARY:MySpace devJam Melbourne
|
2753
|
+
TRANSP:OPAQUE
|
2754
|
+
END:VEVENT
|
2755
|
+
BEGIN:VEVENT
|
2756
|
+
DTSTART:20080726T010000Z
|
2757
|
+
DTEND:20080726T070000Z
|
2758
|
+
DTSTAMP:20090531T005744Z
|
2759
|
+
ORGANIZER;CN=Randal Leeb-du Toit:mailto:randal.leebdutoit@gmail.com
|
2760
|
+
UID:do6hsa45ccqc24fu6r6q0pj14c@google.com
|
2761
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2762
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2763
|
+
ndar.google.com
|
2764
|
+
CLASS:PUBLIC
|
2765
|
+
CREATED:20080625T005359Z
|
2766
|
+
DESCRIPTION:MySpace devJams are a great opportunity for developers to learn
|
2767
|
+
more about the MySpace Developer Platform\, the largest implementation of
|
2768
|
+
Open Social.\n\nThis is a special Games devJam and attendees will be able t
|
2769
|
+
o hear inside views from the MySpace dev team\, get hot tips on building so
|
2770
|
+
cial gaming ap... (truncated)\n-----\nSee http://upcoming.yahoo.com/event/8
|
2771
|
+
31297/ for all the details!
|
2772
|
+
LAST-MODIFIED:20080625T005400Z
|
2773
|
+
LOCATION:Mitchellake Sydney\, Level 1\, 1 O'Briens Lane\, Darlinghurst Sydn
|
2774
|
+
ey\, New South Wales 2010
|
2775
|
+
SEQUENCE:0
|
2776
|
+
STATUS:CONFIRMED
|
2777
|
+
SUMMARY:MySpace devJam Games
|
2778
|
+
TRANSP:OPAQUE
|
2779
|
+
END:VEVENT
|
2780
|
+
BEGIN:VEVENT
|
2781
|
+
DTSTART:20080625T080000Z
|
2782
|
+
DTEND:20080625T110000Z
|
2783
|
+
DTSTAMP:20090531T005744Z
|
2784
|
+
ORGANIZER;CN=Catherine Eibner:mailto:ceibner@gmail.com
|
2785
|
+
UID:040000008200E00074C5B7101A82E0080000000050F3434E5DD5C801000000000000000
|
2786
|
+
0100000004C83EFF8DA0A2A48A0C034EA63BC5357
|
2787
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2788
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2789
|
+
ndar.google.com
|
2790
|
+
CLASS:PUBLIC
|
2791
|
+
CREATED:20080623T081130Z
|
2792
|
+
DESCRIPTION:Outsourcing\, and ASP.NET MVC Framework\n\nHow to manage Outsou
|
2793
|
+
rcing by Bob McGilvray\nOverview of ASP.NET MVC by Tatham Oddie\n\nOutsouri
|
2794
|
+
ng\nIn this presentation Bob covers his experiences with outsourcing large
|
2795
|
+
software projects to overseas development teams. Bob will be covering the b
|
2796
|
+
enefits\, problems and techniques for managing an outsourced development.\n
|
2797
|
+
\nMVC Framework\nIn this session Tatham introduces the MVC design pattern a
|
2798
|
+
nd then explains Microsoft's ASP.NET implementation. The presentation will
|
2799
|
+
be high level\, covering where MVC is beneficial\, where it is inappropriat
|
2800
|
+
e\, and why you would consider it in your business.\n\nhttp://www.facebook.
|
2801
|
+
com/event.php?eid=44672385385
|
2802
|
+
LAST-MODIFIED:20080623T083311Z
|
2803
|
+
LOCATION:Microsoft HQ\, North Ryde\, 1 Epping Road\, North ryde NSW 2113
|
2804
|
+
SEQUENCE:0
|
2805
|
+
STATUS:CONFIRMED
|
2806
|
+
SUMMARY:SBTUG: 25 June 2008
|
2807
|
+
TRANSP:OPAQUE
|
2808
|
+
END:VEVENT
|
2809
|
+
BEGIN:VEVENT
|
2810
|
+
DTSTART:20080624T223000Z
|
2811
|
+
DTEND:20080625T033000Z
|
2812
|
+
DTSTAMP:20090531T005744Z
|
2813
|
+
UID:3obj3jal5cbifsnv1fcmtif760@google.com
|
2814
|
+
CLASS:PUBLIC
|
2815
|
+
CREATED:20080622T033906Z
|
2816
|
+
DESCRIPTION:http://www.nickhodge.com/blog/archives/2542
|
2817
|
+
LAST-MODIFIED:20080622T033906Z
|
2818
|
+
LOCATION:
|
2819
|
+
SEQUENCE:0
|
2820
|
+
STATUS:CONFIRMED
|
2821
|
+
SUMMARY:Matt Bai\, Canberra Talk
|
2822
|
+
TRANSP:OPAQUE
|
2823
|
+
END:VEVENT
|
2824
|
+
BEGIN:VEVENT
|
2825
|
+
DTSTART:20080625T070000Z
|
2826
|
+
DTEND:20080625T113000Z
|
2827
|
+
DTSTAMP:20090531T005744Z
|
2828
|
+
UID:ft79rr5g0p5snnk1r4oh4dk0ng@google.com
|
2829
|
+
CLASS:PUBLIC
|
2830
|
+
CREATED:20080622T025536Z
|
2831
|
+
DESCRIPTION:http://webstandardsgroup.org/meetings/sydney.cfm
|
2832
|
+
LAST-MODIFIED:20080622T025536Z
|
2833
|
+
LOCATION:
|
2834
|
+
SEQUENCE:0
|
2835
|
+
STATUS:CONFIRMED
|
2836
|
+
SUMMARY:WSG Usability
|
2837
|
+
TRANSP:OPAQUE
|
2838
|
+
END:VEVENT
|
2839
|
+
BEGIN:VEVENT
|
2840
|
+
DTSTART;VALUE=DATE:20080630
|
2841
|
+
DTEND;VALUE=DATE:20080701
|
2842
|
+
DTSTAMP:20090531T005744Z
|
2843
|
+
ORGANIZER;CN=OSDC Calendar:mailto:242u3g2hmfkiai7cnodllkqkrs@group.calendar
|
2844
|
+
.google.com
|
2845
|
+
UID:p1mh3bupgv150m751c8h86e5ac@google.com
|
2846
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2847
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2848
|
+
ndar.google.com
|
2849
|
+
CLASS:PUBLIC
|
2850
|
+
CREATED:20080620T104741Z
|
2851
|
+
DESCRIPTION:The Open Source Developers Conference call for papers closes to
|
2852
|
+
day. Submit your proposal at http://www.osdc.com.au/
|
2853
|
+
LAST-MODIFIED:20080620T104742Z
|
2854
|
+
LOCATION:http://www.osdc.com.au/
|
2855
|
+
SEQUENCE:0
|
2856
|
+
STATUS:CONFIRMED
|
2857
|
+
SUMMARY:OSDC call for papers closes
|
2858
|
+
TRANSP:TRANSPARENT
|
2859
|
+
END:VEVENT
|
2860
|
+
BEGIN:VEVENT
|
2861
|
+
DTSTART;VALUE=DATE:20080623
|
2862
|
+
DTEND;VALUE=DATE:20080624
|
2863
|
+
DTSTAMP:20090531T005744Z
|
2864
|
+
ORGANIZER;CN=OSDC Calendar:mailto:242u3g2hmfkiai7cnodllkqkrs@group.calendar
|
2865
|
+
.google.com
|
2866
|
+
UID:ama77ris50aeslgofpok70ts8k@google.com
|
2867
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2868
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2869
|
+
ndar.google.com
|
2870
|
+
CLASS:PUBLIC
|
2871
|
+
CREATED:20080620T104549Z
|
2872
|
+
DESCRIPTION:Open Source Developers Conference (OSDC) call for papers closes
|
2873
|
+
in 1 week.
|
2874
|
+
LAST-MODIFIED:20080620T104550Z
|
2875
|
+
LOCATION:http://www.osdc.com.au/
|
2876
|
+
SEQUENCE:0
|
2877
|
+
STATUS:CONFIRMED
|
2878
|
+
SUMMARY:OSDC call for papers closes in 1 week
|
2879
|
+
TRANSP:TRANSPARENT
|
2880
|
+
END:VEVENT
|
2881
|
+
BEGIN:VEVENT
|
2882
|
+
DTSTART:20080703T083000Z
|
2883
|
+
DTEND:20080703T113000Z
|
2884
|
+
DTSTAMP:20090531T005744Z
|
2885
|
+
ORGANIZER;CN=P Rai:mailto:dekrazee1@gmail.com
|
2886
|
+
UID:tg21opcmca19vbtc9a1k6h04ak@google.com
|
2887
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2888
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2889
|
+
ndar.google.com
|
2890
|
+
CLASS:PUBLIC
|
2891
|
+
CREATED:20080618T031959Z
|
2892
|
+
DESCRIPTION:http://www.facebook.com/home.php#/event.php?eid=26195845089&ref
|
2893
|
+
=nf
|
2894
|
+
LAST-MODIFIED:20080618T032252Z
|
2895
|
+
LOCATION:620 Harris St. Ultimo\, Sydney
|
2896
|
+
SEQUENCE:0
|
2897
|
+
STATUS:CONFIRMED
|
2898
|
+
SUMMARY:Beer2.0
|
2899
|
+
TRANSP:OPAQUE
|
2900
|
+
END:VEVENT
|
2901
|
+
BEGIN:VEVENT
|
2902
|
+
DTSTART:20080619T081500Z
|
2903
|
+
DTEND:20080619T103000Z
|
2904
|
+
DTSTAMP:20090531T005744Z
|
2905
|
+
ORGANIZER;CN=Phil Pollenizer:mailto:kpdvgepahkppepcm6dbjkp3pac@group.calend
|
2906
|
+
ar.google.com
|
2907
|
+
UID:b9mb896rt212fodkqq365hcscg@google.com
|
2908
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2909
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2910
|
+
ndar.google.com
|
2911
|
+
CLASS:PUBLIC
|
2912
|
+
CREATED:20080605T223824Z
|
2913
|
+
DESCRIPTION:\n\n\nThanks for RSVPing for the SyPy meeting on Thursday night
|
2914
|
+
. The lifts will be in security mode\, so please meet on the ground floor o
|
2915
|
+
f tower 1. We'll be ferrying people up the lifts between 6:15 and 6:30. If
|
2916
|
+
you don't quite make it by 6:30\, please call me on 0401 966 348.\n\nBrett
|
2917
|
+
will also be doing a presention for Google Developer day on Wednesday\, and
|
2918
|
+
he's conscious that many of you will be going to that.\nHis SyPy presentat
|
2919
|
+
ion will cover new material\, and be more focussed on Python. If you're not
|
2920
|
+
going to developer day\, you might like to review this video of Brett givi
|
2921
|
+
ng the same presentation at Google I/O:\n\nhttp://sites.google.com/site/io/
|
2922
|
+
building-scalable-web-applications-with-google-app-engine\n\nAfter the pres
|
2923
|
+
entation\, we'll head out to a quiet\, nearby bar. If you haven't before\,
|
2924
|
+
please come along and meet your fellow Python and web developers - they're
|
2925
|
+
an interesting bunch.\n\nFinally\, the address details again:\n\nThursday\,
|
2926
|
+
June 19\, 2008 6:15-8:30PM\nGoogle Australia\nTower 1 Darling Park\n201 Su
|
2927
|
+
ssex St\nSydney\n(http://maps.google.com.au/maps?hl=en&q=201+Sussex+St\,+Sy
|
2928
|
+
dney+NSW+2000\,+Australia&ie=UTF8&z=16&iwloc=addr)\n\nLook forward to seein
|
2929
|
+
g you Thursday night\,\n
|
2930
|
+
LAST-MODIFIED:20080618T021929Z
|
2931
|
+
LOCATION:Google Australia
|
2932
|
+
SEQUENCE:0
|
2933
|
+
STATUS:CONFIRMED
|
2934
|
+
SUMMARY:Google App Engine Talk
|
2935
|
+
TRANSP:OPAQUE
|
2936
|
+
END:VEVENT
|
2937
|
+
BEGIN:VEVENT
|
2938
|
+
DTSTART:20080618T073000Z
|
2939
|
+
DTEND:20080618T120000Z
|
2940
|
+
DTSTAMP:20090531T005744Z
|
2941
|
+
ORGANIZER;CN=Alison Young:mailto:alegrya@gmail.com
|
2942
|
+
UID:j9j5gc0fmhagjmbt06g30dpmas@google.com
|
2943
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2944
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2945
|
+
ndar.google.com
|
2946
|
+
CLASS:PUBLIC
|
2947
|
+
CREATED:20080617T012619Z
|
2948
|
+
DESCRIPTION:Jed White of Itechne\, the organiser and sponsor of PubCamp wil
|
2949
|
+
l be hosting STUB drinks at the Customs House Bar which is located behind t
|
2950
|
+
he Marriott in Circular Quay at 5.30p and also at 8p following the unconfer
|
2951
|
+
ence sessions.\n\nCome along and meet the attendees of PubCamp and other Tw
|
2952
|
+
itter people from Sydney and beyond.
|
2953
|
+
LAST-MODIFIED:20080617T013011Z
|
2954
|
+
LOCATION:Customs House Bar\, Macquarie Place\, Sydney NSW
|
2955
|
+
SEQUENCE:0
|
2956
|
+
STATUS:CONFIRMED
|
2957
|
+
SUMMARY:STUB drinks at PubCamp
|
2958
|
+
TRANSP:OPAQUE
|
2959
|
+
END:VEVENT
|
2960
|
+
BEGIN:VEVENT
|
2961
|
+
DTSTART:20080619T070000Z
|
2962
|
+
DTEND:20080619T073000Z
|
2963
|
+
DTSTAMP:20090531T005744Z
|
2964
|
+
UID:h7p9fn74b3r6q3m47f9330jfs4@google.com
|
2965
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=Australian
|
2966
|
+
Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.calendar
|
2967
|
+
.google.com
|
2968
|
+
CLASS:PUBLIC
|
2969
|
+
CREATED:20080615T052346Z
|
2970
|
+
LAST-MODIFIED:20080615T110606Z
|
2971
|
+
SEQUENCE:1
|
2972
|
+
STATUS:CONFIRMED
|
2973
|
+
SUMMARY:Apple Store Opens
|
2974
|
+
TRANSP:OPAQUE
|
2975
|
+
END:VEVENT
|
2976
|
+
BEGIN:VEVENT
|
2977
|
+
DTSTART;VALUE=DATE:20080624
|
2978
|
+
DTEND;VALUE=DATE:20080625
|
2979
|
+
DTSTAMP:20090531T005744Z
|
2980
|
+
UID:g6voe9ithump27dcevbclhbkb4@google.com
|
2981
|
+
CLASS:PUBLIC
|
2982
|
+
CREATED:20080612T214159Z
|
2983
|
+
DESCRIPTION:http://creativecommons.org.au/australasiancommons
|
2984
|
+
LAST-MODIFIED:20080612T214159Z
|
2985
|
+
LOCATION:Brisbane
|
2986
|
+
SEQUENCE:0
|
2987
|
+
STATUS:CONFIRMED
|
2988
|
+
SUMMARY:Creative Commons Australasia
|
2989
|
+
TRANSP:TRANSPARENT
|
2990
|
+
END:VEVENT
|
2991
|
+
BEGIN:VEVENT
|
2992
|
+
DTSTART:20080618T050000Z
|
2993
|
+
DTEND:20080618T110000Z
|
2994
|
+
DTSTAMP:20090531T005744Z
|
2995
|
+
ORGANIZER;CN=Tom Kelshaw:mailto:tomkelshaw@gmail.com
|
2996
|
+
UID:oes2vnss350u4g70h8c9l6a91g@google.com
|
2997
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
2998
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
2999
|
+
ndar.google.com
|
3000
|
+
CLASS:PUBLIC
|
3001
|
+
CREATED:20080609T140957Z
|
3002
|
+
DESCRIPTION:A Conference and Unconference\n\n Come along to "PubCamp - The
|
3003
|
+
Web 2.0 Media Day - A Conference and Unconference". It's a free event about
|
3004
|
+
the future of media and the Web covering Web 2.0\, social and citizen medi
|
3005
|
+
a\, the semantic web\, mobile\, widgets\, online advertising and revenue mo
|
3006
|
+
dels\, copyright\, cross-media and more.\n\nYou might have heard of BarCamp
|
3007
|
+
. Interested in where media is heading? Then PubCamp is for you!\n\n* Immer
|
3008
|
+
se yourself in good ideas with smart people in an information-packed aftern
|
3009
|
+
oon and evening.\n\n* Share leading-edge insights into where the Web and on
|
3010
|
+
line media are heading and explore case studies and examples from around th
|
3011
|
+
e world.\n\n* Be part of a conversation and debate with other people workin
|
3012
|
+
g in media and online.\n\n* Find out how other people are approaching the c
|
3013
|
+
hallenges\, and take part in open panel and workshop discussions.\n\nPubCam
|
3014
|
+
p - The Web 2.0 Media Day is free to attend and has two parts. A formal con
|
3015
|
+
ference and briefing seminar with traditional sessions runs from 3-5pm\, an
|
3016
|
+
d an open "unconference" designed to foster community and conversation runs
|
3017
|
+
from 6-8pm. Everyone is welcome to attend either or both\, and there's a n
|
3018
|
+
etworking session with drinks and nibbles from 5-6pm.\n\nThe event will be
|
3019
|
+
available online if you can't make it in person.\n\nGet involved and bring
|
3020
|
+
along colleagues and friends. If you have topics you'd like to see covered\
|
3021
|
+
, ideas for presentations\, or want to start a conversation\, then the Unco
|
3022
|
+
nference is your chance. It's open for everyone. To nominate sessions or fi
|
3023
|
+
nd out more go to the website.\n\nPlease pass on an invitation to anyone yo
|
3024
|
+
u think might want to be involved too.\n\nSeats are limited\, so RSVP early
|
3025
|
+
.\n\nSee also the Melbourne event on the 23rd for those south of the border
|
3026
|
+
!\n\nHomepage\nhttp://www.semanticmedia.org/pubcamp/ \n\nAlso check out the
|
3027
|
+
Friendfeed Room for more discussion and ideas:\nhttp://friendfeed.com/room
|
3028
|
+
s/pubcamp\n\nAnd follow the event on Twitter:\nhttp://twitter.com/pubcamp\n
|
3029
|
+
\nhttp://www.facebook.com/event.php?eid=15591841378
|
3030
|
+
LAST-MODIFIED:20080612T102042Z
|
3031
|
+
LOCATION:Marriott Sydney Harbour Hotel\, near Circular Quay.\, 30 Pitt St
|
3032
|
+
SEQUENCE:0
|
3033
|
+
STATUS:CONFIRMED
|
3034
|
+
SUMMARY:PubCamp Sydney - The Web 2.0 Media Day
|
3035
|
+
TRANSP:OPAQUE
|
3036
|
+
END:VEVENT
|
3037
|
+
BEGIN:VEVENT
|
3038
|
+
DTSTART:20080705T020000Z
|
3039
|
+
DTEND:20080705T100000Z
|
3040
|
+
DTSTAMP:20090531T005744Z
|
3041
|
+
ORGANIZER;CN=Trippything Events:mailto:trippything.com_t762maquor0c9mtdndar
|
3042
|
+
tun410@group.calendar.google.com
|
3043
|
+
UID:3deph3073e3g6j01l6rm0d94e8@google.com
|
3044
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
3045
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
3046
|
+
ndar.google.com
|
3047
|
+
CLASS:PUBLIC
|
3048
|
+
CREATED:20080610T232124Z
|
3049
|
+
DESCRIPTION:Over at Elliot's house (picture 'Flight of the Conchords'\, he'
|
3050
|
+
s the band and I'm Murray) and he had an excellent idea: invite a mob of de
|
3051
|
+
veloper mates over one night soon\, set out some documentation on a wiki\,
|
3052
|
+
lay on a lot of pizza and beer\, bump up the volume\, and see how many pars
|
3053
|
+
ers for Trippything we can write before the sun comes up.\n\nI thought we m
|
3054
|
+
ight call it "ParsingOut" and if it proves popular\, then this would be Par
|
3055
|
+
singOutOne since we're likely to do it more often than once a year.\n\nTher
|
3056
|
+
e will be music\, food\, drink\, friends\, lucky door prizes and random\, s
|
3057
|
+
pectacular acts of bravado.
|
3058
|
+
LAST-MODIFIED:20080612T050310Z
|
3059
|
+
LOCATION:50 Mill Hill Road\, Bondi Junction NSW
|
3060
|
+
SEQUENCE:0
|
3061
|
+
STATUS:CONFIRMED
|
3062
|
+
SUMMARY:ParsingOut One
|
3063
|
+
TRANSP:OPAQUE
|
3064
|
+
END:VEVENT
|
3065
|
+
BEGIN:VEVENT
|
3066
|
+
DTSTART:20080616T080000Z
|
3067
|
+
DTEND:20080616T100000Z
|
3068
|
+
DTSTAMP:20090531T005744Z
|
3069
|
+
ORGANIZER;CN=SyXPAC:mailto:r287adh12us00a8dsk6c94mauk@group.calendar.google
|
3070
|
+
.com
|
3071
|
+
UID:dfmtue8e5l277lbs85coo287vk@google.com
|
3072
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
3073
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
3074
|
+
ndar.google.com
|
3075
|
+
CLASS:PUBLIC
|
3076
|
+
CREATED:20080611T215008Z
|
3077
|
+
DESCRIPTION:Presentation 1: "Everything you know about Agile is probably wr
|
3078
|
+
ong" - Frank Huang\n\nAfter this\, potentially a presentation on WebDriver
|
3079
|
+
by Simon Stewart or just general discussion
|
3080
|
+
LAST-MODIFIED:20080611T220137Z
|
3081
|
+
LOCATION:Atlassian\, 173-185 Sussex St\, Sydney 2001
|
3082
|
+
SEQUENCE:1
|
3083
|
+
STATUS:CONFIRMED
|
3084
|
+
SUMMARY:SyXPAC meeting: Everything you know about Agile is probably wrong
|
3085
|
+
TRANSP:OPAQUE
|
3086
|
+
END:VEVENT
|
3087
|
+
BEGIN:VEVENT
|
3088
|
+
DTSTART;VALUE=DATE:20080711
|
3089
|
+
DTEND;VALUE=DATE:20080712
|
3090
|
+
DTSTAMP:20090531T005744Z
|
3091
|
+
UID:l02pt95ld0b8cbt8lh8ng8h5m0@google.com
|
3092
|
+
CLASS:PUBLIC
|
3093
|
+
CREATED:20080610T211134Z
|
3094
|
+
LAST-MODIFIED:20080610T211134Z
|
3095
|
+
SEQUENCE:0
|
3096
|
+
STATUS:CONFIRMED
|
3097
|
+
SUMMARY:iPhone Released
|
3098
|
+
TRANSP:TRANSPARENT
|
3099
|
+
END:VEVENT
|
3100
|
+
BEGIN:VEVENT
|
3101
|
+
DTSTART:20080612T081500Z
|
3102
|
+
DTEND:20080612T130000Z
|
3103
|
+
DTSTAMP:20090531T005744Z
|
3104
|
+
ORGANIZER;CN=Damana Madden:mailto:damana@gmail.com
|
3105
|
+
UID:7k1l2otettjrr4qav5bpchr2hc@google.com
|
3106
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
3107
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
3108
|
+
ndar.google.com
|
3109
|
+
CLASS:PUBLIC
|
3110
|
+
CREATED:20080605T122145Z
|
3111
|
+
DESCRIPTION:The next Sydney dinner will be hosted by our friends at Yahoo!7
|
3112
|
+
at their fabulous office in Walsh Bay on the 12th of June. As requested\,
|
3113
|
+
we have technical talks\, networking activities\, drinks and food.\n\nRegis
|
3114
|
+
tration has closed but there is a waiting list. People often pull out last
|
3115
|
+
minute so there is a chance you will get in.\n\nGeek guys must be accompani
|
3116
|
+
ed by a geek girl.
|
3117
|
+
LAST-MODIFIED:20080610T130948Z
|
3118
|
+
LOCATION:Yahoo!7 in Walsh Bay
|
3119
|
+
SEQUENCE:1
|
3120
|
+
STATUS:CONFIRMED
|
3121
|
+
SUMMARY:Girl Geek Dinner 0b11
|
3122
|
+
TRANSP:OPAQUE
|
3123
|
+
END:VEVENT
|
3124
|
+
BEGIN:VEVENT
|
3125
|
+
DTSTART:20080714T220000Z
|
3126
|
+
DTEND:20080715T070000Z
|
3127
|
+
DTSTAMP:20090531T005744Z
|
3128
|
+
UID:v2sqlnu2rir6vhkpe4so34bsq8@google.com
|
3129
|
+
CLASS:PUBLIC
|
3130
|
+
CREATED:20080605T213228Z
|
3131
|
+
DESCRIPTION:http://www.futureexploration.net/fom08/
|
3132
|
+
LAST-MODIFIED:20080605T213228Z
|
3133
|
+
LOCATION:Sydney
|
3134
|
+
SEQUENCE:0
|
3135
|
+
STATUS:CONFIRMED
|
3136
|
+
SUMMARY:Furture of Media (Sydney
|
3137
|
+
TRANSP:OPAQUE
|
3138
|
+
END:VEVENT
|
3139
|
+
BEGIN:VEVENT
|
3140
|
+
DTSTART:20080619T020000Z
|
3141
|
+
DTEND:20080619T050000Z
|
3142
|
+
DTSTAMP:20090531T005744Z
|
3143
|
+
UID:mtlg8rmk5rrnb0sldi4g4itgr4@google.com
|
3144
|
+
CLASS:PUBLIC
|
3145
|
+
CREATED:20080605T212929Z
|
3146
|
+
DESCRIPTION:http://www.futureexploration.net/topweb2apps/
|
3147
|
+
LAST-MODIFIED:20080605T213107Z
|
3148
|
+
LOCATION:Sydney
|
3149
|
+
SEQUENCE:1
|
3150
|
+
STATUS:CONFIRMED
|
3151
|
+
SUMMARY:Top 100 Australian Web Applications
|
3152
|
+
TRANSP:OPAQUE
|
3153
|
+
END:VEVENT
|
3154
|
+
BEGIN:VEVENT
|
3155
|
+
DTSTART;VALUE=DATE:20080908
|
3156
|
+
DTEND;VALUE=DATE:20080911
|
3157
|
+
DTSTAMP:20090531T005744Z
|
3158
|
+
ORGANIZER;CN=Mick Liubinskas:mailto:mliubinskas@gmail.com
|
3159
|
+
UID:5jjfe61nejt88e7pvp0hiaopbk@google.com
|
3160
|
+
ATTENDEE;CUTYPE=GROUP;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;CN=Austral
|
3161
|
+
ian Tech Events;X-NUM-GUESTS=0:mailto:pf44opfb12hherild7h2pl11b4@group.cale
|
3162
|
+
ndar.google.com
|
3163
|
+
CLASS:PUBLIC
|
3164
|
+
CREATED:20080530T042002Z
|
3165
|
+
LAST-MODIFIED:20080530T042331Z
|
3166
|
+
SEQUENCE:0
|
3167
|
+
STATUS:CONFIRMED
|
3168
|
+
SUMMARY:Techcrunch 50 (USA)
|
3169
|
+
TRANSP:TRANSPARENT
|
3170
|
+
END:VEVENT
|
3171
|
+
END:VCALENDAR
|