This repository has been archived by the owner on Feb 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
instructor-index.html
350 lines (311 loc) · 14.7 KB
/
instructor-index.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
<!DOCTYPE html>
<html>
<head>
<title>Index of lectures</title>
<style>
a {
display: block;
}
section {
padding-bottom: 1em;
}
div#main{
width: 100%
}
div#header {
height: 80px;
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
padding: 50px 0 0 0;
/* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3); */
}
div#intro {
width: 100%;
position: relative;
background: url(img/intro-bg.png) center bottom no-repeat;
background-size: cover;
padding: 0 0 40px 0;
color: #fff;
}
div#header h1 {
margin: 0 auto;
max-width: 770px;
padding: 0 25px 0;
}
#intro .intro-info h2 {
margin: 0 auto;
max-width: 770px
color: #fff;
margin-bottom: 40px;
font-size: 48px;
font-weight: 700;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
section {
padding-bottom: 1em;
/* width: 100%; */
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
max-width: 770px;
margin-left: auto;
}
.user-edit-form img[_ngcontent-gmc-c2] {
vertical-align: middle;
border-style: none;
width: 160px;
border-radius: 50%;
border: 4px solid #fff;
float: left;
margin: 20px;
}
div#main {
width: 70%;
float: none;
margin: 45px auto;
}
section#team {
background: #ecf5ff;
padding: 60px 0;
box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
section li a {
display: block;
}
section li a {
padding-left:10px;
}
section li a:hover {
color: #fff;
background-color: #1947af;
text-decoration: none;
}
</style>
</head>
<body>
<div id="content">
<div id="intro">
<div id="header">
<h1>TechConnect Slides, Labs, and Resources</h1>
</div>
</div>
<section>
<h2>Links to Lesson Slides by Category</h2>
</section>
<!-- Add a link to your .html file (based on template.html) in one of the
sections below. See commented example for help. -->
<!-- <section> <strong>Terminal Essentials</strong>
<a href="console.html">Introduction to the Console</a>
<a href="bash.html">Introduction to Bash Scripting</a>
<a href="git.html">Introduction to Version Control with Git</a>
</section> -->
<section> <strong>TC - Lectures</strong>
<ol>
<li><a href="ShellEtc.html" target="_blank">Shell, etc.</a></li>
<li><a href="tc-git.html" target="_blank">Git</a></li>
<li><a href="tc-agile-legos.html" target="_blank">Agile Legos</li></a>
<li><a href="big-data-and-hadoop.html" target="_blank">Big Data and Hadoop</a></li>
<li><a href="intro-to-terminal.html" target="_blank">Introduction to Terminal</a></li>
<li><a href="clean-code.html" target="_blank">Clean code</a></li>
<li><a href="concurrency-asynchronous.html" target="_blank">Concurrency; Asynchronous</a></li>
<li><a href="concurrency-synchronous.html" target="_blank">Concurrency; Synchronous</a></li>
<li><a href="fundamental-programming-structures1-types-and-operators.html" target="_blank">Fundamental Programming Structures (Part 1); Types and Operators</a></li>
<li><a href="fundamental-programming-structures2-input-output.html" target="_blank">Fundamental Programming Structures (Part 2); Input and Output</a></li>
<li><a href="fundamental-programming-structures3-arrays.html" target="_blank">Fundamental Programming Structures (Part 3); Arrays</a></li>
<li><a href="fundamental-programming-structures4-strings.html" target="_blank">Fundamental Programming Structures (Part 4); Strings and StringBuilder</a></li>
<li><a href="fundamental-programming-structures5-control-flow.html" target="_blank">Fundamental Programming Structures (Part 5); Control flow</a></li>
<li><a href="generics-introduction.html" target="_blank">Generic Programming - Introduction</a></li>
<li><a href="generics-definingclasses.html" target="_blank">Generic Programming - Defining classes</a></li>
<li><a href="historyOfJava.html" target="_blank">History Of Java</a></li>
<li><a href="java-input-output.html" target="_blank">Input and Output</a></li>
<li><a href ="inheritance.html" target="_blank">Inheritance</a></li>
<li><a href ="inheritance-abstract-classes.html" target="_blank">Inheritance - Abstract Classes</a></li>
<li><a href="java-inheritance-part-2.html" target="_blank">Inheritance 2</a></li>
<li>
<a href="interfaces.html" target="_blank">Interfaces</a>
<ul>
<li>
<a href="https://github.com/froilan-miranda/InterfacesFarmDemo" target="_blank">Interface Demo</a>
</li></ul>
</li>
<li><a href="collections-arrays-vs-arraylists.html" target="_blank">Collections Framework 1; Arrays vs ArrayLists</a></li>
<li><a href="collections-iterator,collection.html" target="_blank">Collections Framework 2; Collection & Iterator Interface</a></li>
<li><a href="collections-list,arraylist,set.html" target="_blank">Collections Framework 3; List, ArrayList, Set</a></li>
<li><a href="collections-stack,linkedlist,queue.html" target="_blank">Collections Framework 4; Stack, LinkedList, Queue</a></li>
<li><a href="collections-maps.html" target="_blank">Collections Framework 5; Maps</a></li>
<li><a href="collections-views.html" target="_blank">Collections Framework 6; Views</a></li>
<li><a href="lambdaexpressions-intro.html" target="_blank">Lambda Expressions - Introduction</a></li>
<!-- <li><a href="interfacesandLambdas.html">Lambda Expressions - Interfaces</a></li> -->
<li><a href="lambdaexpressions-reducingjavalambdas.html" target="_blank">Lambda Expressions - Reducing Functional Expressions</a></li>
<li><a href="intro-streams-and-lambdas.html" target="_blank">Lambda Expressions - Streams & Lambdas</a></li>
<li><a href="intro-to-exceptions-assertions-logging.html" target="_blank">Intro to exceptions, assertions, and logging</a></li>
<li><a href="intro-to-maven.html" target="_blank">Intro to maven</a></li>
<li><a href="intro-to-SQL.html" target="_blank">Intro to SQL</a></li>
<li><a href="introduction-to-java.html" target="_blank">Intro to Java</a></li>
<li><a href="intro-to-oop-monolith.html" target="_blank">Intro to Object Oriented Programming; (Legacy)</a></li>
<li><a href="intro-to-oop-defining-a-class.html" target="_blank">Intro to Object Oriented Programming 1; Defining a class</a></li>
<li><a href="intro-to-oop-object-relations.html" target="_blank">Intro to Object Oriented Programming 2; Relations</a></li>
<li><a href="intro-to-oop-design-and-composition.html" target="_blank">Intro to Object Oriented Programming 3; Design and Composition</a></li>
<li><a href="intro-to-oop-four-pillars.html" target="_blank">Intro to Object Oriented Programming 4; Four Pillars </a></li>
<li><a href="intro-to-oop-solid-principles.html" target="_blank">Intro to Object Oriented Programming 5; Design Principles - SOLID, WET, DRY</a></li>
<li><a href="intro-to-oop-design-patterns.html" target="_blank">Intro to Object Oriented Programming 6; Design Patterns</a></li>
<li><a href="intro-to-oop-design-patterns-creational.html" target="_blank">Intro to Object Oriented Programming 7; Design Patterns - Creational</a></li>
<li><a href="intro-to-oop-design-patterns-structural.html" target="_blank">Intro to Object Oriented Programming 8; Design Patterns - Structural</a></li>
<li><a href="intro-to-oop-design-patterns-behavioral.html" target="_blank">Intro to Object Oriented Programming 9; Design Patterns - Behavioral</a></li>
<li><a href="introduction-to-tdd.html" target="_blank">Intro to TDD</a></li>
<li><a href="https://froilan-miranda.github.io/JavaScript-Presentations/json.html#/" target="_blank">JSON introduction</a></li>
<li><a href="persistence-intro.html" target="_blank">Persistence intro</a></li>
<li><a href="persistence-jdbc.html" target="_blank">Persistence JDBC</a></li>
<li><a href="persistence-jpa.html" target="_blank">Persistence JPA</a></li>
<li><a href="persistence-sql.html" target="_blank">Persistence SQL</a></li>
<li><a href="basic-annotations.html" target="_blank">Spring Boot: Basic Annotations</a></li>
<li><a href="spring-dependency-injection.html" target="_blank">Spring Dependency Injection</a></li>
<li><a href="spring-web-mvc-primer.html" target="_blank">Spring Web MVC</a></li>
<li><a href="SpringRESTIntro.html" target="_blank">Spring REST introduction</a></li>
<li><a href="Strings.html" target="_blank">Strings</a></li>
<li><a href="string-and-string-builder.html" target="_blank">String and StringBuilder</a></li>
<li><a href="string-basics.html" target="_blank">String Basics</a></li>
<li><a href="stringformatting-and-regex.html" target="_blank">String Formatting and Regular Expressions</a></li>
</ol>
</section>
<!-- Keep this at the bottom of the page for easy reference -->
<hr>
<hr>
<section>
<!-- <strong>Weekly Schedule</strong>
<ul>
<li><a href="https://docs.google.com/spreadsheets/d/18_Cark1rgo69vJIpABcQx9046bqjXPxc7OUdTPM8tTg/edit?usp=sharing">Lab Status</li>
</ul>-->
</section>
<section> <strong>Timeline</strong>
<ol>
<li><a href="https://docs.google.com/document/d/13DzX5vyWan4nkFzSeRJe5nlG1p-o2KGcM1IlnQRK2v8/edit?usp=sharing">week1</a></li>
</ol>
</section>
<!--<section>
<strong>Lab Status</strong>
<ul>
<li><a href="https://docs.google.com/spreadsheets/d/18_Cark1rgo69vJIpABcQx9046bqjXPxc7OUdTPM8tTg/edit?usp=sharing">Lab Status</li>
</ul>
</section>-->
<section> <strong>TC - Fundamentals Day 1 Labs</strong>
<ol>
<li><a href="https://github.com/Zipcoder/TC-TCFundamentalsDay2Lab1">Fundamentals Day 1 Lab 1</a></li>
<li><a href="https://github.com/Zipcoder/TC-TCFundamentalsDay2Lab2">Fundamentals Day 1 Lab 2</a></li>
<li><a href="https://github.com/Zipcoder/ZCW-MicroLabs-Loops">Loops 1</a></li>
<li><a href="https://github.com/Zipcoder/TC-Microlabs-loops">Loops 2</a></li>
</ol>
</section>
<!--
<section> <strong>Pair Coding Lab Week 1 Labs</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TCPairCodingAssignment1">First Pair Coding Lab</a></li>
</ul>
</section>
-->
<section> <strong>TC - OOP 1 Labs</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TC-OOP-Init-Lab-1">Object Oriented Programming 1</a></li>
<li><a href="https://github.com/Zipcoder/TC-Classroom-Objects">Classroom Objects</a></li>
</ul>
</section>
<section> <strong>TC - OOP 2 Labs</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TC-ObjectOrientedProgramingLabs">Object Oriented Programming 2</a></li>
</ul>
</section>
<section> <strong>Pair Coding pt 1</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TCUKPairCoding1">TCUK PairCoding 1</a></li>
</ul>
</section>
<section><strong>Interfaces</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TC-Interfaces">Interfaces</a></li>
</ul>
</section>
<section><strong>Object Structure</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TC-Money-Converter">Money Converter</a></li>
</ul>
</section>
<!-- <section><strong>TC - Interfaces and Poly</strong>
<ol>
<li><a href="https://github.com/Zipcoder/TC-Casino">Interface Casino</a></li>
<li><a href="https://github.com/Zipcoder/LabWalkthroughs">Walkthroughs</a></li>
</ol>
</section> -->
<section><strong>Exceptions, Assertions, and Logging</strong>
<ul>
<li><a href="https://github.com/Zipcoder/ZCW-MicroLabs-ExceptionsAndLogging">Exceptions, Assertions, and Logging</a></li>
</ul>
</section>
<section><strong>Generics</strong>
<ul>
<li><a href="https://github.com/Zipcoder/Generics">Generics</a></li>
</ul>
</section>
<section><strong>Collections Framework</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TC-Collections">Collections</a></li>
</ul>
</section>
<section>
<strong>Casino Group Project</strong>
<ul>
<li><a href="https://github.com/Zipcoder/TCUK-Casino">Casino</a></li>
</ul>
</section>
<section><strong>Concurrency</strong>
<ul>
<li><a href="https://github.com/zipcoder/TC-Concurrency">Concurrency</a></li>
</ul>
</section>
<section><strong>Web, Spring, and REST</strong>
<ul>
<li><a href="https://github.com/Zipcoder/CRUDApplication">CRUD Application with Spring</a></li>
<!--
<li><a href="https://docs.google.com/spreadsheets/d/1r7GMjF0vyrwZLgNmc0-AbvkByJjPOMzmIGyoJcY91jc/edit?usp=sharing">Pair Coding Assignments</a></li> -->
<li><a href="https://github.com/Zipcoder/TC-Spring-Poll-Application">Poll Application with Spring</a></li>
<li><a href="https://github.com/Zipcoder/TCUK-Bank-App">Group Bank Application</a></li>
</ul>
</section>
<!--<a href="template.html">Lecture Template</a>
-->
<section><strong>SQL</strong></section>
<section><strong>JDBC</strong></section>
<section><strong>JPA</strong></section>
<section><strong>Persistence Final</strong></section>
<hr>
<section>
<h2>Assigned Video Lectures</h2>
Tuesday September 6: <a href="https://app.pluralsight.com/library/courses/rest-fundamentals/table-of-contents"><strong>REST Fundamentals</strong> -- Howard Dierking</a>
Wednesday September 7: <a href="https://app.pluralsight.com/library/courses/spring-boot-first-application/table-of-contents"><strong>Creating Your First Spring Boot Application</strong> -- Dan Bunker</a>
</section>
<section>
<h2>Part 2 Videos</h2>
<a href="https://app.pluralsight.com/library/courses/introduction-to-sql/table-of-contents"><strong>Introduction to SQL</strong></a>
<a href="https://app.pluralsight.com/library/courses/building-applications-spring-jdbc/table-of-contents"><strong>Spring JDBC</strong></a>
<a href="https://app.pluralsight.com/library/courses/spring-jpa-hibernate/table-of-contents"><strong>Spring JPA</strong></a>
</section>
<section>
<h2>Design Patterns</h2>
<a href="https://app.pluralsight.com/player?course=design-patterns-java-creational&author=bryan-hansen&name=design-patterns-java-creational-m2-singleton&clip=0&mode=live"><strong>Singleton Pattern</strong></a>
<a href="https://www.youtube.com/watch?v=9qA5kw8dcSU"><strong>Command Pattern</strong></a>
<a href="https://app.pluralsight.com/player?course=design-patterns-java-creational&author=bryan-hansen&name=design-patterns-java-creational-m3-builder&clip=0&mode=live"><strong>Builder Pattern</strong></a>
<a href="https://app.pluralsight.com/player?course=design-patterns-java-creational&author=bryan-hansen&name=design-patterns-java-creational-m5-factory&clip=0&mode=live"><strong>Factory Pattern</strong></a>
<a href="https://app.pluralsight.com/player?course=design-patterns-java-creational&author=bryan-hansen&name=design-patterns-java-creational-m6-abstract-factory&clip=0&mode=live"><strong>Abstract Factory Patter</strong></a>
</section>
</div>
</body>
</html>