-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiDTech.html
More file actions
80 lines (72 loc) · 4.25 KB
/
Copy pathiDTech.html
File metadata and controls
80 lines (72 loc) · 4.25 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
<html>
<head>
<title>Chris' Time at Invictus</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="main.css" />
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css" />
</noscript>
</head>
<body class="is-preload">
<div class="not-main">
<!-- Wrapper-->
<div id="wrapper">
<!-- Main -->
<div id="main">
<!-- Me -->
<p>
<div class="row">
<div class="col-6">
<h2>iD Tech</h2>
<b>Position:</b> Java Instructor
<br>
<b>Time:</b> June 2017-August 2017
<br>
<b>Location:</b> New York City, NY
<br>
<br> During the summer of my freshman year I worked as an instructor for the iD Tech Summer Camps
teaching the class "Intro to Java Coding: Modding With Minecraft and Forge". I taught kids the
basics of coding in Java, alongside creating their own mods in the Minecraft game, by editing
Minecraft source code (Minecraft is written in Java). I created lesson plans and tried to find interactive
ways of getting my students excited. I taught topics such as:
<ul>
<li>Print Statements</li>
<li>Variables and Operators</li>
<li>If-Else Statements</li>
<li>For and While Loops</li>
<li>Inheritance (Necessary for Minecraft)</li>
<li>User Inputs</li>
</ul>
I assigned them final minecraft projects as well as basic java projects, so they could see what making a project from scratch
in Java was actually like.
<br><br> The age ranges for the kids were 10-12 and each class lasted a week, meaning I got new kids
every week. Because it was such a popular course, every single week besides the first, I had
the maximum amount of kids an instructor can have: 8 kids. This meant I had to oversee 8 children
coding and playing minecraft, every day. While most of them had no coding background, they all
learned at different rates. The most difficult part of my job was managing to keep everyone satisfied;
I had to find the right balance by giving the more advanced students difficult coding challenges while encouraging and helping
the students who were struggling.
<br><br><br><br>
Check out my course at iD Tech <a href="https://www.idtech.com/courses/java-coding-build-mods-with-minecraft" target="_blank">here</a>
</div>
<div class="col-1"></div>
<div class="col-5">
<img class="work-project-photo" src="images/idClass.JPG"></img>
<br>
<div class="vid-caption">
<i>This is one of my classes! If you look at the student's computer screen on the left, you
can see one of the mods that we made as part of the curriculum. The item is a lightning
hammer that creates a big explosion and a bolt of lightning where ever you click. This
helped me teach them modifying variables, to alter explosion size, as well as inherting
methods from Minecraft's Item superclass.
<i>
</div>
</div>
</div>
</p>
</div>
</div>
</div>
</body>
</html>