-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathappspeaker.html
More file actions
136 lines (112 loc) · 4.89 KB
/
Copy pathappspeaker.html
File metadata and controls
136 lines (112 loc) · 4.89 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lato:400,900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css"> <link rel="stylesheet" type="text/css" href="pagewithoutslides.css">
<title>OMMIC</title>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="pictures/favicon.png">
<link href="https://cdn-images.mailchimp.com/embedcode/classic-10_7.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup {
background: #fff;
clear: left;
font: 14px Helvetica, Arial, sans-serif;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="navbarcolour">
<div class="navbar">
<div class="centerimg">
<img src="pictures/Branding/logoblack.png" class="logoheader" >
</div>
<a href="index.html">Home</a>
<a href="news.html">News</a>
<a href="2018.html">OMMIC 2018</a> <a href="competitions.html">Competitions</a>
<a href="2016.html">Past Events</a>
<a href="sponsorus.html">Sponsor Us</a>
<a href="contact.html">Contact</a>
<a href="FRindex.html">FR</a>
</div>
</div>
<article>
<div style="max-width: 80%; margin-left:auto;margin-right:auto;">
<h1> Application for speakers</h1>
<img src="pictures/speaker_session.jpg" class="right" style="width:35%;" />
<p>The Ontario Makers and Mentors Conference is a student initiative to bridge the gap between makers and mentors to promote innovation through technology in the classroom and society. Our conference will be held in Ottawa at the University of Ottawa campus. We will be hosting our inaugural conference the weekend of October 26th-28th and this year’s theme is “Making Globally”. We are currently looking for people who have a background or an interest in education, making, design, or innovation to speak or run a demonstrations at one of our sessions. If you are interested, please fill out the following form. If you have any questions, do not hesitate to contact speakers@ommic.ca.</p>
<p><strong></strong></p>
<p>Sessions will last about 40 minutes and fit into one of the three streams: Mentors, Makers, or Skill Building. The lists below contain some session topic ideas but are not limited to the following. Please browse our list of ideas and contact us if you would be interested in one of the following or if you have another topic idea.</p>
<p><strong></strong></p>
<h3>Maker Stream</h3>
<ul>
<li>
1 project, 3 ways; How 3 separate makers all conquer the same project
</li>
<li>
Virtual Reality and immersive journalism
</li>
<li>
Programming art and music
</li>
<li>
Creating a virtual world; from filming to viewing
</li>
<li>Game Making</li>
<li>Finding the free version open source, makerlabs and freecycling, junkyard wars, and the gold in garbage</li>
<li>MD to 3D: 3d printing and making in the health sciences</li>
<li>Premaking-Making in a team (you have an idea, now find a team to make it happen), division of labor myers briggs</li>
<li>Turning hobbies into profit; from maker to entrepreneur</li>
<li>Materials: when, where and why</li>
</ul>
<h3>Mentor Stream</h3>
<ul>
<li>Empowering Vulnerable communities through technology</li>
<li>The Making of a Makerspace</li>
<li>Maintaining the equipment, sustainable ecosystem; sustaining a makerspace, reducing the makerspace waste, setting up recycling systems.</li>
<li>Maker’s Ed how to integrate makerspaces into the curriculum</li>
<li>Teaching kids how to design something</li>
<li>Girls in tech.</li>
<li>STEM to STEAM</li>
<li>Myths of the makerspace - Q&A</li>
</ul>
<h3>Skill building Stream</h3>
<ul>
<li>Essential tools, best practices of makers</li>
<li>”Building” canada</li>
<li>Reverse engineering</li>
<li>Building Ideas: the brainstorm session</li>
<li>3D Printing and Design</li>
<li>Programming and Robotics</li>
</ul>
<center>
<a href="https://goo.gl/forms/ucbdr8tSwPnerDWm1"><button type="button"class="navbutton">Apply now!</button></a>
</center>
</div>
</article>
<footer>
<a href="https://www.facebook.com/OMMIConference/?hc_ref=ARQKxPGRhiPQ1ZiIPno01NPJrDnJQR-cfzyEFn9eDZWD_EigD40nkXa1DCXXiLaGZsc&fref=nf" class="fa fa-facebook"></a>
<a href="https://twitter.com/ommiconference" class="fa fa-twitter"></a>
<a href="privacy.html" class="footer">Privacy Policy</a>
<a href="terms.html" class="footer">Terms of Service</a>
</footer>
</body>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {
myIndex = 1
}
x[myIndex - 1].style.display = "block";
setTimeout(carousel, 6000); // Change image every 6 seconds
}
</script>
</html>