Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OTC Talks 1 #10

Merged
merged 9 commits into from
Feb 13, 2023
227 changes: 227 additions & 0 deletions 1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,227 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="otc, talks, OTC Talks, Our Tech Community"
/>
<meta name="description" content="OTC Talks #1" />
<meta name="author" content="Harsh Kapadia" />
<meta property="og:site_name" content="OTC Talks #1" />
<meta property="og:title" content="OTC Talks #1" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="OTC Talks #1 — on any Tech-related topic. Anyone can give a talk and if you're interested, please fill out a form and we'll get in touch with you as soon as possible!"
/>
<meta property="og:url" content="https://talks.ourtech.community/1" />
<meta
property="og:image"
content="https://talks.ourtech.community/static/img/og-img/home.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="600" />
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:image"
content="https://talks.ourtech.community/static/img/og-img/home.png"
/>

<script defer src="static/js/script.js"></script>

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>

<link rel="stylesheet" href="static/css/style.css" />

<link
rel="shortcut icon"
href="static/img/favicon.ico"
type="image/x-icon"
/>

<title>OTC Talks #1</title>
</head>

<body>
<header>
<nav>
<div class="burger-menu">
<div class="line-1"></div>
<div class="line-2"></div>
<div class="line-3"></div>
</div>

<ul class="navbar-ul hide-burger-menu burger-menu-dropdown">
<li><a href="/">Home</a></li>
<li><a href="/cfp">Talks CFP</a></li>
<li><a href="/rules">Rules</a></li>
<li>
<a
href="https://ourtech.community/coc"
target="_blank"
rel="noreferrer"
>Code of Conduct</a
>
</li>
<li>
<a
href="https://t.me/OurTechComm"
target="_blank"
rel="noreferrer"
>Join us on Telegram</a
>
</li>
<li>
<a
href="https://ourtech.community/two-years"
target="_blank"
rel="noreferrer"
>Two Years of OTC</a
>
</li>
<li>
<a
href="https://ourtech.community/team"
target="_blank"
rel="noreferrer"
>Our Team</a
>
</li>
<li>
<a
href="https://links.ourtech.community"
target="_blank"
rel="noreferrer"
>All Links</a
>
</li>
</ul>
</nav>
</header>

<h1>OTC Talks #1</h1>

<section id="talks-details">

<h2>Table of Contents</h2>

<ul id="talks-list">
<li>
<a href="#talk-1"
>Supercharge your deployments with WASM, by Rishit
Dagli</a
>
</li>
</ul>

<h2 id="details">Details</h2>

<ul>
<li><b>Date</b>: 24th December, 2022</li>
<li><b>Timing</b>: 10:30 PM IST</li>
<li>
<b>Where</b>: Online, held before
<a
href="https://catchup.ourtech.community/summary/111"
target="_blank"
rel="noreferrer"
>OTC CatchUp #111</a
>
</li>
<li><a href="/rules">Rules</a></li>
tusharnankani marked this conversation as resolved.
Show resolved Hide resolved
<li>
<a
href="https://ourtech.community/coc"
target="_blank"
rel="noreferrer"
>Code of Conduct</a
>
</li>
HarshKapadia2 marked this conversation as resolved.
Show resolved Hide resolved
<li>
<a
href="https://links.ourtech.community"
target="_blank"
rel="noreferrer"
>Contact Us</a
>
</li>
</ul>

</section>

<main id="main-content">
<section id="talk-1" class="talk-section">
<h2 class="talk-title">Supercharge your deployments with WASM</h2>
<p>
Speaker:
<a
href="https://twitter.com/rishit_dagli"
target="_blank"
rel="noreferrer"
>Rishit Dagli</a
>
</p>
<h3 id="abstract-1">Abstract</h3>
<p>
Machine Learning inference (though what we talk about can be
applied to other computationally intensive tasks) is often a
computationally intensive task and could greatly benefit
from the speed of WebAssembly. What if I told you, that you
could improve the performance of your application deployed
on Linux containers.
</p>
<p>Enter Wasm and Kubernetes.</p>
<p>
This talk starts off by introducing the audience to
WebAssembly (Wasm) and how they could make use of the speed
and security among others of Wasm for their deployments.
Another problem we face is that the standard WebAssembly
provides very limited access to the native OS and hardware,
such as multi-core CPUs, GPU, or TPUS which is not ideal for
the kind of systems we target. The talk also shows how one
could use the WebAssembly System Interface (WASI) to get
security, portability, and native speed for Machine Learning
models. The talk then slides into the recent (still preview)
support that Azure has launched for WASI node pools to run
such a system while also using Krustlet to run Wasm on
Kubernetes. To top it off this talk ends with a demo of
doing so on Azure.
</p>

<h3 id="relevant-links-1">Relevant Links</h3>
<ul>
<li>
<a
href="https://docs.google.com/presentation/d/17djYwi-e-qp7QHaNfS5TEPTcXgoGu5HUnASae2gO41U/edit#slide=id.g1b2c9799b21_0_0"
target="_blank"
rel="noreferrer"
>Slide Deck</a
>
</li>
<li>
<a
href="https://youtu.be/ZiFLje7ir5g"
target="_blank"
rel="noreferrer"
>Video Demo</a
>
</li>
</ul>
</main>

<footer>
<a href="/">OTC Talks</a> events by
<a href="https://ourtech.community" target="_blank" rel="noreferrer"
>Our Tech Community</a
>.
</footer>
</body>
</html>
48 changes: 26 additions & 22 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,27 +152,6 @@ <h2 id="about">About</h2>

<h2 id="upcoming-talks">Upcoming Talks</h2>

<div class="event">
<h3>OTC Talks #1</h3>
<div>24th December 2022, 10:30 PM IST</div>
<p>
Link to attend —
<a href="https://catchup.ourtech.community/attend"
>OTC CatchUp #111</a
>
</p>

<p>
"Supercharge your deployments with WASM" by
<a
href="https://www.rishit.tech"
target="_blank"
rel="noreferrer"
>Rishit Dagli</a
>
</p>
</div>

<p>
We'll let you know about OTC Talks on
<a
Expand All @@ -196,7 +175,32 @@ <h3>OTC Talks #1</h3>

<h2 id="past-talks">Past Talks</h2>

<div class="event">We're conducting our first talk soon!</div>
<div class="event">
<h3>OTC Talks #1</h3>
<div>24th December 2022, 10:30 PM IST</div>
<p>
Held before
<a
href="https://catchup.ourtech.community/summary/111"
target="_blank"
rel="noreferrer"
>OTC CatchUp #111</a
>
</p>

<p>
"Supercharge your deployments with WASM" by
<a
href="https://www.rishit.tech"
target="_blank"
rel="noreferrer"
>Rishit Dagli</a
>
</p>
<p>
<a href="/1.html">More details</a>
</p>
</div>
</main>

<footer>
Expand Down
6 changes: 2 additions & 4 deletions rules.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ <h1>OTC Talks Rules</h1>
<li>OTC Talks will be conducted online.</li>
<li>
Duration of the lightning talk: 15 - 25 minutes from 10:45
PM IST on a Saturday, followed by
PM IST on a Saturday, followed by
<a
href="https://catchup.ourtech.community"
target="_blank"
Expand Down Expand Up @@ -160,9 +160,7 @@ <h1>OTC Talks Rules</h1>
>the organisers</a
>
or on
<a
href="mailto:[email protected]"
rel="noreferrer"
<a href="mailto:[email protected]" rel="noreferrer"
>[email protected]</a
>.
</li>
Expand Down
24 changes: 22 additions & 2 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ h1 {

h2 {
text-align: center;
margin: 0 1em;
/* margin: 0 1em; */
font-size: 20px;
font-size: clamp(20px, 2vw, 25px);
}
Expand Down Expand Up @@ -170,7 +170,8 @@ h2 {
width: 50%;
}

ul {
ul,
ol {
margin-left: 1em;
}

Expand Down Expand Up @@ -249,6 +250,25 @@ footer {
}
}

#talks-details {
display: flex;
align-items: flex-start;
justify-content: space-evenly;
flex-direction: column;
gap: 1.5rem;
margin: 0 2rem;
min-width: 90vw;
}

#talks-list {
line-height: 1.5;
/* list-style-type: upper-roman; */
}

.talk-title {
text-align: left;
}

@media screen and (max-width: 1200px) {
#showcase-form {
width: 85vw;
Expand Down