-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (35 loc) · 1.55 KB
/
index.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
<html>
<head>
<title>Snap Apps</title>
</head>
<body>
<h1>Snap Apps</h1>
<h2>Edgy</h2>
<p>
Edgy is a block-based programming environment that runs in a web
browser. Use it to write programs that manipulate networks.
Edgy is based on <a href="http://snap.berkeley.edu/">Snap!</a> from UC Berkeley.
It uses the <a href="http://felix-kling.de/JSNetworkX/">JSNetworkX</a> graph library.
</p>
<p>Here is an example of <i>minimal spanning tree</i>, adapted from
Tim Bell's CS Unplugged <a href="http://csunplugged.org/sites/default/files/activity_pdfs_old/unplugged-09-minimal_spanning_trees-original.pdf">Muddy City</a> activity.
<table>
<tr>
<td><img src="images/muddycitycode3.png"/></td>
<td><img src="images/muddycity3.png"/></td>
</tr>
</table>
<ul>
<li> <a href="edgy/app/edgy.html">Try the app!</a>
<li> <a href="files/Programming-with-Edgy.pdf">Programming with Edgy</a> (NB links to screencasts which are currently offline)
<li> <a href="https://youtu.be/1A8E5qsRDZw">Screencast: hello world</a></li>
<li> <a href="https://youtu.be/2cJCDbahrNw">Screencast: creating a graph ADT</a></li>
<li> <a href="https://youtu.be/VMRN-wYNMkE">Screencast: creating variables</a></li>
<li> <a href="https://youtu.be/rzZe7Yk9WZk">Screencast: loops and iteration</a></li>
</ul>
<h2>Development</h2>
<p>
Edgy has been developed by <a href="http://stevenbird.net/">Steven Bird</a> and students (Mak Nazečić-Andrlon, Jarred Gallina) at the University of Melbourne. Development is hosted at <a href="https://github.com/snapapps/edgy">https://github.com/snapapps/edgy</a>.
</p>
</body>
</html>