-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
982 lines (952 loc) · 52.7 KB
/
index.html
File metadata and controls
982 lines (952 loc) · 52.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ashvin Roharia</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png">
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome/css/font-awesome.css">
<!-- Stylesheet
================================================== -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/prettyPhoto.css">
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,900,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,800,600,300' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/modernizr.custom.js"></script>
<!-- Normalize -->
<link rel="stylesheet" href="css/normalize.css">
<!-- Fonts -->
<link href="http://fonts.googleapis.com/css?family=Dosis:400,500,600,700" rel="stylesheet" type="text/css">
<!-- Font Awesome icons 4.2.1 -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Toggle button -->
<link rel="stylesheet" href="css/button.css"> <!-- custom style -->
<!-- Custom code -->
<link rel="stylesheet" href="css/framework.css"> <!-- 12 grid framework -->
<link rel="stylesheet" href="css/timeline.css">
<!--Google Analytics Code-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-99662651-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<!-- Header -->
<div id="clouds" style="position: fixed-top; height: 100%; width: 100%;">
<header id="header">
<div class="intro">
<div class="container">
<div class="row">
<div class="intro-text">
<h1> Hi, I'm <font color=#20B2AA>Ashvin</font></h1>
<h1><font color="White">I'm an </font><font color=#20B2AA><span class="amiya-fury" data-period="500" data-rotate='["Engineer.", "Embedded ML Advocate.", "Online Course Instructor."]'> </span></font>
</h1>
<a href="#about" class="btn btn-default btn-lg page-scroll">Learn More</a>
</div>
</div>
</div>
</div>
</header>
</div>
<script src="js/three.r95.min.js"></script>
<script src="js/vanta.clouds.min.js"></script>
<script type="text/javascript" src="js/amiya.js"></script>
<script>
VANTA.CLOUDS({
el: "#clouds",
mouseControls: true,
touchControls: true,
minHeight: 200.00,
minWidth: 200.00,
skyColor: 0x63c2d3,
sunColor: 0xece4da
})
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<div id="nav">
<nav class="navbar navbar-custom">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse"> <i class="fa fa-bars"></i> </button>
<a class="navbar-brand page-scroll" href="#page-top">Ashvin Roharia</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden"> <a href="#page-top"></a> </li>
<li> <a class="page-scroll" href="#about">About</a> </li>
<li> <a class="page-scroll" href="#skills">Skills</a> </li>
<li> <a class="page-scroll" href="#portfolio">Projects</a> </li>
<li> <a class="page-scroll" href="#resume">Experience</a> </li>
<li> <a class="page-scroll" href="#contact">Contact</a> </li>
</ul>
</div>
</div>
</nav>
</div>
<!-- About Section -->
<div id="about">
<div class="container">
<div class="section-title text-center center">
<h2>About Me</h2>
<hr>
</div>
<div class="row">
<div class="col-md-12 text-center"><img src="img/about.jpg" class="img-responsive"></div>
<div class="col-md-8 col-md-offset-2">
<div class="about-text" style="text-align:center">
<p>Hi! I'm a 28 year old Solutions Engineer at Edge Impulse working on Embedded Machine Learning.
I graduated from Georgia Tech with an MS in Computer Science and the University of Texas at Austin with a BS in Electrical & Computer Engineering.
I created this website to archive and showcase a few of my skills, technical projects, and industry experience.
Apart from embedded systems and machine learning, I enjoy soccer, table tennis, and anything outdoors really.</p>
<p class="text-center"><a class="btn btn-primary" href="img/Ashvin Roharia Resume.pdf"><i class="fa fa-download"></i> Download Resume</a></p>
<!-- to add download resume button: <p class="text-center"><a class="btn btn-primary" href="#"><i class="fa fa-download"></i> Download Resume</a></p> -->
</div>
</div>
</div>
</div>
</div>
<!-- Skills Section -->
<div id="skills" class="text-center">
<div class="container">
<div class="section-title center">
<h2>Skills</h2>
<hr>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="95"> <span class="percent">95</span> </span>
<h4>C</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="95"> <span class="percent">85</span> </span>
<h4>Assembly</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="90"> <span class="percent">85</span> </span>
<h4>Python</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="90"> <span class="percent">80</span> </span>
<h4>Java</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="80"> <span class="percent">65</span> </span>
<h4>C++</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="80"> <span class="percent">80</span> </span>
<h4>VHDL</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="75"> <span class="percent">70</span> </span>
<h4>HTML</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="70"> <span class="percent">65</span> </span>
<h4>CSS</h4>
</div>
<div class="col-md-4 col-sm-6 skill">
<span class="chart" data-percent="70"> <span class="percent">65</span> </span>
<h4>C#</h4>
</div>
</div>
</div>
</div>
<!-- Portfolio Section -->
<div id="portfolio">
<div class="container">
<div class="section-title text-center center">
<h2>Projects</h2>
<hr>
</div>
<div class="categories">
<ul class="cat">
<li>
<ol class="type">
<li><a href="#" data-filter="*" class="active">All</a></li>
<li><a href="#" data-filter=".sw">Software</a></li>
<li><a href="#" data-filter=".hw">Hardware</a></li>
</ol>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="https://www.youtube.com/watch?v=XFWVa6XpDd8" title="Check out the course here: <br> https://www.udemy.com/course/intro-to-embedded-ml/" rel="prettyPhoto">
<div class="hover-text">
<h4><font color="white">Embedded Machine Learning Course</font><br><font color="grey"><small>View Video</small></font>
<a href="img/portfolio/Embedded-ML-Course-Report.pdf"><br><font color="grey"><small>View Report</small></color></a></h4>
<small><font color="white">Software</font></small> </div>
<img src="img/portfolio/udemy-small.jpg" class="img-responsive" alt="Active Noise Cancellation Embedded System"></a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="img/portfolio/acoustic-large.png" title="In this project, our team used machine learning algorithms like SVMs and KNNs in order to give headphones some of the same detection capabilities as humans. These algorithms allow headphones to tune out the surrounding environment and alert the user when significant, alarming events occur." rel="prettyPhoto">
<div class="hover-text">
<h4>Acoustic Event Detection<br>Algorithms & GUI</h4>
<small>Software</small>
</div>
<img src="img/portfolio/acoustic-small.jpg" class="img-responsive" alt="Acoustic Event Detection">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="" rel="prettyPhoto">
<div class="hover-text">
<h4>
<a href="https://aroharia.github.io/GroupMe-Chat-Data-Analysis/"><font color="white">GroupMe API Data<br>Gathering & Analysis</font></a></h4>
<small>Software</small> </div>
<img src="img/portfolio/groupme-small.jpg" class="img-responsive" alt="GroupMe API Data Gathering & Analysis"> </a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="img/portfolio/itunes-large.jpg" title="The goal of this project was to find whether or not a bank or credit union had a mobile app, and provide the link if it did. Apple provides an iTunes Search API that allows you to automate the search process which I did using Ruby. My Ruby script went through a list of 10,000+ banks/credit unions and displayed the top resulting apps it found and provided the link for one's likely to be a banking app. I determined if an app was correct if it (1) had a similar name to the financial institution (2) genre = finance/business (so not music or games) (3) contained key words such as 'deposit' or 'check' in the description. This automated process saved my company a lot of time and resources for a job that was previously done by hand." rel="prettyPhoto">
<div class="hover-text">
<h4>iTunes Search API<br>Automated Classifier</h4>
<small>Software</small>
</div>
<img src="img/portfolio/itunes-small.jpg" class="img-responsive" alt="iTunes Search API Automated Classifier">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 hw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="https://www.youtube.com/watch?v=d-xIPnKBXns" rel="prettyPhoto">
<div class="hover-text">
<h4>Multiplier in VHDL</h4>
<small>Software, Hardware</small>
</div>
<img src="img/portfolio/multiply_small.jpg" class="img-responsive" alt="Multiplier in VHDL">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="https://www.youtube.com/watch?v=TrL5FIjnUPc" rel="prettyPhoto">
<div class="hover-text">
<h4>Automated Website<br>Testing</h4>
<small>Software</small>
</div>
<img src="img/portfolio/sitetesting-small.png" class="img-responsive" alt="iTunes Search API Automated Classifier">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw hw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="img/portfolio/auto-large.jpg" title="I created a robotic car with photoresistors and infrared sensors to follow black tape and dodge obstacles. The photoresistors were used to detect the light emmitted by the ground under the robot (in our case if we were over white tiles or black tape). The infrared sensor was used to detect proximity to obstacles. I used LabVIEW (visual programming) and a data acquisition device to read data from the sensors and control the motors on the car." rel="prettyPhoto">
<div class="hover-text">
<h4>Autonomous Robot Car</h4>
<small>Software, Hardware</small>
</div>
<img src="img/portfolio/auto-small.jpg" class="img-responsive" alt="Autonomous Robot Car">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="https://www.youtube.com/watch?feature=player_embedded&v=WTA4zdtcFYo" title="Large amounts of Facebook data go unused due to the difficulty of collecting and analyzing the data. Our application analyzes and visualizes data from user-requested Facebook pages. This allows users to enhance their Facebook experience. Users can see what type of posts gain more popularity and Advertisers can use data to improve the effectiveness of their ads."
<a href="" rel="prettyPhoto">
<div class="hover-text">
<h4><font color="white">Facebook Page Data<br>Gathering & Analysis</font>
</a>
</h4>
<small>Software</small> </div>
<img src="img/portfolio/fetchbook-small.png" class="img-responsive" alt="Facebook Page Data Gathering & Analysis"> </a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 hw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="https://youtu.be/LJPHbxJNlW4" title="One of my first true hardware projects. I designed and constructed an object-collecting RC car powered by motors and a pneumatic device. I designed it all in SolidWorks (CAD program), and then constructed it in my school's workshop. I had to use equipment such as te bandsaw and beltsander as well as welding and soldering for the metal and eltrical connections.<br>**Sadly, the only video I could find was from one of my test runs and not the final competition" rel="prettyPhoto">
<div class="hover-text">
<h4>Remote Control<br>Robot Car</h4>
<small>Hardware</small>
</div>
<img src="img/portfolio/car-small.jpg" class="img-responsive" alt="Remote Control Robot Car">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="https://www.youtube.com/watch?v=83ptanUW17U" title="Land deformation from the area's prolific oil and gas extraction can be seen around the sinkhole. I created the map using raw data from an Interferometric Synthetic Aperture Radar. The raw data was converted to a focused image, then an interferogram with phase change from 2007 to 2008, and then flattened by removing the earth curvature and tophography, and finally geo-coded to Google Earth. This video is the result of this entire process. This project was done through the help of the Center for Space Research facility and NASA satellites."
<a href="" rel="prettyPhoto">
<div class="hover-text">
<h4><font color="white">Sinkhole Detection<br>using DInSAR</font>
</a>
</h4>
<small>Software</small> </div>
<img src="img/portfolio/wink-small.png" class="img-responsive" alt="Differential Synthetic Aperture Radar Interferometry"> </a>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 sw hw">
<div class="portfolio-item">
<div class='square-box'>
<div class='square-content'>
<div class="hover-bg">
<a href="https://youtu.be/ckHqxexrCRc" title="Definitely one of the more demanding projects that I have done. It started off as a concept -> turned into a hardware schematic with basic code -> a pcb with active noise cancellation. " rel="prettyPhoto">
<div class="hover-text">
<h4><font color="white">Active Noise Cancellation<br>Embedded System</font><br><font color="grey"><small>View Video</small></font>
<a href="img/portfolio/Lab7Report.pdf"><br><font color="grey"><small>View Report</small></color></a></h4>
<small><font color="white">Software, Hardware</font></small> </div>
<img src="img/portfolio/active2-small.jpg" class="img-responsive" alt="Active Noise Cancellation Embedded System"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Achievements Section -->
<div id="achievements" class="text-center">
<div class="container">
<div class="section-title center">
<h2>Fun Stats</h2>
<hr>
</div>
<div class="row">
<div class="col-md-3 col-sm-3 wow fadeInDown" data-wow-delay="200ms">
<div class="achievement-box">
<span class="count">11</span>
<h4>Songs I Have Played on<br>the Guitar in Public</h4>
<!--Hallelujah, Riptide, See You Again, Handlebars, Viva la Vida,
Clocks, Trouble, Stiches, Can you feel the love tonight,mess is mine
thinking out loud-->
<video width=100% height=100% controls>
<source src="img/guitar.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="col-md-3 col-sm-3 wow fadeInDown" data-wow-delay="600ms">
<div class="achievement-box">
<span class="count">7.10</span>
<h4>Minutes per Mile</h4>
<img src="img/run_certificate.png" alt="Mountain View" style="width:calc(100% - 2px);height:calc(100% - 2px);">
</div>
</div>
<div class="col-md-3 col-sm-3 wow fadeInDown" data-wow-delay="800ms">
<div class="achievement-box">
<span class="count">7</span>
<h4>Years of Industry Experience</h4>
<img src="img/career-map.jpg" alt="Mountain View" style="width:calc(100% - 2px);height:calc(100% - 2px);">
</div>
</div>
<div class="col-md-3 col-sm-3 wow fadeInDown" data-wow-delay="800ms">
<div class="achievement-box">
<span class="count">4</span>
<h4>Tech Talks Given</h4>
<iframe src="//www.slideshare.net/slideshow/embed_code/key/dQjCb0WSfdhQsX" width="345" height="185" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
<div style="margin-bottom:5px"> <strong> <a href="//www.slideshare.net/AshvinRoharia/engineering-the-iot" title="Engineering the IoT" target="_blank">Engineering the IoT</a> </strong> <br>By: <strong><a href="//www.slideshare.net/AshvinRoharia" target="_blank">Ashvin Roharia</a></strong> </div>
</div>
</div>
</div>
</div>
</div>
<!-- Experience Section -->
<div id="resume" class="text-center">
<div class="container">
<div class="section-title center";>
<h2>Experience</h2>
</div>
<header class="col-12">
<div class="col-12 row longLink">
<div class="col-6 col-tab-11 col-ph-11 top online">
<div class="topLine"></div>
<h2>Career</h2>
</div>
<div class="col-6 col-tab-11 col-ph-11 top offline">
<div class="topLine"></div>
<h2>Academic</h2>
</div>
</div>
</header>
<section class="row col-tab-11 col-ph-11" id="timeline" role="main">
<ul class="col-12">
<!-- Timeline Listing -->
<!-- Edge Impulse -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2022</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/ei.png"/>
<figcaption>
<h4>Edge Impulse</h4>
<h5>Embedded ML Solutions Team</h5>
<ul>
<li>Developed a QR code and license plate detection and decoding end-to-end solution for customer</li>
<li>Led HP (Poly) to success with onsite meetings and technical support on their KWS ML models</li>
<li>Launched these models on their Bluetooth headsets</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Senior Solutions Engineer</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>Edge AI</span></li>
<li><span>Computer Vision</span></li>
<li><span>DSP</span></li>
<li><span>IoT</span></li>
</ul>
</div>
</section>
</li>
<!-- Grad Georgia Tech -->
<li class="group item offline"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2022</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/gt.png"/>
<figcaption>
<h4>Georgia Tech</h4>
<ul>
<li>Masters in Computer Science</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Graduate</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-graduation-cap"></i></a></li>
</ul>
<ul class="skills">
<li><span>Machine Learning</span></li>
<li><span>Embedded Systems</span></li>
<li><span>Software</span></li>
<li><span><i class="fa fa-bitbucket"></i> GIT</span></li>
</ul>
</div>
</section>
</li>
<!-- GTech -->
<li class="group item offline">
<section class="col-6 col-tab-12 col-ph-12 row event">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2020</p>
</div>
<div class="col-11 col-sm-10 col-ph-10 eventText">
<h4 class="inlineBlock">Accepted to <font color="gold">Georgia Tech</font> M.S. in Computer Science<i class="fa fa-book"></i></h4>
</div>
</section>
</li>
<!-- Silicon Labs RF SW -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2020</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/silabs.png"/>
<figcaption>
<h4>Silicon Labs</h4>
<h5>Radio Software Team</h5>
<ul>
<li>Developed app to analyze library’s RAM/stack and flash usage after each commit</li>
<li>Worked on fixing bugs in RAIL library</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Firmware Engineer</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>C</span></li>
<li><span>Python</span></li>
<li><span>Git</span></li>
<li><span>Logic Analyzer</span></li>
<li><span>Wireless</span></li>
<li><span>Jenkins</span></li>
</ul>
</div>
</section>
</li>
<!-- Silicon Labs Xpress -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2018</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/silabs.png"/>
<figcaption>
<h4>Silicon Labs</h4>
<h5>IoT Xpress Products Software Development Team</h5>
<ul>
<li>Bluetooth Xpress - Bluetooth to UART Bridge</li>
<li>Touch Xpress - Capacitive Button to UART Bridge</li>
<li>USB Xpress - USB to UART Bridge</li>
<li>Bootcode - Boot ROM and Bootloader</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Firmware Engineer</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>Assembly</span></li>
<li><span>C</span></li>
<li><span>Logic Analyzer</span></li>
<li><span>USB Analyzer</span></li>
<li><span>Git</span></li>
<li><span>Python</span></li>
<li><span>Circuits</span></li>
<li><span>Logic Analyzer</span></li>
</ul>
</div>
</section>
</li>
<!-- Grad UT Austin -->
<li class="group item offline"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2017</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/ut.png"/>
<figcaption>
<h4>The University of Texas at Austin</h4>
<ul>
<li>Bachelors in Electrical & Computer Engineering</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Graduate</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-graduation-cap"></i></a></li>
</ul>
<ul class="skills">
<li><span>C</span></li>
<li><span>ASM</span></li>
<li><span>JAVA</span></li>
<li><span>C++</span></li>
<li><span>Python</span></li>
<li><span>VHDL</span></li>
<li><span>MATLAB</span></li>
<li><span><i class="fa fa-bitbucket"></i> GIT</span></li>
</ul>
</div>
</section>
</li>
<!-- Silicon Labs Intern-->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2017</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/silabs.png"/>
<figcaption>
<h4>Silicon Labs</h4>
<h5>IoT Xpress Products Software Development Team</h5>
<ul>
<li>Set up a new test platform (TP) to test capacitive sense touch (CPT) for IoT devices</li>
<li>Developed python scripts to simulate and test "touches" on the CPT button board</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Firmware Engineer Intern</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>Python</span></li>
<li><span>C</span></li>
<li><span>Circuits</span></li>
<li><span>Git</span></li>
</ul>
</div>
</section>
</li>
<!-- Intel -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2016</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/intel.png"/>
<figcaption>
<h4>Intel</h4>
<h5>IoT SoC Power Management Team</h5>
<ul>
<li>Worked on the power management controller on a pre-silicon IoT soc</li>
<li>Fixed multiple firmware bugs on Linux involving cloning, building, testing, and team communication</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Firmware Engineer Intern</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>C</span></li>
<li><span>Linux</span></li>
<li><span>Verdi</span></li>
</ul>
</div>
</section>
</li>
<!-- AMD -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2015</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/amd.png"/>
<figcaption>
<h4>AMD</h4>
<h5>Server Validation Team</h5>
<ul>
<li>Tested SATA ports on “Seattle” ARM server chip revisions through python scripts for 2 bringups</li>
<li>Built a GUI using XAML, C#, and python in Visual Studio to replace an outdated GUI used to test chips</li>
<li>Loaded microcode patches, set conditional breakpoints in HDT, and helped brainstorm fixes for the issue</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Validation Engineer Intern</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>Python</span></li>
<li><span>C#</span></li>
<li><span>XAML</span></li>
</ul>
</div>
</section>
</li>
<!-- Malauzai Team Lead -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2015</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/malauzai.png"/>
<figcaption>
<h4>Malauzai Software</h4>
<h5>R&&D Team</h5>
<ul>
<li>Led a team of 3 interns to help the company gain marketing intel through an app research project</li>
<li>Measured land differentiation in Wink, Texas using the interferometric synthetic aperture radar (InSAR) and global positioning system (GPS)</li>
<li>Recognized as <a href="https://www.austinisd.org/announcements/students-named-semi-finalists-prestigious-siemens-competition"><font color="SLATEBLUE"><b>2011 Siemens Foundation Competition Semifinalist</b></font></a> after submitting 18-page paper over this research</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Team Lead Intern</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>Management</span></li>
<li><span>Research</span></li>
<li><span>Writing</span></li>
</ul>
</div>
</section>
</li>
<!-- Malauzai -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2014</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/malauzai.png"/>
<figcaption>
<h4>Malauzai Software</h4>
<h5>Mobile App Development Team</h5>
<ul>
<li>Performed the roles of a QA, software engineer, marketing strategist, and manager for a mobile banking company</li>
<li>Wrote an 11-page research report on the findings</li>
<li>Designed an infographic summarizing the entire project for public distribution</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Software Engineer Intern</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-external-link-square"></i></a></li>
</ul>
<ul class="skills">
<li><span>HTML</span></li>
<li><span>CSS</span></li>
<li><span>Ruby</span></li>
<li><span>JAVA</span></li>
<li><span>JIRA</span></li>
<li><span>iOS</span></li>
<li><span>Android</span></li>
</ul>
</div>
</section>
</li>
<!-- Start UT -->
<li class="group item offline">
<section class="col-6 col-tab-12 col-ph-12 row event">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2013</p>
</div>
<div class="col-11 col-sm-10 col-ph-10 eventText">
<h4 class="inlineBlock">Accepted to the <font color="orange">University of Texas at Austin</font> B.S. in Electrical & Computer Engineering<i class="fa fa-book"></i></h4>
</div>
</section>
</li>
<!-- Grad LASA -->
<li class="group item offline"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2013</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/lasa.png"/>
<figcaption>
<h4>Liberal Arts & Science Academy High School</h4>
<ul>
<li>High School Diploma with Magnet Endorsement</li>
<li>3 Trustee's Scholar Award (Top 10%) 2010/11/12L</li>
<li>2nd at 2011 Computer Science UIL</li>
<li>Founder & VP of Cricket Club 2010-13</li>
<li>113 Volunteering Hours</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Graduate</h3>
<ul class="extlinks inlineList">
<li><a href="http://espressowork.com/site/examples" target="_blank"><i class="fa fa-graduation-cap"></i></a></li>
</ul>
<ul class="skills">
<li><span>JAVA</span></li>
<li><span>Networking</span></li>
</ul>
</div>
</section>
</li>
<!-- Texas Tech -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2011</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/tt.png"/>
<figcaption>
<h4>Texas Tech University</h4>
<ul>
<li>Computationally analyzed the genes of a plant to study the effects of abscisic acid (ABA) on gene expression in mutant and wildtype Arabidopsis thaliana</li>
<li>Confirmed ABA was a plant hormone which mediates seed maturation, cell division, and responses to drought, chilling and pathogen attack</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Biomathematics Researcher</h3>
</div>
</section>
</li>
<!-- CSR -->
<li class="group item online"> <!-- Project -->
<section class="col-6 col-tab-12 col-ph-12 row project ">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2011</p>
</div>
<figure class="col-7 col-sm-9 col-ph-9 thumb">
<img src="img/timeline/csr.png"/>
<figcaption>
<h4>Center for Space Research</h4>
<ul>
<li>Contributed to research project measuring earth surface displacements with natural and human-induced effects</li>
<li>Measured land differentiation in Wink, Texas using the interferometric synthetic aperture radar (InSAR) and global positioning system (GPS)</li>
<li>Recognized as <a href="https://www.austinisd.org/announcements/students-named-semi-finalists-prestigious-siemens-competition"><font color="SLATEBLUE"><b>2011 Siemens Foundation Competition Semifinalist</b></font></a> after submitting 18-page paper over this research</li>
</ul>
</figcaption>
</figure>
<div class="col-4 col-sm-9 col-ph-9 info">
<h3>Aerospace Intern</h3>
</div>
</section>
</li>
<!-- Accepted to LASA -->
<li class="group item offline">
<section class="col-6 col-tab-12 col-ph-12 row event">
<div class="col-1 col-sm-2 col-ph-2 date">
<p>2009</p>
</div>
<div class="col-11 col-sm-10 col-ph-10 eventText">
<h4 class="inlineBlock">Accepted to <font color="purple">Liberal Arts and Science Academy High School</font><i class="fa fa-book"></i></h4>
</div>
</section>
</li>
</ul><!-- timeline listing -->
</section><!-- timeline -->
<footer class="col-12">
<div class="col-12 row longLink">
<div class="col-6 col-tab-11 col-ph-11 top online">
<div class="topLine"></div>
</div>
<div class="col-6 col-tab-11 col-ph-11 top offline">
<div class="topLine"></div>
</div>
</div><i class="fa fa-certificate"></i> <i class="fa fa-bolt"></i>
<div class="ribbon">
<p class="ribbon-content">1995</p>
</div>
<div class="switchWrap col-12">
<h4>Switch to see another side of me:</h4>
<div class="col-5 col-tab-5 col-ph-4 onlineSwitch">
<p>Career</p>
</div>
<div class="switch col-2 col-tab-2 col-ph-4">
<input class="cmn-toggle cmn-toggle-round-flat" id="toggleBottom" type="checkbox"> <label for="toggleBottom"></label>
</div>
<div class="col-5 col-tab-5 col-ph-4 offlineSwitch">
<p>Academic</p>
</div>
</div>
<br>
</footer>
</div>
</div>
<!-- Contact Section -->
<div id="contact" class="text-center">
<div class="container">
<div class="section-title center">
<h2>Contact</h2>
<hr>
</div>
<div class="col-md-8 col-md-offset-2">
<div class="col-md-12"> <i class="fa fa-envelope-o fa-2x"></i>
<p>aroharia@gmail.com</p>
</div>
<div class="clearfix"></div>
</div>
<div class="col-md-8 col-md-offset-2">
<div class="social">
<ul>
<li><a href="https://github.com/aroharia"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.instagram.com/aroharia/"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.linkedin.com/in/ashvinroharia/"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container text-center">
<div class="fnav">
<p>Copyright © 2017. Designed by Ashvin Roharia</p>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.1.11.1.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/SmoothScroll.js"></script>
<script type="text/javascript" src="js/easypiechart.js"></script>
<script type="text/javascript" src="js/jquery.prettyPhoto.js"></script>
<script type="text/javascript" src="js/jquery.isotope.js"></script>
<script type="text/javascript" src="js/jquery.counterup.js"></script>
<script type="text/javascript" src="js/waypoints.js"></script>
<script type="text/javascript" src="js/jqBootstrapValidation.js"></script>
<script type="text/javascript" src="js/contact_me.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<!-- Non-blocking JS -->
<script src="js/jquery-2.1.1.min.js"></script>
</body>
</html>