-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1722 lines (1588 loc) · 67.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
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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- Head
================================================== -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Portfolio-ConorGriffin</title>
<!-- Bootstrap core css -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="bootstrap/css/style.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="../../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Just for debugging purposes. -->
<script src="../../assets/js/ie-emulation-modes-warning.js"></script>
<!-- font awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link href="vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
</head>
<body>
<!-- Navbar
================================================== -->
<div class="container-fluid">
<!--banner 1-->
<div id="banner" class="container-fluid">
<div class="col-lg-3" style="height: 100%">
<a id="site-logo" href="#QuickHeadings">
<img src="Images/terminal-icon.png" alt="Conor placeholder image" height="80px" width="80px">
</a>
</div>
<div class="col-lg-6" style="height: 100%">
<div class="row-fluid" style="padding-top:30px;">
<h1 style="text-align:center;">WELCOME TO MY PORTFOLIO SITE!</h1>
</div>
</div>
<div class="col-lg-3" style="height: 100%">
<div class="nav-collapse collapse" style="height:auto;">
<ul class="nav navbar-nav" id="dropdownwidth">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" title="Conor Griffin" id="drop">
<i class="fa fa-chevron-down"></i>
Conor Griffin
<img src="Images/conorgriffin.jpg" alt="Conor placeholder image" title="Conor Griffin" class="userpicture">
</a>
<ul class="dropdown-menu">
<li>
<a title="Interests" href="#Interests">
<i class="fa fa-futbol-o"></i>
Interests
</a>
</li>
<li>
<a title="Contact Me" href="#Contact">
<i class="fa fa-phone"></i>
Contact Me
</a>
</li>
<li>
<a title="Send Email" href="#Contact">
<i class="fa fa-envelope"></i>
Send Email
</a>
</li>
<li>
<a href="CV/ConorGriffinCV.doc" download="ConorGriffinCV.doc">
<i class="fa fa-file-text-o"></i>
Download CV
</a>
</li>
<li class="dropdown-header">Links</li>
<li>
<a title="Github" href="https://github.com/conorgriffin1995">
<i class="fa fa-github"></i>
Github
</a>
</li>
<li>
<a title="LinkedIn" href="https://www.linkedin.com/in/conorgriffin2/">
<i class="fa fa-linkedin"></i>
LinkedIn
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!--line 2-->
<div id="line" class="container-fluid">
<div class="row-fluid">
<div class="c c1"></div>
<div class="c c2"></div>
<div class="c c3"></div>
<div class="c c4"></div>
</div>
</div>
<!--menu 3-->
<nav class="navbar navbar-default" data-spy="affix" data-offset-top="197">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle hidden-m" data-toggle="collapse" data-target=".nav-collapse" aria-expanded="false"
aria-controls=".nav-collapse">
<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="nav-collapse collapse">
<ul class="nav navbar-nav" id="nav">
<li>
<a href="#">
<i class="fa fa-home"></i> Home</a>
</li>
<li>
<a href="#QuickHeadings">
<i class="fa fa-user"></i> About</a>
</li>
<li>
<a href="#Education">
<i class="fa fa-book"></i> Education</a>
</li>
<li>
<a href="#Grades">
<i class="fa fa-graduation-cap"></i> Grades</a>
</li>
<li>
<a href="#QuickHeadings">
<i class="fa fa-terminal"></i> Skills</a>
</li>
<li>
<a href="#WorkExperience">
<i class="fa fa-building"></i> Work Experience</a>
</li>
<li>
<a href="#Projects">
<i class="fa fa-files-o"></i> Projects</a>
</li>
<li>
<a href="bootstrap.html">Bootstrap</a>
</li>
</ul>
<form id="searchsite" class="navbar-form navbar-right">
<input id="txtsearch" type="text" class="form-control" placeholder="Search..."> </form>
</div>
</div>
</div>
</nav>
</div>
</div>
<!--Parallax-->
<div class="parallax"></div>
<!-- Quick Headings
================================================== -->
<div class="container QuickHeadings" id="QuickHeadings">
<div class="page-header">
<h1></h1>
</div>
<div class="row">
<div class="col-lg-3">
<img class="img-circle" src="Images/conor.PNG" alt="conor placeholder image" width="150" height="200">
<h2>About</h2>
<p>
I am 22 year old student at IT Tallaght studying Computing. Currently in 4th year hoping to graduate with a level 2:1 honours
degree. I love music and football and enjoy playing and watching sports.
</p>
<p>
<a class="btn btn-default" data-toggle="modal" data-target="#aboutMeModal">View More About Me »</a>
</p>
</div>
<div class="col-lg-3">
<img class="img-circle" src="Images/softwaredev.png" alt="Skills placeholder image" width="200" height="200">
<h2>Technical Skills</h2>
<p>
Over the last 4 years I have developed my Software Development skills, I have become familiar and am condident in my skills
at developing in languages such as Java, C#, .NET, PowerShell, C++.
</p>
<p>
<a class="btn btn-default" data-toggle="modal" data-target="#skillsModal">Technical Skills »</a>
</p>
</div>
<div class="col-lg-3">
<img class="img-circle" src="Images/softskills.jpg" alt="Skills placeholder image" width="200" height="200">
<h2>Soft Skills</h2>
<p>
Over the last 4 years I have developed my personal and soft skills through group projects, making friends, joining societies
and interacting with other students in class.
</p>
<p>
<a class="btn btn-default" data-toggle="modal" data-target="#softSkillsModal">Soft Skills »</a>
</p>
</div>
<div class="col-lg-3">
<img class="img-circle" src="Images/Education.jpg" alt="Education placeholder image" width="200" height="200">
<h2>College Results</h2>
<p>
I have studied modules from Software Development to Database, Web Design, Mathematics, Networking etc. Take a look at the
modules I have studied and been examined on.
</p>
<p>
<a class="btn btn-default" href="#Grades" role="button">View Results »</a>
</p>
</div>
</div>
</div>
<br/>
<br/>
<!-- Technical skills modal
=================================================== -->
<div class="modal fade" id="skillsModal" role="dialog">
<div class="modal-dialog modal-lg">
<!--Modal Content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title">Technical & Software Development Skills</h1>
</div>
<div class="modal-body">
<span class="close" data-dismiss="modal">×</span>
<h2>Languages</h2>
<img class="img-circle" src="Images/Java.png" alt="java placeholder image" width="75" height="75">
<p>I Studied Java development for 2 years. Acheived a grade B in year 1 and B+ year 2. Covered topics such as Inheritance,
Composition, Aggregation, File IO, Inner classes, Interfaces and Collections.</p>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100" style="width: 70%;">
<span class="sr-only"></span>70% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/csharp.png" alt="c# placeholder image" width="75" height="75">
<p>I am Studying C# development for 4th year in the module Enterprise Application Development and will be implementing
my project in C#. Covered topics such as Inheritance, Interfaces, Collections, Delegates, Indexers, Lambda expressions,
Unit testing, Overloaded Assignment, enums and more.</p>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100" style="width: 70%;">
<span class="sr-only"></span>70% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/cplus.png" alt="c++ placeholder image" width="75" height="75">
<p>In my 3rd year in college I studied C++ development for the module Algorithms & Data Structures, acheiving a grade
B-. I wrote various programs using classes and structs. We looked at writing our own stacks, queues. We also
looked at hashing, copy assignment, overloaded operators and circular arrays.</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"
style="width: 50%;">
<span class="sr-only"></span>50% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/sql.png" alt="sql placeholder image" width="75" height="75">
<p>From years 1-3 in college I studied database and SQL programming. I am confident in my ability to monitor and control
a database. I have used oracle and Microsoft database applications. I am also getting familiar with cloud database
programming using Microsoft Azure. I studied querying a database, using and creating constraints, indexes, triggers.
I also did a little bit of PL/SQL programming.
</p>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100" style="width: 70%;">
<span class="sr-only"></span>70% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/scala.png" alt="scala placeholder image" width="100" height="75">
<p>I am familiar with Scala programming. I did my 2nd year project in scala using the model view controller layout.
Although I have only done one project in scala I am confident in my skills developing in scala.
</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"
style="width: 50%;">
<span class="sr-only"></span>50% (Skill Level)</div>
</div>
<h2>Frameworks</h2>
<img class="img-circle" src="Images/dotnet.png" alt=".Net placeholder image" width="75" height="75">
<p>Over the last 10 months (01/02/2017 - 01/12/2017) I have looked at and studied Microsofts .NET framework. I am
building my 4th year project using ASP.NET MVC 5. When I was out on work experience in the Department of Social
Protection for 6 months I looked at how they use Microsoft .NET for continuous integration.</p>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="70" aria-valuemin="0"
aria-valuemax="100" style="width: 70%;">
<span class="sr-only"></span>70% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/play.png" alt="play placeholder image" width="75" height="75">
<p>I used the play framework for my 2nd year project. It was a web application that sold music products. We used the
play framework for scalability and compiling the codebases on a JVM.</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"
style="width: 50%;">
<span class="sr-only"></span>50% (Skill Level)</div>
</div>
<h2>Web Development</h2>
<img class="img-circle" src="Images/javascript.png" alt="javascript placeholder image" width="75" height="75">
<p>I have used Javascript for the last 2 years. I used it in modules such as web development, app development and
other projects. I am confident in my skills in writing javascript.
</p>
<div class="progress">
<div class="progress-bar progress-bar-warning progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0"
aria-valuemax="100" style="width: 40%;">
<span class="sr-only"></span>40% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/html.png" alt="html placeholder image" width="75" height="75">
<p>Ever since I started programming I have been writing HTML & CSS. I studied html and css in first year and have
used it for front end development in all my projects.</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"
style="width: 70%;">
<span class="sr-only"></span>70% (Skill Level)</div>
</div>
<h2>Command Line Tools</h2>
<img class="img-circle" src="Images/powershell.png" alt="powershell placeholder image" width="75" height="75">
<p>PowerShell, I have learned how to write scripts using Microsofts PowerShell. When I was out on work experience
at the DSP I learned how to run jobs, create scripts and other command line functionality using PowerShell.
</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"
style="width: 50%;">
<span class="sr-only"></span>50% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/bash.png" alt="bash placeholder image" width="75" height="75">
<p>Bash/Shell, I have become familiar with Linux OS and am confident in my ability to write shell scripts. I am studying
bash at the moment for monitoring performace architecture.</p>
<div class="progress">
<div class="progress-bar progress-bar-danger progress-bar-striped active" role="progressbar" aria-valuenow="30" aria-valuemin="0"
aria-valuemax="100" style="width: 30%;">
<span class="sr-only"></span>30% (Skill Level)</div>
</div>
<h2>Version Control</h2>
<img class="img-circle" src="Images/git.png" alt="git placeholder image" width="75" height="75">
<p>I know how to use git for version control and continuous delivery. I am very confident in my knowledge using git
for CI and group projects.</p>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="30" aria-valuemin="0"
aria-valuemax="100" style="width: 80%;">
<span class="sr-only"></span>80% (Skill Level)</div>
</div>
<img class="img-circle" src="Images/visstudio.png" alt="git placeholder image" width="75" height="75">
<p>I also know how to use visualstudio.com as a source for version control. I am using its platform for CI, I have
set up pipelines for running solutions and am confident in my knowledge using its platform. Each pipeline is
then deployed to Azure.
</p>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="30" aria-valuemin="0"
aria-valuemax="100" style="width: 80%;">
<span class="sr-only"></span>80% (Skill Level)</div>
</div>
<h2>Object Oriented Analysis</h2>
<img class="img-circle" src="Images/uml.png" alt="uml placeholder image" width="75" height="75">
<p>For 2 years in college I studied UML, covering topics such as class diagrams, activity diagrams, use cases, sequence
diagrams and looking at agile development.</p>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped active" role="progressbar" aria-valuenow="60" aria-valuemin="0"
aria-valuemax="100" style="width: 60%;">
<span class="sr-only"></span>60% (Skill Level)</div>
</div>
<div class="row">
<div class="col-md-4">
<h3>Other Skills</h3>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-check"></i>Agile & Scrum Development</li>
<li>
<i class="fa-li fa fa-check"></i>Unit Testing</li>
<li>
<i class="fa-li fa fa-check"></i>MVC Development</li>
</ul>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" style="background-color: black; border-color: black;">Close</button>
</div>
<!--/Modal-Footer-->
</div>
</div>
</div>
<!-- Soft skills modal
================================================== -->
<div class="modal fade" id="softSkillsModal" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title">Soft Skills</h1>
<span class="close" data-dismiss="modal" style="color: black;">×</span>
</div>
<div class="modal-body text-left">
<div class="row">
<div class="col-md-4">
<h3>Collaborative</h3>
<br />
<img src="Images/collab.jpg" alt="collab pic" width="200px" height="150px">
<br />
<p>I am able to collaborate easily with others!</p>
</div>
<div class="col-md-4">
<h3>Punctual</h3>
<br />
<img src="Images/punctual.png" alt="punctual pic" width="150px" height="150px">
<br />
<p>I am always on time.</p>
</div>
<div class="col-md-4">
<h3>Public Speaking</h3>
<br />
<img src="Images/publicspeaking.png" alt="speak pic" width="150px" height="150px">
<br />
<p>I am able to speak to to clients and users about projects.</p>
</div>
</div>
<hr />
<div class="row">
<div class="col-md-4">
<h3>Dedicated</h3>
<br />
<img src="Images/dedicated.jpg" alt="dedicated pic" width="150px" height="150px">
<br />
<p>I am able to collaborate easily with others!</p>
</div>
<div class="col-md-4">
<h3>Friendly</h3>
<br />
<img src="Images/friendly.png" alt="punctual pic" width="150px" height="150px">
<br />
<p>I am friendly with people. I always allow people to express themselves and feel comfortable talking to me.
</p>
</div>
<div class="col-md-4">
<h3>Communicate</h3>
<br />
<img src="Images/communication.jpg" alt="communicate pic" width="200px" height="150px">
<br />
<p>I can communicate with other people. My communication skills allow me to get to know people and build relationships.
</p>
</div>
</div>
<hr />
<div class="row">
<div class="col-md-4">
<h3>Adaptive</h3>
<br />
<img src="Images/adaptive.png" alt="adaptive pic" width="150px" height="150px">
<br />
<p>I am able adapt to a situation quickly.</p>
</div>
<div class="col-md-4">
<h3>Hard Working</h3>
<br />
<img src="Images/hardworking.png" alt="hard work pic" width="200px" height="150px">
<br />
<p>
I am a hard working person and willing to work long hours to get a job done.
</p>
</div>
<div class="col-md-4">
<h3>Critical Thinker</h3>
<br />
<img src="Images/thinker.png" alt="thinker pic" width="200px" height="150px">
<br />
<p>
I think about a problem critically, I break down the factors of a problem and solve each one by one.
</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" style="background-color: black; border-color: black;">Close</button>
</div>
</div>
</div>
</div>
</div>
<!-- About me Modal
=================================================== -->
<div class="modal fade" id="aboutMeModal" role="dialog">
<div class="modal-dialog modal-lg">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title">About Me</h1>
<span class="close" data-dismiss="modal">×</span>
</div>
<div class="modal-body text-left">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Computing</h2>
<p class="lead" style="font-size: 16px; font-style: 'Gill Sans';">
I started studying the theory and practical of computer science in 2014 and have really enjoyed it. I have gained a lot of
knowledge about the infrastructure, performance and architecture of computers. I have also developed many
of my own applications over the years and I am know a confident java and c# developer.
</p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive center-block" src="Images/windows.jpg" alt="Generic placeholder image">
</div>
</div>
<br />
<hr class="featurette-divider">
<br />
<div class="row featurette">
<div class="col-md-7 col-md-push-5">
<h2 class="featurette-heading">Education</h2>
<p class="lead" style="font-size: 16px; font-style: 'Gill Sans';">
Since 2008 I have been studying whether it was for my junior or leaving certificate or 1st, 2nd and 3rd year college exams
I have been increasing my knowledge technical and personal skills.
</p>
</div>
<div class="col-md-5 col-md-pull-7">
<img class="featurette-image img-responsive center-block" src="Images/study.jpg" alt="Generic placeholder image">
</div>
</div>
<br />
<hr class="featurette-divider">
<br />
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">I am a young developer.</h2>
<p class="lead" style="font-size: 16px; font-style: 'Gill Sans';">From studying software development the last 3 years I have grown my coding skills but I am still always looking
to learn more. I think it is important to be eager to learn more gain more knowledge.
</p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive center-block" src="Images/software.jpg" alt="Generic placeholder image">
</div>
</div>
<br />
<hr class="featurette-divider">
<br />
<div class="row featurette">
<div class="col-md-7 col-md-push-5">
<h2 class="featurette-heading">Interested in Cloud Platform Solutions.</h2>
<p class="lead" style="font-size: 16px; font-style: 'Gill Sans';">
Have studied cloud services in college. At the moment I am using Azure cloud services for my 4th year project.</p>
</div>
<div class="col-md-5 col-md-pull-7">
<img class="featurette-image img-responsive center-block" src="Images/Cloud.jpg" alt="Generic placeholder image">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" style="background-color: black; border-color: black;">Close</button>
</div>
</div>
</div>
</div>
<!-- Parallax
=================================================== -->
<div class="parallax"></div>
<!-- Education
================================================== -->
<div class="container Education">
<section class="Grades-section" id="Education">
<div class="page-header">
<h1>Education</h1>
</div>
<div class="row">
<div class="col-lg-4">
<h3></h3>
</div>
<div class="col-lg-4">
<h3>Description</h3>
</div>
<div class="col-lg-4">
<h3>Year</h3>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<img src="Images/ITTallaght.jpg" alt="it tallaght image" height="100%" width="100%">
</div>
<div class="col-lg-4">
<p>Institute Of Technology Tallaght</p>
<p>
I studied Computer Science at IT Tallaght for 4 years. I graduated with a 1.1 Bachelor Honours Degree and throughout
the years I studied many modules to do with computer science such as Software Development, Database Technologies, Algorithms and Computation,
Software Testing, Object Oriented Analysis and have gained many <a href="#QuickHeadings"><b>technical skills.</b></a> I also gained a lot of <a href="#QuickHeadings"><b>soft skills</b></a> from taking part in group projects and
joining societies such as football and table tennis society.
</p>
</div>
<div class="col-lg-4">
<p>September 2014 - June 2018</p>
</div>
</div>
<br />
<br />
<button class="btn btn-primary" onclick="ShowMore()">Show More/Less</button>
<br />
<br />
<div class="row" id="moreResults">
<div class="col-lg-4">
<img src="Images/macdaras.png" alt="it tallaght image" height="100%" width="100%">
</div>
<div class="col-lg-4">
<p>St Mac Daras Community College</p>
<p>
I attended St Mac Daras Community College for 5 years and got 410 points in my Leaving Certificate. There I studied subjects
such as History, Geography, Music, Italian, Maths and Irish. I made a lot of life long friends there and played
sports such as football and GAA.
</p>
</div>
<div class="col-md-4">
<p>September 2008 - June 2013</p>
</div>
</div>
</section>
</div>
<!-- Grades
================================================== -->
<div class="container Grades">
<section class="Grades-section" id="Grades">
<div class="page-header">
<h1>College Grades</h1>
</div>
<!--Tabs-->
<ul class="nav nav-tabs">
<li>
<a data-toggle="tab" href="#Year4">Year 4</a>
</li>
<li>
<a data-toggle="tab" href="#Year3">Year 3</a>
</li>
<li>
<a data-toggle="tab" href="#Year2">Year 2</a>
</li>
<li>
<a data-toggle="tab" href="#Year1">Year 1</a>
</li>
</ul>
<div class="tab-content">
<div id="Year4" class="tab-pane fade in active">
<div class="row">
<br />
<br />
<div class="col-md-12">
<h3>GPA = 3.27</h3>
</div>
<div class="col-md-6">
<h5>Semester 1</h5>
<table class="table">
<thead>
<tr class="bg-primary">
<th>#</th>
<th>Module Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Enterprise Application Development 1</td>
<td>B-</td>
</tr>
<tr>
<td>2</td>
<td>Enterprise Performance Architecture</td>
<td>B</td>
</tr>
<tr>
<td>3</td>
<td>Interactive Media Design</td>
<td>A</td>
</tr>
<tr>
<td>4</td>
<td>Information Management</td>
<td>B</td>
</tr>
<tr>
<td>5</td>
<td>Social Media Analysis</td>
<td>B+</td>
</tr>
<tr>
<td>6</td>
<td>Project</td>
<td>B+</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<h5>Semester 2</h5>
<table class="table">
<thead>
<tr class="bg-primary">
<th>#</th>
<th>Module Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Enterprise App Development 2</td>
<td>C</td>
</tr>
<tr>
<td>2</td>
<td>Algorithms & Computation</td>
<td>B+</td>
</tr>
<tr>
<td>3</td>
<td>Enterprise Database Technologies</td>
<td>B+</td>
</tr>
<tr>
<td>4</td>
<td>Computational Theory</td>
<td>A</td>
</tr>
<tr>
<td>5</td>
<td>Project</td>
<td>B+</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="Year3" class="tab-pane fade">
<div class="row">
<br />
<br />
<div class="col-md-12">
<h3>GPA = 3.07</h3>
</div>
<div class="col-md-6">
<h5>Semester 1</h5>
<table class="table">
<thead>
<tr class="bg-primary">
<th>#</th>
<th>Module Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Algorithms & Data Structures</td>
<td>B-</td>
</tr>
<tr>
<td>2</td>
<td>Cloud Services and Distributed Computing</td>
<td>B+</td>
</tr>
<tr>
<td>3</td>
<td>Web Application Development</td>
<td>B</td>
</tr>
<tr>
<td>4</td>
<td>Operating Systems</td>
<td>B+</td>
</tr>
<tr>
<td>5</td>
<td>Innovation & Entrepreneurship</td>
<td>B</td>
</tr>
<tr>
<td>6</td>
<td>Advanced Databases</td>
<td>B+</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<h5>Semester 2</h5>
<table class="table">
<thead>
<tr class="bg-primary">
<th>#</th>
<th>Module Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Project</td>
<td>B</td>
</tr>
<tr>
<td>2</td>
<td>Work Experience</td>
<td>B+</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="Year2" class="tab-pane fade">
<div class="row">
<br />
<br />
<div class="col-md-12">
<h3>GPA = 3.33</h3>
</div>
<div class="col-md-6">
<h5>Semester 1</h5>
<table class="table">
<thead>
<tr class="bg-primary">
<th>#</th>
<th>Module Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Web Design and Development</td>
<td>B+</td>
</tr>
<tr>
<td>2</td>
<td>Software Development 3 (Java)</td>
<td>B+</td>
</tr>
<tr>
<td>3</td>
<td>Discrete Maths 2</td>
<td>B+</td>
</tr>
<tr>
<td>4</td>
<td>Database Design and Programming</td>
<td>B</td>
</tr>
<tr>
<td>5</td>
<td>Networking 1</td>
<td>B+</td>
</tr>
<tr>
<td>6</td>
<td>Software Quality Assurance & Testing</td>
<td>B</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-6">
<h5>Semester 2</h5>
<table class="table">
<thead>
<tr class="bg-primary">
<th>#</th>
<th>Module Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Information Security</td>
<td>C+</td>
</tr>
<tr>
<td>2</td>
<td>Software Development 4 (Java)</td>
<td>B</td>
</tr>
<tr>
<td>3</td>
<td>Object Oriented Analysis & Design</td>
<td>C+</td>
</tr>
<tr>
<td>4</td>
<td>Management Science</td>
<td>A</td>
</tr>
<tr>
<td>5</td>
<td>Networking 2</td>
<td>B+</td>
</tr>
<tr>
<td>6</td>
<td>Project</td>
<td>B</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="Year1" class="tab-pane fade">
<div class="row">
<br />
<br />
<div class="col-md-12">
<h3>GPA = 3.21</h3>
</div>
<div class="col-md-6">
<h5>Semester 1</h5>
<table class="table">
<thead>
<tr class="bg-primary">
<th>#</th>
<th>Module Name</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Learning to Learn</td>
<td>B</td>
</tr>
<tr>
<td>2</td>
<td>Discrete Maths 1</td>
<td>A</td>
</tr>
<tr>
<td>3</td>
<td>Business & Information Systems</td>
<td>B</td>
</tr>
<tr>
<td>4</td>
<td>Fundamentals of Interface & Web Design</td>
<td>B+</td>
</tr>
<tr>
<td>5</td>
<td>Computer Architecture</td>
<td>B</td>
</tr>
<tr>
<td>6</td>