-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
849 lines (729 loc) · 44.8 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
<!DOCTYPE html>
<html>
<head> <!--******* Header starts******-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!--********************************************* Stylesheets Used *****************************************************-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:700i" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="CSS\Style.css">
<!--*********************************************** Scripts Used ********************************************************-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body{
position: relative;
}
/* Standard syntax */
@keyframes mymove {
0% {top: 0px;}
25% {top: 20px;}
75% {top: 5px}
100% {top: 20px;}
}
</style>
<!--********************************************** FAVICON *************************************************************************-->
<link rel="apple-touch-icon" sizes="180x180" href="http://www.acsu.buffalo.edu/~arnavane/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="http://www.acsu.buffalo.edu/~arnavane/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="http://www.acsu.buffalo.edu/~arnavane/favicon-16x16.png">
<link rel="manifest" href="http://www.acsu.buffalo.edu/~arnavane/manifest.json">
<link rel="mask-icon" href="http://www.acsu.buffalo.edu/~arnavane/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="http://www.acsu.buffalo.edu/~arnavane/favicon.ico">
<meta name="msapplication-config" content="http://www.acsu.buffalo.edu/~arnavane/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head> <!-- Header ends -->
<body data-spy="scroll" data-target="#navigationBar" data-offset="70">
<!--********************************************* Navigation Bar *******************************************************************-->
<header>
<nav class="navbar-inverse navbar-fixed-top" id="navigationBar">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#collapseableNavigationBar" aria-expanded="false">
<span class="sr-only">Toggle Navigation </span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse" id="collapseableNavigationBar">
<ul class="nav navbar-nav" id="links">
<li><a href="#home" data-toggle="tooltip" title="Home"> <span class="glyphicon glyphicon-home"></span><br class="hidden-xs">Home</a></li>
<li><a href="#about" data-toggle="tooltip" title="About"> <span class="glyphicon glyphicon-user"></span><br class="hidden-xs">About</a></li>
<li><a href="#experience" data-toggle="tooltip" title="Experience"> <span class="glyphicon glyphicon-stats"></span><br class="hidden-xs">Experience</a></li>
<li><a href="#projects" data-toggle="tooltip" title="Projects"><span class="glyphicon glyphicon-book"></span><br class="hidden-xs">Projects</a></li>
<li><a href="#entertainment" data-toggle="tooltip" title="Entertainment"><span class="glyphicon glyphicon-music"></span><br class="hidden-xs">Entertainment</a></li>
<li><a href="#resume" data-toggle="tooltip" title="Resume"> <span class="glyphicon glyphicon-list-alt"></span><br class="hidden-xs">Resume</a></li>
<li><a href="#contact" data-toggle="tooltip" title="Contact"> <span class="glyphicon glyphicon-earphone"></span><br class="hidden-xs">Contact</a></li>
</ul>
</div>
</nav>
</header>
<!--**********************************************************SECTIONS**************************************************************-->
<section>
<div id="home" class="jumbotron">
<div class="caption">
<h1>Hi !</h1>
<h1>I'm Arnav Ahire.</h1><br/>
<h4>I'm an avid programmer eager to learn <br/>new platforms and languages where I could <br/>develop applications that could change <br/>people's lives today.</h4>
<blockquote class="blockquote">
<p>" Because the people who are crazy enough <br/>to think they can change the world <br/>are the ones who do. "</p>
<footer class="blockquoteFooter"><cite>Steve Jobs</cite></footer>
</blockquote>
</div>
</div>
</section>
<!--***************************************************************** ABOUT ***************************************************-->
<section id="about" class="container-fluid">
<div class="row">
<div class="col-sm-4">About</div>
<div class="col-sm-8">
<p>I am a graduate student currently pursuing Masters of Science degree at University at Buffalo in the field of Computer Science. I have been fascinated by the world of computing ever since my early age and exploring the internet and different applications on my computer made me realise the power a computer can truly have in various fields for the generations to come.</p>
<p>Owing to my interest in this field I did pursue my Bacherlor's degree in the field of Computer Engineering from the year 2010 to 2014 from Savitribai Phule Pune University (formerly known as University of Pune). During this 4 year course I got conversant with lot of exciting courses like Cloud Computing (learnt Hadoop, Microsoft Azure, MapReduce and Cloud Service Architectures), Computer Networks (learnt the ISO-OSI, TCP-IP model of communication, IPv4 and IPv6 addressing), Microprocessor and Interfacing Techniques (learnt the basics of Intel's 8086 and 8087 processor architecture and assembly-level programming) and Data Structures and Algorithms. I did my final project which was a small Intrusion Detection System for a college website. Doing this project gave me a boost in technical and teamwork skillset .</p>
<p>After completing my undergraduate program I worked in Infosys Limited which is a Banglore based firm in India from the year 2014 to 2016 as a Systems Engineer where I was involved in a data migration project for my client.</p>
<p>In my currently enrolled Master's program I got an exposure to work on different projects in the field of Data Science, Machine Learning, Distributed Systems as well as Information retrieval other than being introduced to a very interesting subject of Computer Security. Through the projects that I worked on, I strengthened my technical skills in Java, R, Android and also Python. </p>
<p>Other than my academics I am also an entertainer and a cook. I like to perform be it dancing, acting or even sketching (sometimes) and cooking is a great stress-buster for me. I also have a Youtube channel where I post some entertaining videos. I am also a gym freak and I regularly workout since I find it very peaceful and relaxing.</p>
</div>
</div>
</section>
<!--************************************************************ EXPERIENCE ******************************************************-->
<section id="experience" class="container-fluid">
<div class="row">
<div class="col-sm-4">Experience</div>
<div class="col-sm-8">
<h2>Company</h2>
<h3>Infosys Limited (2014-2016)</h3>
<p>Worked as a Senior Systems Engineer (June 2014 - Feb 2016). Was involved in a data migration project that involved working on Windows services, Cygwin, Microsoft SQL Server and .NET Framework.</p>
<h2>Education</h2>
<h3>University at Buffalo (GPA : 3.67)</h3>
<p>Currently pursuing my Master's program in Computer Science at State University of New York, University at Buffalo.</p>
<h4>Courses Taken:</h4>
<p>Fall 2016: Software Engineering Concepts, Computer Security, Analysis of Algorithms, Information Retrieval</p>
<p>Spring 2017: Distributed Systems, Machine Learning, Data Intensive Computing, Seminar on Software Verification and Model Checking</p>
<p>Summer 2017: Computer Architecture</p>
<p>Fall 2017: Data Mining and BioInformatics</p>
<h3>Savitribai Phule Pune University (2010-2014)</h3>
<p>Completed 4 years of undergraduate program in Computer Engineering from Savitribai Phule Pune Unviersity (formerly known as University of Pune).</p>
<h4>Important Courses:</h4>
<p>Computer Networks, Microprocessor and Interfacing techniques, Cloud Computing</p>
<h2>Skills</h2>
<h4>Programming Languages:</h4>
<p>Java, R, HTML, CSS, Python, C, C++</p>
<h4>Databases:</h4>
<p>Microsoft SQL Server 2008, MySQL, Apache Solr</p>
<h4>Tools and IDEs:</h4>
<p>Eclipse IDE, Android Studio by IntelliJ, Jupyter, AWS-EC2, MS Office, Sublime Text</p>
<h4>Operating Systems:</h4>
<p>Windows and Linux</p>
<h3>Language Proficiency</h3>
<p>Java</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:80%"></div>
</div>
<p>R</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:75%"></div>
</div>
<p>HTML and CSS</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:75%"></div>
</div>
<p>Android</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:75%"></div>
</div>
<p>Python</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:65%"></div>
</div>
</div>
</section>
<!--********************************************************* PROJECTS ***********************************************************-->
<section id="projects" class="container-fluid">
<div class="row">
<div class="col-sm-4">Projects</div>
<div class="col-sm-8">
<!-- Portfolio Gallery Grid -->
<div class="row"><h2>Few projects. At a glance.</h2>
</div>
<div class="row"> <!-- 1st Row starts-->
<div class="column">
<div class="content modalButton"">
<button class="btn-block project1" type="button" data-toggle="modal" data-target="#modal1" style="height: 100%;">
<div class="overlay">
<h3>Amazon Dynamo DB</h3>
<p>Replicated Key Value Storage with Failure Handling.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project2" type="button" data-toggle="modal" data-target="#modal2" style="height: 100%;">
<div class="overlay">
<h3>Group Messenger</h3>
<p>Group messenger on Android with FIFO and Total Ordering.</p>
<p class="centerPara">Click to know more</p>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project3" type="button" data-toggle="modal" data-target="#modal3" style="height: 100%;">
<div class="overlay">
<h3>Simple DHT</h3>
<p>Simple Distributed Hash Table for consistent hashing based on the design of Chord.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
</div> <!-- 1st Row ends-->
<div class="row"> <!--2nd Row starts-->
<div class="column">
<div class="content modalButton"">
<button class="btn-block project4" type="button" data-toggle="modal" data-target="#modal4" style="height: 100%;">
<div class="overlay">
<h3>Data Ingestion and Solr Setup</h3>
<p>Collected Twitter tweets in Java and indexed them using Solr.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project5" type="button" data-toggle="modal" data-target="#modal5" style="height: 100%;">
<div class="overlay">
<h3>Inverted Index Construction and Boolean Query Processing</h3>
<p>Built an inverted index and performed 2 Boolean Query Processing strategies.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project6" type="button" data-toggle="modal" data-target="#modal6" style="height: 100%;">
<div class="overlay">
<h3>Data Clients and Information Servers</h3>
<p>Twitter data extraction, processing and visualization in R.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
</div> <!-- Row 2 ends-->
<div class="row"> <!-- Row 3 starts-->
<div class="column">
<div class="content modalButton"">
<button class="btn-block project7" type="button" data-toggle="modal" data-target="#modal7" style="height: 100%;">
<div class="overlay">
<h3>Data Cleaning and Munging</h3>
<p>Data cleaning and transformation into dataframes and graphs in R.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project8" type="button" data-toggle="modal" data-target="#modal8" style="height: 100%;">
<div class="overlay">
<h3>Classification of Handwritten digits and Image Datasets</h3>
<p>Data preproessing and Feed Forward and Backpropagation impementation of Neural Network.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project9" type="button" data-toggle="modal" data-target="#modal9" style="height: 100%;">
<div class="overlay">
<h3>Data Analysis, Learning and Prediction</h3>
<p>Performed Linear Model, K-means clustering and K-nn classification in R.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
</div> <!-- Row 3 ends-->
<div class="row"> <!--Row 4 starts-->
<div class="column">
<div class="content modalButton"">
<button class="btn-block project10" type="button" data-toggle="modal" data-target="#modal10" style="height: 100%;">
<div class="overlay">
<h3>Text Processing with Hadoop MapReduce</h3>
<p>Wordcount and Word Co-occurrence for single and multiple documents using MapReduce.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project11" type="button" data-toggle="modal" data-target="#modal11" style="height: 100%;">
<div class="overlay">
<h3>Big Data Analytics using Apache Spark</h3>
<p>Word Co-occurrence programs on a set of Latin documents in Spark.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project12" type="button" data-toggle="modal" data-target="#modal12" style="height: 100%;">
<div class="overlay">
<h3>Interactive Data Analytics Dashboard on Movies</h3>
<p>Data Analytics Dashboard for understanding success parameters of a movie.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
</div> <!-- Row 4 ends-->
<div class="row"> <!-- Row 5 starts-->
<div class="column">
<div class="content modalButton"">
<button class="btn-block project13" type="button" data-toggle="modal" data-target="#modal13" style="height: 100%;">
<div class="overlay">
<h3>Classification and Regression</h3>
<p>Implementation and study of LDA, QDA, Linear and Ridge Regression.</p>
<p class="centerPara">Click to know more</p>
</div></button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project14" type="button" data-toggle="modal" data-target="#modal14" style="height: 100%;">
<div class="overlay">
<h3>Guessing Game in VHDL</h3>
<p>A two player game implemented on Basys3 FPGA board.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
<div class="column">
<div class="content modalButton">
<button class="btn-block project15" type="button" data-toggle="modal" data-target="#modal15" style="height: 100%;">
<div class="overlay">
<h3>Question Answering System on 'Demonetization'</h3>
<p> A search engine that fetches relevant tweets on the topic 'demonetization'.</p>
<p class="centerPara">Click to know more</p>
</div>
</button>
</div>
</div>
</div> <!-- Row 5 ends-->
</div>
<!--******************** Modal Section ***************************-->
<!--Modal 1-->
<div id="modal1" class="modal fade" role="dialog"> <!-- We are using modals as Dialog boxes hence role=dialog -->
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Amazon Dynamo DB</h4>
</div>
<div class="modal-body">
<p>This assignment was a simple implementation of Amazon Dynamo DB Storage (Replicated Key Value Storage) which involved Partitioning, use of Quorom Replication and also facilitating failure handling. Goal was to provide availability and linearizability at the same time. In short all reads and writes should be handled successfully even under failure.</p>
</div>
<div class="modal-footer">
<p>
<!-- Using links i.e <a> tags as buttons since bootstrap supports links as buttons -->
<a href="https://github.com/arnavahire/CSE586--Distributed-Systems/tree/master/SimpleDynamo" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\PA4Specification.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal2 -->
<div id="modal2" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Group Messenger on Android</h4>
</div>
<div class="modal-body">
<p>Developed a group messenger on Android where students had to implement a content provider that stores multicast messages and their corresponding sequence numbers as key-value pairs in the AVDs' (Android Virtual Device) database. Also implemented ISIS Algorithm for total ordering of these multicast messages along with failure handling where any 1 AVD out of 5 of them randomly fails any time during messaging.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE586--Distributed-Systems/tree/master/GroupMessenger2" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\PA2PartBSpecification.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal3 -->
<div id="modal3" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Simple Distributed Hash Table</h4>
</div>
<div class="modal-body">
<p>Developed a simple distributed hash table based on the design of Chord. Three things implemented in this project in addition to creating a content provider were ID space partitioning, ring-based routing and node joins. </p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE586--Distributed-Systems/tree/master/SimpleDht" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\PA3Specification.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal4 -->
<div id="modal4" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Data Ingestion and Solr Setup</h4>
</div>
<div class="modal-body">
<p>Developed a code in Java to collect tweets from Twitter through Twitter API using Twitter4J library for Java in a document (.json format) and performed indexing on the same using Solr and checked whether correct terms were indexed using appropriate queries.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE535--Information-Retrieval/tree/master/IR_Project_1_Data_Ingestion_And_Solr_Setup" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\IRProject1.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal5 -->
<div id="modal5" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Inverted Index Construction and Boolean Query Processing</h4>
</div>
<div class="modal-body">
<p>Interacted with Lucene index generated from RCV2 multilingual corpus, using Lucene API and built an inverted index. Also performed two types of boolean query processing strategies: Term-At-A-Time and Document-At-A-Time.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE535--Information-Retrieval/tree/master/IR_Project_2_Boolean_Query_And_Inverted_Index" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\IRProject2.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal6 -->
<div id="modal6" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Data Clients and Information Servers</h4>
</div>
<div class="modal-body">
<p>Performed Twitter Data Extraction using Twitter REST API and processed the data using a library 'twitteR' of R programming language. Also visualized the extracted data on a real world map using 'ggplot2' package of R.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE587--Data-Intensive-Computing/tree/master/DIC_Lab1" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\lab1.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal7 -->
<div id="modal7" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Data Cleaning and Munging</h4>
</div>
<div class="modal-body">
<p>Performed data cleaning by converting raw data from an XML to a readable structured format (.csv) using ‘xml’ package in R, extracted and performed data munging by transforming the data from Kaggle SQLite European Soccer database into data frames making the data meaningful for question-answering and also transformed the data collected from Pew survey into relevant graphs through exploratory data analysis (EDA) using survey information available.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE587--Data-Intensive-Computing/tree/master/DIC_Lab2" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\lab2.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal8 -->
<div id="modal8" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Classification of Handwritten digits and Image Datasets</h4>
</div>
<div class="modal-body">
<p>Preprocessed training data, test data and validation data and implemented the feed-forward propagation and back-propagation mechanisms of a neural network for correctly classifying handwritten digits data sets and also image data sets. Also made a report of observations after changing the number of hidden nodes in the hidden unit and also changing the regularization constant.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/MachineLearning/tree/master/Project1_Handwritten_Digits_Classification" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\ML_PA1.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal9 -->
<div id="modal9" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Data Analysis, Learning and Prediction</h4>
</div>
<div class="modal-body">
<p>Studied ggplot2 Vignette, Iris dataset and K-means clustering algorithm and also performed and studied the Linear model on National Hockey data, K-nn classification on German data which was given by the professor and also K-means clustering with Pew Data. Aim was to understand Machine Learning algorithms that can help predict the outcome of a certain query or facilitate a classification based on a given criteria.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE587--Data-Intensive-Computing/tree/master/DIC_Lab3" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\lab3.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal10 -->
<div id="modal10" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Text Processing with Hadoop MapReduce</h4>
</div>
<div class="modal-body">
<p>This assignment dealt with performing wordcount on collected tweets and visualizing it by a wordcloud. We also had to implement 2 strategies of word co-occurrence on the collected tweets i.e Pairs and Stripes method where we pre-processed the each tweet's text field and then gave this as an input to HDFS and got the co-occurring words. Similarly we had to do wordcount and word co-occurrence for a set of Latin documents where we got outputs for documents ranging from count=1 to count=10 and so forth. The purpose was to deal with Big Data, especially text data using Google's MapReduce algorithm.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE587--Data-Intensive-Computing/tree/master/DIC_Lab4" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\lab4.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal11 -->
<div id="modal11" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Big Data Analytics using Apache Spark</h4>
</div>
<div class="modal-body">
<p>In this assignment students were told to learn Apache Spark's working using Titanic Data Analysis. We were told to implement the word co-occurrence program in Spark on a set of Latin documents and the results were to be compared to that of the results obtained by traditional Hadoop MapReduce. However here we had to do bigrams (n=2) and tri-grams (n=3) co-occurrence in the documents. The aim was to observe the scalability and performance improvement offered by Apache Spark.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE587--Data-Intensive-Computing/tree/master/DIC_Lab5" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\lab5.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal12 -->
<div id="modal12" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Interactive Data Analytics Dashboard on Movies</h4>
</div>
<div class="modal-body">
<p>In this assignment I worked on the IMDB movies dataset offered by Kaggle. I had chosen this topic as I was always curious about knowing what could be the parameters that help in making a film successful and keeping this question in mind I visualized several different graphs by considering different attributes in the dataset to see what really affects the film's success. The purpose of this assignment was to consider any real world problem and try to solve and answer it by visualizing different graphs on a dashboard and analyzing them.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE587--Data-Intensive-Computing/tree/master/DIC_Term_Project_2017" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\TermProject.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal13 -->
<div id="modal13" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Classification and Regression</h4>
</div>
<div class="modal-body">
<p>This assignment dealt with implementing and experimenting with Linear Discriminant Analysis (LDA) and Quadratic Discriminant (QDA) Analysis, Linear Regression, Ridge regression with and without gradient descent and lastly non-linear regression and interpreting their results. LDA and QDA were associated with the classification part and all the remaining were associated with regression part.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/MachineLearning/tree/master/Project2_Classification_And_Regression" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\ML_PA2.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal14 -->
<div id="modal14" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Guessing Game in VHDL</h4>
</div>
<div class="modal-body">
<p>In this assignment the students had to program their Basys3 FPGA boards in order to make their boards serve as a Guessing Game. This game was designed in VHDL using Vivado editor. In this game there are 2 players. The first player enters any desired number ranging from 0000 to FFFF (Hex numbers) and the second player has to guess this number. If the guessed number is too high, The seven segment display shows a 'Too-High' sign indicating that the entered number is greater than the actual number. Similarly it also shows a 'Too-Low' sign if the entered number is less than the actual number. On a correct guess all the LEDS blink in celebration.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE590--Computer-Architecture/tree/master/Comp_Arch_Project2_GuessingGame" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\Comp_Arch_GuessingGame.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
<!-- Modal15 -->
<div id="modal15" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header" style="padding:10px">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Question Answering System on 'Demonetization'</h4>
</div>
<div class="modal-body">
<p>Developed a question-answering search engine which fetched relevant tweets from twitter for every query term entered related to 'demonetization' in the search engine. Used Java, Javascript, HTML5, CSS3, OpenNLP and JSP for this.</p>
</div>
<div class="modal-footer">
<p>
<a href="https://github.com/arnavahire/CSE535--Information-Retrieval/tree/master/IRFinalProject" class="btn btn-primary">Github</a>
<a href="ProjectSpecs\IRFinalProject.pdf" class="btn btn-primary">Specifications</a>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</p>
</div>
</div>
</div>
</div>
</section>
<!--********************************************************** ENTERTAINMENT ****************************************************-->
<section id="entertainment" class="container-fluid">
<div class="row">
<div class="col-sm-4">Entertainment</div>
<div class="col-sm-8">
<h2>YouTube</h2>
<p>I also have a YouTube channel wherein I post some funny and entertaining videos which includes dance and sometimes acting too.</p>
<p>You can follow by visiting my channel's link given below.</p>
<a href="https://www.youtube.com/channel/UCIes41GhipAHGg4VgEhnLqw" class="fa fa-youtube"></a>
</div>
</div>
</section>
<!--*********************************************************** RESUME **********************************************************-->
<section id="resume" class="container-fluid">
<div class="row">
<div class="col-sm-4">Resume</div>
<div class="col-sm-8">
<h2>Work</h2>
<p>My work. Summarized.</p>
<p>Go ahead. Download my resume !</p>
<a href="Resume\Resume.pdf" download><button class="button-resume"><span class="glyphicon glyphicon-save"></span> Download Resume</button></a>
</div>
</div>
</section>
<!--*********************************************************** CONTACT **********************************************************-->
<section id="contact" class="container-fluid">
<div class="row">
<div class="col-sm-4">Contact</div>
<div class="col-sm-8">
<h2>Arnav Ahire</h2>
<h4>Address</h4>
<p>136 Springville Ave, Buffalo,</p>
<p>NY 14226 USA</p>
<h4>Mobile</h4>
<p>(716)-951-9071</p>
<h4>Mail</h4>
<p>arnavane@buffalo.edu </p>
<p>arnavstarsmj@gmail.com</p>
<p class="social-media">
<ul class="soc">
<li><a class="soc-github soc-icon-last" href="https://github.com/arnavahire"></a></li>
<li><a class="soc-twitter" href="https://twitter.com/arnavahire"></a></li>
<li><a class="soc-facebook" href="https://www.facebook.com/arnav.ahire.7"></a></li>
<li><a class="soc-linkedin" href="https://www.linkedin.com/in/arnav-ahire/"></a></li>
<li><a class="soc-youtube" href="https://www.youtube.com/channel/UCIes41GhipAHGg4VgEhnLqw"></a></li>
</ul></p>
</div>
</div>
</section>
<!--******************************************* Javascript code for Smooth scrolling using scrollspy *******************************-->
<script type="text/javascript">
$("#navigationBar ul li a[href^='#']").on('click', function(e) {
// prevent default anchor click behavior
e.preventDefault();
// store hash
var hash = this.hash;
// animate
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 1000, function(){
// when done, add hash to url
// (default click behaviour)
window.location.hash = hash;
});
});
</script>
<!--**************************************** Javascript code for closing an open collapsed Navbar **********************************-->
<script type="text/javascript">
/* If the navbar-collapse is open and if a click is done outside of the navbar-collapse.collapse.in region then hide the navbar-collapse*/
$(document).click(function(e) {
if (!$(e.target).is('.navbar-collapse.collapse.in')) {
$('.collapse').collapse('hide');
}
});
</script>
</body>
</html>