-
Notifications
You must be signed in to change notification settings - Fork 7
/
resources.html
199 lines (189 loc) · 8.27 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
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
---
layout: page
title: Resources
# Space-separated list of tags that user can filter the list of resources by.
# Tags are assigned to each resource in its containing YAML file.
# If a new tag is added to a resource, remember to add it to filter_tags below so it shows up in the dropdown!
filter_tags: snap students
---
{% capture section_content %}
<label for="resources-filter"><strong>Filter Resources:</strong></label>
<select class="resources-filter" id="resources-filter">
<option value="all">All</option>
{% assign filter_tags = page.filter_tags | split: " " %}
{% for tag in filter_tags %}
<option value="{{ tag }}">{{ tag | capitalize }}</option>
{% endfor %}
</select>
{% endcapture %}
{% include section.html %}
{% for group_hash in site.data.resources %}
{% assign group = group_hash[1] %}
{% capture section_content %}
<h2>{{ group.subheading }}</h2>
<ul class="resources-list">
{% for resource in group.resources %}
{% assign resource_id = group_hash[0] | append: "-resource-" | append: forloop.index %}
<li class="{{ resource.tags }}">
<div class="resource-title">
{% if resource.description %}
<a class="unstyled-link" href="#{{ resource_id }}" data-toggle="collapse" aria-expanded="false" aria-controls="{{ resource_id }}">
<i class="fa fa-caret-right"></i>
{% else %}
<i class="fa fa-circle"></i>
{% endif %}
<span class="resource-name">{{ resource.name }}</span>
{% if resource.description %}
</a>
{% endif %}
{% if resource.link %}
<a href="{{ resource.link }}" class="resource-link">
Link <i class="fa fa-external-link" aria-hidden="true"></i>
</a>
{% endif %}
</div>
{% if resource.description %}
<div id="{{ resource_id }}" class="collapse">
{{ resource.description | markdownify }}
</div>
{% endif %}
</li>
{% endfor %}
</ul>
{% endcapture %}
{% include section.html %}
{% endfor %}
{% capture section_content %}
<h2>Beauty and Joy of Computing course at UC Berkeley</h2>
<ul>
<li>
<a href="https://bjc.eecs.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/intro_new/1-introduction.topic">Topic 1: Introduction to Snap<i>!</i></a>
</li>
<li>
<a href="https://bjc.eecs.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/intro_new/2-loops-variables.topic">Topic 2: Loops and Building your own Blocks</a>
</li>
<li>
<a href="https://bjc.eecs.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/intro_new/3-conditionals.topic">Topic 3: Conditionals and Variables</a>
</li>
<li>
<a href="https://bjc.eecs.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/intro_new/4-abstraction-testing.topic">Topic 4: Advanced Building: Abstraction and Testing</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/lists/lists-I.topic">Topic 5: Lists</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/lists/tic-tac-toe.topic">Topic 6: Tic Tac Toe</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/areas/algorithms.topic">Topic 7: Algorithms</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/areas/algorithm-complexity.topic">Topic 8: Algorithm Complexity</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/areas/concurrency.topic">Topic 9: Concurrency</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/recur/recursion-trees-fractals.topic">Topic 10: Trees and Fractals using Recursion</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/recur/recursive-reporters.topic">Topic 11: Recursive Reporters </a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/apps/simulation-in-science.topic">Topic 12: Simulation in Science</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/apps/simulation-bioinformatics.topic">Topic 13: Simulation: BioInformatics</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/apps/applications-that-changed-the-world.topic">Topic 14: Applications that changed the world</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/areas/distributed-computing.topic">Topic 15: Distributed Computing</a>
</li>
<li>
<a href="https://bjc.berkeley.edu/bjc-r/topic/topic.html?topic=berkeley_bjc/additional-videos-reading.topic">Additional Videos and Readings</a>
</li>
</ul>
<p>(For our most recent work, go to <a href="https://bjc.berkeley.edu/bjc-r/">https://bjc.berkeley.edu/bjc-r/</a>)</p>
{% endcapture %}
{% include section.html %}
{% capture section_content %}
<h2>Lecture slides on Social Implications of Computing</h2>
<div class="topic_container">
<ul>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/01privacy.pptx">Privacy</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/02ip.pptx">Owning Ideas</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/03ethics.pptx">Ethics</a>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/04war.pptx">Computers and War</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/05self.pptx">Computers and Self</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/06community.pptx">Computers and Community</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/07education.pptx">Computers and Education</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/08risks.pptx">Risks of Computing</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/09work.pptx">Computers and Work</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/10censorship.pptx">Censorship and Pornography</a>
</li>
<li>
<a href="{{ site.baseurl }}/documents/cs10social/11prof-ethics.pptx">Professional Standards of Ethics</a>
</li>
</ul>
</div>
{% endcapture %}
{% include section.html %}
{% capture section_content %}
<!-- <h2>Hour of Code</h2>
<p>
BJC's <a href="https://code.org/">Hour of Code</a> tutorial is <a href="https://snap.berkeley.edu/hoc">here</a>.
</p> -->
<h2>Snap<em>!</em> Manuals</h2>
<p>
<a href="https://snap.berkeley.edu/SnapManual.pdf">S<small><small>NAP</small></small><i>!</i> Manual — part reference, part advanced tutorial (PDF)</a>
</p>
{% endcapture %}
{% include section.html %}
<div class="section grid-gallery snap-projects">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<h2 class="text-center text-uppercase">Snap<em>!</em> Projects</h2>
</div>
</div>
<div class="row">
{% for project in site.data.snap-projects %}
<div class="col-md-3 col-xs-6 grid-item">
<div class="project-tile">
<img src="{{ site.baseurl }}/assets/img/project_thumbnails/{{ project.thumbnail }}"
alt="Thumbnail of Snap! project, '{{ project.title }}'">
<div class="caption">
<a href="{{ project.link }}" class="unstyled-link" target="_blank">
<h3 class="project-title">{{ project.title }}</h3>
</a>
<p class="project-description">
{{ project.description }}
</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="trapezoid"></div>
</div> <!-- /. section -->