-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
169 lines (152 loc) · 6.15 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
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
<!DOCTYPE html>
<html lang="en"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>Angold-4 Organization</title>
<!-- Using the latest rendering mode for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../../../images/favicon.png" rel="icon">
<link rel="canonical" href=".">
<meta name="author" content="Angold Wang" />
<meta property="og:site_name" content="Angold-4" />
<!-- <meta property="og:type" content="article"/> -->
<meta property="og:title" content="Angold-4 Organization"/>
<meta property="og:url" content="."/>
<!-- Bootstrap -->
<link rel="stylesheet" href="../../../theme/css/bootstrap.flatly.min.css" type="text/css"/>
<link href="../../../theme/css/font-awesome.min.css" rel="stylesheet">
<!-- <link href="https://cdnjs.cloudflare.com/ajax/libs/typicons/2.0.9/typicons.min.css" rel="stylesheet"> -->
<link href="../../../theme/css/pygments/monokai.css" rel="stylesheet">
<link rel="stylesheet" href="../../../theme/css/style.css" type="text/css"/>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script> -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="http://angold4.org" class="navbar-brand">
<img src="../../../images/logo.png" width="32"/> Angold4 </a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="../../../about.html">About</a>
<li><a href="../../../blogs.html">Blogs</a>
<li><a href="../../../projects.html">Projects</a>
</ul>
<ul class="nav navbar-nav navbar-right">
<li> <a title="Youtube" href="https://www.youtube.com/channel/UC3ZAjh2LHhm-FrgxgBtgMzQ" target="_new"><i class="fa fa-youtube"></i> Youtube</a>
</li>
</div>
<!-- /.navbar-collapse -->
</div>
</div> <!-- /.navbar -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<section id="content" class="body">
<h1>A4 Webinars</h1>
<ul>
<li><strong>Collection of all previous A4 Webinars</strong></li>
</ul>
<h2>Round 1 (2021-10-15 -> 2021-12-24)</h2>
<h3>1. Intro to Performance Engineering</h3>
<ul>
<li><a href="Round1/2021-10-15/Angold4001.html">2021-10-15</a></li>
<li>Hardware development (Complex)</li>
<li>Matrix multiplication (<strong>Python <code>21041.67s</code></strong> -> Optimized <strong>C <code>3.04s</code></strong>)</li>
</ul>
<h3>2. Intro to Computer Architecture</h3>
<ul>
<li><a href="Round1/2021-10-22/Angold4002.html">2021-10-22</a></li>
<li>M1 Pro/Max Released</li>
<li>RISC vs CISC</li>
</ul>
<h3>3. Comparision Sort I</h3>
<ul>
<li><a href="Round1/2021-10-29/Angold4003.html">2021-10-29</a></li>
<li>Trade off in ISA (Semantic Gap)</li>
<li>Merge Sort (Comparision Sort i)</li>
</ul>
<h3>4. Comparision Sort II</h3>
<ul>
<li><a href="Round1/2021-11-05/Angold4004.html">2021-11-05</a></li>
<li>Dynamic Programming (Fds)</li>
<li>Quick Sort (Comparision Sort ii)</li>
</ul>
<h3>5. Comparision Sort III</h3>
<ul>
<li><a href="Round1/2021-11-19/Angold4005.html">2021-11-19</a></li>
<li>Virtual Machine</li>
<li>Heap Sort (Comparision Sort iii)</li>
<li>Lower Bounds of Comparision Sort (O(NlogN))</li>
</ul>
<h3>6. Microarchitecture</h3>
<ul>
<li><a href="Round1/2021-11-26/Angold4006.html">2021-11-26</a></li>
<li>angorithm4.org</li>
<li>Turing Machine <strong>(State)</strong></li>
<li>MIPS-Simulator and Eval (AST-Interpreter)</li>
</ul>
<h3>7. JavaScript. The Core</h3>
<ul>
<li><a href="Round1/2021-12-03/JSCore.html">2021-12-03</a></li>
<li>Prototype inherience</li>
<li>Runtime</li>
</ul>
<h3>8. Intro to DataBase I</h3>
<ul>
<li><a href="Round1/2021-12-10/Angold4008.html">2021-12-10</a></li>
<li>Buffer Pool</li>
<li>Hashing Part I (Static Hashing)</li>
</ul>
<h3>9. Intro to DataBase II and Digital Modulation</h3>
<ul>
<li><a href="Round1/2021-12-17/Angold4009.html">2021-12-17</a></li>
<li><a href="Round1/2021-12-17/ShuoFeng003.html">Digital Modulation</a></li>
<li>Hashing Part II (Dynamic Hashing)</li>
</ul>
<h3>10. Intro to DataBase III</h3>
<ul>
<li><a href="Round1/2021-12-24/Angold4010.html">2021-12-24</a></li>
<li>Below the DBMS VM</li>
<li>B-Tree</li>
</ul>
</section>
</div>
</div>
</div>
<footer>
<div class="well well-lg" id="footer-well">
<div class="container">
<div class="row">
<div class="col-xs-6">
<a href="https://angold4.org" title="Angold-4 Organization" class="image-link"><img src="../../../images/logo.png" class="cmudb-logo" /></a>
</div>
<div class="col-xs-6">
<p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p>
</div>
</div>
</div>
</div>
</footer>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../../../theme/js/bootstrap.min.js"></script>
<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) -->
<script src="../../../theme/js/respond.min.js"></script>
<!-- Fix scrolling issues to internal HREFs that get positioned behind navbar -->
<!-- http://stackoverflow.com/questions/10732690/offsetting-an-html-anchor-to-adjust-for-fixed-header -->
<script src="../../../theme/js/href_scroll.js"></script>
<!-- You know what this is and you know what he did to me... -->
<script src="../../../theme/js/tim-kraska-betrayed-me.js"></script>
</body>
</html>