-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstudentResources.html
More file actions
61 lines (61 loc) · 3.14 KB
/
studentResources.html
File metadata and controls
61 lines (61 loc) · 3.14 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
<!DOCTYPE html>
<html>
<head>
<title>NC A&T State University Useful Student Resources</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div class="wrapper">
<div class="heading">
<h1>Additional Git Resources for GEEN 165 Students</h1>
</div>
<div class="sidebar">
<a href="index.html">Home</a>
<br><br>
<a href="instructorResources.html">Resources for TA's</a>
</div>
<div class="content">
<h2>GitHub Student Developer Pack</h2>
<p>This is a great collection of software from GitHub and it's partners that provides tons of free software for students. This includes the ability to create free private GitHub resources, access the full features of continuous integration services like TravisCI, and more. Sign up for the pack using your GitHub account <a href="https://education.github.com/pack">here.</a></p>
<br> <br>
<h2>Solutions</h2>
<h3>Lab 2 Solution</h3>
<a href="https://github.com/NCAT-COMP167-Fall2017/lab-2-solution">Lab 2 Solution Repository</a>
<br>
<h3>Lab 3 Solution</h3>
<a href="https://github.com/NCAT-COMP167-Fall2017/lab-3-solution">Lab 3 Solution Repository</a>
<br>
<h3>Lab 4 Solution</h3>
<a href="https://github.com/NCAT-COMP167-Fall2017/Lab-4-Solution">Lab 4 Solution Repository</a>
<br>
<h3>Major Program 1 Solution</h3>
<a href="https://github.com/NCAT-COMP167-Fall2017/MP1-solution">Major Program 1 Solution Repository</a>
<br>
<h3>Lab 7 Solution</h3>
<a href="https://github.com/NCAT-COMP167-Fall2017/lab-7-simple-inheritance-ccannon94">Lab 7 Solution Repository</a>
<br>
<h3>Major Program 2 Solution</h3>
<a href="https://github.com/NCAT-COMP167-Fall2017/MP2-Solution">Major Program 2 Solution Repository</a>
<br>
<h3>Lab 9 JavaFX Solution</h3>
<a href="https://github.com/NCAT-COMP167-Fall2017/lab-9-javafx-ccannon94">Lab 9 Solution Repository</a>
<br> <br>
<h2>Chris' Reading List</h2>
<p>Sometimes, computer science textbooks are too expensive, or too hard to read! Here are some that aren't:</p>
<ul>
<li><a href="https://www.manning.com/books/grokking-algorithms">Grokking Algorithms</a> <br> This is a GREAT book about basic algorithms that explains some complex topics in a very approachable way. 10/10</li>
<li><a href="http://opendatastructures.org">Open Data Structures</a> <br> A higher level but <i>absolutely free</i> resource for learning basic data structures. There are Java, C++, and pseudocode/python versions.</li>
<li><a href="https://git-scm.com/book/en/v2">Pro Git</a> <br> A free book that explains everything you've ever wanted to know about git, and about 1,500 things you'd have never thought to ask. Also, FREE.</li>
</ul>
<br><br>
<h2>Class Archives</h2>
<p>You can view solutions from previous semesters <a href="archives.html">here</a>.</p>
</div>
<div class="footer">
Students, you can view the source code for this website on our <a href="https://github.com/NCAndTCS/NCAndTCS.github.io">GitHub Repository</a>
<br>
Site developed by <a href="https://github.com/CCannon94">@CCannon94</a>
</div>
</div>
</body>
</html>