-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexRecapt.html
1047 lines (946 loc) · 52.2 KB
/
indexRecapt.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>
<?php
if(isset($_POST['send'])){
//print_r($POST)
$url = "https://www.google.com/recaptcha/api/siteverify METHOD: POST";
$data = [
'secret' => '6LfRpK4ZAAAAAGusQuM3-ceQ4Ql5orQpNzjS30mD',
'response' => $_POST['token'],
'remoteip' => $_SERVER['REMOTE_ADDR']
];
$options = array(
'http' => array(
'header' => "Content-type: application/
x-www-dorm-urlencoded\r\n",
'method' =>'POST',
'content' => http_build_query($data)
)
);
$context = stream_context_create($options);
$response = file_get_contents($url, false, $context);
$res = json_decode($response, true);
if($res['success'] == true) {
echo '<div class="alert alert-success"><strong>Success!</strong> Data is saved.
</div>';
}else{
echo '<div class="alert alert-warning"><strong>WARNING!</strong> Failsed to save data.
</div>';
}
}
?>
<!--
filename: index.html
edited by: Ryan Zurrin
edited on: 7/2/2020
discription: template used for the final project from
"http://www.designstub.com/projects/folio-personal-portfolio-template/"
-->
<!--[if lt IE 7 ]> <html class="ie ie6 no-js" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 no-js" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 no-js" lang="en"> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 no-js" lang="en"> <![endif]-->
<!--[if gt IE 9]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<link rel="shortcut icon" href="logo-good.ico" type="image/x-icon">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"><!-- chrome=1"-->
<!-- Metas Page details-->
<title>Ryan Zurrin's Personal Portfolio Page</title>
<meta name="description"
content="OnePage Resume Portfolio for Ryan Zurrin with Artwork, Woodworking projects and personal journal">
<meta name="Ryan Zurrin" content="Portfolio">
<meta name="msaapplication-TileImage" content="logo-good.ico" />
<!-- Mobile Specific Metas-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--main style-->
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css">
<!--google font style-->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!--font-family: 'Metrophobic', serif;-->
<link href='http://fonts.googleapis.com/css?family=Crimson+Text:400,600,400italic,600italic' rel='stylesheet'
type='text/css'>
<!--font-family: 'Open Sans', sans-serif;-->
<!-- font icon css style-->
<link rel="stylesheet" href="css/font-awesome.min.css">
<script src="https://www.google.com/recaptcha/api.js?render=6LfRpK4ZAAAAAJw3Zc2SSuBkw2gBgrc3BZhorPlvy"></script>
<script>
function onClick(e) {
e.preventDefault();
grecaptcha.ready(function() {
grecaptcha.execute('6LfRpK4ZAAAAAJw3Zc2SSuBkw2gBgrc3BZhorPlv', {action: 'submit'}).then(function(token) {
console.log(token);
document.getElementById("token").value = token;
});
});
}
</script>
</head>
<body onLoad="load()" onUnload="GUnload()">
<!-- Preloader -->
<div id="preloader">
<div id="status"></div>
</div>
<!--wrapper start-->
<div class="wrapper noGap" id="wrapper">
<!--Header start -->
<header>
<!--menu start-->
<div class="menu">
<a href="#" class="nav-icon" id="nav-show"><i class="fa fa-bars"></i></a>
<div class="navbar-wrapper">
<div class="container">
<div class="navwrapper">
<div class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="logo"></div>
<div class="navArea"><a href="#" class="closeMenu"><i class="fa fa-times"></i></a>
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span> <span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Menu</a> </div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="menuItem active"><a href="#wrapper">Home</a></li>
<li class="menuItem"><a href="#aboutus">About Me</a></li>
<li class="menuItem"><a href="#experience">Experience</a></li>
<li class="menuItem"><a href="#education">Education</a></li>
<li class="menuItem"><a href="#ourwork">Portfolio</a></li>
<li class="menuItem"><a href="#myjournal">Journal</a></li>
<li class="menuItem"><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End Navbar -->
</div>
</div>
</div>
<!--menu end-->
<!--banner start-->
<div class="banner row" id="banner">
<div class="bannerText">
<h1>I'm Ryan Zurrin</h1>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 noPadd slides-container" style="height:100%">
<!--background slide show start-->
<div class="slide">
<img src="images/header-image/ryanzpaintingshow.png" alt="Ryan Zurrin Painting"> </div>
<div class="slide">
<img src="images/header-image/ryanzlookcool.png" alt="Ryan Zurrin with a painting"> </div>
<div class="slide">
<img src="images/header-image/ryanwaterfallhike.png" alt="Ryan Zurrin hiking "> </div>
<div class="slide">
<img src="images/header-image/swampflower.JPG" alt="swamp lilly"> </div>
<!--background slide show end-->
</div>
</div>
<!--banner end-->
</header>
<!--Header end -->
<!--about us start-->
<section class="aboutus" id="aboutus">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2>About me</h2>
<h3>A brief introduction on my history</h3>
</div>
</div>
</div>
<div class="row">
<div class=" col-lg-4 col-md-4 col-sm-4 col-xs-12 pull-right media"><img src="images/ryanzaboutme.jpg"
alt="ryan zurrin picture"></div>
<div class=" col-lg-7 col-md-7 col-sm-7 col-xs-12 pull-left media">
<h5>Ryan Zurrin</h5>
<h4>Professional Father & Full Time Student in the Computer Sciences</h4>
<p> I'm Berkshire County born and raised, from the wonderful City of Pittsfield Massachusetts where
I currently reside and go to school at Berkshire Community College. I will be getting my
associates degree at BCC in Computer Science and will then be moving on to get a bachelors, and possibly
even a master's degree.
I've always loved computers and electronics, and just learning about how things work and function. My
curiosity
has carried me all over and has granted me the opportunity to try out many things before finally settling
with the computer sciences.
I originally considered starting school as a fine arts major, mostly because I have previous experience
painting and drawing already so
it made sense to me to start there. But then, when I got a position as a lab assistant in the Digital
Commons (BCC's computer lab),
something was rekindled within me. There lay dormant deep in the dust of my memories, a burning ember from
my youth.
Back then I gamed all the time and even built my first computer system when I was 15 (when 16Mb of Ram was
considered VERY fast). As well I remember
how much I loved exploring all the files and system configs and setting that made software work, it
fascinated me then - and still does to this day.
</p>
<p>So, I made the switch from art classes to computer science classes (BIG SWITCH), where I hope to someday
become a programmer and software engineer. I am planning on using
the skills I obtain to help others build up their own ideas and dreams and I really feel using technology
as a medium is the best way to reach
the most people and the possibilities are truly endless, especially once you’re able to fuse old ideas
with the new technologies.
I, like most come from the ground up. I was built on the sweat and tears of my labor and it has carried me
here, to this moment, to school. Where I am learning
to do new things; like building this web page for instance, and I am learning most importantly that to
make the world a better place it takes a true team effort.
No one person, no matter how hard they may try, has the answer. But as a team working together, the
possible solutions become almost endless.
We live in a World that is a fusing of minds and ideas all built up around us, with another whole world of
ideas that I can fold up and bring with me anywhere.
It is this folded up dimension I am so hungry to learn about. I am looking forward to learning about
designing, debugging, and building
fast and efficient software and I’d be lying if I didn’t say, I think I may have gotten myself in a little
over my head with all this,
but I am up to a good challenge and I am ready to give this new life my all, and to do the hard work that
is required in building up a good solid foundation
from which I hope I can frame the rest of my life around.
</p>
<p><a role="button" class="btn btn-primary btn-lg" href="work_experience.pdf" target="_blank">Download
Printable Resume</a></p>
</div>
</div>
</div>
</section>
<!--about us end-->
<!--Skillset start -->
<section id="skillset" class="skillset">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2>Skills & Experience</h2>
<h3>I can say i’m quite good at</h3>
</div>
</div>
<div class="col-md-12">
<div class="col-md-6 col-sm-12 media">
<p>
I have over 15 years of House Painting and General Property Maintenance experience. I've worked for
various employers and companies over the years,
all of which helped in building my current skillset and experience. This has taught me there is always
more than one way to get the same job done.
As well, I maintained my own painting business lasting around three years; ‘All About Painting’. An
invaluable life experience is what that was.
I have done a fair share of plumbing and light carpentry work as well.
The one thing I can say I learned from all this; it doesn’t matter what path you decide to take in life,
If you are
going to succeed and be truly great at what you do, it is going to take a lot of hard work and
dedication to achieve.
Nothing in life comes easy, nothing….
</p>
<p>
....and to that; these Skill Bars are a reflection of the hard work I have put into becoming good in
certain areas, some better than others,
but I will be updating them all to reflect my new skills as I begin to further my education in the
computer sciences.
As a student about to take my first programmimng classes I feel these bars will be slowly shifting more
in favor of the
coding and web design. I hope to add more skills to this list as well. So keep checking back! Or if you
are an employer looking for
a good employee within a certain technology or framework, please send me a message and I am always open
to learning new
things on the fly or as needed. I truly believe
the best way to learn anything in life is by rolling up your sleeves and digging in, whether it
be digging in dirt or debugging dirty code, the only way to learn is to do. So let's do!
</p>
<p>To note, the skill bar percentages are just picked based on how I feel I perform in these areas and are
not decided based on any real
scientific or substantial method that would validate their accuracy. It is meant more as a rough gauge
of
my skills based on my intuition about these subjects and not meant to be an absolute fact. I don't want
anyone mislead. </p>
</div>
<div class="col-md-6 col-sm-12 topelement">
<div class="skillbar clearfix " data-percent="85%">
<div class="skillbar-title"><span>House Painting / Maintaince</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="88%">
<div class="skillbar-title"><span>Drawing / Painting</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="63%">
<div class="skillbar-title"><span>Woodworking</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="85%">
<div class="skillbar-title"><span>HTML</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="55%">
<div class="skillbar-title"><span>CSS</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="30%">
<div class="skillbar-title"><span>JavaScript</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="80%">
<div class="skillbar-title"><span>WordPress / CMS</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="35%">
<div class="skillbar-title"><span>C++</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="20%">
<div class="skillbar-title"><span>Python</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="16%">
<div class="skillbar-title"><span>Java</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="70%">
<div class="skillbar-title"><span>Access</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="85%">
<div class="skillbar-title"><span>Excel / Sheets</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="88%">
<div class="skillbar-title"><span>PowerPoint / Slides</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="93%">
<div class="skillbar-title"><span>Word / Docs / Forms</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="99.9%">
<div class="skillbar-title"><span>Living & Learning</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
</div>
</div>
</div>
</div>
</section>
<!--Skillset end -->
<!--Work Experties start -->
<section id="experience" class="myexperties">
<div class="container">
<div class="heading">
<h2>Work Experience</h2>
<h3>My previous associations</h3>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
Jan, 2018<br>Current
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Work Study</h4>
<h5>IT Department, Computer Lab Assistant </h5>
<p>Working around computers and helping fix problems, with computers... talk about a dream job! These are
both great steppingstones and a true blessing and I was
lucky to get in with the Lab and IT department at BCC. Being involved in the behind the scenes action has
been a very enlightening experience. We have responsibilities
such as imaging new computers, setting up and doing any deployments of machines, helping fix slow or not
working machines and making sure the computers are
in smooth and efficient running order; these are our basic tasks. Other tasks include naming and adding
computers to the domain as well getting the default printers set
and all the proper software being used installed and registered. In the Lab we made sure anyone needing
any kind of help, such as logging into accounts
getting pdfs to print or setting the printer up to print a certain way. Just basic stuff to help out and
keep things running smoothly.
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
July,2006<br>August, 2017
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>House Painting and Maintenance</h4>
<h5>Painter/Plumber/Landscaper</h5>
<p>Most of my early adult hood and late teens was spent doing work that required a bit of physical
dexterity. Everything from cleaning and installing big oil furnaces to weeding
gardens, if there was something that needed a fixing or required attention then I was there doing the job.
I loved the fact that I could get payed to help people do
the things That I loved doing. This was especially true of house painting. I painted houses more than
anything else, even starting my own business for a short few years.
As well during the winter months when the painting got slow, I was able to get work for a master plumber
where we would winterize homes and install gas furnaces and rough in
new plumbing that would be needed. Everything from measuring out the pipe and cleaning and fluxing for
solder to testing the whole plumbing and heating systems.
It was all great experience and was really preparing me for a strong discipline within an academic
setting.
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
January, 1996<br>June, 2001
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Entry Level Jobs</h4>
<h5>Cashier / Stocker / Customer Service / Food Service / Tree Service</h5>
<p>During the early days I started out working just like anybody really. I Had a couple jobs at the local
mall where I was able to start gaining experience in various work-related
tasks and more importantly, I was able to gain experience in interacting with people. I worked at hotdog
stands and retail stores as well as supermarkets and hardware stores.
My early experience was all over and I am very grateful for it now, looking back at the lessons in
retrospect everything that’s ever happened to me has brought me to now, a place where
I can start working towards a greater good that helps humanity as a whole.
</p>
</div>
</div>
</div>
</section>
<!--Work Experties end -->
<!--Education & diploma start -->
<section id="education" class="educationdiploma">
<div class="container">
<div class="heading">
<h2>Education & Achievements</h2>
<h3>My life's greatest accomplishments outside of being a Dad.</h3>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
January, 2018<br> Projected Graduation: fall 2021
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4><a
href="https://www.berkshirecc.edu/academics/programs-and-classes/computer-information-systems/certificate-options/computer-science-option-as-degree.php"
target="_blank"> Computer Information Systems</a></h4>
<h5>Associates in Computer Science</h5>
<p>Having chosen the Computer Science option in the CIS degree program I have gained a much deeper and
broader understanding of the
way computer systems work and function. There was heavy emphasis on mathematics and the curriculum was
designed to prepare students to move on
to a baccalaureate institution for further study. Being in the beginning classes I still have a lot of
classes to go before I am able to graduate.
The plan is a 2021 graduation and I will be applying to transfer to another institution very soon.
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
Inducted on:<br> April, 2019<br>
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4><a href="https://www.berkshirecc.edu/academics/honors/phi-theta-kappa.php" target="_blank">Phi Theta
Kappa</a></h4>
<h5>Xi Alpha - Berkshire County Chapter</h5>
<p>Due to my outstanding grades and my dedicated pursuit for a higher education, I was invited to join the
PTK which is the 'International Honor society of American Community and Junior Colleges.'
You are expected to uphold a high standard for yourself and to keep your grades and your GPA up. I am
presently being recruited to take on more leadership
rolls within the chapter. Becoming a Phi Theta Kappa member has really shown be that I am far more capable
then I ever realized. To be 100% honest, I truly surprise
myself with the things I am currently achieving and I am beyond humbled and grateful and my new found
recognitions.
</p>
<h5>UPDATE</h5>
<p>
I am now the VP of Communications for the Xi Alpha chapter at BCC!
</p>
<h5>Current GPA: 3.711 [-.007]</h5>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
STEM - Fall 2018<br>TRIo - Summer 2018
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4><a href="https://www.berkshirecc.edu/academics/stem/stem-starter-academy/" target="_blank">STEM Starter
Academy</a> /
<a href="https://www.berkshirecc.edu/student-engagement/the-trio-program/" target="_blank">TRIo
Program</a> /
<a href="http://jordanchretien.site/finalproject/index.html" target="_blank"> Robotics Club</a></h4>
<h5>College Support Groups and Extracurricular Activities</h5>
<p>Being actively involved with programs and activities that are there on campus is a good way to build up
interpersonal skills and relationships.
Having access to information, resources and to members in the technology fields is very helpful when
learning about new and exciting things.
I've been very lucky to be able to have so many great people supporting me and my continued education.
Being a non-traditional student has made
it a bit difficult at times when it comes to learning new complex ideas and just having a place to turn to
get the help needed has been a key
component in my successful restructuring.
</p>
</div>
</div>
</div>
</section>
<!--Education & diploma end -->
<!--portfolio start-->
<section class="portfolio" id="ourwork">
<div class="container">
<div class="heading">
<h2>Portfolio</h2>
<h3>Things I have made throughout my life</h3>
</div>
</div>
<div class="row">
<div class="portfolioFilter">
<ul>
<li><a href="#" data-filter="*" class="current">All</a></li>
<li><a href="#" data-filter=".woodcraft">Woodcraft</a></li>
<li><a href="#" data-filter=".painting">Paintings</a></li>
<li><a href="#" data-filter=".drawing">Drawings</a></li>
<li><a href="#" data-filter=".arduino">Tech Related</a></li>
<li class="last"><a href="#" data-filter=".miscellaneous">Miscellaneous</a></li>
</ul>
</div>
<ul class="portfolioContainer row">
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/roughbellabox.jpg" title="Sun And Moon Keepsake box"
class="zoom lb lb_warsaw1">
<i class="fa fa-plus fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/roughbellaboxthumb.jpg" alt="keepsake box">
</div>
</li>
<li class="painting woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/funguywindow.jpg"
title="Acrylic Painting 'Mushroom Moon Cabin' 9'x13'" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/funguywindowthumb.jpg" alt="acrylic painting">
</div>
</li>
<li class="miscellaneous col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/wirewrap.jpg" title="Tailsman Wirewraped crystals"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/wirewrapthumbnail.jpg" alt="crystal wirewrap">
</div>
</li>
<li class="painting col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/heatherhat1.jpg" title="Hand Painted Grateful Dead Hat"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/heatherhat1thumb.jpg" alt="hand painted hat">
</div>
</li>
<li class="arduino col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/robot2.jpg"
title=" TheGFF(the green firefighting falcon): autonomous firefighting robot"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/robot2thumb.jpg" alt="small arduino based autonomous robot">
</div>
</li>
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/gratefulbox1.jpg"
title="Gratefuldead marquetry keepsake box with key" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/heathersboxthumb.jpg" alt="gratefuldead marquetry keepsake box">
</div>
</li>
<li class="painting col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/newpainting.jpg" title="13x9 acrylic, Midnight DreamScape"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/newpaintingthumb.jpg" alt="acrylic painting 13x9">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/fishheart.jpg"
title="Father Son themed drawing for Drawing II class" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/fishheartthumb.jpg"
alt="father and son fishing poles in shape of heart">
</div>
</li>
<li class="painting col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/ryanzhat2.jpg" title="The first hat I ever painted"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/ryanzhat2thumb.jpg" alt="My first hand painted hat ever">
</div>
</li>
<li class="painting col-xs-6 col-sm-3 col-md-4 col-lg-4">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/bigwild.jpg"
title="Eyes all Over - this painting was started live as a performance piece at BellaTerra Festival"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/bigwildthumb.JPG" alt="Big Crazy acrylic painting">
</div>
</li>
<li class="wordcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/latchbox2.jpg" title="marquetry Keepsake Box"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/latchbox2thumb.jpg" alt="keepsake box wiith marquetry design">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/tabledrawing.jpg" title="not so classic still life"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/tabledrawingthumb.jpg" alt="charcoal drawing of table">
</div>
</li>
<li class="Woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/deadboxtop.jpg" title="Grateful Compass Marquetry keepsake box"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/deadboxtopthumb.jpg" alt="keepsake box">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/shoes.jpg"
title="These shoes where made for drawing - charcoal and pastel" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/shoesthumb.jpg" alt="shoe drawing">
</div>
</li>
<li class="arduino col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/arduinocar.jpg"
title="Robot car project using arduino - in progress stil" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/arduinocarthumb.jpg" alt="arduino robot car">
</div>
</li>
<li class="painting woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/gdbolt.jpg"
title="Acrylic on Canvas Grateful Dead Art with hand made frame" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/gdboltthumb.jpg" alt="grateful dead painting">
</div>
</li>
<li class="painting woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/galacticsunflower.jpg"
title="Acrylic on Canvas 'Galactic Sunflower'" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/galacticsunflowerthumb.jpg"
alt="Acrylic painting of galactic sunflower">
</div>
</li>
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/deadboxtop2.jpg" title="Keepsake gem box with Dead Bolt"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/deadboxtop2thumb.jpg" alt="crystal box">
</div>
</li>
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/ryderbox.jpg" title="Box with sons photo on top"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/ryderboxthumb.jpg" alt="keepsake box">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/bbgloves.jpg"
title="Father and Son baseball gloves, pastel on newsprint." class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img
src="images/projects/thumb-images/bbglovesthumb.jpg" alt="pastel drawing">
</div>
</li>
</ul>
</div>
</section>
<!--portfolio end-->
<!--journal start-->
<section class="journal" id="myjournal">
<div class="container">
<div class="heading">
<h2>Personal Journal</h2>
<h3>The Log Book to my Life</h3>
</div>
<table class="table">
<tr class="container table">
<th class="col-xs-2 col-sm-2 col-md-2">Date </th>
<th class="col-xs-8 col-sm-8 col-md-8">Title </th>
<th class="col-xs-2 cols-sm-2 col-md-2">Topic </th>
<!--<th class="col-xs-1 cols-sm-1 col-md-1">Format(s) </th>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">7/2/20</td>
<td class="col-xs-8 col-sm-8 col-md-8">
<a href="https://docs.google.com/spreadsheets/d/1CkqK_uiDaHqN8SLlrvMJTQDqydCYCJNCqrl_Ln4WJl0/edit?usp=sharing" target="_blank">
Google Sheets, Team Tally Sheet</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">Previous work</td>
<!-- <td class="col-xs-1 cols-sm-1 col-md-1">HTML; MP4 </td>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">6/22/20</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="journal/journal_addresstheTimes.html">Addressing the Times</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">Current Events</td>
<!-- <td class="col-xs-1 cols-sm-1 col-md-1">HTML; MP4 </td>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">12/25/19</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="journal/cppOneList.html">Simple C++ Programs</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">C++ Programs</td>
<!-- <td class="col-xs-1 cols-sm-1 col-md-1">HTML; MP4 </td>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">12/18/19</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="journal/digitalCircuitsFinal.html">Coffee/Cocoa Vending
Machine Circuit design</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">School Project</td>
<!-- <td class="col-xs-1 cols-sm-1 col-md-1">HTML; MP4 </td>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">8/14/19</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="journal/accountability.html">Accountability</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">Self Help</td>
<!-- <td class="col-xs-1 cols-sm-1 col-md-1">HTML; MP4 </td>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">6/1/19</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="journal/journal_imposter.html">Feeling Like a Fake</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">Mental Health</td>
<!-- <td class="col-xs-1 cols-sm-1 col-md-1">HTML; MP4 </td>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">5/12/19</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="journal/journal_deeplearning.html">Understanding On a Deeper
Level</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">Education</td>
<!-- <td class="col-xs-1 cols-sm-1 col-md-1">HTML; MP4 </td>-->
</tr>
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">5/11/19</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="journal/journal_designphase_good.html">The Whole Design
Phase Write Up</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">Web Design</td>
<!--<td class="col-xs-1 cols-sm-1 col-md-1">HTML</td>-->
</tr>
</table>
</div>
</section>
<!--journal end-->
<!--contact start-->
<section class="contact" id="contact">
<div class="container">
<div class="heading">
<h2>Where To Find Me </h2>
<h3>You can use the map below to find how far I am, simply sign-in or view larger map and using your current
location
get the distance to<br> West Street Pittsfield, MA 01201.
</h3>
<p>In future updates to this page I will be working on using google map api's to hopefully bring you that
information automatically.</p>
</div>
</div>
<!--google map start-->
<div class="mapArea center">
<iframe class="center"
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d5887.93820489851!2d-73.26628377452047!3d42.44967350489726!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sus!4v1557524992747!5m2!1sen!2sus"
style="border:0" allowfullscreen></iframe>
</div>
<!-- google map end-->
</section>
<section class="contactDetails">
<div class="container">
<div class="heading">
<h2>Drop a email</h2>
<h3>Please feel free if you would like to have a chat.</h3>
</div>
<!--contact form start-->
<div class="row media">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 conForm text-center">
<div id="message"></div>
<form method="POST" action="https://fp1.formmail.com/cgi-bin/fm192" name="contactform" id="contactform">
<input name="name" id="name" type="text" class="col-xs-12 col-sm-12 col-md-8 col-lg-8" tabindex="1"
placeholder="Your name">
<input name="email" id="email" type="email" class=" col-xs-12 col-sm-12 col-md-8 col-lg-8 noMarr"
tabindex="2" placeholder="Your email">
<textarea name="comments" id="comments" cols="1" rows="1" class="col-xs-12 col-sm-12 col-md-8 col-lg-8"
tabindex="3" placeholder="Your message"></textarea>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<input type="submit" id="send" name="send"
class="submitBnt" value="Send message"></div>
<div id="simple-msg"></div>
<input type="hidden" name="_pid" value="154901">
<input type="hidden" name="_fid" value="ZOH5VHN7">
<input type="hidden" name="recipient" value="1">
<input type="hidden" name="subject" value="contact">
<input type="hidden" name="redirect" value="http://www.ryanzurrin.com/contactthankyou.html">
<input type="hidden" name="env_report" value="REMOTE_ADDR,HTTP_USER_AGENT">
<input type="hidden" id="token" name="token" >
</form>
</div>
</div>
<!--contact form end-->
</div>
</section>
<!--contact end-->
</div>
<!--footer start-->
<section class="footer" id="footer">
<h3 class="center">Social Media Links</h3><br>
<div class="container">
<ul>
<li><a href="https://www.linkedin.com/in/ryan-zurrin-586189128/" target="_blank"><i
class="fa fa-linkedin fa-2x"></i></a></li>
<li><a href="https://www.facebook.com/ryanzurrin" target="_blank"><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href="https://twitter.com/ryan_zurrin" target="_blank"><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href="https://github.com/RyanZurrin" target="_blank"><i class="fa fa-github fa-2x"></i></a></li>
<li><a href="https://www.freecodecamp.org/highrez" target="_blank"><i class="fa fa-code fa-2x"></i></a></li>
<li><a
href="https://www.google.com/search?sxsrf=ACYBGNRO5tweKHjhR1tReumjg2c26eYnKw%3A1578044414792&source=hp&ei=_gsPXqz6Lca-tQWppYmACw&q=Ryan+Zurrin&oq=Ryan+Zurrin&gs_l=psy-ab.3..35i39.17551.19639..19973...3.0..0.91.907.11......0....1..gws-wiz.....10..35i362i39j0j0i131j0i10j0i22i30j0i13j0i13i5i30.75XmNBx0TDs&ved=0ahUKEwis8Z_GkefmAhVGX60KHalSArAQ4dUDCAc&uact=5"
target="_blank"><i class="fa fa-search fa-2x"></i>
</ul>
</div>
</section><br>
<h4 class="center">Copyright © 2019, 2020 ryanzurrin.com </h4><br>
<br>
<div class="back-to-top-wrapper" id="back_top"><a href="#wrapper" data-scroll="#top" class="back-to-top"
title="Back to top">
<svg viewBox="0 0 100 100" width="25" height="25" tabindex="-1" role="img" aria-labelledby="title">
<title id="title">Back to top</title>
<path d="M10 50l50 50L70 90 30 50 70 10 60 0z" transform="translate(0 0) rotate(90 50 50)" fill="#fff"
stroke="#fff"></path>
</svg></a>
</div>
<footer class="center">
<div style="color:white;"></div>
</footer>
<br>
<br>
<!--footer end-->
<!--wrapper end-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
</script>
<script>
$(document).ready(function () {
$("footer div").html("This page was last modified on: " + document.lastModified);
});
</script>
<!--modernizr js-->
<script src="js/modernizr.custom.26633.js"></script>
<!--jquary min js-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--for placeholder jquery-->
<script src="js/jquery.placeholder.js"></script>
<!--for header jquery-->
<script src="js/stickUp.js"></script>
<script src="js/jquery.superslides.js"></script>
<script>
jQuery(function ($) {
$(document).ready(function () {
//enabling stickUp on the '.navbar-wrapper' class
$('.navbar-wrapper').stickUp({
parts: {
0: 'banner',
1: 'aboutus',
2: 'experience',
3: 'education',
4: 'ourwork',
5: 'myjournal',
6: 'contact'
},
itemClass: 'menuItem',
itemHover: 'active',
topMargin: 'auto'
});
});
});
</script>
<script>
$('#banner').superslides({
animation: 'fade',
play: 2250
});
</script>
<!--for portfolio jquery-->
<script src="js/jquery.isotope.js"></script>
<link type="text/css" rel="stylesheet" id="theme" href="css/jquery-ui-1.8.16.custom.css">
<link type="text/css" rel="stylesheet" href="css/lightbox.min.css">
<script src="js/jquery.ui.widget.min.js"></script>
<script src="js/jquery.ui.rlightbox.js"></script>
<!--contact form js-->
<script src="js/jquery.contact.js"></script>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
// When the window has finished loading create our google map below
google.maps.event.addDomListener(window, 'load', init);
function init() {
// Basic options for a simple Google Map
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
var mapOptions = {
// How zoomed in you want the map to start at (always required)
zoom: 11,