-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathevents.html
3313 lines (3169 loc) · 166 KB
/
events.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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no" />
<meta property="og:image" content="https://musescodejs.org/images/background1.jpg" />
<meta property="og:url" content="https://musescodejs.org/events.html" />
<meta property="og:title" content="Muses Code JS - JavaScript and Node workshops for women" />
<meta property="og:description"
content="We believe that any person should try programming at least once in their life. Therefore we created a community where in friendly atmosphere with great vibe you can try programming first time or if you already code - learn something new about JavaScript and/or Node.js." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@MusesCodeJSSyd" />
<meta name="twitter:creator" content="@ButenkoMe" />
<meta name="twitter:title" content="Muses Code JS - coding workshops for women" />
<meta name="twitter:description"
content="We believe that any person should try programming at least once in their life. Therefore we created a community where in friendly atmosphere with great vibe you can try programming first time or if you already code - learn something new about JavaScript and/or Node.js." />
<meta name="twitter:image" content="https://musescodejs.org/images/background1.jpg" />
<meta name="twitter:image:alt" content="Two women coding" />
<title>Muses Code JS - Node workshops for women</title>
<!-- CSS -->
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen" />
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
</head>
<body>
<nav class="white">
<div class="nav-wrapper container">
<ul class="hide-on-med-and-down nav-list nav-list--with-image">
<li class="nav-list__list-item">
<a href="chapters.html">Chapters</a>
</li>
<li class="nav-list__list-item">
<a href="events.html">Events</a>
</li>
<li class="nav-list__list-item nav-list__list-item--home">
<a href="./blog.html">Blog</a>
</li>
<li class="nav-list__list-item">
<a href="./muses-careers.html">Careers</a>
</li>
<li class="nav-list__list-item">
<a href="resources.html">Resources</a>
</li>
<li class="nav-list__list-item">
<a href="./contacts.html">Contact Us</a>
</li>
<li class="nav-list__logo">
<a href="./">
<svg xmlns="http://www.w3.org/2000/svg" width="75" height="52">
<g fill="none" fill-rule="evenodd">
<path fill="#C88AFF" fill-rule="nonzero"
d="M4.184 35.504a8.363 8.363 0 1 0 8.362-14.486 8.362 8.362 0 1 0-8.362 14.486z" />
<path fill="#7987E9"
d="M44.11 18.84c-.158.278-.33.543-.514.794L36.27 32.726l-.053-.03c-2.442 3.447-7.124 4.523-10.835 2.359-3.667-2.14-5.096-6.69-3.456-10.522l-.01-.005.055-.098a8.443 8.443 0 0 1 .764-1.364l6.97-12.456.034.019.073-.13c2.279-3.987 7.327-5.353 11.276-3.05 3.948 2.304 5.302 7.403 3.023 11.391z" />
<path fill="#CA4590"
d="M73.134 12.364c2.164-3.968.787-8.969-3.13-11.244C66.036-1.185 60.96.182 58.67 4.174l-.099.177-11.26 19.62a9.26 9.26 0 0 0-.15.26l-.009.017-.009.016c-2.16 3.968-.784 8.967 3.132 11.241 3.915 2.275 8.908.977 11.244-2.89l.093-.164 11.527-20.085-.004-.002z" />
<path fill="#1D263B" fill-rule="nonzero"
d="M.452 46.705h1.354l1.332 3.618 1.347-3.618h1.34v5.164h-.846V47.58h-.014L3.449 51.87h-.62L1.311 47.58h-.014v4.289H.452v-5.164zm19.318 3.268c0 .31-.052.593-.156.846a1.9 1.9 0 0 1-.423.634 1.9 1.9 0 0 1-.634.408c-.245.093-.51.139-.797.139-.287 0-.552-.046-.797-.139a1.979 1.979 0 0 1-.641-.408 1.9 1.9 0 0 1-.423-.634 2.31 2.31 0 0 1-.148-.846v-3.268h.888v3.238c0 .127.019.26.056.401.038.137.1.263.184.38.09.116.204.214.345.291.146.073.325.11.536.11.212 0 .388-.037.529-.11a1.1 1.1 0 0 0 .536-.671c.037-.14.056-.274.056-.4v-3.239h.889v3.268zm12.35-2.16a.8.8 0 0 0-.38-.305 1.274 1.274 0 0 0-.797-.066.849.849 0 0 0-.26.117.606.606 0 0 0-.255.51c0 .175.059.309.176.401.118.093.264.173.438.24.174.07.364.135.57.198.208.063.398.15.572.262.174.112.32.26.437.445.117.185.176.43.176.737 0 .277-.05.52-.148.729a1.466 1.466 0 0 1-.402.51 1.667 1.667 0 0 1-.578.307 2.362 2.362 0 0 1-.698.102c-.31 0-.609-.054-.895-.16a1.726 1.726 0 0 1-.74-.54l.67-.671c.107.17.248.304.422.401.179.092.367.139.564.139.104 0 .207-.015.31-.044a.949.949 0 0 0 .282-.131.688.688 0 0 0 .205-.22.63.63 0 0 0 .077-.313c0-.19-.058-.335-.176-.437a1.474 1.474 0 0 0-.437-.256 6.081 6.081 0 0 0-.57-.204 2.45 2.45 0 0 1-.572-.255 1.468 1.468 0 0 1-.438-.438c-.117-.185-.176-.43-.176-.736 0-.268.052-.499.155-.693.108-.195.247-.355.416-.482.174-.13.372-.228.593-.291a2.447 2.447 0 0 1 1.438.03c.25.082.473.218.67.407l-.649.708zm10.415-1.108h3.307v.832h-2.418v1.269h2.291v.831h-2.291v1.4h2.545v.832h-3.434v-5.164zm15.57 1.109a.8.8 0 0 0-.38-.306 1.274 1.274 0 0 0-.797-.066.853.853 0 0 0-.26.117.612.612 0 0 0-.255.51.48.48 0 0 0 .177.401c.117.093.263.173.437.24a7.8 7.8 0 0 0 .571.198c.207.063.397.15.571.262.174.112.32.26.437.445.118.185.177.43.177.737 0 .277-.05.52-.148.729a1.466 1.466 0 0 1-.402.51 1.666 1.666 0 0 1-.579.307 2.36 2.36 0 0 1-.698.102c-.31 0-.608-.054-.895-.16a1.73 1.73 0 0 1-.74-.54l.67-.671c.107.17.248.304.422.401.18.092.367.139.565.139.103 0 .206-.015.31-.044a.947.947 0 0 0 .282-.131.691.691 0 0 0 .204-.22.63.63 0 0 0 .078-.313c0-.19-.059-.335-.176-.437a1.478 1.478 0 0 0-.438-.256 6.059 6.059 0 0 0-.57-.204 2.454 2.454 0 0 1-.572-.255 1.464 1.464 0 0 1-.437-.438c-.117-.185-.176-.43-.176-.736 0-.268.052-.499.155-.693.108-.195.247-.355.416-.482.174-.13.371-.228.592-.291a2.447 2.447 0 0 1 1.439.03c.249.082.472.218.67.407l-.65.708z" />
</g>
</svg>
</a>
</li>
</ul>
<!--hamburger menu-->
<a class="nav-button" tabindex="0">☰</a>
<span class="nav-close" tabindex="0">☰</span>
<div class="nav-frame">
<!-- Side nav for mobile - menu links MUST BE REPEATED HERE,
hidden in non-mobile settings-->
<ul class="mobile-nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./chapters.html">Chapters</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="muses-careers.html">Careers</a></li>
<li><a href="./resources.html">Resources</a></li>
<li><a href="./contacts.html">Contact Us</a></li>
</ul>
</div>
<button class="nav-overflow"></button>
</div>
</nav>
<main>
<div class="container">
<div class="why-container center">
<h3 class="header center">EVENTS</h3>
<hr class="why-text-container__divider" />
<div class="row center">
<h5 class="header col s12 light">
Join our events around Australia.
</h5>
</div>
</div>
<img class="why-image" src="./images/background1.jpg" alt="two women coding - a background image" />
</div>
<!-- Upcoming Events Section -->
<div class="container">
<h3 class="header center">Upcoming Events</h3>
</div>
<!-- Past Events Section -->
<div class="container">
<h3 class="header center">Past Events</h3>
<div class="event-container">
<a href="brisbane.html">
<div class="chip">Brisbane</div>
</a>
<h5 class="header light event-container__header">
Thursday 25<sup>th</sup> May 2023
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
18:00 - 21:00
</h5>
<div class="event">
<div class="title">
Women in Software Development in person Meetup at Hub Anzac Square
</div>
<p class="flow-text">
Join us for a fun and infromative night, we have a talk and a panel for everyone to learn from from. This is a fully catered event, and you won't need anything. Just bring your enthusiasm! <a href="https://www.eventbrite.com.au/e/women-in-software-development-in-person-meetup-tickets-628962111607">
Check this event on eventbrite
</a>
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/sammyherbert/">
<div class="team-image team-image__small sammy"></div>
</a>
<a href="https://twitter.com/broccolinisoup">
<div class="team-image team-image__small armagan"></div>
</a>
</div>
<div class="col m6 sponsors-container">
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="sydney.html">
<div class="chip">Sydney</div>
</a>
<h5 class="header light event-container__header">
Thursday 28<sup>th</sup> July 2022
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
18:00 - 20:00
</h5>
<div class="event">
<div class="title">
freeCodeCamp Intro at
<a class="grey-text" href="https://goo.gl/maps/8cSsrj3qpreiFik99">
Immutable
</a>
</div>
<p class="flow-text">
Muses Code JS is back from COVID break with a new event. We are going to introduce you a Freecodecamp -
an interactive free learning web platform that intends to make learning web development accessible to
anyone. Our host is Yulia Kuchina and this event is sponsored by Immutable. If you want to be involved
in anyway contact us on [email protected]
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://twitter.com/ButenkoMe">
<div class="team-image team-image__small tanya"></div>
</a>
<a href="https://www.linkedin.com/in/ticiana">
<div class="team-image team-image__small ticiana"></div>
</a>
<a href="https://www.linkedin.com/in/inga-pflaumer-811a3543/">
<div class="team-image team-image__small inga"></div>
</a>
<a href="https://www.linkedin.com/in/shaila-man/">
<div class="team-image team-image__small shaila"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<a href="https://immutable.com/">
<img class="sponsor" src="images/sponsors/immutable-logo.png" alt="Immutablelogo" />
</a>
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="hobart.html">
<div class="chip">Hobart</div>
</a>
<h5 class="header light event-container__header">
Tuesday 15<sup>th</sup> December 2020
</h5>
<a href="https://forms.gle/KhLh5frrbNUfxaLa8">
<div class="chip">Tickets</div>
</a>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
18:00 - 19:30
</h5>
<div class="event">
<div class="title">
Hobart Fireside Chat
</div>
<p class="flow-text">
Muses are back in Hobart! Join us for an online session of inspirational talks. If you want to
be involved
in anyway contact us on [email protected]
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/tania-tkachuk-335b2983/">
<div class="team-image team-image__small tania"></div>
</a>
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="muses-careers.html">
<div class="chip">Careers</div>
</a>
<h5 class="header light event-container__header">
Thursday 6<sup>th</sup> August 2020
</h5>
<a href="https://forms.gle/PK4TojPyqho66Zu4A">
<div class="chip">Tickets</div>
</a>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
17:30 - 19:00
</h5>
<div class="event">
<div class="title">Giving and Receiving Feedback</div>
<p class="flow-text">
Feedback is a skill or a muscle that is to be built and
used to improve performance and build better
relationships and outcomes. Feedback is one form of
effective communication and can be used in the workplace
or at home.
</p>
<p class="flow-text">
Our second Muses Careers interactive workshop, developed
by
<a href="https://www.linkedin.com/in/aizhancastorina/">Aizhan Castorina</a>
will help you to feel more comfortable giving and
receiving feedback. During this session Aizhan will
unpack what feedback is and provide some frameworks that
could be learnt quickly and applied during the workshop.
</p>
<p class="flow-text">
This webinar will be hold online and the link to it will
be sent everyone who register 2 days before the event.
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://twitter.com/ButenkoMe">
<div class="team-image team-image__small tanya"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<!--<a href="https://www.livetiles.nyc/contact-us">-->
<!--<img class="sponsor" src="images/sponsors/livetiles-logo.png" alt="LiveTiles logo">-->
<!--</a>-->
</div>
</div>
</div>
</div>
<!-- <div class="event-container">-->
<!-- <a href="sydney.html">-->
<!-- <div class="chip">Sydney</div>-->
<!-- </a>-->
<!-- <h5 class="header light event-container__header"> March-April-May 2020</h5>-->
<!-- <h5 class="header time">-->
<!-- <span class="inline-clock-icon">-->
<!-- <svg width="11" height="11" viewBox="0 0 11 11"><path-->
<!-- d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z"></path></svg>-->
<!-- </span>-->
<!-- 18:00 - 21:00-->
<!-- </h5>-->
<!-- <a href="sydney-dojo.html">-->
<!-- <div class="chip">More Info</div>-->
<!-- </a>-->
<!-- <div class="event">-->
<!-- <div class="title">-->
<!-- Coding Dojo-->
<!-- </div>-->
<!-- <p class="flow-text">-->
<!-- The purpose of this workshop is to teach you HTML and CSS, the two core languages used to make webpages.-->
<!-- </p>-->
<!-- <div class="row">-->
<!-- <div class="organisers-container col m6">-->
<!-- <a href="https://www.linkedin.com/in/ticiana">-->
<!-- <div class="team-image team-image__small ticiana"></div>-->
<!-- </a>-->
<!-- <a href="https://twitter.com/ButenkoMe">-->
<!-- <div class="team-image team-image__small tanya"></div>-->
<!-- </a>-->
<!-- <a href="https://www.linkedin.com/in/inga-pflaumer-811a3543/">-->
<!-- <div class="team-image team-image__small inga"></div>-->
<!-- </a>-->
<!-- </div>-->
<!-- <div class="col m6 sponsors-container">-->
<!-- <a href="https://newrelic.com/">-->
<!-- <img class="sponsor" src="images/sponsors/new-relic.png" alt="NewRelic logo">-->
<!-- </a>-->
<!-- <a href="https://www.bcgdv.com/">-->
<!-- <img class="sponsor" src="images/sponsors/bcg-logo.png" alt="BCG Digital Ventures logo">-->
<!-- </a>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="event-container">
<a href="hobart.html">
<div class="chip">Hobart</div>
</a>
<h5 class="header light event-container__header">May 2020</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z"
></path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">
Learn to Code at TBC
<!--<a href="https://goo.gl/maps/iAD2c1Mr6z3NbJd49">-->
<!--LiveTiles-->
<!--</a>-->
<!-- </div>
<p class="flow-text">
Introduction to JavaScript, No prior knowledge of coding
is needed. All information and registration will be
announced in May. If you want to be involved in anyway
contact us on [email protected]
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://twitter.com/ButenkoMe">
<div
class="team-image team-image__small tanya"
></div>
</a>
</div> -->
<!-- <div class="col m6 sponsors-container">
<!--<a href="https://www.livetiles.nyc/contact-us">-->
<!--<img class="sponsor" src="images/sponsors/livetiles-logo.png" alt="LiveTiles logo">-->
<!--</a>-->
<!-- </div>
</div>
</div>
</div> -->
<!-- <div class="event-container">
<a href="perth.html">
<div class="chip">Perth</div>
</a>
<h5 class="header light event-container__header">May 2020</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z"
></path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">
Learn to Code at TBC
<!--<a href="https://goo.gl/maps/iAD2c1Mr6z3NbJd49">-->
<!--LiveTiles-->
<!--</a>-->
<!-- </div>
<p class="flow-text">
All information and registration will be announced in
May. If you want to be involved in anyway contact us on
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/inaie/">
<div
class="team-image team-image__small inaie"
></div>
</a>
</div>
<div class="col m6 sponsors-container"> -->
<!--<a href="https://www.livetiles.nyc/contact-us">-->
<!--<img class="sponsor" src="images/sponsors/livetiles-logo.png" alt="LiveTiles logo">-->
<!--</a>-->
<!-- </div>
</div>
</div>
</div> -->
<!-- <div class="event-container">
<a href="canberra.html">
<div class="chip">Canberra</div>
</a>
<h5 class="header light event-container__header">May 2020</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z"
></path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">
Learn to Code at TBC -->
<!--<a href="https://goo.gl/maps/iAD2c1Mr6z3NbJd49">-->
<!--LiveTiles-->
<!--</a>-->
<!-- </div>
<p class="flow-text">
All information and registration will be announced in
May. If you want to be involved in anyway contact us on
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/annatito/">
<div
class="team-image team-image__small anna-tito"
></div>
</a>
<a
href="https://www.linkedin.com/in/sarah-kluttz-a6808498/"
>
<div
class="team-image team-image__small sarah-kluttz"
></div>
</a>
</div>
<div class="col m6 sponsors-container"> -->
<!--<a href="https://www.livetiles.nyc/contact-us">-->
<!--<img class="sponsor" src="images/sponsors/livetiles-logo.png" alt="LiveTiles logo">-->
<!--</a>-->
<!-- </div>
</div>
</div>
</div> -->
<div class="event-container">
<a href="muses-careers.html">
<div class="chip">Careers</div>
</a>
<h5 class="header light event-container__header">
Tuesday 12<sup>th</sup> May 2020
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
17:00 - 19:00
</h5>
<div class="event">
<div class="title">
Being productive in difficult times
</div>
<p class="flow-text">
Have you recently found yourself working or studying
from home? Or maybe you find yourself at home more
and want to learn a new skill? Some people have
really found their groove working and studying
remotely, and so can you!
</p>
<p class="flow-text">
Our first Muses Careers interactive workshop,
developed by
<a href="https://www.inco.org.au/">INCO Academy</a>
will introduce you to things you can do to help you
structure your time to feel organised, calm and
productive while you’re at home. We’ll dive into
practical tips and frameworks used by many in the
tech industry.
</p>
<p class="flow-text">
This webinar will be hold online and the link to it
will be sent everyone who register 2 days before the
event.
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/inaie/">
<div class="team-image team-image__small reena"></div>
</a>
</div>
<div class="col m6 sponsors-container"></div>
</div>
</div>
</div>
<div class="event-container">
<a href="melbourne.html">
<div class="chip">Melbourne</div>
</a>
<h5 class="header light event-container__header">
Saturday 18<sup>th</sup> April 2020
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">Learn to Code</div>
<p class="flow-text">
First online workshop on Introduction to JavaScript
for complete beginners.
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/lindalai/">
<div class="team-image team-image__small linda"></div>
</a>
<a href="https://www.linkedin.com/in/vmunro/">
<div class="team-image team-image__small veronica"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<!--<a href="https://www.livetiles.nyc/contact-us">-->
<!--<img class="sponsor" src="images/sponsors/livetiles-logo.png" alt="LiveTiles logo">-->
<!--</a>-->
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="wollongong.html">
<div class="chip">Wollongong</div>
</a>
<h5 class="header light event-container__header">
Saturday 14<sup>th</sup> March 2020
</h5>
<!-- <a href="wollongong-event.html">-->
<!-- <div class="chip">Tickets</div>-->
<!-- </a>-->
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">
Introduction to JavaScript at
<a class="grey-text" href="https://goo.gl/maps/sNJw3rs6HVoatp2S9">UOW</a>
</div>
<p class="flow-text">
Introduction to JavaScript, No prior knowledge of
coding is needed. If you want to be involved in
anyway contact us on [email protected]
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/madelyn-robertson-968383191">
<div class="team-image team-image__small madelyn"></div>
</a>
<a href="https://au.linkedin.com/in/molly-kirkpatrick-671521161">
<div class="team-image team-image__small molly-kirkpatrick"></div>
</a>
<a href="https://www.linkedin.com/in/bethany-cooper-a82042162/">
<div class="team-image team-image__small bethany-cooper"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<a href="https://www.uow.edu.au">
<img class="sponsor" src="images/sponsors/uow-logo.jpg"
alt="University of Wollongong logo" />
</a>
<a href="http://rubytalent.com.au">
<img class="sponsor" src="images/sponsors/ruby-talent-logo.png"
alt="Ruby Talent logo" />
</a>
<a href="http://www.finocomp.com/">
<img class="sponsor" src="images/sponsors/finocomp-logo.png" alt="FinoComp logo" />
</a>
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="sydney.html">
<div class="chip">Sydney</div>
</a>
<h5 class="header light event-container__header">
Saturday 7<sup>th</sup> March 2020
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">
JavaScript World at
<a class="grey-text" href="https://goo.gl/maps/jsbX3kJYLNu">
Microsoft Reactor
</a>
</div>
<p class="flow-text">
Three coding hand-on workshops: Introduction to
JavaScript for complete beginners (no prior
knowledge required.) Creative coding (basic
understanding of HTML, CSS and JS required) and
Build Engaging Alexa Skills (JavaScript knowledge is
required). If you want to be involved in anyway
contact us on [email protected]
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://twitter.com/ButenkoMe">
<div class="team-image team-image__small tanya"></div>
</a>
<a href="https://www.linkedin.com/in/ticiana">
<div class="team-image team-image__small ticiana"></div>
</a>
<a href="https://www.linkedin.com/in/inga-pflaumer-811a3543/">
<div class="team-image team-image__small inga"></div>
</a>
<a href="https://www.linkedin.com/in/shaila-man/">
<div class="team-image team-image__small shaila"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<a href="https://mantelgroup.com.au">
<img class="sponsor" src="images/sponsors/mantel-group.png" alt="Mantel Group logo" />
</a>
</div>
<div class="col m6 sponsors-container">
<a href="https://www.thinkmill.com.au/">
<img class="sponsor" src="images/partners/thinkmill.svg" alt="Thinkmill logo" />
</a>
<a href="https://developer.microsoft.com/en-us/reactor/">
<img class="sponsor" src="images/sponsors/microsoft-logo.png" alt="Microsoft logo" />
</a>
<a href="https://www.lookahead.com.au">
<img class="sponsor" src="images/sponsors/lookahead-logo.jpg" alt="Lookahead logo" />
</a>
<a href="https://aws.amazon.com">
<img class="sponsor" src="images/sponsors/aws.svg" alt="AWS logo" />
</a>
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="perth.html">
<div class="chip">Perth</div>
</a>
<h5 class="header light event-container__header">
Saturday 11<sup>th</sup> January 2020
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">
<a class="grey-text"
href="https://www.eventbrite.com.au/e/introduction-to-coding-for-complete-beginners-tickets-85727989725?ref=estw&fbclid=IwAR1phxnKMIbwy-FrghYFQ2gMivtB5xg3a0LyFWlCPX1mn0B36TTD_sHqEXA">
Learn to Code
</a>
at
<a class="grey-text" href="https://www.fluxperth.com/">
Flux
</a>
</div>
<p class="flow-text">
Introduction to JavaScript for complete beginners.
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/inaie/">
<div class="team-image team-image__small inaie"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<a href="https://www.fluxperth.com/">
<img class="sponsor" src="images/sponsors/flux-logo.png" alt="Flux logo" />
</a>
<a href="https://aws.amazon.com">
<img class="sponsor" src="images/sponsors/aws.svg" alt="AWS logo" />
</a>
<a href="https://telstra.com.au">
<img class="sponsor" src="images/sponsors/telstra-purple-black-logo.png"
alt="Telstra Purple logo" />
</a>
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="sydney.html">
<div class="chip">Sydney</div>
</a>
<h5 class="header light event-container__header">
Thursday 12<sup>th</sup> December 2019
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
17:30 - 20:00
</h5>
<div class="event">
<div class="title">
EOY Party at
<a class="grey-text" href="https://generalassemb.ly/locations/sydney">
General Assembly
</a>
</div>
<p class="flow-text">
End of the year party. We gather to celebrate
achievements and to network. We also will hold our
second Annual Tech Community Award Ceremony.
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://twitter.com/ButenkoMe">
<div class="team-image team-image__small tanya"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<a href="https://generalassemb.ly/locations/sydney">
<img class="sponsor" src="images/sponsors/generalassembly-logo.png"
alt="General Assembly logo" />
</a>
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="sydney.html">
<div class="chip">Sydney</div>
</a>
<h5 class="header light event-container__header">
September - October - November 2019
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
18:00 - 21:00
</h5>
<div class="event">
<div class="title">Coding Dojo</div>
<p class="flow-text">
This series of Coding Dojos will aim practice work
with Git.
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://twitter.com/ButenkoMe">
<div class="team-image team-image__small tanya"></div>
</a>
<a href="https://www.linkedin.com/in/ticiana">
<div class="team-image team-image__small ticiana"></div>
</a>
</div>
<div class="col m6 sponsors-container">
<a href="https://www.bcgdv.com/">
<img class="sponsor" src="images/sponsors/bcg-logo.png"
alt="BCG Digital Ventures logo" />
</a>
<a href="https://www.netscout.com/">
<img class="sponsor" src="images/sponsors/netscout-logo.png" alt="Netscout logo" />
</a>
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="sydney.html">
<div class="chip">Sydney</div>
</a>
<h5 class="header light event-container__header">
Saturday 16<sup>th</sup> November 2019
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
10:00 - 16:00
</h5>
<div class="event">
<div class="title">
<!--<a class="grey-text" href="">-->
JavaScript World
<!--</a>-->
at
<a class="grey-text" href="https://goo.gl/maps/jsbX3kJYLNu">
Microsoft Reactor
</a>
</div>
<p class="flow-text">
Introduction to JavaScript for complete beginners.
Refactoring React (requires JS knowledge and basic
understanding of React.js) and Advanced MongoDB +
NodeJS (requires JS, JSON and basic databases
concepts understanding). Registration is now opened!
Let us know if your company would like to sponsor.
</p>
<div class="row">
<div class="organisers-container col m4">
<a href="https://twitter.com/ButenkoMe">
<div class="team-image team-image__small tanya"></div>
</a>
<a href="https://www.linkedin.com/in/ticiana">
<div class="team-image team-image__small ticiana"></div>
</a>
<a href="https://www.linkedin.com/in/shaila-man/">
<div class="team-image team-image__small shaila"></div>
</a>
</div>
<div class="col m8 sponsors-container">
<a href="https://www.cmdsolutions.com.au">
<img class="sponsor" src="images/sponsors/CMD-logo.png" alt="CMD Solutions logo" />
</a>
<a href="https://www.eliiza.com.au ">
<img class="sponsor" src="images/sponsors/Eliiza-logo.png" alt="Eliiza logo" />
</a>
<a href="https://www.digio.com.au">
<img class="sponsor" src="images/sponsors/DigIO-logo.png" alt="DigIO logo" />
</a>
<a href="https://www.kasna.com.au">
<img class="sponsor" src="images/sponsors/Kasna-logo.png" alt="Kasna logo" />
</a>
</div>
<div class="col m12 sponsors-container">
<a href="https://www.thinkmill.com.au/">
<img class="sponsor" src="images/partners/thinkmill.svg" alt="Thinkmill logo" />
</a>
<a href="https://developer.microsoft.com/en-us/reactor/">
<img class="sponsor" src="images/sponsors/microsoft-logo.png" alt="Microsoft logo" />
</a>
<a href="https://www.sourcedgroup.com/">
<img class="sponsor" src="images/sponsors/sourced.png" alt="Sourced Group logo" />
</a>
<!--<a href="https://www.lookahead.com.au">-->
<!--<img class="sponsor" src="images/sponsors/lookahead-logo.jpg" alt="Lookahead logo">-->
<!--</a>-->
</div>
</div>
</div>
</div>
<div class="event-container">
<a href="melbourne.html">
<div class="chip">Melbourne</div>
</a>
<h5 class="header light event-container__header">
Saturday 12<sup>th</sup> October 2019
</h5>
<h5 class="header time">
<span class="inline-clock-icon">
<svg width="11" height="11" viewBox="0 0 11 11">
<path
d="M5.4 0C2.4 0 0 2.4 0 5.4s2.4 5.4 5.4 5.4 5.4-2.4 5.4-5.4S8.4 0 5.4 0zm3 6.8H4.7V1.7h.7L6 5.4l2.4.6v.8z">
</path>
</svg>
</span>
10:00 - 16:00
</h5>
<!--<a href="https://www.eventbrite.com.au/e/muses-code-js-intro-to-javascript-for-beginners-tickets-71755317085">-->
<!--<div class="chip">Tickets</div>-->
<!--</a>-->
<div class="event">
<div class="title">
<a class="grey-text" href="">
Introduction to JavaScript
</a>
at
<a class="grey-text" href="https://goo.gl/maps/TbsXJJJVbZ94yrp77">
A Cloud Guru
</a>
</div>
<p class="flow-text">
Introduction to JavaScript for beginners. If by any
means you want to be involved in organisation feel
free to contact us at [email protected].
</p>
<div class="row">
<div class="organisers-container col m6">
<a href="https://www.linkedin.com/in/vdegoede/">
<div class="team-image team-image__small valeria"></div>
</a>