-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresources.html
69 lines (61 loc) · 1.68 KB
/
resources.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
<html>
<head>
<title>CPU</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/palette.min.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/main.css">
<style type="text/css">
.article {
font-family:'Roboto', sans-serif;
background:white;
font-size:16pt;
margin:0 auto;
width:80%;
max-width:800px;
padding:2em 3em;
margin-top:3em;
line-height:1.5em;
}
.article h1 {
margin:1em 0;
}
.article a {
color:#40B4DD;
}
.article a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="article">
<h1>Learning Resources</h1>
<p>Here are some helpful resources if you want to further your learning.</p>
<p>First of all, if you haven't already, you should check out our <a href="https://github.com/ChoateProgrammingUnion/meetingcode">meeting code</a>. Everything we ever do at meetings will be catalogued here. <p>
<p>We also have <a href="http://docs.alanluo.com">extensive documentation</a> of most of the topics that are covered during meetings. You'll also find some additional resources there.</p>
<p>Javascript:</p>
<ul>
<li>MDN</li>
<li>W3Schools</li>
</ul>
<p>Algorithms:</p>
<ul>
<li>Nature of Code</li>
</ul>
<p>Problems/Competitions</p>
<ul>
<li>Project Euler</li>
<li>Hackerrank</li>
<li>USACO</li>
</ul>
<p>Issues</p>
<ul>
<li>Stack Overflow</li>
</ul>
</div>
</div>
</body>