generated from usf-cs360-spring2020/template-basic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
566 lines (523 loc) · 22.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- TODO: Change title -->
<title>Dharti's personal Website</title>
<!-- Load Bulma from CDN (consider saving it to repository instead) -->
<!-- https://bulma.io/ -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<!-- Load Font Awesome 5 (free) icons -->
<script
src="https://use.fontawesome.com/releases/v5.12.0/js/all.js"
data-auto-a11y="true"></script>
<!-- <script src="https://use.fontawesome.com/releases/v5.12.0/js/all.js" data-auto-replace-svg="nest"></script> -->
<!-- <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script> -->
</head>
<body>
<!-- Page header -->
<!-- https://bulma.io/documentation/layout/hero/ -->
<section class="hero is-primary is-bold">
<div class="hero-body">
<div class="container">
<!-- TODO: Change title -->
<h1 class="title">Dharti Madeka</h1>
<!-- TODO: Change subtitle -->
<h2 class="subtitle">Personal Portfolio</h2>
</div>
</div>
</section>
<!-- End page header -->
<!-- Page navigation -->
<!-- https://bulma.io/documentation/components/navbar/ -->
<nav class="navbar is-light" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<!-- TODO: Change link to repository homepage if needed -->
<!-- TODO: Change which navbar-item is-active if needed -->
<a class="navbar-item is-active" href="index.html">
<span class="icon"><i class="fas fa-home"></i></span>
<span>Home</span>
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="main-menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="main-menu" class="navbar-menu has-text-weight-medium">
<!-- Left navbar items -->
<div class="navbar-start">
<a class="navbar-item" href="#education" title="Education">
<span class="icon"><i class="fas fa-graduation-cap"></i></span>
<span>Education</span>
</a>
<a class="navbar-item" href="#work" title="Work">
<span class="icon"><i class="fas fa-table"></i></span>
<span>Work</span>
</a>
<a class="navbar-item" href="#Projects" title="Projects">
<span class="icon"><i class="fas fa-tasks"></i></span>
<span>Projects</span>
</a>
<a class="navbar-item" href="#self-learned" title="Self-Learned">
<span class="icon"><i class="fas fa-book-reader"></i></span>
<span>Self-Learned Projects</span>
</a>
</div>
<!-- Right navbar items -->
<div class="navbar-end">
<!-- TODO: Update as needed -->
<a class="navbar-item" href="#about" title="About">
<span class="icon"><i class="fas fa-info-circle"></i></span>
<span>Contact</span>
</a>
</div>
</div>
</div>
</nav>
<!-- End page navigation -->
<section class="section">
<div class="container">
<!-- Begin page content -->
<div class="content">
<h1 class="title">
<!-- TODO: Change page title -->
About Me
</h1>
<p class="subtitle">
<!-- TODO: Change page subtitle -->
Actively Seeking Full-time as Software Engineer.
</p>
<p>An Engineer in making.
Young, enthusiast professional with an affinity towards anything that screams technology.
A techno geek at heart, with a considerate interest in the graphics of life.
Wanderlust.
Easy going and the truest of Leo. </p>
<h2 id="education"> Education</h2>
<div class="education">
<p class="subtitle">Master of Science, Computer Science (08/2018-05/2020)</p>
<p>University of San Francisco, California, USA</p>
<p class="subtitle">Bachelor of Technology, Computer Engineering (08/2012 - 06/2016)</p>
<p>RK University, Gujarat, India</p>
</div>
<h2 id="work">Work</h2>
<div class="work">
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="usfca.jpg" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">University Of San Francisco</p>
<p class="subtitle is-6">Business Intelligence Student Intern</p>
<p class="subtitle is-6">October, 2019 - May, 2020</p>
<p class="subtitle is-6"><i>San Francisco, CA</i></p>
</div>
</div>
<div class="content">
<p><b>CIPE Analytics: </b>Working on dashboards and providing insights with university data using Tableau & SQL.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="oracle.jpg" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Oracle - NetSuite</p>
<p class="subtitle is-6">Software Engineer Intern</p>
<p class="subtitle is-6">May, 2019 - August, 2019</p>
<p class="subtitle is-6"><i>RedWood City, CA</i></p>
</div>
</div>
<div class="content">
<p><b>SuiteApp Development Framework : </b>Worked as full stack developer with Java, SQL and JavaScript technologies in order to
develop a module to retrieve data from DB and convert to XML. Also developed a dashboard for statistical analysis using Kibana
and ElasticSearch. TDD and scrum methodologies were used while working on this project.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="atos.png" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Atos</p>
<p class="subtitle is-6">Security Tester</p>
<p class="subtitle is-6">June, 2016 - July, 2018</p>
<p class="subtitle is-6"><i>Pune, India</i></p>
</div>
</div>
<div class="content">
<p><b>Tokyo 2020 Olympics Ticketing System : </b>Worked closely with design and development team. Developed and Tested ticketing
system using IBM Appscan, Burp Suite, Selenium
<br/>
<b>Siemens Web Application : </b>IBM Appscan was used to verify code manually. Created Automated scripts with the help of
Selenium tool for brute forcing XSS on web-based java forms.
<br/>
<b>VDO-Continental Web Application :</b> Used for automated driving in cars. IBM AppScan was used as a commercial tool and
Burp Suite was used to verify manual test cases. Used selenium to test web based java forms.
<br/>
<b>BMW-COFIS Web Application : </b>Security testing on BMW’s “Common Solution Overview”, a web-based application. IBM
Appscan was used as a commercial tool and then was verified manually also with IBM Appscan.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="" alt="">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Unique IT Solution</p>
<p class="subtitle is-6">Developer Intern</p>
<p class="subtitle is-6">January, 2016 - May, 2016</p>
<p class="subtitle is-6"><i>Rajkot, India</i></p>
</div>
</div>
<div class="content">
<p><b>Worked on a Marriage Bureau Application:</b> A local web application for matchmaking. Used JSP and Java to develop it.
Used HTML, CSS, Bootstrap and Sweet-alert for front-end development.</p>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="ikf.png" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">I Knowledge Factory</p>
<p class="subtitle is-6">Summer Intern</p>
<p class="subtitle is-6">May, 2015 - June, 2016</p>
<p class="subtitle is-6"><i>Pune, India</i></p>
</div>
</div>
<div class="content">
<p>Mentee in the field of Design, Development and Sales. Trained in SPANCO</p>
</div>
</div>
</div>
</div>
<h2 id="Projects">Projects</h2>
<div class="projects">
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>IUCN Red List Visualization</strong>
<br>
Data Visualization on Endangered Species in IUCN Red List using advance visualization technique and implementing using <b>JavaScript, D3.js,
Bulma Template, Tableau, HTML and CSS.</b>
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim/project-Dhartim">Github</a>
<i class="fas fa-id-card-alt"></i> <a href="https://usf-cs360-spring2020.github.io/project-Dhartim/"> Website</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Fire Data Visualization</strong>
<br>
Data Visualization on SF Fire Dataset. Implemented using <b>JavaScript, D3.js, Bulma Template, Tableau and SF Fire Department Dataset</b>
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim/midterm-datasetgo">Github</a>
<i class="fas fa-id-card-alt"></i> <a href="https://usf-cs360-spring2020.github.io/midterm-datasetgo/"> Website</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Meal Planner Web App</strong>
<br>
Webapp to plan and eat a healthy meal. Used <b>Figma, React, MaterialUI , Bootstrap</b> to design and
develop frontend of it. Worked as front-end developer.Used <b>NodeJS, bcrypt, sequelize and PostgreSql</b> for backend and database.
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/sfdevshop/meal-planner-app-f19">Github</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>OneDonation</strong>
<br>
Lead a team to Design an Application for Donation to Organizations. Designed mockups and prototype using
<b>UI/UX design thinking and Figma</b>.
</p>
</div>
<i class="fab fa-figma"></i> <a href="https://www.figma.com/file/yvhnvSbMZSEMqNR7ivvzAR/OneDonation-Final-Design?node-id=0%3A1">Figma</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Ticket Purchase Application</strong>
<br>
Implemented a service-oriented application for ticket purchasing. Used <b>Jetty & Servlet</b> as web
framework to develop <b>RESTful Web Service APIs in Java. MySQL</b> was used for database.
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim/project-4-Dhartim">Github</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Type Ahead and Search</strong>
<br>
Implemented Google auto-search functionality on an inverted index with raw Http Server using <b>Java,
JavaScript, CSS and JSON</b> for dataset.
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim/side-project-Dhartim">Github</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Http Server</strong>
<br>
Developed a server using <b>concurrency, threads and sockets in Java</b>. Developed test cases using <b>Junit</b>. Developed a
from-scratch HttpServer.
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim/project-3-Dhartim">Github</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Publish/Subscribe Framework</strong>
<br>
Developed a message broker framework that supports <b>publish/subscribe</b> functionality.
Concepts of <b>Java concurrency and threads, sockets and Generics</b> were applied
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim/project-2-Dhartim">Github</a>
</div>
</article>
</div>
</div>
<h2 id="self-learned">Self Learned Projects</h2>
<div class="self-learned Projects">
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Tribute page</strong>
<br>
Freecodecamp project to demonstrate <b>HTML and CSS </b> skills.
</p>
</div>
<i class="fab fa-codepen"></i> <a href="https://codepen.io/dhartim/pen/rEXKeN">Code Pen</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Survey Form</strong>
<br>
Freecodecamp project to demonstrate <b>HTML, CSS and JS</b> skills.
</p>
</div>
<i class="fab fa-codepen"></i> <a href="https://codepen.io/dhartim/pen/BaydWxg">Code Pen</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Product Landing Page</strong>
<br>
Freecodecamp project to demonstrate <b>HTML, CSS and JS</b> skills.
</p>
</div>
<i class="fab fa-codepen"></i> <a href="https://codepen.io/dhartim/pen/oNgeWgQ">Code Pen</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Technical Documentation Page</strong>
<br>
Freecodecamp project to demonstrate <b>HTML, CSS and JS</b> skills. Used <b>Navbar, id and class</b> elements of HTML.
</p>
</div>
<i class="fab fa-codepen"></i> <a href="https://codepen.io/dhartim/pen/OJPjmQX">Code Pen</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Personal Portfolio</strong>
<br>
Develop a personal portfolio website using <b>HTML, CSS, JS and Bulma Framework</b>.
</p>
</div>
<i class="fas fa-id-card-alt"></i> <a href="https://usf-cs360-spring2020.github.io/web-Dhartim/"> Website</a>
</div>
</article>
</div>
<div class="box">
<article class="media">
<div class="media-content">
<div class="content">
<p>
<strong>Todo List in React</strong>
<br>
Develop todo list to learn <b>React JS</b> for frontend. Used <b>NodeJS, Express, PostgreSQL and Sequelize</b> for backend.
</p>
</div>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim/TodoApp"> Github</a>
</div>
</article>
</div>
</div>
<h2 id="about">Contact</h2>
<!-- Profile box -->
<!-- https://bulma.io/documentation/layout/media-object/ -->
<article class="media">
<!-- TODO: Replace with profile photo -->
<figure class="media-left">
<p class="image is-128x128"><img class="is-rounded" src="profile.jpg"></p>
</figure>
<div class="media-content">
<div class="content">
<!-- TODO: Replace with contact information -->
<p>
<strong>Dharti Madeka</strong><br/>
CS Major, <a href="https://www.usfca.edu/">University of San Francisco</a><br/>
<em>Expected Graduation: May, 2020</em><br/>
<i class="fas fa-envelope"></i> <a href="mailto:[email protected]">[email protected]</a>
<br/>
<i class="fab fa-github-alt"></i> <a href="https://github.com/Dhartim">Github</a>
<br/>
<i class="fab fa-linkedin-in"></i> <a href="https://www.linkedin.com/in/ dharti-madeka">Linkedin</a>
<br/>
</p>
<!-- TODO: Replace or remove tags -->
<!-- https://bulma.io/documentation/elements/tag/ -->
<div class="heading">Skills</div>
<div class="tags">
<span class="tag">Java</span>
<span class="tag">JavaScript</span>
<span class="tag">HTML</span>
<span class="tag">CSS</span>
<span class="tag">Github / Git</span>
<span class="tag">BootStrap</span>
<span class="tag">REST</span>
<span class="tag">UI/UX Design thinking</span>
<span class="tag">ReactJS</span>
<span class="tag">MySQL</span>
<span class="tag">OracleDB</span>
<span class="tag">PostgreSQL</span>
</div>
</div>
</div>
</article>
<!-- End profile box -->
</div>
<!-- End page content -->
</div>
</section>
<!-- Page footer -->
<!-- https://bulma.io/documentation/layout/footer/ -->
<footer class="footer">
<div class="content has-text-centered is-size-7">
<p>
<a href="#top">
<span class="fas fa-arrow-up"></span>
<span class="has-text-weight-medium">Back to Top</span>
</a>
</p>
<p>
<!-- TODO: Change to link to your Github repository -->
<a href="https://github.com/Dhartim" class="button is-small" style="padding-left: 1em; padding-right: 1em;">
<i class="fab fa-github-alt"></i> <strong>Github</strong>
</a>
<a href="https://fontawesome.com/" class="button is-small" style="padding-left: 1em; padding-right: 1em;">
<i class="fab fa-font-awesome"></i> <strong>FontAwesome</strong>
</a>
<a href="https://bulma.io" class="button is-small">
<img src="https://bulma.io/images/made-with-bulma--semiblack.png" alt="Made with Bulma" width="128" height="24">
</a>
</p>
</div>
</footer>
<!-- End page footer -->
<!-- Mobile menu responsiveness -->
<!-- https://bulma.io/documentation/components/navbar/ -->
<script>
document.addEventListener('DOMContentLoaded', () => {
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
if ($navbarBurgers.length > 0) {
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
const target = el.dataset.target;
const $target = document.getElementById(target);
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
<!-- End mobile menu responsiveness -->
</body>
</html>