-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtalks.html
163 lines (160 loc) · 6.99 KB
/
talks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/fontawesome/css/fontawesome.min.css">
<link rel="stylesheet" href="assets/css/fontawesome/css/brands.min.css">
<link rel="stylesheet" href="assets/css/fontawesome/css/solid.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/blog.css">
<link rel="stylesheet" href="assets/css/timeline.css">
<link rel="stylesheet" href="assets/css/dark.css">
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/timeline.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/dark.js"></script>
<title>Harsh Saglani</title>
</head>
<body>
<a id="go_up" href="#">
<div class="up-arrow">
<i class="fas fa-angle-up"></i>
</div>
</a>
<nav class="header-nav">
<div class="nav-inner">
<section class="nav-start">
<h4 class="nav-name">Harsh Saglani</h4>
</section>
<ul class="nav-center">
<li><a href="index.html">Home</a></li>
<!-- <li><a href="blog.html">Blog</a></li> -->
<li><a href="projects.html">Projects</a></li>
<li><a class="active">Talks & Publications</a></li>
<a id="searchIcon">🔍</a>
<span onclick="darkToggle()">
<i class="fas fa-moon" id="nav-icon"></i>
</span>
</ul>
<section class="nav-aside">
<!-- <button class="nav-subscribe">Subscribe</button> -->
</section>
</div>
<div class="search-tray">
<input class="search-input" type="text" placeholder="START TYPING TO SEARCH">
</div>
</nav>
<section>
<header>
<div class="container-fluid">
<div class="jumbo-text">
<h1 class="bold">Talks & Publications</h1>
</div>
</div>
</header>
</section>
<section>
<div class="container-fluid">
<div class="grid">
<div class="new-blog-inner">
<article id="talk-1" class="new-blog-inner-item">
<a href="talks/introduction-to-cryptography.html">
<div class="img-wrap">
<img src="assets/img/cryto-talk.png" alt="image" data-rjs="2">
</div>
</a>
<div class="text">
<p class="blog-category blue">
Talk / Workshop
</p>
<a href="talks/introduction-to-cryptography.html">
<h4>Introduction to Cryptography</h4>
</a>
<p class="project-commit">
Crytography, UMD, bitcamp 2023
</p>
<p class="read"><a href="talks/introduction-to-cryptography.html" class="read-post">Learn More</a></p>
</div>
</article>
<!-- <article id="talk-2" class="new-blog-inner-item">
<a href="#">
<div class="img-wrap">
<img src="assets/img/sample2.jpg" alt="image" data-rjs="2">
</div>
</a>
<div class="text">
<p class="blog-category blue">
Talk / Workshop
</p>
<a href="#">
<h4>Introduction to Cybersecurity</h4>
</a>
<p class="project-commit">
cybersecurity, UMD, bitcamp 2023
</p>
<p class="read">
<a href="#" class="read-post">Learn More</a>
</p>
</div>
</article> -->
<article id="pub-1" class="new-blog-inner-item">
<div class="img-wrap">
<div class="cert-pub talk">
<h4>📄</h4>
</div>
</div>
<div class="text">
<p class="blog-category pink">
Publication
</p>
<a href="https://arxiv.org/abs/2107.00881">
<h4>Segmented Federated Learning for Adaptive... </h4>
</a>
<p class="project-commit">
Machine Learning, IDS, paper
</p>
<p class="read">
<a target="_blank" href="https://arxiv.org/abs/2107.00881" class="read-post">View Publication</a>
</p>
</div>
</article>
</div>
</div>
<div class="pagination">
<a class="pg-num prev" href="#!"><i class="fas fa-angle-left disabled"></i></a>
<a class="pg-num active">1</a>
<a class="pg-num next" href="#!"><i class="fas fa-angle-right disabled"></i></a>
</div>
</div>
</section>
<footer>
<hr>
<div class="container-fluid">
<div class="footer-outer-wrapper">
<div class="footer-wrapper">
<div class="section-header-title">
<h3>Living, Learning & Leveling up one day at a time</h3>
</div>
<div class="sub-section-header-title">
<h5>Designed and build with <i class="fas blog-category pink fa-heart"></i> by Harsh Saglani</h>
</div>
<div class="github-stats">
<i class="fas fa-eye"></i>2
<i class="fas fa-star"></i>2
<i class="fas fa-code-branch"></i>3
</div>
<nav class="footer-nav">
<ul class="nav-center">
<li><a href="index.html">Home</a></li>
<li><a href="my_story.html">My Story</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="talks.html">Talks & Publications</a></li>
</ul>
</nav>
</div>
</div>
</div>
</footer>
</body>
</html>