forked from philippejlyu/Programming-Club-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.html
More file actions
72 lines (63 loc) · 4.22 KB
/
learn.html
File metadata and controls
72 lines (63 loc) · 4.22 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
<!DOCTYPE html>
<html>
<head>
<title>BMSS Programming Club - Learn Programming</title>
<link rel="stylesheet" type="text/css" href="stylelearn.css">
<link rel="shortcut icon" type="image/png" href="./Images/Favicon.png">
</head>
<body>
<div class="navigation">
<center>
<ul>
<li><a href="about.html" class="button">About</a></li>
<li><a href="learn.html" class="button">Learn programming</a></li>
<li><a href="index.html" class="button">Home</a></li>
<div id="title">
<li><a href="index.html" class="logo"><img src="./Images/Club-Logo.png" alt:"BMSS Programming Club" height="55"></a></li>
</div>
</ul>
</center>
</div>
<div class="banner">
<div id="bannerContent">
<center>
<h1>Learn Programming</h1>
<h2>All the best programming resources on the web</h2>
</center>
</div>
</div>
<div class="content">
<center>
<h1>Lighthouse Labs on Thinkific</h1>
<p><a href="http://lighthouse-labs.thinkific.com">Lighthouse Labs's</a> has multiple courses on various topics on Thinkific that are free. You can learn web development, JavaScript, and iOS development</p>
<h1>Computer Science Circles</h1>
<p><a href="https://cscircles.cemc.uwaterloo.ca/using-this-website/">Computer Science Circles</a> is a great resource made by the University of Waterloo for learning python. If you are planning on writing the CCC, this is a great place to learn.</p>
<h1>Ray Wenderlich (iOS, Swift, Android)</h1>
<p><a href="https://raywenderlich.com/">RayWenderlich.com</a> is a great resource for learning mobile development. Their content allows you to learn iOS development with Swift, and Android development.</p>
<h1>Unity and C#</h1>
<p><a href="https://unity3d.com/learn/tutorials/projects/roll-ball-tutorial">Unity's Tutorials</a> are a great place to start learning Unity 3d and C#.</p>
<h1>Stack Overflow</h1>
<p><a href="https://stackoverflow.com">Stackoverflow.com</a> is the best place to ask or find answers to your questions. Have a very difficult bug, chances are, someone on stackoverflow has an answer or is willing to help</p>
<h1>r/learnProgramming</h1>
<p><a href="https://reddit.com/r/learnprogramming/">Reddit's r/learnProgramming</a> is a good place to find articles to learn, and ask questions beginners may have if you weren't able to find the answer on Google.</p>
<h1>Github</h1>
<p><a href="https://github.com">Github</a> is a great place to backup your code in the cloud. It allows you to keep many copies of your code. If you make a big mistake, you'll be able to revert your code to a previous state where it worked fine. <br>You should also use <a href="https://education.github.com/pack/">Github's education pack</a> which gives you many paid developer resources for free. All you need to do to sign up is to scan your student ID</p>
<h1>BMSS Programming Club</h1>
<p>You can also come to the BMSS Programming Club every Tuesday at Lunch to learn from experienced programmers at your school. Just drop by and tell us that you're here to learn programming. You can see when we are covering one day by looking at the home page</p>
<h1>Atomic Toddler</h1>
<p><a href="http://atomictoddler.com">AtomicToddler.com</a> shows all you need to know for the AP Computer Science exam. You can learn all you need to know about Java with this website which is made by the Computer Science teacher at Burnaby North Secondary</p>
<h1>CCC Grader</h1>
<p>If you are interested in writing the Canadian Computing Competition by CEMC Waterloo, the <a href="http://cccgrader.com">CCC Grader</a> is a great place to start.<br> If you don't have a login, you can always look at past contests <a href="http://cemc.uwaterloo.ca/contests/past_contests.html#ccc">here</a></p>
</center>
</div>
<div class="footer">
<div class="footerContent">
<center>
<h3>Tuesday at Lunch @ Room 319<br><a href="https://github.com/philippejlyu/Programming-Club-Website">Fork me on Github</a></h3>
</center>
<center>
<h5><a href="index.html">Home</a> <a href="learn.html">Learn Programming</a> <a href="about.html">About</a></h5>
</div>
</div>
</body>
</html>