-
Notifications
You must be signed in to change notification settings - Fork 14
/
auckland.html
455 lines (387 loc) · 20.7 KB
/
auckland.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style type="text/css">
.coaches .grid_2 { margin-left: 0; }
.large { font-size: 25px; margin-bottom: 20px; }
#promo { padding-top: 0;}
#promo p.small { font-size: 14px; }
a.apply { background: #d3360b; display: inline-block; color: #fff; padding: 10px 20px; -webkit-border-radius: 4px;
-moz-border-radius: 4px; border-radius: 4px; }
</style>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialize() {
var myOptions = {
zoom: 14,
center: new google.maps.LatLng(-36.871377, 174.777874),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);
var options = {
position: new google.maps.LatLng(-36.871377, 174.777874),
icon: "./images/heart-marker-sm.png"
};
var marker = new google.maps.Marker(options);
marker.setMap(map);
}
</script>
<!-- Add your city name, dates and year. -->
<title>Auckland July 2014</title>
<!-- Write a metatext. This is what will show on the Facebook page and for instance search engines. -->
<meta name="description" content="Rails Girls goes to Auckland: join the two-day crash-course to the exciting world of building web applications with Ruby on Rails.">
<meta name="author" content="Rails Girls">
<link rel="shortcut icon" href="/favicon.png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="./css/style.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script type="text/javascript" src="//use.typekit.net/nbs6fzt.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<meta property="og:image" content="https://railsgirls.com/images/railsgirls-sq.png"/>
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body onload="initialize()">
<header>
<div class="container_12">
<a id="logo" href="/"><img src="images/railsgirls-logo.png" alt="Rails Girls" /></a>
<nav>
<a href="./events.html">Events</a>
<a href="./materials.html">Materials</a>
<a href="./press.html">Press</a>
<a href="https://railsgirls.tumblr.com/">Blog</a>
<a href="https://guides.railsgirls.com">
Guides</a>
</nav>
</div>
</header>
<!-- How to change the picture & header for site
In the assets folder there is something called rg-header.psd. Be sure to download the fonts also. Name the file rg-yourcityname-header.png and your city picture rg-yourcityname.png. Add them to /images.
Steps to show on site
1. Go to style.css
2. Add these lines, always replacing 'yourcityname' with your actual city name.
.yourcityname#promo {
padding-left:340px;
background:url('../images/rg-yourcityname.png') no-repeat 0 10px,
url('../images/separator.png') no-repeat center bottom;
}
It will take a while before the changes show, so don't panic!
-->
<!-- Change the header text. You can include a local hello or something else that brings context. Remember to mention the workshop is free. Remember to change to wufoo form link and dates. -->
<div id="container" class="container_12 page clearfix">
<div class="grid_12 omega alpha">
<div id="promo" class="auckland">
<h1>Rails Girls Auckland
<small>Fri 4th & Sat 5th July 2014</small>
</h1>
<p>Kia ora!</p>
<p>Rails Girls is coming to Auckland for the first time! During this free two-day workshop we'll dive into the magical world of Ruby on Rails. </p>
<p>All of the material is available for you to learn at home by yourself but Rails Girls offers a casual and friendly environment to learn with others and a good tutor to student ratio to help get past some tricky areas.</p>
<!-- Update the sharing texts.-->
<div id="share">
<div style="margin:0 10px 0 0;">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="" data-text="Rails Girls Auckland is happening for the first time on 4th/5th of July!" data-count="horizontal" data-via="RailsGirlsAkl" data-related="RailsGirlsAkl">Tweet</a>
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
</div>
<div id="fb-root" style=""></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=156007477805811&xfbml=1"></script>
<fb:like href="https://www.facebook.com/railsgirlsakl" layout="standard" width="300px" send="true" show_faces="true" font=""></fb:like>
</div>
</div>
<hr />
<!-- You can use here your own contact e-mail, or we can send you the e-mails from contact@! -->
<div class="grid_4 alpha feature">
<p><strong>You learn</strong> designing, prototyping and coding with the help from our coaches. We introduce you to Ruby on Rails as one of the open-source web developing frameworks.</p>
</div>
<div class="grid_4 feature">
<p><strong>You need</strong> your own laptop, curiosity and a sprinkle of imagination!</p>
</div>
<div class="grid_4 omega feature">
<p><strong>Want to help?</strong> Send us an email if you'd like to be involved - <a href="mailto:[email protected]">email us</a>.</p>
</div>
</div>
<hr />
<!-- Update the texts! -->
<div class="grid_7 alpha">
<h3>FAQ</h3>
<p><strong>How much does the workshop cost?</strong>
Nothing, it's free! You just need to be excited!
</p>
<p><strong>Who is this aimed at?</strong>
Rails Girls Auckland is open to all those who identify as women or girls with basic knowledge of working with a computer. We’ve had people of all ages taking part.</p>
<p><strong>Can men attend?</strong>
Yes, but you need to be accompanied by an interested lady. Also, girls are given a priority.
</p>
<p><strong>Do you have a code of conduct?</strong>
Yes - it is <a href="https://docs.google.com/document/d/1Ajm6-3blEa_pMtiOP7BABfbePxin_zu9ipVXyl91bmU/edit?usp=sharing">here</a>. We expect attendees, coaches, and sponsor representatives to behave respectfully to make sure everyone has a great time.
</p>
<hr />
<h2>Friday</h2>
<table id="schedule">
<tbody>
<tr>
<th>7:00 PM - 9:00 PM</th>
<td>
<h4>Intro to coding</h4>
Talks from Charlie Ablett on why coding is awesome and Tanya Grey on programming basics<br/><br/>
Play the robot game and learn how web applications are like a bento box
</td>
</tr>
</tbody>
</table>
<hr />
<h2>Saturday</h2>
<table id="schedule">
<tbody>
<tr>
<th>8:30 AM - 9:30 AM</th>
<td>
<h4>Registration & coffee</h4>
</td>
</tr>
<tr>
<th>9:30 - 9:45</th>
<td>
<h4>Talk</h4>
Version Control is your Friend: Git and GitHub, Rob Isaac.
</td>
</tr>
<tr><th>9:45 - 12:45</th>
<td>
<h4>Build things!</h4>
Work with our coaches to build a web app using Ruby on Rails.
</td>
</tr>
<tr>
<th>12:45 - 1:15</th>
<td>
<h4>Lunch</h4>
</td>
</tr>
<tr><th>1:15 - 1:30</th>
<td>
<h4>Talk</h4>
Design fundamentals, Su Yin Khoo.
</td>
</tr>
<tr><th>1:30 - 1:45</th>
<td>
<h4>Talk</h4>
HTTP Status Codes, Caleb Tutty.
</td>
</tr>
<tr>
<th>1:45 - 5:00</th>
<td>
<h4>Second part of the workshop.</h4>
Choose between<br/><br/>
<ul>
<li>Workshop on front-end/app design.</li>
<li>Advanced workshop - Test Driven Development and Ruby.</li>
<li>Keep working with coaches to build your app.</li>
</ul>
</td>
</tr>
<tr><th>5:00 - 5:20</th>
<td>
<h4>Talk</h4>
How to become a programmer without a computer science degree, Christopher Bull.
</td>
</tr>
<tr><th>5:20 - 5:35</th>
<td>
<h4>Talk</h4>
Back of a Napkin - how not to let your great idea turn into a legal disaster, Sacha Judd.
</td>
</tr>
<tr><th>5:35 - 6:00</th>
<td>
<h4>Wrap up</h4>
</td>
</tr>
<tr><th>6:00 onwards</th>
<td>
<h4>Celebration drinks</h4>
</td>
</tr>
</tbody>
</table>
</div>
<!-- <hr/> -->
<div class="grid_4 push_1 omega">
<h3>Location</h3>
<p>Vend, Level 1, 2-36 Nuffield Street, Newmarket, Auckland</p>
<div id="map_canvas" style="height: 200px;"></div>
<a href = "https://maps.google.co.nz/maps?q=2-36+nuffield+street+auckland&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a&um=1&ie=UTF-8&hl=en&sa=N&tab=wl">Map</a>
<p></p>
<h3>We are looking for sponsors!</h3>
<p>
<small>Want to help? We are looking for partners and sponsors to support Rails Girls Auckland!
<a href="mailto:[email protected]">Email us!</a>
</small>
</p>
<h3>Our awesome Sponsors:</h3>
<br>
<div>
<h4>Gold Partners</h4>
<p class="sponsor-note">
<a href="http://www.trineo.com/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/trineo-logo.png" alt="Trineo" style="max-width: 180px;">
</a>
</p>
<p class="sponsor-note">
<a href="http://www.vendhq.com/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/vend-logo.png" alt="Vend" style="max-width: 180px;">
</a>
</p>
<p class="sponsor-note">
<a href="https://internetnz.net.nz/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/InternetNZ-logo.png" alt="Trineo" style="max-width: 180px;">
</a>
</p>
<h4>Silver Partners</h4>
<p class="sponsor-note">
<a href="http://www.github.com/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/github-logo.png" alt="GitHub" style="max-width: 180px;">
</a>
</p>
<h4>Bronze Partners</h4>
<p class="sponsor-note">
<a href="http://catalyst.net.nz/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/catalyst-logo.png" alt="Catalyst" style="max-width: 180px;">
</a>
</p>
<p class="sponsor-note">
<a href="http://codemania.co.nz" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/CodemaniaLogo.png" alt="Catalyst" style="max-width: 180px;">
</a>
</p>
<p class="sponsor-note">
<a href="http://datacom.co.nz/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/datacom.jpg" alt="Datacom" style="max-width: 180px;">
</a>
</p>
<p class="sponsor-note">
<a href="http://nitrous.io/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/nitrous.png" alt="Nitrous" style="max-width: 180px;">
</a>
</p>
<h4>Coffee sponsored by:</h4>
<p class="sponsor-note">
<a href="http://www.espressoworkshop.co.nz/" style="display:block; margin-top:20px; border:0;" target="_blank">
<img src="./images/auckland/espresso-workshop-logo.png" alt="Espresso Workshop" style="max-width: 180px;">
</a>
</p>
</div>
</div>
<!-- Update the team list -->
<div>
<div class="coaches clearfix">
<hr />
<h2>Auckland Coordinators</h2>
<a href="https://twitter.com/NatDudley" class="grid_2" target="_blank">
Nat Dudley
<small>@NatDudley</small>
</a>
<a href="https://twitter.com/mayaneise" class="grid_2" target="_blank">
Maria Neise
<small>@mayaneise</small>
</a>
<hr />
<h2>Auckland Coaches</h2>
<a href="#" class="grid_3">
Felix Geller
</a>
<a href="https://twitter.com/snikchnz" class="grid_3" target="_blank">
Mal Curtis
<small>@snikchnz</small>
</a>
<a href="https://twitter.com/Caleb_T" class="grid_3" target="_blank">
Caleb Tutty
<small>@Caleb_T</small>
</a>
<a href="https://twitter.com/four_seven" class="grid_3" target="_blank">
Mathew Hartley
<small>@four_seven</small>
</a>
<a href="https://twitter.com/DraconisNZ" class="grid_3" target="_blank">
Daniel Brooker
<small>@DraconisNZ</small>
</a>
<a href="https://twitter.com/christopherbull" class="grid_3" target="_blank">
Chris Bull
<small>@christopherbull</small>
</a>
<a href="https://twitter.com/steveh7" class="grid_3" target="_blank">
Steve Hoeksema
<small>@steveh7</small>
</a>
<a href="#" class="grid_3">
Constantine Zaytsev
</a>
<a href="https://twitter.com/jamesotron" class="grid_3" target="_blank">
James Harton
<small>@jamesotron</small>
</a>
<a href="https://twitter.com/segfault88" class="grid_3" target="_blank">
Malcolm Lockyer
<small>@segfault88</small>
</a>
<a href="https://twitter.com/gilesthompson" class="grid_3" target="_blank">
Giles Thompson
<small>@gilesthompson</small>
</a>
<a href="https://twitter.com/gingermusketeer" class="grid_3" target="_blank">
Max Brosnahan
<small>@gingermusketeer</small>
</a>
<a href="https://twitter.com/tanya" class="grid_3" target="_blank">
Tanya Gray
<small>@tanya</small>
</a>
<a href="https://twitter.com/merxplat" class="grid_3" target="_blank">
Merrin Macleod
<small>@merxplat</small>
</a>
<a href="https://twitter.com/ur5us" class="grid_3" target="_blank">
Juri Hahn
<small>@ur5us</small>
</a>
<a href="https://twitter.com/charlieablettnz" class="grid_3" target="_blank">
Charlie Ablett
<small>@charlieablettnz</small>
</a>
<a href="https://twitter.com/jaiivarsson" class="grid_3" target="_blank">
Jai Ivarsson
<small>@jaiivarsson</small>
</a>
<a href="https://twitter.com/oieduardorabelo" class="grid_3" target="_blank">
Eduardo Rabelo
<small>@oieduardorabelo</small>
</a>
<a href="https://twitter.com/daork" class="grid_3" target="_blank">
Nathan Ward
<small>@daork</small>
</a>
</div>
</div>
</div>
<!-- /content -->
<footer>
<p>2010-2015, Rails Girls. <a href="./press.html">Contact us</a> or follow us on <a href="https://twitter.com/railsgirls">Twitter</a> and <a href="https://www.facebook.com/railsgirls">Facebook</a></p>
<p class="slogan">Get excited and make things!</p>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40976825-1', 'railsgirls.com');
ga('send', 'pageview');
</script>
</body>
</html>