-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_old.html
executable file
·1070 lines (964 loc) · 48.7 KB
/
index_old.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<link
href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900"
rel="stylesheet"
/>
<title>Sohini Kar</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Additional CSS Files -->
<link rel="stylesheet" href="assets/css/fontawesome.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/css/owl.css" />
<link rel="stylesheet" href="assets/css/lightbox.css" />
</head>
<body>
<div id="page-wraper">
<!-- Sidebar Menu -->
<div class="responsive-nav">
<img src="assets/images/logo.png" style="border-radius: 50%; border: 4px solid #665554; top: 10px; left: 10px;" id="menu-toggle">
<div id="menu" class="menu">
<i class="fa fa-times" id="menu-close"></i>
<div class="container">
<div class="image">
<a href="#"><img src="assets/images/logo.png" alt="" /></a>
</div>
<div class="author-content">
<h4>Sohini Kar</h4>
<span>MIT CS '22</span>
</div>
<nav class="main-nav" role="navigation">
<ul class="main-menu">
<li><a href="#section1">About Me</a></li>
<li><a href="#section2">My Work</a></li>
<li><a href="#section3">Art</a></li>
<li><a href="#section4">Classes and Clubs</a></li>
<li><a href="#section5">Contact Me</a></li>
</ul>
</nav>
<div class="social-network">
<ul class="social-icons">
<li>
<a href="https://www.facebook.com/sohini21/"
><i class="fa fa-facebook"></i
></a>
</li>
<li>
<a href="https://github.com/sohinik"><i class="fa fa-github"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/s-kar/"><i class="fa fa-linkedin"></i></a>
</li>
<li>
<a href="https://www.instagram.com/somani.kars/"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="http://www.behance.net/s-kar"><i class="fa fa-behance"></i></a>
</li>
<li>
<a href="https://dribbble.com/sohinikar"><i class="fa fa-dribbble"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<section class="section about-me" data-section="section1">
<div class="container">
<div class="left-image-post">
<div class="row">
<div class="col-md-6" style="margin-top: 5%;">
<div class="left-image">
<img src="assets/images/me.png" alt="me" id="me"/>
</div>
</div>
<div class="col-md-6" style="margin-top: 10%;">
<div class="section-heading">
<h2>Hi, I'm Sohini.</h2>
<div class="line-dec" style="margin-bottom:10%;"></div>
<span>I'm interested in the intersection of technology, intelligence, and design.
Currently, I am the President of UI/UX@MIT and an Ambassador for Miya Arts.
In my free time, I love <a href="https://www.instagram.com/somani.kars/">art<a> 🎨, hiking 🥾, and metal 🤘.
</span>
<div class="line-dec" style="margin-top:10%;"></div>
<a href="assets/docs/Kar_Sohini_copy.pdf" target="_blank">
<button class="button">
SWE Resume
</button>
</a>
<a href="assets/docs/Kar_Sohini_Design_copy.pdf" target="_blank">
<button class="button">
UI/UX Resume
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section my-work" data-section="section2">
<div class="container">
<div class="section-heading">
<h2>My Work</h2>
<div class="line-dec"></div>
<span>School, hackathon, and personal projects, spanning AI/ML, UI/UX, and EECS.</span>
</div>
<div class="row">
<div class="isotope-wrapper">
<form class="isotope-toolbar">
<label
><input
type="radio"
data-type="*"
checked=""
name="isotope-filter"
/>
<span>all</span></label
>
<label
><input
type="radio"
data-type="school"
name="isotope-filter"
/>
<span>school</span></label
>
<label
><input
type="radio"
data-type="personal"
name="isotope-filter"
/>
<span>personal</span></label
>
<label
><input
type="radio"
data-type="hackathons"
name="isotope-filter"
/>
<span>hackathons</span></label
>
</form>
<div class="isotope-box">
<div class="isotope-item" data-type="school">
<figure class="snip1">
<a href="https://xd.adobe.com/view/999f5f57-a53d-4542-ba7f-4601df8aaaa1-cccc/">
<button class="blob-btn" style="margin: 0; padding:0;">
<svg style="background-image: url('assets/images/6805.png'); background-size: 95% 95%; background-repeat: no-repeat; background-position: center;" height="50%" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100%" xmlns:vectornator="http://vectornator.io" version="1.1" viewBox="0 0 2224 1668" perserveAspectRatio="false">
<path stroke="#fff" stroke-width="300" d="M-85.2011-54.7701L2309.2-54.7701L2309.2+1722.77L-85.2011+1722.77L-85.2011-54.7701Z" fill="#ffffff" stroke-linecap="butt" fill-opacity="0" opacity="1" stroke-linejoin="miter"/>
<path id="blob1" stroke="#fff" stroke-width="300" d="M705.587+0L1245.8+60.1222C1580.47+102.592+2135.69-18.0223+2224+474.628L2271.87+1118.47C2271.87+1522.78+2168.25+1779.65+1388.5+1668L773.539+1604.32C313.212+1588.3-27.8406+1500.65-11.8193+1040.33L0.672888+795.321C16.6942+334.994+41.3592-54.7701+705.587+0Z" fill="#ffffff" stroke-linecap="round" fill-opacity="0" opacity="1" stroke-linejoin="round"/>
</svg>
</button>
</a>
<h4>6.805 Final Project</h4>
<span>For our final project in 6.805 (Foundations of Information Policy), I developed a pool-based active learning algorithm
to generate personalized data privacy policies. I used Adobe XD to create example UIs prototyping our recommendations.</span>
</figure>
</div>
<div class="isotope-item" data-type="personal">
<figure class="snip1">
<a href="https://www.behance.net/gallery/109202057/Venmo-Redesign">
<button class="blob-btn" style="margin: 0; padding:0;">
<svg style="background-image: url('assets/images/venmomockup.png'); background-size: 95% 95%; background-repeat: no-repeat; background-position: center;" height="50%" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100%" xmlns:vectornator="http://vectornator.io" version="1.1" viewBox="0 0 2224 1668" perserveAspectRatio="false">
<path stroke="#fff" stroke-width="300" d="M-85.2011-54.7701L2309.2-54.7701L2309.2+1722.77L-85.2011+1722.77L-85.2011-54.7701Z" fill="#ffffff" stroke-linecap="butt" fill-opacity="0" opacity="1" stroke-linejoin="miter"/>
<path id="blob2" stroke="#fff" stroke-width="300" d="M598.257+0L1419.36+0C2024.46+0+2309.2+156.793+2224+818.726L2182.56+1134.41C2149.85+1319.76+2224+1722.77+1415.72+1668L598.257+1668C267.849+1668-85.2011+1579.61+0+916.356L56.5058+416.643C65.5915+189.501+267.849+0+598.257+0Z" fill="#ffffff" stroke-linecap="round" fill-opacity="0" opacity="1" stroke-linejoin="round"/>
</svg>
</button>
</a>
<h4>Venmo Redesign</h4>
<span>For one of my first UI/UX case studies, I used Figma, Origami Studio, and Canva in this redesign of Venmo.
I was able to learn about basic principles in user research, creating prototypes from wireframes, and studying existing designs.</span>
</figure>
</div>
<div class="isotope-item" data-type="personal">
<figure class="snip1">
<a href="https://www.behance.net/gallery/109202267/Neumorphism-and-Neuroscience">
<button class="blob-btn" style="margin: 0; padding:0;">
<svg style="background-image: url('assets/images/nmphsm.png'); background-size: 95% 95%; background-repeat: no-repeat; background-position: center;" height="50%" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100%" xmlns:vectornator="http://vectornator.io" version="1.1" viewBox="0 0 2224 1668" perserveAspectRatio="false">
<path stroke="#fff" stroke-width="300" d="M-85.2011-54.7701L2309.2-54.7701L2309.2+1722.77L-85.2011+1722.77L-85.2011-54.7701Z" fill="#ffffff" stroke-linecap="butt" fill-opacity="0" opacity="1" stroke-linejoin="miter"/>
<path id="blob3" stroke="#fff" stroke-width="300" d="M722.943-18.1583L1324.18+100.798C1687.35+171.414+2260.09+28.3941+2271.63+464.681L2279.42+759.184C2290.96+1195.47+2258.69+1608.6+1416.53+1632.7L852.345+1648.85C200.264+1667.52-13.8522+1526.76-28.2462+982.482L-28.2462+400.345C-28.2462-18.1583+327.497-72.9284+722.943-18.1583Z" fill="#ffffff" stroke-linecap="round" fill-opacity="0" opacity="1" stroke-linejoin="round"/>
</svg>
</button>
</a>
<h4>Neumorphism and Neuroscience</h4>
<span>I combined two of my interests, cognitive science and UI/UX, to study the science behind neumorphism.
Additionally, I used Origami Studio to create various UIs using the trend. I enjoyed learning and writing about
the implications the style has on web accessibility.</span>
</figure>
</div>
<div class="isotope-item" data-type="hackathons">
<figure class="snip1">
<a href="https://github.com/sohinik/accessilink">
<button class="blob-btn" style="margin: 0; padding:0;">
<svg style="background-image: url('assets/images/accessilink.png'); background-size: 95% 95%; background-repeat: no-repeat; background-position: center;" height="50%" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100%" xmlns:vectornator="http://vectornator.io" version="1.1" viewBox="0 0 2224 1668" perserveAspectRatio="false">
<path stroke="#fff" stroke-width="300" d="M-85.2011-54.7701L2309.2-54.7701L2309.2+1722.77L-85.2011+1722.77L-85.2011-54.7701Z" fill="#ffffff" stroke-linecap="butt" fill-opacity="0" opacity="1" stroke-linejoin="miter"/>
<path id="blob4" stroke="#fff" stroke-width="300" d="M512.607+117.846L919.646+126.562C1650.13+188.345+2309.2-147.826+2224+818.726L2184.37+1313.15C2164.38+1553.01+1790.05+1772.89+1297.61+1668L616.184+1587.54C203.694+1540.29+0+1507.59+0+973.348L0+642.629C0+304.641+72.8601+109.807+512.607+117.846Z" fill="#ffffff" stroke-linecap="round" fill-opacity="0" opacity="1" stroke-linejoin="round"/>
</svg>
</button>
</a>
<h4>AccessiLink</h4>
<span>
AccessiLink is a tool for visually impaired people to better see all the links available on a given URL.
We used Flask/Python for the backend, HTML/CSS/Javascript for the frontend, and Figma for the initial wireframes.
This project won the Figma Award at <a href="https://haccess.isodme.com">hACCESS</a>!</span>
</figure>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section my-services" data-section="section3">
<div class="container">
<div class="section-heading">
<h2>Art</h2>
<div class="line-dec"></div>
<span id="txt">Highlighted works, primarily in Gouache.</span> <span>Full portfolio of pieces can be found at my
<a href="https://www.instagram.com/somani.kars/">art Instagram<a>!
I am sponsored by Miya Arts, and I have codes available for the
<a href="https://www.amazon.com/dp/B07WG1CTCC">24pc gouache set<a> (15L9XKJ5, 15%) and the
<a href="https://www.amazon.com/s?k=B07DLQFXQT&ref=nb_sb_noss">10pc brush set<a> (1047KNQE, 10%).
Please message my Instagram for interest in commissions.
</span>
</div>
<div class="row" id="txt">
<div class="isotope-wrapper">
<form class="isotope-toolbar">
<label
><input
type="radio"
data-type="*"
name="isotope-filter"
/>
<span>all</span></label
>
<label
><input
type="radio"
data-type="gouache"
checked=""
name="isotope-filter"
/>
<span>gouache</span></label
>
<label
><input
type="radio"
data-type="digital"
name="isotope-filter"
/>
<span>digital</span></label
>
<label
><input
type="radio"
data-type="mixed"
name="isotope-filter"
/>
<span>mixed</span></label
>
</form>
<div class="isotope-box">
<div class="isotope-item" data-type="gouache">
<figure class="snip1321">
<img
src="assets/images/gouache1.JPG"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/gouache1.JPG"
data-lightbox="image-1"
data-title="Lightning"
><i class="fa fa-search"></i
></a>
<h4>Lightning</h4>
<span>Gouache</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="gouache">
<figure class="snip1321">
<img
src="assets/images/gouache2.jpg"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/gouache2.jpg"
data-lightbox="image-1"
data-title="Bokeh Daisies"
><i class="fa fa-search"></i
></a>
<h4>Bokeh Daisies</h4>
<span>Gouache</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="gouache">
<figure class="snip1321">
<img
src="assets/images/gouache4.jpg"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/gouache4.jpg"
data-lightbox="image-1"
data-title="Meadow"
><i class="fa fa-search"></i
></a>
<h4>Meadow</h4>
<span>Gouache</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="gouache">
<figure class="snip1321">
<img
src="assets/images/gouache3.jpg"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/gouache3.jpg"
data-lightbox="image-1"
data-title="Crashing Waves"
><i class="fa fa-search"></i
></a>
<h4>Crashing Waves</h4>
<span>Gouache</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="gouache">
<figure class="snip1321">
<img
src="assets/images/gouache5.jpg"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/gouache5.jpg"
data-lightbox="image-1"
data-title="Roses"
><i class="fa fa-search"></i
></a>
<h4>Roses</h4>
<span>Gouache</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="gouache">
<figure class="snip1321">
<img
src="assets/images/gouache7.jpg"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/gouache7.jpg"
data-lightbox="image-1"
data-title="California"
><i class="fa fa-search"></i
></a>
<h4>California</h4>
<span>Gouache</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="digital">
<figure class="snip1321">
<img
src="assets/images/digital1.png"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/digital1.png"
data-lightbox="image-1"
data-title="Post Human"
><i class="fa fa-search"></i
></a>
<h4>Post Human</h4>
<span>Digital, Procreate</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="digital">
<figure class="snip1321">
<img
src="assets/images/digital3.png"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/digital3.png"
data-lightbox="image-1"
data-title="Eviction"
><i class="fa fa-search"></i
></a>
<h4>Eviction</h4>
<span>Digital, Procreate</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="digital">
<figure class="snip1321">
<img
src="assets/images/digital4.png"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/digital4.png"
data-lightbox="image-1"
data-title="Nebulae"
><i class="fa fa-search"></i
></a>
<h4>Nebulae</h4>
<span>Digital, Procreate</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="digital">
<figure class="snip1321">
<img
src="assets/images/digital5.jpg"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/digital5.jpg"
data-lightbox="image-1"
data-title="Transported (21M.601)"
><i class="fa fa-search"></i
></a>
<h4>Transported (21M.601)</h4>
<span>Digital, Adobe Fresco</span>
</figcaption>
</figure>
</div>
<div class="isotope-item" data-type="mixed">
<figure class="snip1321">
<img
src="assets/images/mixed1.jpg"
alt="sq-sample26"
/>
<figcaption>
<a
href="assets/images/mixed1.jpg"
data-lightbox="image-1"
data-title="Self (21M.601)"
><i class="fa fa-search"></i
></a>
<h4>Self (21M.601)</h4>
<span>Mixed, Gouache+Adobe Fresco</span>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section classwork" data-section="section4">
<div class="container">
<div class="section-heading">
<h2>Classwork and Involvements</h2>
<div class="line-dec"></div>
<span>Classes I've taken so far at MIT, and leadership roles in clubs and organizations.
Majoring in 6-2 (Electrical Engineering and Computer Science)
with minors in 9 (Brain and Cognitive Science) and STS (Science, Technology, and Society).</span>
</div>
<div class="row">
<div class="isotope-wrapper">
<form class="isotope-toolbar">
<label
><input
type="radio"
data-type="3S"
checked=""
name="isotope-filter"
/>
<span>Junior Spring (Expected)</span></label
>
<label
><input
type="radio"
data-type="3F"
checked=""
name="isotope-filter"
/>
<span>Junior Fall</span></label
>
<label
><input
type="radio"
data-type="2S"
name="isotope-filter"
/>
<span>Sophomore Spring</span></label
>
<label
><input
type="radio"
data-type="2F"
name="isotope-filter"
/>
<span>Sophomore Fall</span></label
>
<label
><input
type="radio"
data-type="1S"
name="isotope-filter"
/>
<span>Freshman Spring</span></label
>
<label
><input
type="radio"
data-type="1F"
name="isotope-filter"
/>
<span>Freshman Fall</span></label
>
</form>
<div class="isotope-box">
<div class="isotope-item" data-type="3S">
<figure class="snip2">
<h4>6.031: Elements of Software Construction </h4>
<span id="txt">
</span>
</figure>
</div>
<div class="isotope-item" data-type="3S">
<figure class="snip2">
<h4>6.835: Intelligent Multimodal User Interfaces </h4>
<span id="txt">
</span>
</figure>
</div>
<div class="isotope-item" data-type="3S">
<figure class="snip2">
<h4>9.00: Introduction to Psychological Science </h4>
<span id="txt">
</span>
</figure>
</div>
<div class="isotope-item" data-type="3S">
<figure class="snip2">
<h4>STS.030: Forensic History: Problem Solving into the Past </h4>
<span id="txt">
</span>
</figure>
</div>
<div class="isotope-item" data-type="3S">
<figure class="snip2">
<h4>6.08: Introduction to EECS via Interconnected Embedded Systems </h4>
<span id="txt">
</span>
</figure>
</div>
<div class="isotope-item" data-type="3F">
<figure class="snip2">
<h4>6.021/9.21: Cellular Neurophysiology and Computing</h4>
<span id="txt"> In this EE-focused class, we studied mass transport through cell membranes (diffusion, osmosis, chemically mediated, and active transport),
as well as the Hodgkin–Huxley model and electrical properties of ion channels. Our final project was on
"Effects of External Sodium Concentration on Action Potential Produced by Hodgkin-Huxley Model."
This was by far the hardest class I've taken so far and every pset made me sad, but it was incredibly
rewarding to learn so much about a niche and multi-disciplinary topic.
</span>
</figure>
</div>
<div class="isotope-item" data-type="3F">
<figure class="snip2">
<h4>6.804/9.66: Computational Cognitive Science</h4>
<span id="txt">6.804 focused on Bayesian inference as well as the computational aspects of topics such as
causal reasoning, intuitive physics, social inferences, and other probabilistic models.
My final project was on "How do we reason about the things that go unsaid? Alternatives in English Causative Constructions."
Computation and cognition is an area I am very interested in, so this class was a lot of fun and I enjoyed how it covered a broad range of topics.
</span>
</figure>
</div>
<div class="isotope-item" data-type="3F">
<figure class="snip2">
<h4>6.805/STS.085: Foundations of Information Policy</h4>
<span id="txt">In this communication-intensive class, we explored various topics in information privacy, including
encryption, data privacy, Section 230 of the Communications Decency Act, the Fourth Amendment.
Our final project was on "Privacy By Design: Best Practices to Minimize Privacy Risks Posed by Smart Home Technologies"
and a prototype of our recommendation can be found above.
The professors were incredibly experienced and knowledgeable, so it was exciting to participate in the discussions, debates, and mock trials
</span>
</figure>
</div>
<div class="isotope-item" data-type="3F">
<figure class="snip2">
<h4>18.03: Differential Equations</h4>
<span id="txt">18.03 was interesting and served as my main temporal anchor point during the virtual semester.
The weekly psets were one of the only things reminding me of the passage of time.
</span>
</figure>
</div>
<div class="isotope-item" data-type="3F">
<figure class="snip2">
<h4>21M.601: Drawing for Designers</h4>
<span id="txt">I loved taking this class, as I had been growing my art presence over the summer and it was exciting
to hone my skills. I was able to try digital art for the first time as well!
</span>
</figure>
</div>
<div class="isotope-item" data-type="2S">
<figure class="snip2">
<h4>9.13: The Human Brain</h4>
<span id="txt">This was a fantastic class, focusing on the functional organization of the cortex with specific sections on
vision, language, development, and computational implications. A large overall focus of the class was on experimental methods in
cognitive neuroscience, as well as experiment design.
Nancy Kanwisher was an amazing professor, and highlights of the class included a human brain dissection!
</span>
</figure>
</div>
<div class="isotope-item" data-type="2S">
<figure class="snip2">
<h4>6.S083: Introduction to Computational Thinking with applications to COVID-19</h4>
<span id="txt">This was an interesting class focusing on learning Julia and using it to model infectious diseases.
Since I took the class Spring 2020, this was a very current topic so it was exciting to have psets with implications on present events at the time.
</span>
</figure>
</div>
<div class="isotope-item" data-type="2S">
<figure class="snip2">
<h4>8.02: Physics II</h4>
<span id="txt"> 8.02 was an intro to electromagnetism and electrostatics.
</span>
</figure>
</div>
<div class="isotope-item" data-type="2S">
<figure class="snip2">
<h4>6.UAT: Oral Communication</h4>
<span id="txt"> The professor of this class structured it in an enjoyable way, with several workshops and activities.
</span>
</figure>
</div>
<div class="isotope-item" data-type="2S">
<figure class="snip2">
<h4>9.40: Introduction to Neural Computation</h4>
<span id="txt">I loved this class, and it covered the circuit model of neurons, signals processing, and machine learning.
The professor, Michale Fee, was really interesting and gave wonderful lectures.
</span>
</figure>
</div>
<div class="isotope-item" data-type="2S">
<figure class="snip2">
<h4>21G.011: Topics in Indian Popular Culture</h4>
<span id="txt">This was a writing-intensive class, but I enjoyed learning more about my culture and having the opportunity
to read and watch media by creatives of Indian heritage.</span>
</figure>
</div>
<div class="isotope-item" data-type="2F">
<figure class="snip2">
<h4>6.006: Introduction to Algorithms</h4>
<span id="txt">This class covered common algorithms, data structures, graphs, and dynamic programming.
I enjoyed the structure of the psets, and it was a highly interesting and useful class.</span>
</figure>
</div>
<div class="isotope-item" data-type="2F">
<figure class="snip2">
<h4>6.036: Introduction to Machine Learning</h4>
<span id="txt">6.036 was a more hands-on class covering various topics in machine learning.
The focus was more on implementation, compared to 6.034.</span>
</figure>
</div>
<div class="isotope-item" data-type="2F">
<figure class="snip2">
<h4>STS.075/21A.500: Technology and Culture</h4>
<span id="txt">This class covered a very wide range of topics on various technologies and their implications.
I will admit that since it was a night class I sometimes fell asleep, but I regret that now since in hindsight it was a great class.</span>
</figure>
</div>
<div class="isotope-item" data-type="2F">
<figure class="snip2">
<h4>9.01: Introduction to Neuroscience</h4>
<span id="txt">I took a lot of Introduction classes this semester. This was a very intense class covering many topics
in neuroscience, but it solidified my interest in the field.</span>
</figure>
</div>
<div class="isotope-item" data-type="1S">
<figure class="snip2">
<h4>6.009: Fundamentals of Programming</h4>
<span id="txt">
This was a pset-heavy class, and it boosted my knowledge of Python greatly. Each week was very rewarding,
and the class provided a great introduction to Python programming and data structures.
I was invited to be an LA for this class the following semester!</span>
</figure>
</div>
<div class="isotope-item" data-type="1S">
<figure class="snip2">
<h4>6.042/18.062: Mathematics for Computer Science</h4>
<span id="txt">
Focused on Discrete Math, this class emphasized logical thinking and proof writing.
Having completed some math research and summer programs in high school, it was interesting to
build on that knowledge in a CS-focused standpoint.</span>
</figure>
</div>
<div class="isotope-item" data-type="1S">
<figure class="snip2">
<h4>3.985/5.24/12.011: Archaeological Science</h4>
<span id="txt">
Archaeology was a subject I was interested in learning more about, and this class provided amazing
seminar-style lectures on various topics in the field.</span>
</figure>
</div>
<div class="isotope-item" data-type="1S">
<figure class="snip2">
<h4>18.02: Calculus</h4>
<span id="txt">
We covered vector algebra, partial differentiation, double integrals, Green's theorem, and more.</span>
</figure>
</div>
<div class="isotope-item" data-type="1F">
<figure class="snip2">
<h4>6.034: Artificial Intelligence</h4>
<span id="txt">
As I would write in an email later to the professor, Patrick Winston, this class changed
my intended MIT path. Having come in intending to declare 6-14, I ended up enjoying the cognitive side of
computer science and the wide range of topics we covered, inspiring me to seek out
more opportunities in this field.</span>
</figure>
</div>
<div class="isotope-item" data-type="1F">
<figure class="snip2">
<h4>STS.006/24.06: Bioethics</h4>
<span id="txt">
In this writing-intensive class, we covered many different topics in bioethics.
I enjoyed learning about the intersection of biology, technology, and ethics, pushing me to
concentrate in STS.</span>
</figure>
</div>
<div class="isotope-item" data-type="1F">
<figure class="snip2">
<h4>3.061: Introduction to Solid-State Chemistry</h4>
<span id="txt">
Dr. Grossman was great.</span>
</figure>
</div>
<div class="isotope-item" data-type="1F">
<figure class="snip2">
<h4>8.01: Physics I</h4>
<span id="txt">
Hard class, but great for making friends while psetting.
</span>
</figure>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section contact-me" data-section="section5">
<div class="container">
<div class="section-heading">
<h2>Contact Me</h2>
<div class="line-dec"></div>
<span
>Coming soon!</span
>
</div>
<div class="row" style="display: none;">
<div class="right-content">
<div class="container">
<form id="contact" action="" method="post">
<div class="row">
<div class="col-md-6">
<fieldset>
<input
name="name"
type="text"
class="form-control"
id="name"
placeholder="Your name..."
required=""
/>
</fieldset>
</div>
<div class="col-md-6">
<fieldset>
<input
name="email"
type="text"
class="form-control"
id="email"
placeholder="Your email..."
required=""
/>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<input
name="subject"
type="text"
class="form-control"
id="subject"
placeholder="Subject..."
required=""
/>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<textarea
name="message"
rows="6"
class="form-control"
id="message"
placeholder="Your message..."
required=""
></textarea>
</fieldset>
</div>
<div class="col-md-12">
<fieldset>
<button type="submit" id="form-submit" class="button">
Send Message
</button>
</fieldset>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Scripts -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/isotope.min.js"></script>
<script src="assets/js/owl-carousel.js"></script>
<script src="assets/js/lightbox.js"></script>
<script src="assets/js/menu.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.0/anime.min.js"></script>
<script>
function animateMouseover() {
anime({
targets: this.selector,
d: [
{
value:
"M230.079-32.689L1993.92-32.689C2151.08-32.689+2278.48+93.5231+2278.48+249.214L2278.48+1418.79C2278.48+1574.48+2151.08+1700.69+1993.92+1700.69L230.079+1700.69C72.9205+1700.69-54.4816+1574.48-54.4816+1418.79L-54.4816+249.214C-54.4816+93.5231+72.9205-32.689+230.079-32.689Z"
}
],
easing: "easeOutElastic(2, 1.5)",
duration: 400
});
}
function animateMouseout() {
anime({
targets: this.selector,
d: [{ value: this.dValue }],
easing: "easeOutElastic(2, 1.5)",
duration: 400
});
}
function buttonAnimation(hov, selector, dValue) {
const btn = document.querySelector(hov);
const btn2 = document.querySelector(selector);
if(btn){
btn.addEventListener("mouseover", animateMouseover.bind({ selector, dValue }));
btn.addEventListener("mouseout", animateMouseout.bind({ selector, dValue }));
}
if(btn2){
btn2.addEventListener("mouseover", animateMouseover.bind({ selector, dValue }));
btn2.addEventListener("mouseout", animateMouseout.bind({ selector, dValue }));
}
}
const blobA =
"M44.1,-7.4C53.2,13.8,54,44.6,39.3,55.5C24.7,66.5,-5.4,57.6,-24,42C-42.7,26.3,-49.9,3.9,-44,-12.9C-38.1,-29.6,-19.1,-40.6,-0.8,-40.4C17.5,-40.1,35,-28.6,44.1,-7.4Z";
const blobB =
"M698.566+85.2141L1639.26+8.19788C2131.81-52.1956+2224+228.98+2224+591.997L2224+1025.07C2224+1441.16+2224+1568.53+1383.48+1568.53L666.857+1568.53C170.085+1568.53+0+1489.15+0+1009.29L0+559.025C0+145.058+313.832+127.493+698.566+85.2141Z";
const blobC =
"M722.943-18.1583L1324.18+100.798C1687.35+171.414+2260.09+28.3941+2271.63+464.681L2279.42+759.184C2290.96+1195.47+2258.69+1608.6+1416.53+1632.7L852.345+1648.85C200.264+1667.52-13.8522+1526.76-28.2462+982.482L-28.2462+400.345C-28.2462-18.1583+327.497-72.9284+722.943-18.1583Z";
const blobD =
"M512.607+117.846L919.646+126.562C1650.13+188.345+2309.2-147.826+2224+818.726L2184.37+1313.15C2164.38+1553.01+1790.05+1772.89+1297.61+1668L616.184+1587.54C203.694+1540.29+0+1507.59+0+973.348L0+642.629C0+304.641+72.8601+109.807+512.607+117.846Z";
const blobE =
"M598.257+0L1419.36+0C2024.46+0+2309.2+156.793+2224+818.726L2182.56+1134.41C2149.85+1319.76+2224+1722.77+1415.72+1668L598.257+1668C267.849+1668-85.2011+1579.61+0+916.356L56.5058+416.643C65.5915+189.501+267.849+0+598.257+0Z";
const blobF =
"M705.587+0L1245.8+60.1222C1580.47+102.592+2135.69-18.0223+2224+474.628L2271.87+1118.47C2271.87+1522.78+2168.25+1779.65+1388.5+1668L773.539+1604.32C313.212+1588.3-27.8406+1500.65-11.8193+1040.33L0.672888+795.321C16.6942+334.994+41.3592-54.7701+705.587+0Z";
buttonAnimation( "#full1", "#blob1", blobF);
buttonAnimation( "#full2", "#blob2", blobE);
buttonAnimation( "#full3", "#blob3", blobC);
buttonAnimation( "#full4", "#blob4", blobD);