-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
905 lines (807 loc) · 29.7 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
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
<!DOCTYPE html>
<html>
<head>
<title>
Prashant K.
</title>
<script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Archivo+Narrow" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js" integrity="sha384-o+RDsa0aLu++PJvFqy8fFScvbHFLtbvScb8AjopnFD+iEQ7wo/CG0xlczd+2O/em" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript" src="custom.js"></script>
<style type="text/css">
body{
font-family: 'Archivo Narrow', sans-serif;
padding-right: 0 !important;
}
#profile_header{
padding-top: 10%;
text-align: center;
padding-bottom: 3%;
}
.section2, .section3{
margin-bottom: 5%;
}
.section1{
margin-bottom: 1%;
background-image: url();
background-size: cover;
background-position: center;
text-align: center;
}
/*html{
height:100%;
}
*/
.resume{
font-size: 20px;
border-radius: 10px
margin-top:10px;
}
.headshot{
margin-bottom: 10px;
}
.icon{
padding: 70px;
color: white;
}
hr{
width: 400px;
border-top: 1px solid #a07c04; ;
border-bottom: 1px solid #a07c04;
color: #a07c04;
}
#second_hr{
width: 200px;
border-top: 1px solid #a07c04; ;
border-bottom: 1px solid #a07c04;
}
a{
color: black;
}
h1,h2{
text-align: center;
}
/* .hideme{
opacity: 0;
} */
.label{
color: #a07c04;
}
.card{
height: 320px;
box-shadow: 0 8px 20px rgba(0,0,0,0.4);
transition: all ease-in-out 300ms;
}
.card:hover {
transform: translate(0px, -5px);
box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}
.fa-envelope:hover, .fa-linkedin:hover, .fa-github:hover{
transform: translate(0px, -5px);
color:#a07c04;
}
.btn-warning{
color: white;
border-color: #a07c04;
background: #a07c04;
margin-left: 20px;
margin-bottom: 10px;
width: 100px;
}
.navbar-nav .nav-item .nav-link {
color: white;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item:hover .nav-link {
color: #a07c04;
}
.card-body{
margin-bottom: -50px;
}
/*.modal-body, .modal-header, .modal-footer{
background-color: #2c3035;
}
*/
.modal-header, .modal-footer{
background-color: #2c3035;
}
.btn-secondary{
background-color: #a07c04;
}
.modal-dialog{
border-radius: 10px ;
}
.modal-title{
color: #a07c04;
}
code{
background-color: #f9f2f4;
}
.projects{
background-color: #f9f2f4;
}
#profile_header{
background-image: url("Background.jpg");
background-size: cover;
background-attachment: fixed;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#" id="nav_name_link">Prashant <span class="label">Ramani</span> Krishnan</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link " href="#" id="nav_home_link">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact_me"
id="nav_about_link" >About</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#section_2" id="nav_coursework_link">Coursework</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link " href="#section_3"
id="nav_projects_link">Projects</a>
</li> -->
</ul>
</div>
</nav>
<div class="section1">
<div id="profile_header">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="thumbnail headshot">
<img src="headshot.jpg" style="border-radius: 50%;" width="15%" alt="Prashant K.">
</div>
<div>
<strong style="color:white">Prashant R. Krishnan</strong>
<p style="text-align: center; color:white">
University of Maryland-College Park, Class of 2020
<br>
<span class="label"><strong>Major:</strong></span> Computer Science
<br>
<span class="label"><strong>Minor:</strong></span> Statistics and Technology Entrepreneurship
</p>
<hr id>
</div>
</div>
</div>
</div>
</div>
<div class="section_about_me">
<br>
<br>
<div class="container">
<div class="row">
<div class="col-lg-12">
<br>
<div id="about_me">
<h3><strong>About me</strong></h3>
<p>
Hi! My name is Prashant Krishnan and I am a Junior Computer Science major at the University of Maryland-College Park, with a double minor in Statistics and Technology Entrepreneurship. I am always eager to learn new skills, and apply and further hone my existing ones. As such, I am always exploring for opportunities, including internships or short-term/ long-term projects. Feel free to reach out to me to discuss how we can help eachother!
</p>
<hr id="second_hr">
<a href="https://www.visualcv.com/prashant-ramani-krishnan/pdf" class="btn btn-outline-dark resume" role="button">Résumé</a>
</div>
</div>
<a id="contact_me">
<div class="row">
<div class="col-md-4 icon">
<a href="https://github.com/pkrish07"><i class="fab fa-github" style="font-size:48px;"></i></a>
<p><span class="label"><strong>github: </strong></span><a href="https://github.com/">https://github.com/pkrish07</a></p>
</div>
<div class="col-md-4 icon">
<a href="https://www.linkedin.com/in/prashant-krishnan-896322153/"><i class="fab fa-linkedin" style="font-size:48px;"></i></a>
<p><span class="label"><strong>LinkedIn: </strong></span><a href="https://www.linkedin.com/in/prashant-krishnan-896322153/">https://www.linkedin.com/in/prashant-krishnan</a></p>
</div>
<div class="col-md-4 icon">
<a href="mailto:prashant.krishnan07@gmail.com"><i class="fas fa-envelope" style="font-size:48px;"></i></a>
<p><span class="label"><strong>Email: </strong></span><a href="mailto:prashant.krishnan07@gmail.com">prashant.krishnan07@gmail.com</a></p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<a id="section_2">
<div class="section2 hideme">
<div class="container">
<h2>Coursework</h2>
<hr>
<p style="text-align: center">
<strong>Currently Enrolled (Spring 2019)</strong>
<br>
<span class="label"><strong>CMSC420 -</strong></span>Data Structures
<br>
<span class="label"><strong>CMSC320 -</strong></span> Introduction to Data Science
<br>
<span class="label"><strong>CMSC389N -</strong></span> Working with PHP and Javascript
<br>
<span class="label"><strong>STAT430 -</strong></span> Introduction to Statistical computing with SAS
</p>
<hr>
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Spring 2017</div>
<div class="card-body">
<h5 class="card-title label">CMSC131: Object Oriented Programming I</h5>
<p class="card-text">
Main Topics Covered:</p>
<ul>
<li>Java</li>
</ul>
</div>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#cmsc131projects">Projects</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Fall 2017</div>
<div class="card-body">
<h5 class="card-title label">CMSC132: Object Oriented Programming II</h5>
<p class="card-text">Main Topics Covered:</p>
<ul>
<li>Java</li>
<li>JavaFX</li>
</ul>
</div>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#cmsc132projects">Projects</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Spring 2018</div>
<div class="card-body">
<h5 class="card-title label">CMSC216: Introduction to Computer Systems</h5>
<p class="card-text"> Main Topics Covered:</p>
<ul>
<li>C</li>
<li>Assembly</li>
<li>Arduino</li>
</ul>
</div>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#cmsc216projects">Projects</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Spring 2018</div>
<div class="card-body">
<h5 class="card-title label">CMSC250: Discrete Structures</h5>
<p class="card-text">Main Topics Covered:</p>
<ul>
<li>Logic</li>
<li>Circuits</li>
<li>Introduction to Inductive Proofs</li>
</ul>
</div>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#cmsc250projects">Projects</button>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Fall 2018</div>
<div class="card-body">
<h5 class="card-title label">CMSC330: Organization of Programming Languages</h5>
<p class="card-text">
Main Topics Covered:</p>
<ul>
<li>Ruby</li>
<li>OCaml</li>
<li>Rust</li>
</ul>
</div>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#cmsc330projects">Projects</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Fall 2018</div>
<div class="card-body">
<h5 class="card-title label">CMSC351: Algorithms</h5>
<p class="card-text">Main Topics Covered:</p>
<ul style="font-size: 9px">
<li>Complexity and Time Analysis utilizing Asymptotic Notation</li>
<li>In-depth analysis of Divide and Conquer algorithms</li>
<li>In-depth analysis of Sorting algorithms</li>
<li>Graph Theory</li>
<li>In-depth analysis of Minimum Spanning Tree and Greedy algorithms</li>
<li>Dynamic Programming</li>
</ul>
</div>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#cmsc351projects">Projects</button>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Fall 2018</div>
<div class="card-body">
<h5 class="card-title label">CMSC389K - Web Development with Node.js</h5>
<p class="card-text"> Main Topics Covered:</p>
<ul style="font-size: 9px">
<li>HTML/CSS</li>
<li>Javascript/JQuery/AJAX</li>
<li>Handlebars</li>
<li>Node.js/Express.js</li>
<li>MongoDB/Mongoose</li>
<li>Now/Heroku</li>
<li>Socket.io</li>
</ul>
</div>
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#cmsc389kprojects">Projects</button>
</div>
</div>
</div>
</div>
</div>
</a>
<!-- Modals -->
<div class="modal fade" id="cmsc131projects" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CMSC131 - Introduction to Object Oriented Programming</h5>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h4>Languages and Technologies Used: <code>Java</code></h4>
<h4>Projects</h4>
<div class="projects">
<ul>
<li>
<h5><strong>Flag Creator</strong></h5>
<p>
Created a program that generates different flags of the world on a grid of any specified size
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Medival Soldiers</strong></h5>
<p>
This project involved us designing objects (soldiers) and creating charactaristics within these objects that allowed them to fight each other on a battlefield.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Mandelbrot Set</strong></h5>
<p>
This project had us visually represent a Mandelbrot set. We did this by creating different operations that ran operations and parsed through complex numbers in different ways.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Poker Simulator</strong></h5>
<p>
This project had us simulate a game of Texas Hold'Em. We implemented the Deck class for the game as well as a HandEvaluator object to determine all the possible poker hand combination given any hand of cards
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Cafe 131</strong></h5>
<p>
Created various classes and utilized interfaces to create a working inventory checking system for a fictional cafe restaurant.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Fish Club</strong></h5>
<p>
Created a simulator of a very primitive "ecosystem." Designed a working Fish and Plant class that attempted to simulate a basic running ecosystem.
</p>
</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cmsc132projects" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CMSC132 - Object Oriented Programming 2</h5>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h4>Languages and Technologies Used: <code>Java</code> <code>JavaFX</code></h4>
<h4>Projects</h4>
<div class="projects">
<ul>
<li>
<h5><strong>Black Jack</strong></h5>
<p>
Created a program that simulated a game of blackjack. We were responsible for designing and implementing the Deck class, as well as the Blackjack class, where we created functions to evaluate both the dealer's and player's hand.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Web Page Generator</strong></h5>
<p>
This project had us create a generator that generated html tags in order to develop basic web pages. We developed classes for each of the most commonly used tags and handled associated attributes with each tag.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Interest Table Calculator</strong></h5>
<p>
Used JavaFX to create a working interest table calculator that allowed the user to input a certain interest rate and principle amount, as well as the type of interest (compound, simple or both) and determine their revenue after any number of years.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Linked List Project</strong></h5>
<p>
This project had us create both an ordered and unordered Linked list data structure used to organize information.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Online Test</strong></h5>
<p>
Created from scratch an object oriented solution for the generation of exams with multiple types of question, and then determining scores of each exam object for each and every student object.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Orders Processor</strong></h5>
<p>
This project had us utilize multi-threading in order to keep track of an inventory and client purchases and read off of file orders to update inventory in real time.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Polymorphic BST</strong></h5>
<p>
This project had us implement both a basic binary search tree as well as a polymorphic binary search tree to handle and organize information.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Graphs</strong></h5>
<p>
This project had us create a graph utilizing hashmaps and maps to store data. We additionally implemented Djikstras algorithmn to visiually determine the greediest path.
</p>
</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cmsc250projects" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CMSC250 - Discrete Structures</h5>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h4>No Projects</h4>
<div class="projects">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cmsc216projects" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CMSC216 - Computer Systems</h5>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h4>Languages and Technologies Used: <code>C</code> <code>AVR Assembly</code> <code>Arduino</code></h4>
<h4>Projects</h4>
<div class="projects">
<ul>
<li>
<h5><strong>Grades Calculator</strong></h5>
<p>
A program used to perform various operations on a students grades. Including holding onto it, dropping the lowest, calculating the mean and finding the average etc.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Document Manager</strong></h5>
<p>
A document manager application that read instructions to be performed on document objects from text files through input redirection.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Document Manager CLI</strong></h5>
<p>
Developed a command line interface that allowed the user to utilize all the various functions developed in the Document Manager Project.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Calendar</strong></h5>
<p>
Implemented a working calendar where users could both utilize text files and the command lines to execute instructions, such as adding events, removing events etc.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>C to Assembly Projects</strong></h5>
<p>
Translated recursive C functions into AVR assembly.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Shell</strong></h5>
<p>
Implemented and deployed a Shell.
</p>
</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cmsc330projects" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CMSC330 - Organization of Programming Languages</h5>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h4>Languages and Technologies Used: <code>Ruby</code> <code>OCaml</code> <code>Rust</code> <code>SQlite</code></h4>
<h4>Projects</h4>
<div class="projects">
<ul>
<li>
<h5><strong>WordNet</strong></h5>
<p>
Similar to the <a href="https://wordnet.princeton.edu/">WordNet</a>, this program groups words into synsets and describes semantic relationships between them. In this project, we focus on the hypnym and hypernym relationship between two words. We utilized graphs as our data-structure.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>OCaml Warmup & Higher Order Functions and Data</strong></h5>
<p>
This project allowed us to get familiar with OCaml by writing a number of different functions, introducing us to key aspects of the language.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Document Manager CLI</strong></h5>
<p>
Developed a command line interface that allowed the user to utilize all the various functions developed in the Document Manager Project.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Regular Expression Interpreter</strong></h5>
<p>
Implemented a working regular expression interpreter by implementing a Non-deterministic Finite Automata and associated functions.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>SmallC Parser</strong></h5>
<p>
Implemented both a lexer and a parser for a the language SmallC.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Introduction to Rust</strong></h5>
<p>
This project allowed us to gain familiarity with Rust by implementing numerous different functions intended to introduce us to key aspects of the language
</li>
</ul>
<ul>
<li>
<h5><strong>Introduction to Cybersecurity</strong></h5>
<p>
Project introduced us to core aspects of cybersecurity, such as password hashing and patching exploits. We worked with a backend written in Ruby and utilized sqlite to manage the database
</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cmsc351projects" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CMSC351 - Algorithms</h5>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h4>Languages and Technologies Used: <code>Java</code></h4>
<h4>Projects</h4>
<div class="projects">
<ul>
<li>
<h5><strong>Martian Numbers</strong></h5>
<p>
Implemented a program to determine the ((k+2)/3)rd smallest number of k positive integers utilizing a maxheap and a minheap to process efficiently.
We additionally implemented a method for calculating total number of comparisons made in our project and recorded the data to be graphed and analyzed.
</p>
</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cmsc389kprojects" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">CMSC389K - Full-Stack Web Development with Node.js</h5>
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h4>Languages and Technologies Used: <code>HTML5</code> <code>CSS</code> <code>Javascript</code> <code>JQuery</code> <code>Handlebars</code> <code>Express</code> <code>Socket.io</code> <code>MongoDB</code> <code>Now</code></h4>
<h4>Projects</h4>
<div class="projects">
<ul>
<li>
<h5><strong>Introduction to HTML & CSS</strong></h5>
<p>
Created a basic website about ourselves.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>50 - State Game</strong></h5>
<p>
Implemented a game about the 50-states. The goal of the game is to input all 50 states within a time limit. If the user inputs all the states within the time limit, the user wins. Else, the user loses. Display the number of Spanish speakers in that state when hovered over. Utilized HTML, CSS and Javascript
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Pokemon API</strong></h5>
<p>
Created an API that handled POST, GET and DELETE Requests utilizing Express.js.
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Representatives Site</strong></h5>
<p>
Utilized Handlebars.js as a templating engine to create a dynamic website displaying the United States Representatives through numerous designed filters
</p>
</li>
</ul>
<ul>
<li>
<h5><strong>Final Project</strong></h5>
<p>
A project that allowed us to apply all the technologies we had learned in this course.
</p>
</li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Modals -->
<!-- <a id="section_3">
<div class="section3 hideme">
<div class="container">
<h2>Projects</h2>
<hr>
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Date</div>
<div class="card-body">
<h5 class="card-title label">Project Name</h5>
<p class="card-text">Project Description</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Date</div>
<div class="card-body">
<h5 class="card-title label">Project Name</h5>
<p class="card-text">Project Description</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Date</div>
<div class="card-body">
<h5 class="card-title label">Project Name</h5>
<p class="card-text">Project Description</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card text-white bg-dark mb-3" style="max-width: 18rem;">
<div class="card-header label">Date</div>
<div class="card-body">
<h5 class="card-title label">Project Name</h5>
<p class="card-text">Project Description</p>
</div>
</div>
</div>
</div>
</div>
</div>
</a> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</body>
</html>