-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
332 lines (296 loc) · 12.9 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Portfolio" />
<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:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/fa62c117c7.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="styles.css" />
<!-- This is your tab name, edit to what you prefer. -->
<title>Chirag Kandoi</title>
</head>
<!-- It is important to note any extra sections may be deleted if prefered. Be sure to test your code if you do so. -->
<!-- IMPORTANT: Don't forget to include the JS code in this template's directory. -->
<body class="light" id="top">
<header class="header center">
<h3>
<!-- replace the href link to a site of your own and update the 'RS.' to your initials -->
<a href="https://chiragK22.github.io/chiragkandoi" class="link"
>CK.</a
>
</h3>
<nav class="nav center">
<ul class="nav__list center">
<li class="nav__list-item">
<!-- This is your nav bar. Update with disired tab names (between the >...< tags). -->
<a class="link link--nav" href="#projects">Projects</a>
</li>
<li class="nav__list-item">
<a class="link link--nav" href="#publications">Publication</a>
</li>
<li class="nav__list-item">
<a class="link link--nav" href="#skills">Skills</a>
</li>
<li class="nav__list-item">
<a class="link link--nav" href="#contact">Contact</a>
</li>
</ul>
<button type="button" aria-label="toggle theme" class="btn btn--icon">
<i aria-hidden="true" id="btn-theme" class="fas fa-moon"></i>
</button>
<button
type="button"
aria-label="toggle navigation"
class="btn btn--icon nav__hamburger"
>
<i aria-hidden="true" class="fas fa-bars"></i>
</button>
</nav>
</header>
<main>
<!-- ABOUT SECTION -->
<div class="about center">
<!-- Replace Raj Shekhar with your name. -->
<h1>Hi, I am <span class="about__name">Chirag Kandoi.</span></h1>
<!-- Replace 'A Front end Developer' with your title. -->
<h2 class="about__role">A Game Developer.</h2>
<!-- Replace this paragraph with your bio/about information. -->
<p class="about__desc">
I am a second-year master's student in computer science at Colorado State University.
My research interests include machine learning, game development, virtual reality, and augmented reality.
My advisor is Prof <a href="https://sites.google.com/view/nathanieltblanchard/home">Nate Blanchard</a>
</p>
<div class="about__contact center">
<!-- This is the link to your resme. Update the href to your resume, or delete the a tag content. -->
<a target='_blank' href="https://docs.google.com/document/d/1LbQdd36SdA4gtXSIyy5-8-rA8mVIXjUs/edit?usp=sharing&ouid=103236500846067888400&rtpof=true&sd=true">
<span class="btn btn--outline">Resume</span>
</a>
<!-- replace the href link with the link to your GitHub profile -->
<a target='_blank'
href="https://github.com/chiragK22"
aria-label="github"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a>
<!-- replace the href link with the link to your LinkedIn profile -->
<a target='_blank'
href="https://www.linkedin.com/in/chirag-kandoi-24ab19169"
aria-label="linkedin"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-linkedin"></i>
</a>
</div>
</div>
<!-- END ABOUT SECTION -->
<!-- PROJECTS SECTION -->
<!-- This section is for your projects, update the filler information with your PROJECTS. -->
<!-- Delete any extra a sections as necessary. -->
<section id="projects" class="section projects">
<h2 class="section__title">Projects</h2>
<div class="projects__grid">
<div class="project">
<h3>ROW</h3>
<p class="project__description">
Created an open-world shooter game, with a focus on team strategy and decision-based rewards. Implemented first-person
and third-person game modes which enhanced the overall gameplay experience.
</p>
<ul class="project__stack">
<li class="project__stack-item">C-Sharp</li>
<li class="project__stack-item">Blender 3D</li>
<li class="project__stack-item">Unity 3D</li>
</ul>
<a target='_blank'
href="https://gitlab.com/ChiragKandoi22/row"
aria-label="source code"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a>
<a target='_blank'
href="https://drive.google.com/file/d/144KCJqNLG6hBJb5_8ICdlnsWWhc085rT/view"
aria-label="live preview"
class="link link--icon"
>
<i aria-hidden="true" class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="project">
<h3>Escape Room</h3>
<p class="project__description">
Constructed levels of escape environments using Unity to train AI agents to recognize and interact with different-shaped objects. Simulated the environment to test the AI agents using Python, ensuring accurate behavior of agents in the escape room.
</p>
<ul class="project__stack">
<li class="project__stack-item">C-Sharp</li>
<li class="project__stack-item">Python</li>
<li class="project__stack-item">Unity 3D</li>
</ul>
<!-- <a target='_blank'
href="https://github.com/ChiragK22/Escape-room-Scene"
aria-label="source code"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a> -->
<!-- <a
href="https://github.com/Blanchard-lab/Micro-Gesture-Dataset"
aria-label="live preview"
class="link link--icon"
>
<i aria-hidden="true" class="fas fa-external-link-alt"></i>
</a> -->
</div>
<div class="project">
<h3>Greenify: The Garden App</h3>
<p class="project__description">
Developed an android app that helps the people who visit the nearby garden and tool, shop owners, where
people can buy plants, tools and give their valuable suggestions.
</p>
<ul class="project__stack">
<li class="project__stack-item">JAVA</li>
<li class="project__stack-item">Kotlin</li>
<li class="project__stack-item">Android Studio</li>
</ul>
<a target='_blank'
href="https://github.com/ChiragK22/GreenifyTheGardendApp"
aria-label="source code"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a>
<!-- <a
href="https://github.com/ChiragK22/GreenifyTheGardendApp"
aria-label="live preview"
class="link link--icon"
>
<i aria-hidden="true" class="fas fa-external-link-alt"></i>
</a> -->
</div>
<div class="project">
<h3>Micro-Gesture Dataset</h3>
<p class="project__description">
Research on Micro-Gestures, to create a new dataset for real-time human interaction in virtual reality. Design an
environment for human subjects to collect real-world data and created synthetic data for training.
</p>
<ul class="project__stack">
<li class="project__stack-item">C-Sharp</li>
<li class="project__stack-item">Python</li>
<li class="project__stack-item">Unity 3D</li>
</ul>
<a target='_blank'
href="https://github.com/Blanchard-lab/Micro-Gesture-Dataset"
aria-label="source code"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a>
<!-- <a
href="https://github.com/Blanchard-lab/Micro-Gesture-Dataset"
aria-label="live preview"
class="link link--icon"
>
<i aria-hidden="true" class="fas fa-external-link-alt"></i>
</a> -->
</div>
</div>
</section>
<!-- END PROJECTS SECTION -->
<!-- Publication SECTION -->
<!-- This section is for your publication, update the filler information with your Publication. -->
<!-- Delete any extra a sections as necessary. -->
<section id="publications" class="section publications">
<h2 class="section__title">Publication</h2>
<div class="publications__grid">
<div class="publication">
<h3>Intentional microgesture
recognition for extended human-computer interaction</h3>
<p class="publication__description">
Kandoi, C., Jung, C., Mannan, S., VanderHoeven, H., Meisman, Q., Krishnaswamy, N., Blanchard, N.: Intentional microgesture
recognition for extended human-computer interaction. In: Human-Computer Interaction, HCI 2023, Held as Part of the 25th HCI
International Conference, HCII 2023. Springer (2023) (In Review)
</p>
<ul class="publication__stack">
<li class="publication__stack-item">C-Sharp</li>
<li class="publication__stack-item">Blender 3D</li>
<li class="publication__stack-item">Unity 3D</li>
</ul>
<!-- <a
href="https://gitlab.com/ChiragKandoi22/row"
aria-label="source code"
class="link link--icon"
>
<i aria-hidden="true" class="fab fa-github"></i>
</a>
<a
href="https://drive.google.com/file/d/144KCJqNLG6hBJb5_8ICdlnsWWhc085rT/view"
aria-label="live preview"
class="link link--icon"
>
<i aria-hidden="true" class="fas fa-external-link-alt"></i>
</a> -->
</div>
</section>
<!-- END PUBLICATION SECTION -->
<!-- SKILLS SECTION -->
<!-- This section is for your skills, update the filler information with your SKILLS. -->
<!-- Delete any extra li sections as necessary. -->
<section class="section skills" id="skills">
<h2 class="section__title">Skills</h2>
<ul class="skills__list">
<li class="skills__list-item btn btn--plain">HTML</li>
<li class="skills__list-item btn btn--plain">CSS</li>
<li class="skills__list-item btn btn--plain">JavaScript</li>
<li class="skills__list-item btn btn--plain">C#</li>
<li class="skills__list-item btn btn--plain">Unity 3D</li>
<li class="skills__list-item btn btn--plain">Blender 3D</li>
<li class="skills__list-item btn btn--plain">Java</li>
<li class="skills__list-item btn btn--plain">C</li>
<li class="skills__list-item btn btn--plain">C++</li>
<li class="skills__list-item btn btn--plain">PHP</li>
</ul>
</section>
<!-- END SKILLS SECTION -->
<!-- CONTACT SECION -->
<section class="section contact center" id="contact">
<h2 class="section__title">Contact</h2>
<a href="mailto:[email protected]">
<span class="btn btn--outline">Email me</span>
</a>
</section>
<!-- END CONTACT SECTION -->
</main>
<!-- END MAIN CONTENT -->
<!-- FOOTER -->
<!-- This section is a footer. Update 'Created by ...' (between the >...< tags). -->
<!-- replace the href link to your own gitHub or other site -->
<!-- You can also delete the footer if prefered. (Be sure to test your code changes) -->
<footer class="footer">
<a target='_blank'
href="https://github.com/chiragK22/chiragkandoi"
class="link footer__link"
>
Created By Chirag Kandoi
</a>
</footer>
<!-- END FOOTER -->
<!-- This div is for an error to appear if you scroll down, to take you back to the top of the page. -->
<div class="scroll-container">
<div class="scroll-top">
<a aria-label="Scroll up" href="#top">
<i aria-hidden="true" class="fas fa-arrow-up"></i>
</a>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>