Skip to content

Commit 65e0282

Browse files
authored
Add the slides for the Typed Main presentation. (#411)
1 parent 8b60676 commit 65e0282

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+11081
-1
lines changed

meetings/2021/WASI-03-11.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,7 @@ The meeting will be on a zoom.us video conference.
2828
1. Announcements
2929
1. _Sumbit a PR to add your announcement here_
3030
1. Proposals and discussions
31-
1. Presentation: Passing capabilities into programs with Typed Main (Dan Gohman)
31+
1. Presentation: Passing capabilities into programs with Typed Main (Dan Gohman) ([slides])
3232
1. _Sumbit a PR to add your agenda item here_
33+
34+
[slides]: presentations/2021-03-11-gohman-typed-main/index.html
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.
Lines changed: 222 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,222 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="sidebar-visible no-js light">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title></title>
7+
8+
9+
<base href="/">
10+
11+
12+
13+
<!-- Custom HTML head -->
14+
15+
16+
17+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
18+
<meta name="description" content="">
19+
<meta name="viewport" content="width=device-width, initial-scale=1">
20+
<meta name="theme-color" content="#ffffff" />
21+
22+
23+
<link rel="icon" href="favicon.svg">
24+
25+
26+
<link rel="shortcut icon" href="favicon.png">
27+
28+
<link rel="stylesheet" href="css/variables.css">
29+
<link rel="stylesheet" href="css/general.css">
30+
<link rel="stylesheet" href="css/chrome.css">
31+
32+
<link rel="stylesheet" href="css/print.css" media="print">
33+
34+
35+
<!-- Fonts -->
36+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
37+
38+
<link rel="stylesheet" href="fonts/fonts.css">
39+
40+
41+
<!-- Highlight.js Stylesheets -->
42+
<link rel="stylesheet" href="highlight.css">
43+
<link rel="stylesheet" href="tomorrow-night.css">
44+
<link rel="stylesheet" href="ayu-highlight.css">
45+
46+
<!-- Custom theme stylesheets -->
47+
48+
49+
50+
</head>
51+
<body>
52+
<!-- Provide site root to javascript -->
53+
<script type="text/javascript">
54+
var path_to_root = "";
55+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
56+
</script>
57+
58+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
59+
<script type="text/javascript">
60+
try {
61+
var theme = localStorage.getItem('mdbook-theme');
62+
var sidebar = localStorage.getItem('mdbook-sidebar');
63+
64+
if (theme.startsWith('"') && theme.endsWith('"')) {
65+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
66+
}
67+
68+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
69+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
70+
}
71+
} catch (e) { }
72+
</script>
73+
74+
<!-- Set the theme before any content is loaded, prevents flash -->
75+
<script type="text/javascript">
76+
var theme;
77+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
78+
if (theme === null || theme === undefined) { theme = default_theme; }
79+
var html = document.querySelector('html');
80+
html.classList.remove('no-js')
81+
html.classList.remove('light')
82+
html.classList.add(theme);
83+
html.classList.add('js');
84+
</script>
85+
86+
<!-- Hide / unhide sidebar before it is displayed -->
87+
<script type="text/javascript">
88+
var html = document.querySelector('html');
89+
var sidebar = 'hidden';
90+
if (document.body.clientWidth >= 1080) {
91+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
92+
sidebar = sidebar || 'visible';
93+
}
94+
html.classList.remove('sidebar-visible');
95+
html.classList.add("sidebar-" + sidebar);
96+
</script>
97+
98+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
99+
<div class="sidebar-scrollbox">
100+
<ol class="chapter"><li class="chapter-item expanded "><a href="chapter_1.html"><strong aria-hidden="true">1.</strong> Introduction</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="chapter_1a.html"><strong aria-hidden="true">1.1.</strong> What is main?</a></li><li class="chapter-item expanded "><a href="chapter_1b.html"><strong aria-hidden="true">1.2.</strong> Filenames</a></li><li class="chapter-item expanded "><a href="chapter_1c.html"><strong aria-hidden="true">1.3.</strong> What problems does this cause?</a></li></ol></li><li class="chapter-item expanded "><a href="chapter_2.html"><strong aria-hidden="true">2.</strong> What's different about WebAssembly?</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="chapter_2a.html"><strong aria-hidden="true">2.1.</strong> Is WebAssembly Assembly?</a></li><li class="chapter-item expanded "><a href="chapter_2b.html"><strong aria-hidden="true">2.2.</strong> WebAssembly has a static type system</a></li><li class="chapter-item expanded "><a href="chapter_2c.html"><strong aria-hidden="true">2.3.</strong> Types</a></li><li class="chapter-item expanded "><a href="chapter_2d.html"><strong aria-hidden="true">2.4.</strong> Signatures</a></li><li class="chapter-item expanded "><a href="chapter_2e.html"><strong aria-hidden="true">2.5.</strong> Command-line usage</a></li><li class="chapter-item expanded "><a href="chapter_2f.html"><strong aria-hidden="true">2.6.</strong> Putting it all together</a></li></ol></li><li class="chapter-item expanded "><a href="chapter_3.html"><strong aria-hidden="true">3.</strong> Compatibility with existing code</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="chapter_3a.html"><strong aria-hidden="true">3.1.</strong> Option A: Out of the box</a></li><li class="chapter-item expanded "><a href="chapter_3b.html"><strong aria-hidden="true">3.2.</strong> Option B: Provide a witx description</a></li><li class="chapter-item expanded "><a href="chapter_3c.html"><strong aria-hidden="true">3.3.</strong> Option C: Typed Main in the source language</a></li><li class="chapter-item expanded "><a href="chapter_3d.html"><strong aria-hidden="true">3.4.</strong> Nameless</a></li></ol></li><li class="chapter-item expanded "><a href="chapter_4.html"><strong aria-hidden="true">4.</strong> Wrap up</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="chapter_4a.html"><strong aria-hidden="true">4.1.</strong> Current status</a></li><li class="chapter-item expanded "><a href="chapter_4b.html"><strong aria-hidden="true">4.2.</strong> Typed Main uses in WASI</a></li></ol></li></ol>
101+
</div>
102+
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
103+
</nav>
104+
105+
<div id="page-wrapper" class="page-wrapper">
106+
107+
<div class="page">
108+
109+
<div id="menu-bar-hover-placeholder"></div>
110+
<div id="menu-bar" class="menu-bar sticky bordered">
111+
<div class="left-buttons">
112+
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
113+
<i class="fa fa-bars"></i>
114+
</button>
115+
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
116+
<i class="fa fa-paint-brush"></i>
117+
</button>
118+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
119+
<li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li>
120+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
121+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
122+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
123+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
124+
</ul>
125+
126+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
127+
<i class="fa fa-search"></i>
128+
</button>
129+
130+
</div>
131+
132+
<h1 class="menu-title">Typed Main for WASI</h1>
133+
134+
<div class="right-buttons">
135+
136+
<a href="print.html" title="Print this book" aria-label="Print this book">
137+
<i id="print-button" class="fa fa-print"></i>
138+
</a>
139+
140+
141+
</div>
142+
</div>
143+
144+
145+
<div id="search-wrapper" class="hidden">
146+
<form id="searchbar-outer" class="searchbar-outer">
147+
<input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
148+
</form>
149+
<div id="searchresults-outer" class="searchresults-outer hidden">
150+
<div id="searchresults-header" class="searchresults-header"></div>
151+
<ul id="searchresults">
152+
</ul>
153+
</div>
154+
</div>
155+
156+
157+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
158+
<script type="text/javascript">
159+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
160+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
161+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
162+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
163+
});
164+
</script>
165+
166+
<div id="content" class="content">
167+
<main>
168+
<h1 id="document-not-found-404"><a class="header" href="#document-not-found-404">Document not found (404)</a></h1>
169+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
170+
171+
</main>
172+
173+
<nav class="nav-wrapper" aria-label="Page navigation">
174+
<!-- Mobile navigation buttons -->
175+
176+
177+
178+
179+
<div style="clear: both"></div>
180+
</nav>
181+
</div>
182+
</div>
183+
184+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
185+
186+
187+
188+
</nav>
189+
190+
</div>
191+
192+
193+
194+
195+
196+
197+
198+
199+
<script type="text/javascript">
200+
window.playground_copyable = true;
201+
</script>
202+
203+
204+
205+
206+
207+
<script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
208+
<script src="mark.min.js" type="text/javascript" charset="utf-8"></script>
209+
<script src="searcher.js" type="text/javascript" charset="utf-8"></script>
210+
211+
212+
<script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script>
213+
<script src="highlight.js" type="text/javascript" charset="utf-8"></script>
214+
<script src="book.js" type="text/javascript" charset="utf-8"></script>
215+
216+
<!-- Custom JS scripts -->
217+
218+
219+
220+
221+
</body>
222+
</html>

meetings/2021/presentations/2021-03-11-gohman-typed-main/FontAwesome/css/font-awesome.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
162 KB
Binary file not shown.
162 KB
Binary file not shown.

0 commit comments

Comments
 (0)