-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (92 loc) · 2.38 KB
/
index.html
File metadata and controls
103 lines (92 loc) · 2.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<meta charset="UTF-8">
<title>Learning</title>
<h1>Tutorials and Learning Resources</h1>
</head>
<body>
<div class="jumbotron">
<div>
<h2>Tutorials2</h2>
</div>
<table class="table table-condensed">
<tr>
<td>Introduction</td>
</tr>
<tr>
<td>Your development environment</td>
</tr>
<tr>
<td>Alethzero video</td>
</tr>
<tr>
<td>Where to find further information</td>
</tr>
<tr>
<td><a href="Tutorials/Your_first_dapp.html">Your first Dapp - Serpent</a></td>
<td>Your first Dapp - Solidity</td>
</tr>
<tr>
<td><a href="Tutorials/Your_contracts_storage_serpent.html">Your Contracts Storage - Serpent</a></td>
<td>Your Contracts Storage - Solidity</td>
</tr>
<tr>
<td><a href="Tutorials/Javascript_API_1.html">Javascript API part 1: Querying the blockchain</a></td>
</tr>
<tr>
<td>A useful html page</td>
</tr>
<tr>
<td><a href="Tutorials/Data_structures_and_transactions.html">Data structures and transactions - Serpent</a></td>
<td>Data structures and transactions - Solidity</td>
</tr>
<tr>
<td>Javascript API Part 2: Sending transactions to the Network</td>
</tr>
<tr>
<td><a href="Tutorials/Things_contracts_kind_of_know.html">Things contracts kind of know</a></td>
</tr>
<tr>
<td>Calls to other contracts and a contracts API - Serpent</td>
<td>Calls to other contracts and a contracts API - Solidity</td>
</tr>
<tr>
<td>A detailed look at Gas</td>
</tr>
<tr>
<td><a href="Tutorial/Efficient_code_serpent.html">How to write efficient code in Serpent</a></td>
<td>How to be efficient in Solidity</td>
</tr>
<tr>
<td><a href="Tutorials/Graffiti_Dapp.html">Graffiti dapps - storing arbritrary information on the blockchain - Serpent</a></td>
<td>Graffiti dapps - storing arbritrary information on the blockchain - Solidity</td>
</tr>
<tr>
<td>Generating Randomness</td>
</tr>
<tr>
<td><a href="Tutorials/Heap.html">Heaps</a></td>
</tr>
<tr>
<td>Javascript API Part 3: Whisper messaging</td>
</tr>
<tr>
<td>Contracts creating contracts</td>
</tr>
<tr>
<td>A System of wallets</td>
</tr>
</table>
</div>
<div class="jumbotron">
<div>
<h2>Learning Resources</h2>
</div>
<div>
<p><a href="Example_transact_frontend.html">Example FrontEnd</a></p>
</div>
</div>
</body>
</html>