You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var selectedItem by remember { mutableStateOf(0) }
28
+
28
29
val paragraphs = remember {
29
30
listOf(
30
31
"Hi, I'm Nishant. I'm currently a hobbyist software developer and a computer science student at the Indian Institute of Information Technology Bhagalpur.",
31
32
"I've written a variety of programs in multiple languages over my years as a hobbyist developer since back when I was in middle and high school (~2019) in Python and C++, spanning multiple areas like games, CLI tools, GUI tools and automation scripts. I'm continuing to work towards persuing my passion of software development as my career, now as a CS student."
32
33
)
33
34
}
34
35
36
+
val experiences = remember {
37
+
listOf(
38
+
Experience(
39
+
start ="May",
40
+
end ="June 2022",
41
+
position ="Research Asst. (Android Dev)",
42
+
description ="Created an Android app for collecting and compiling a validation dataset for a binary image classification model from scratch. Generated output from the model on-device for a fast, offline experience. Designed an intuitive UI, with options for viewing and editing entries in the dataset. Optimized the UX: the validation dataset can be exported to the device with the click of a button.",
0 commit comments