-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
736 lines (699 loc) · 44.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Gareth Quirke responsive CV</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Gareth Quirke">
<meta name="description" content="responsive CV">
<!-- Stylesheets and libs -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="styles/style.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="styles/hover-min.css" rel="stylesheet">
<link href="styles/circle.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="libs/flowtype.js"></script>
<!-- google api font: roboto and favicon for site-->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="icon" href="images/favicon.ico">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- responsive font size using flowtype.js -->
<script>
$('body').flowtype({
minimum : 500,
maximum : 1200,
minFont : 12,
maxFont : 40,
fontRatio : 45
});
</script>
</head>
<body>
<!-- content container -->
<div class="container" id="top">
<div class="social container-fluid">
<ul class="social-list list-inline">
<li><a href="https://github.com/garethquirke"><i class="fa fa-github fa-3x" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/garethquirke"><i class="fa fa-linkedin-square fa-3x" aria-hidden="true"></i></a></li>
<div class="input-group col-md-3">
<input type="text" class="search-query form-control" placeholder="Search.." />
<span class="input-group-btn">
<button class="btn btn-danger" type="button">
<span class="glyphicon glyphicon-search"></span>
</button>
</span>
</div>
</ul>
</div>
<div class="jumbotron jumbotron-fluid">
<div class="row">
<div class="col-lg-2 col-xs-5 col-md-4">
<img src="images/profile.PNG" alt="profile image" class="img-thumbnail">
</div>
<div class="col-lg-6 col-xs-12 col-md-8">
<h1>Gareth Quirke</h1>
<p>Computer Science student</p>
<br>
</div>
</div>
</div>
</div>
<!--
Sections: [About me] , [Education], [Experience] , [Projects] , [Google map] , [Contact Me]-->
<div class="container sections">
<div class="row headers-row">
<div class="col-lg-2 col-md-4 col-xs-6 central">
<a href="#about" class="hvr-float">
<i class="fa fa-male fa-3x" aria-hidden="true"></i>
<h2 class="section-text">About Me</h2>
</a>
</div>
<div class="row headers-row">
<div class="col-lg-2 col-md-4 col-xs-6 central">
<a href="#education" class="hvr-float">
<i class="fa fa-graduation-cap fa-3x" aria-hidden="true"></i>
<h2 class="section-text">Education</h2>
</a>
</div>
<div class="col-lg-2 col-md-4 col-xs-6 central">
<a href="#experience" class="hvr-float">
<i class="fa fa-briefcase fa-3x" aria-hidden="true"></i>
<h2 class="section-text">Experience</h2>
</a>
</div>
<div class="col-lg-2 col-md-4 col-xs-6 central">
<a href="#projects" class="hvr-float">
<i class="fa fa-flask fa-3x" aria-hidden="true"></i>
<h2 class="section-text">Projects</h2>
</a>
</div>
<div class="col-lg-2 col-md-4 col-xs-6 central">
<a href="#github" class="hvr-float">
<i class="fa fa-github fa-3x" aria-hidden="true"></i>
<h2 class="section-text">Github</h2>
</a>
</div>
<div class="col-lg-2 col-md-4 col-xs-6 central">
<a href="#location" class="hvr-float">
<i class="fa fa-globe fa-3x" aria-hidden="true"></i>
<h2 class="section-text">Location</h2>
</a>
</div>
<div class="col-lg-2 col-md-4 col-xs-6 central">
<a href="#contact" class="hvr-float">
<i class="fa fa-handshake-o fa-3x" aria-hidden="true"></i>
<h2 class="section-text">Contact</h2>
</a>
</div>
</div>
<div class="row" id="about">
<div id="content" class="col-lg-11 col-md-12 col-xs-12">
<h3><i class="fa fa-male fa-2x" aria-hidden="true"></i> About Me</h3>
<hr>
<p>
I’m a 20-year-old student currently in my third year studying for my BSc in Computing at Institute of Technology Tallaght. I have just begun my fourth year of college for the honours degree. I have chosen to focus this year’s project on an educational app to assist children with maths. I first gained experience teaching from volunteering at a CoderDojo group that runs at the college twice a month. The experience gained here mentoring young people influenced my project domain. My most recent experience comes from an internship within the ICT sector of the Department of Social Protection. As an intern, I learned to effectively work in a group and assist productivity daily.
</p>
<br>
<h4>IT Skills</h4>
<ul class="skill-list">
<li>Confident Java developer.</li>
<li>Developing my C++ skills often in visual studio environment and through gcc via Linux terminal.</li>
<li>Developing my skills in C# further this year.</li>
<li>Experienced in SQL within oracle, postgres and windows server DBMS</li>
<li>Experience with frontend frameworks such as Bootstrap and Angular JS.</li>
<li>Confident developer within ASP.NET web application framework.</li>
<li>Strong knowledge of automated testing for both unit tests and browser automation tools such as Selenium.</li>
<li>The ability to develope applications in WPF with C#.</li>
<li>Experience with three cloud providers:
<ul>
<li>Microsoft’s Azure cloud platform.</li>
<li>Amazon's AWS.</li>
<li>IBM's' Bluemix.</li>
</ul>
</li>
<li>Competent user of Windows and Linux Operating Systems in system administration.</li>
<li>Confident user of Linux systems - published YouTube videos on my channel featuring tutorials.</li>
<li>Intermediate user of android studio environment and the android SDK.</li>
<li>Experienced with backend development using Node JS and Express.</li>
</ul>
</div>
</div>
<div class="row" id="education">
<div id="content" class="col-lg-11 col-md-12 col-xs-12">
<h3><i class="fa fa-graduation-cap fa-3x" aria-hidden="true"></i> Education</h3>
<hr>
<div class="row" id="education-row">
<div class="education-details col-lg-3 col-md-4 col-xs-12">
<h4>Ephraim Curtis Middle School</h4>
<h5>2008 - 2009</h5>
<br>
<i class="fa fa-map-marker" aria-hidden="true"></i>
<p style="font-size: 0.9em;"> Sudbury, Massachusetts</p>
<br>
<a href="http://www.sudbury.k12.ma.us/curtis/" class="hvr-buzz-out">
<img class="img-circle" src="images/ecms.jpg" alt="CoderDojo image">
</a>
</div>
<div class="experience-description col-lg-9 col-md-8 col-xs-12">
<h4> Details </h4>
<p style="font-size: 1.2em;">
I spent two years at Ephraim curtis Middle school in a small suburb of Boston. I made many new friends at this school
and I also got time to travel to other states across America. I completed my MCAS in maths while in the seventh grade.
</p>
</div>
</div>
<div class="row" id="education-row">
<div class="education-details col-lg-3 col-md-4 col-xs-12">
<h4>Drimnagh Castle Secondary School</h4>
<h5>2009 - 2013</h5>
<br>
<i class="fa fa-map-marker" aria-hidden="true"></i>
<p style="font-size: 0.9em;"> Drimnagh, Dublin 12</p>
<br>
<a href="https://en.wikipedia.org/wiki/Drimnagh_Castle_Secondary_School" class="hvr-buzz-out">
<img class="img-circle" src="images/dc.gif" alt="drimnagh castle image">
</a>
</div>
<div class="education-description col-lg-9 col-md-8 col-xs-12">
<h4> Details </h4>
<p style="font-size: 1.2em;">
I completed my leaving cert at Drimnagh Castle. I built up my interest in computer science here by taking
technology and science modules.
</p>
</div>
</div>
<div class="row" id="education-row">
<div class="education-details col-lg-3 col-md-4 col-xs-12">
<h4>Institute of Technology Tallaght</h4>
<h5>2013 - present</h5>
<br>
<i class="fa fa-map-marker" aria-hidden="true"></i>
<p style="font-size: 0.9em;">Tallaght, Dublin</p>
<br>
<a href="http://www.it-tallaght.ie/index.cfm/page/course?id=146" class="hvr-buzz-out">
<img class="img" src="images/itt.png" alt="itt tallaght image">
</a>
</div>
<div class="education-description col-lg-9 col-md-8 col-xs-12">
<h4> Details </h4>
<p style="font-size: 1.2em;">
I began my undergraduate degree here at ITT in 2013. The course I chose was Bachelor of Science (Honours) in Computing.
Since then I have picked up a wide range of IT skills that will benefit me in the future. The college has a strong emphasis
on practical work and focuses on giving students the oppurtunites for a career as a system developer, database administratrator,
system analysts or network engineers.
</p>
</div>
<div class="education-description col-lg-9 col-md-8 col-xs-12">
<h4> Grades </h4>
<ul class="nav nav-pills">
<li>
<a href="#y1" data-toggle="tab" >1st Year</a>
</li>
<li>
<a href="#y2" data-toggle="tab" >2nd Year</a>
</li>
<li>
<a href="#y3" data-toggle="tab">3rd Year</a>
</li>
<li>
<a href="#y4" data-toggle="tab" >4th Year</a>
</li>
</ul>
<div class="tab-content">
<div id="y1" class="tab-pane fade">
<div id="gpa-circle">
<h5>GPA<h5>
<div class="c100 p70 center">
<span>2.79</span>
<div class="slice"><div class="bar"></div><div class="fill"></div></div>
</div>
</div>
<br>
<h5>Semester 1</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>Software Development</td><td>B-</td></tr>
<tr><td>Computer Architecture</td><td>B</td></tr>
<tr><td>Web Development Fundamentals</td><td>B</td></tr>
<tr><td>Business and information Systems </td><td>B-</td></tr>
<tr><td>Discrete Mathematics 1</td><td>B-</td></tr>
<tr><td>Learning to Learn</td><td>B</td></tr>
</tbody>
</table>
<br>
<h5>Semester 2</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>Software Development 2</td><td>B+</td></tr>
<tr><td>Object Orientated System Analysis</td><td>C</td></tr>
<tr><td>Social Media Communications </td><td>B</td></tr>
<tr><td>Statistics</td><td>B-</td></tr>
<tr><td>Database Fundamentals</td><td>C+</td></tr>
<tr><td>Operating Systems Fundamentals</td><td>C+</td></tr>
</tbody>
</table>
</div>
<div id="y2" class="tab-pane fade">
<div id="gpa-circle">
<h5>GPA<h5>
<div class="c100 p78 center">
<span>3.04</span>
<div class="slice"><div class="bar"></div><div class="fill"></div></div>
</div>
</div>
<br>
<h5>Semester 3</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>Software Development 3</td><td>C</td></tr>
<tr><td>Software Quality Assurance </td><td>A</td></tr>
<tr><td>Networking 1</td><td>C</td></tr>
<tr><td>Database design and programming</td><td>B</td></tr>
<tr><td>Discrete Mathematics 2</td><td>A</td></tr>
<tr><td>Web Design and Development </td><td>B</td></tr>
</tbody>
</table>
<br>
<h5>Semester 4</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>Software Development 2</td><td>B+</td></tr>
<tr><td>Year 2 Software Project</td><td>A</td></tr>
<tr><td>Networking 2</td><td>B+</td></tr>
<tr><td>Management Science</td><td>B</td></tr>
<tr><td>Object orientated analysis and Design</td><td>C</td></tr>
<tr><td>information Security</td><td>B</td></tr>
</tbody>
</table>
</div>
<div id="y3" class="tab-pane fade">
<div id="gpa-circle">
<h5>GPA<h5>
<div class="c100 p75 center">
<span>2.96</span>
<div class="slice"><div class="bar"></div><div class="fill"></div></div>
</div>
</div>
<br>
<h5>Semester 5</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>Cloud Services and distributed Computing </td><td>B-</td></tr>
<tr><td>Advanced Databases</td><td>B</td></tr>
<tr><td>Innovation and Entrepreneurship</td><td>C+</td></tr>
<tr><td>Algorithms and Data Structures</td><td>B</td></tr>
<tr><td>Operating Systems</td><td>C+</td></tr>
<tr><td>Web Design and Development 2</td><td>B</td></tr>
</tbody>
</table>
<br>
<h5>Semester 6</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>Work Placement Module</td><td>PASS</td></tr>
<tr><td>Industry Project</td><td>A</td></tr>
</tbody>
</table>
</div>
<div id="y4" class="tab-pane fade">
<div id="gpa-circle">
<h5>GPA<h5>
<div class="c100 p74 center">
<span> 2.94 </span>
<div class="slice"><div class="bar"></div><div class="fill"></div></div>
</div>
</div>
<br>
<h5>Semester 7</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>4th Year Project</td><td> B </td></tr>
<tr><td>Enterprise Application Development</td><td> C+ </td></tr>
<tr><td>Information Management</td><td> B </td></tr>
<tr><td>Interactive Media Design</td><td> B </td></tr>
<tr><td>Social Media Analysis</td><td> C+ </td></tr>
<tr><td>Enterprise Applications Architecture</td><td> B- </td></tr>
</tbody>
</table>
<h5>Semester 8</h5>
<table class="table">
<thead>
<tr><th>Module</th><th>Grade</th></tr>
</thead>
<tbody>
<tr><td>4th Year Project</td><td> B </td></tr>
<tr><td>Computational Theory</td><td> B+ </td></tr>
<tr><td>Enterprise Database Technologies</td><td> B </td></tr>
<tr><td>Enterprise Application Development 2</td><td> B </td></tr>
<tr><td>Algorithms and Computation</td><td> B </td></tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row" id="experience">
<div id="content" class="col-lg-11 col-md-12 col-xs-12">
<h3><i class="fa fa-briefcase fa-2x" aria-hidden="true"></i> Experience</h3>
<hr>
<div class="row" id="experience-row">
<div class="experience-details col-lg-3 col-md-4 col-xs-12">
<h4>Coder Dojo</h4>
<h5>2015 - Present</h5>
<br>
<i class="fa fa-map-marker" aria-hidden="true"></i>
<p style="font-size: 0.9em;">ITT Dublin</p>
<br>
<a href="https://zen.coderdojo.com/dojo/ie/dublin/it-tallaght-tallaght-dublin-24/tallaght-tallaght-institute-of-technology" class="hvr-buzz-out">
<img class="img-circle" src="images/coderdojo.png" alt="CoderDojo image">
</a>
</div>
<div class="experience-description col-lg-9 col-md-8 col-xs-12">
<h4> Summary </h4>
<p style="font-size: 1.2em;">I have been a mentor at CoderDojo since October 2015, teaching young people and helping them learn skills such as scratch,
CSS HTML and JavaScript.It has been a great experience and I look forward to continuing it for the remainder of my time in college.
</p>
</div>
</div>
<div class="row" id="experience-row">
<div class="experience-details col-lg-3 col-md-4 col-xs-12">
<h4>Department of Social Protection</h4>
<h5>January - August 2016</h5>
<br>
<i class="fa fa-map-marker" aria-hidden="true"></i>
<p style="font-size: 0.9em;">Con Colbert House, Kilmainham, Dublin 8</p>
<br>
<a href="http://www.welfare.ie/en/Pages/Service-Delivery-Modernisation-SDM-Programme.aspx" class="hvr-buzz-out"><img class="img-circle" src="images/dsp.jpg" alt="DSP ICT information"></a>
</div>
<div class="experience-description col-lg-9 col-md-8 col-xs-12">
<h4> Summary </h4>
<p style="font-size: 1.2em;">
I began my internship at the end of January of 2016 as an Executive Officer. I was given a developer’s role within the very active RSD team (Regional Service Delivery)
which manages two massive sites MyWelfare and MyGovID. I attended stand up meetings every morning to listen in to the team and discuss my goals of the day or problems I faced.
Often I was given duties to solve bugs found across various devices such as mobile phones and tablets. I spent time with a lead developer through the back and front end of the
MyWelfare site and how to solve bugs or create unit tests which followed the AAA format (Arrange, Act, Assert).
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-offset-10 col-md-offset-3" id="spacer">
<!-- Space between sections and content -->
</div>
</div>
<div class="row" id="projects">
<div id="content" class="col-lg-11 col-md-12 col-xs-12">
<h3><i class="fa fa-flask fa-2x" aria-hidden="true"></i> Projects</h3>
<hr>
<div class="row" id="project-row">
<div class="project-details col-lg-3 col-md-4 col-xs-12">
<h4>Arctic Monkeys Fan Website</h4>
<h5>Winter 2014</h5>
<br><br><br><br>
</div>
<div class="project-overview col-lg-9 col-md-8 col-xs-12">
<h4> Overview </h4>
<p style="font-size: 1.2em;">
This is a project that acted as a fan site for the music bands Metallica and Arctic Monkeys. I completed this project with
one other person hence the mix in music genres. The first task was to create a static site that gave visitors more information
and the next stage was to implement play framework to handle requests.
</p>
</div>
<div class="education-description col-lg-9 col-md-8 col-xs-12">
<h4> Additional Information </h4>
<ul class="nav nav-pills">
<li>
<a href="#gallery-am" data-toggle="tab"> Gallery </a>
</li>
<li>
<a href="#technology-used-am" data-toggle="tab">Technologies Featured</a>
</li>
</ul>
<br>
<div class="tab-content">
<div id="gallery-am" class="tab-pane fade">
<div class="row">
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/am.png" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
</div>
</div>
<div class="tab-content">
<div id="technology-used-am" class="tab-pane fade">
<span class="label label-info">HTML</span>
<span class="label label-info">CSS</span>
<span class="label label-info">Play Framework</span>
<span class="label label-info">JavaScript</span>
</div>
</div>
</div>
</div>
</div>
<div class="row" id="project-row">
<div class="project-details col-lg-3 col-md-4 col-xs-12">
<h4>Movie and Game Rental System</h4>
<h5>2015</h5>
</div>
<div class="project-overview col-lg-9 col-md-8 col-xs-12">
<h4> Overview </h4>
<p style="font-size: 1.2em;">
In a group of three, we completed a fully functional rental system made with Java. The application interacted
directly with an Oracle Database to allow users to complete actions such as pre-ordering a movie or returning a movie.
Additional functionality added to this project include a video player which allowed customers to view a trailer before
choosing an item and also a basket incase the customer wanted to buy more items on the same order.
This project boosted my collaboration skills since it was group based. I found that communication was a key element to the groups success.
</p>
</div>
<div class="education-description col-lg-9 col-md-8 col-xs-12">
<h4> Additional Information </h4>
<ul class="nav nav-pills">
<li>
<a href="#gallery-dante" data-toggle="tab"> Gallery </a>
</li>
<li>
<a href="#technology-used-dante" data-toggle="tab">Technologies Featured</a>
</li>
</ul>
<br>
<div class="tab-content">
<div id="gallery-dante" class="tab-pane fade">
<div class="row">
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/d1.PNG" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/d11.PNG" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
</div>
</div>
<div class="tab-content">
<div id="technology-used-dante" class="tab-pane fade">
<span class="label label-info">Java</span>
<span class="label label-info">Oracle SQL Server</span>
<span class="label label-info">JDBC</span>
<span class="label label-info">Oracle DBMS</span>
<span class="label label-info">Rational Rhapsody</span>
<span class="label label-info">Github</span>
</div>
</div>
</div>
</div>
</div>
<div class="row" id="project-row">
<div class="project-details col-lg-3 col-md-4 col-xs-12">
<h4>Industry Project - Automated Testing </h4>
<h5>2015</h5>
</div>
<div class="project-overview col-lg-9 col-md-8 col-xs-12">
<h4> Overview </h4>
<p style="font-size: 1.2em;">
As an intern at the Department of Social Protection, I was given the task to automate testing to decrease the time taken from other developers during regression testing. I implemented an application made using WPF – Windows Presentation Foundation. This was designed to replace some of the important use cases that were tested on the various environments set up by the department. The application ran tests and produced a log which could be shared among lead architects and team managers. Another part of this project was to create an analytical dashboard that could monitor the health of the systems. This web application was hosted on the cloud.
</p>
</div>
<div class="education-description col-lg-9 col-md-8 col-xs-12">
<h4> Additional Information </h4>
<ul class="nav nav-pills">
<li>
<a href="#gallery-dsp" data-toggle="tab"> Gallery </a>
</li>
<li>
<a href="#technology-used-dsp" data-toggle="tab">Technologies Featured</a>
</li>
</ul>
<br>
<div class="tab-content">
<div id="gallery-dsp" class="tab-pane fade">
<div class="row">
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/dsp1.png" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/dsp2.png" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/dsp3.png" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
</div>
</div>
<div class="tab-content">
<div id="technology-used-dsp" class="tab-pane fade">
<span class="label label-info">C#</span>
<span class="label label-info">Windows Presentation Foundation - WPF</span>
<span class="label label-info">SQL Server 2014</span>
<span class="label label-info">Selenium API</span>
<span class="label label-info">Selenium Web Driver</span>
<span class="label label-info">HTML</span>
<span class="label label-info">CSS</span>
<span class="label label-info">Bootstrap</span>
<span class="label label-info">ASP.net</span>
<span class="label label-info">MVC</span>
<span class="label label-info">Chart JS</span>
<span class="label label-info">Visual Studio</span>
</div>
</div>
</div>
</div>
</div>
<div class="row" id="project-row">
<div class="project-details col-lg-3 col-md-4 col-xs-12">
<h4>Interactive Maths</h4>
<h5>2017</h5>
</div>
<div class="project-overview col-lg-9 col-md-8 col-xs-12">
<h4> Overview </h4>
<p style="font-size: 1.2em;">
My project is a Web Application designed to cater for young people learning maths through fun games to test and grow their skills. I created a set of games to test skills in fundamental maths skills such as addition, multiplication and algebra. The games are developed in JavaScript with the help of the Phaser framework. Phaser renders the game in either WebGL or Canvas depending on the device used to access the site. Achieving a high score in any of the game will boast a high ranking on the scoreboard.
Other aspects of my site include an examination notes section to assist learning in other areas of maths and comprises of a means for other users to discuss each lesson between themselves. This is a premium feature of the site that is accessible via payment through stripe. In order to add to the interactive feel to the site, I leveraged the library SignalR to create real time communications over HTTP. This enabled me to send push notifications to the users of the site. There is also an administration dashboard that acts as a CMS and provides an overview of the activity on the site through various graphs.
</p>
</div>
<div class="education-description col-lg-9 col-md-8 col-xs-12">
<h4> Additional Information </h4>
<ul class="nav nav-pills">
<li>
<a href="#gallery-maths" data-toggle="tab"> Gallery </a>
</li>
<li>
<a href="#technology-used-maths" data-toggle="tab">Technologies Featured</a>
</li>
</ul>
<br>
<div class="tab-content">
<div id="gallery-maths" class="tab-pane fade">
<div class="row">
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/41.PNG" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/42.PNG" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/43.PNG" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/45.PNG" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
<div class="col-lg-4 col-sm-6 col-xs-12">
<img src="images/projects/46.PNG" alt="http://placehold.it/800x600" class="thumbnail img-responsive">
</div>
</div>
</div>
<div class="tab-content">
<div id="technology-used-maths" class="tab-pane fade">
<span class="label label-info">C#</span>
<span class="label label-info">ASP .NET</span>
<span class="label label-info">JavaScript</span>
<span class="label label-info">Phaser</span>
<span class="label label-info">Entity Framework</span>
<span class="label label-info">SignalR</span>
<span class="label label-info">Stripe</span>
<span class="label label-info">Azure</span>
<span class="label label-info">Bitbucket</span>
<span class="label label-info">Chart JS</span>
<span class="label label-info">Visual Studio</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Dynamically pull my github repos in using github api and jquery-->
<div class="row" id="github">
<div id="content" class="col-lg-11 col-md-12 col-xs-12">
<h3><i class="fa fa-github fa-2x" aria-hidden="true"></i> Github</h3>
<br>
<h4>My active repositories on Github</h4>
<br>
<div id="github-projects" class="col-lg-11 col-md-12 col-xs-12">
<script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="libs/git.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#github-projects").loadRepositories("garethquirke");
});
</script>
</div>
</div>
</div>
<div class="row" id="location">
<div id="content" class="col-lg-11 col-md-12 col-xs-12">
<h3><i class="fa fa-globe fa-2x" aria-hidden="true"></i> Location</h3>
<br>
<script src='https://maps.googleapis.com/maps/api/js?v=3.exp&key=AIzaSyCfxiQTf2iTK5InwL4RmCoKJ9yyogHrRKM'></script><div style='overflow:hidden;height:487px;width:710px;'><div id='gmap_canvas' style='height:487px;width:710px;'></div><style>#gmap_canvas img{max-width:none!important;background:none!important}</style></div> <a href='https://www.embed-map.net/'>google maps on my website</a> <script type='text/javascript' src='https://embedmaps.com/google-maps-authorization/script.js?id=fb6f9f4c1df911d738e1097f3e692c2d094e80b3'></script><script type='text/javascript'>function init_map(){var myOptions = {zoom:12,center:new google.maps.LatLng(53.3192335,-6.3320966),mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);marker = new google.maps.Marker({map: map,position: new google.maps.LatLng(53.3192335,-6.3320966)});infowindow = new google.maps.InfoWindow({content:'<strong></strong><br>Walkinstown <br>Dublin 12 Dublin<br>'});google.maps.event.addListener(marker, 'click', function(){infowindow.open(map,marker);});infowindow.open(map,marker);}google.maps.event.addDomListener(window, 'load', init_map);</script>
</div>
</div>
<div class="row" id="contact">
<div id="content" class="col-lg-11 col-md-12 col-xs-12">
<h3><i class="fa fa-handshake-o fa-2x" aria-hidden="true"></i> Contact</h3>
<br>
<div class="col-lg-8 col-md-6 col-xs-12">
<!-- Contact methods -->
<div class="list-group" id="contact-methods">
<a class="list-group-item" href="https://1drv.ms/w/s!AnvQXstWYIRwjDLa-HFClzzpAdDN"><i class="fa fa-download fa-2x" aria-hidden="true"></i> Download a copy of my CV</a>
<a class="list-group-item" href="mailto:gareth.quirke@gmail.com"><i class="fa fa-envelope fa-2x"></i> gareth.quirke@gmail.com</a>
<a class="list-group-item" href="tel: 0857512994"><i class="fa fa-phone fa-2x"></i> 0857512994</a>
</div>
</div>
</div>
</div>
<!-- this div is needed to space content margin -->
</div>
</div>
<div class="row">
<div class="col-lg-offset-10 col-md-offset-3" id="spacer">
<!-- Space between sections and content -->
</div>
</div>
<div class="navbar navbar-fixed-bottom footer">
<p class="text-muted">Gareth Quirke interactive CV
<a href="#top"><i class="fa fa-angle-up fa-3x" aria-hidden="true"></i></a>
</p>
</div>
</body>
</html>