-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteaching.html
179 lines (137 loc) · 6.5 KB
/
teaching.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
<!DOCTYPE html>
<!--[if lt IE 8 ]><html class="no-js ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="no-js ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 8)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Teaching</title>
<meta name="description" content="Personal website for Mark Edmonds">
<meta name="author" content="Mark Edmonds">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Google analytics -->
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-98378227-1', 'auto');
ga('send', 'pageview');
</script>
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/teaching-layout.css">
<link rel="stylesheet" href="css/media-queries.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<!-- Header
================================================== -->
<header id="home">
<nav id="nav-wrap">
<a class="mobile-btn" href="#nav-wrap" title="Show navigation">Show navigation</a>
<a class="mobile-btn" href="#" title="Hide navigation">Hide navigation</a>
<ul id="nav" class="nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./CS31/CS31.html">UCLA CS 31</a></li>
<li><a href="./CS32/CS32.html">UCLA CS 32</a></li>
<li><a href="./CS80/CS80.html">SMC CS 80</a></li>
<li><a href="./CS50/CS50.html">SMC CS 50</a></li>
<li><a href="./CS52/CS52.html">SMC CS 52</a></li>
</ul>
<!-- end #nav -->
</nav>
<!-- end #nav-wrap -->
</header>
<!-- Header End -->
<section id="general">
<!-- Experience -->
<div class="row courses">
<div class="three columns header-col">
<h1><span>Courses</span></h1>
</div>
<div class="nine columns main-col">
<div class="row item">
<div class="twelve columns">
<h3><a href="./CS80/CS80.html">SMC CS 80 - Internet Programming</a></h3>
<!-- <p class="info"><em class="date">Fall 2018</em></p> -->
<p>
An introduction to Internet technologies. Survery course cover HTML5, CSS, Javascript, jQuery, DOM, XML, JSON, Ajax, Web Servers, SQL, and PHP. Project-oriented course.
</p>
</div>
<div class="twelve columns">
<h3><a href="./CS50/CS50.html">SMC CS 50 - Introduction to C Programming</a></h3>
<!-- <p class="info"><em class="date">Spring 2019</em></p> -->
<p>
An introduction to C Programming. Course covers C fundamentals: control flow, loops, functions, pointers, arrays, strings, recursion, command-line arguments, structures, and enumerations.
</p>
</div>
<div class="twelve columns">
<h3><a href="./CS52/CS52.html">SMC CS 52 - Introduction to C++ Programming</a></h3>
<!-- <p class="info"><em class="date"></em></p> -->
<p>
An introduction to C++ Programming. Course covers C++ fundamentals: control flow, loops, functions, classes, pointers, arrays, strings, recursion, command-line arguments, structures, and enumerations.
</p>
</div>
<div class="twelve columns">
<h3><a href="./CS31/CS31.html">UCLA 31 - Introduction to Computer Science I</a></h3>
<p class="info"><em class="date">Fall 2015, Winter 2016</em></p>
<p>
Introduction to computer science via theory, applications, and programming. Basic data types, operators and control structures. Input/output. Procedural and data abstraction. Introduction to object-oriented software development. Functions, recursion. Arrays, strings, pointers. Abstract data types, object-oriented programming. Examples and exercises from computer science theory and applications.
</p>
</div>
<div class="twelve columns">
<h3><a href="./CS32/CS32.html">UCLA CS 32 - Introduction to Computer Science II</a></h3>
<p class="info"><em class="date">Spring 2016</em></p>
<p>
Object-oriented software development. Abstract data type definition and use. Overloading, inheritance, polymorphism. Object-oriented view of data structures: stacks, queues, lists. Algorithm analysis. Trees, graphs, and associated algorithms. Searching and sorting. Case studies and exercises from computer science applications.
</p>
</div>
</div>
</div>
<!-- main-col end -->
</div>
</section>
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="twelve columns">
<ul class="copyright">
<li>© Copyright 2014 CeeVee</li>
<li>Design by <a title="Styleshout" href="http://www.styleshout.com/">Styleshout</a></li>
</ul>
</div>
</div>
</footer>
<!-- Footer End-->
<!-- Default Statcounter code for Personal website http://mjedmonds.com -->
<script type="text/javascript">
var sc_project=11819202;
var sc_invisible=0;
var sc_security="3d207e19";
var sc_https=1;
var scJsHost = (("https:" == document.location.protocol) ? "https://secure." :
"http://www.");
document.write("<sc"+"ript type='text/javascript' src='" + scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
<noscript><div class="statcounter"><a title="Web Analytics Made Easy -
StatCounter" href="http://statcounter.com/" target="_blank"><img
class="statcounter" src="//c.statcounter.com/11819202/0/3d207e19/0/" alt="Web
Analytics Made Easy - StatCounter"></a></div></noscript>
<!-- End of Statcounter Code -->
</body>
</html>