-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
1087 lines (940 loc) · 55.5 KB
/
index.php
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>
<title>Jon Zenor - Cyber Security Specialist & Web Programmer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="assets/css/main.css" rel="stylesheet" media="screen">
<link href="assets/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<!-- Page Header -->
<div class="row resume-header">
<div class="col-xs-12 col-sm-8 resume-title">
<h1>Jonathan Zenor<br /><small>System Administrator, Web Application Engineer, Cyber Security Specialist, & Author</small></h1>
</div>
<div class="col-xs-12 col-sm-4 resume-contact">
<br /><strong>Phone:</strong> 719.266.2648<br />
<br /><strong>Email:</strong> <a href='mailto:%4ALZe%6Eo%72%40hey.com'>JLZenor@hey.com</a>
<!-- <a href='mailto:jonzenor@gmail.com'>JonZenor@Gmail.com</a> -->
<!-- <a href='mailto:jo%6E%7A%40%6Aonzen%6Fr.com'>jonz@jonzenor.com</a><br /> -->
</div>
</div>
<!-- Main Navigation -->
<div class="row">
<div class="col-md-12 main-navigation">
<nav class="navbar navbar-inverse" role="navigation">
<!-- Collapsable menu for mobile devices -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://jonzenor.com">JZ</a>
</div>
<!-- Navigation Links -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Resume</a></li>
</ul>
</div>
</nav>
</div>
<!-- END DIV Navigation -->
</div>
<!-- Resume Introduction -->
<div class="row resume-intro">
<div class="col-sm-12">
<p>Hello, my name is <strong>Jon Zenor</strong>, and I do a lot of things. Mostly technical. I am a <strong>System Administrator</strong>, <strong>Web Application Engineer</strong>, <strong>Cyber Security Specialist</strong>, and <strong>Author</strong>.</p>
<p>
I have worked on UNIX and Linux systems consistently since 2003, designed websites since 1998, and created Web based applications since 2004. I have had experience in various fields of technology, such as Windows, UNIX, and Linux System Administration (Sys Admin), radio and satellite communications, writing technical documentation, and Cyber Security <strong>My real passion</strong>, however, lies in programming. I love watching a web application come together and then seeing users interacting with what I helped create and finding interesting ways to solve customer problems with custom software.</p>
<p>
I learn new things quickly and can jump into a new environment and start working with minimal assistance. I also enjoy writing scripts and applications help make life easier for those around me. I believe that the future of our technology and software development lies in the Cloud and Web-based applications, so if I find a way to integrate web applications with my job then I try to make use of it. Or really any type of programming that I can create to help others.
</p>
</div>
</div>
<!-- END Resume Introduction -->
<div class="row resume-content">
<div class="col-sm-12">
<h2 class="resume-content-header">Work Experience</h2>
<hr class="header-bar" />
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2023 - Present</span>
<span class="hidden-xs">October 2023 - Present</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Software Engineer 3</p>
<p class="resume-entry-subtitle">Focus on the Family</p>
<p class="resume-entry-details">
Job title changed to have more of a focus on SalesForce Apex code and Lightning Web Components. Also did work using C# DotNet • Laravel PHP.
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2022 - 2023</span>
<span class="hidden-xs">January 2022 - October 2023</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Full Stack Developer</p>
<p class="resume-entry-subtitle">Focus on the Family</p>
<p class="resume-entry-details">
Create applications, and update existing applications, using C# DotNet • Laravel PHP, • Wordpress plugins. Work with integrating software with third-party APIs.
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2021 - 2022</span>
<span class="hidden-xs">July 2021 - January 2022</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">System Administrator Team Lead</p>
<p class="resume-entry-subtitle">Northrop Grumman - JTAGS</p>
<p class="resume-entry-details">
Manage program priorities • Organize team tasks • Organized team building events • Created Kanban Board • Follow up with team members on individual project status • Provided cover for all projects when a team member went on vacation • Started an intiative to create procedures for all mission critical tasks with the intention of reducing the number of knowledge silos on the team • Managed team tasks with daily shifts in program priorities •
Everything else listed under the RHEL System Administrator work experience
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2020 - 2021</span>
<span class="hidden-xs">July 2020 - July 2021</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">RHEL System Administrator</p>
<p class="resume-entry-subtitle">Northrop Grumman - JTAGS</p>
<p class="resume-entry-details">
Maintain a network of <a href="#" rel="tooltip" data-toggle="tooltip" title="RHEL 5, RHEL 6, & RHEL 7">RHEL</a>, <a href="#" rel="tooltip" data-toggle="tooltip" title="Windows 2012">Windows</a>, and Cisco equipment across SEVEN sites around the world •
Provide 24-hour support for life-saving mission critical systems •
Provide Integration support for custom mission software deployments, ensuring a consistent build and deployment process, using Ansible, RPM, and CM documentation •
Planned a major system upgrade for each site, to include documenting the process and creating procedures for every major step •
Troubleshoot mission software problems to assist the developers, using strace and log parsing.
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2016 - 2020</span>
<span class="hidden-xs">April 2016 - July 2020</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Cyber Security Specialist / Alternate Infrormation Systems Security Manager (ISSM)</p>
<p class="resume-entry-subtitle">Northrop Grumman</p>
<p class="resume-entry-details">
Maintained the security posture of over <a href="#" rel="tooltip" data-toggle="tooltip" title="RHEL, Windows 2012, Windows 7, CentOS">200 workstations and servers</a> •
Performed weekly audits manually, using in-house scripts that I created, and <a href="#" rel="tooltip" data-toggle="tooltip" title="Enterprise level SIEM tool">Splunk</a> and <a href="#" rel="tooltip" data-toggle="tooltip" title="Elastic Search, Logstash, and Kibana suite of tools">ELK</a> •
Regular SCAP scans •
Classified Hard Drive audit on 500 drives with <a href="#" rel="tooltip" data-toggle="tooltip" title="Tracked location of every hard drive by serial number and control number. When drives moved systems, shipped off site, or were replaced we had to update multiple records, which requried a lot of attention to detail but ensured that we knew where our drives were.">99% accuracy</a> •
Assisted with the transition to <a href="#" rel="tooltip" data-toggle="tooltip" title="Risk Management Framework">RMF</a> •
Increased efficiency of user and team processes by integrating <a href="#" rel="tooltip" data-toggle="tooltip" title="User account request and data transfer tracking forms">various forms</a> into Sharepoint Workflows using InfoPath •
Took over as Alternate ISSM in 2018 •
Maintain RMF accreditations for multiple accreciting authorities •
Create and Maintain site level policies to be inherited by other systems •
Create and Manage <a href="#" rel="tooltip" data-toggle="tooltip" title="Plan of Actions & Milestones">POAM</a> items, including weekly meetings with program to ensure continued progress •
Tested system for security complaince using Nessus scanner, SCAP Compliance Checker, and STIG Viewer
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2017 - 2019</span>
<span class="hidden-xs">June 2017 - April 2019</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Senior Software Engineer</p>
<p class="resume-entry-subtitle">Anthology Gateway for The Midnight Writers</p>
<p class="resume-entry-details">
Engineered a server architecture to allow for rapid scaling without bringing down the web app • Planned, designed, and developed an application to streamline the process of publishing an anthology collection •
Built using the following technologies: Laravel PHP framework, MySQL, Blueprint CSS framework, jQuery •
Integration with <a href="#" rel="tooltip" data-toggle="tooltip" title="Amazon Web Services">AWS</a>, <a href="#" rel="tooltip" data-toggle="tooltip" title="SMS Messaging">Nexmo</a> •
Configure and manage Apache web server on a Linode virutal server running Ubuntu •
Enabled SSL on the web server using Lets Encrypt
</p>
<p class="resume-entry-details">
Systems built: User and Group management • Group based permissions system • Forum style message system • Document upload and management
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2015 - 2019</span>
<span class="hidden-xs">October 2015 - October 2019</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">CEO</p>
<p class="resume-entry-subtitle">The Midnight Writers</p>
<p class="resume-entry-details">Started a partnership business with one other person and five total board members with the goal of helping local authors publishing an annual anthology and sell those anthologies at local conventions. I organize and manage the team to ensure all work is completed on schedule and as a result we have published professional quality work (<a href="https://amzn.to/2LLx37K">Domesticated Velociraptors</a>, <a href="https://www.amazon.com/dp/1723765872/ref=cm_sw_em_r_mt_dp_H7NNC3ABJTZYGDF1AEC9">Last Shot Fired</a>, <a href="https://read.amazon.com/kp/embed?asin=B085ZLN18C&preview=newtab&linkCode=kpe&ref_=cm_sw_r_kb_dp_V1AFTG4AHHZ0CXT7YMKY">Welcome to the Alpacalypse</a>). We also organized various author events around the community.
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2014 - 2016</span>
<span class="hidden-xs">April 2014 - April 2016</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">LINUX Systems Administrator</p>
<p class="resume-entry-subtitle">Northrop Grumman - CESC</p>
<p class="resume-entry-details">Managed
<a href="#" rel="tooltip" data-toggle="tooltip" title="RHEL 5 & 6">Red Hat Enterprise Linux (RHEL)</a> systems •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Account Management, security auditing, DNS, and LDAP Troubleshooting">IPA</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Created KSH & Perl">Scripts</a> to assist with managing users in IPA and assisting the ISSM with system audits. •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Assist with configurating Cisco firewalls and doing minor troubleshooting.">Firewalls</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Make configuration changes on Cisco switches, configuring individual ports for TCP/IP and VoIP, VLANs, and Port Security">Cisco </a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="In charge of maintaing the UNIX print servers, added new printers when needed, and configured all clients to work correctly. Used CUPS print server software.">UNIX Print Server</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Provided customer support for anything ranging from account help, to file access permissions and building new systems as requested.">Customer Support</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Reinstalled and configured QRADAR SIEM 2100 and 3100 systems.">IBM QRadar</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="SSH, SNMP, SFTP, DHCP, DNS, NTP">Network Protocols</a> •
Classified & Unclassified networks
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2013 - 2014</span>
<span class="hidden-xs">August 2013 - April 2014</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Fleet Web Assistant</p>
<p class="resume-entry-subtitle">STARFLEET International</p>
<p class="resume-entry-details">
Volunteered to assist the web team with updating the official STARFLEET International website and fixing various bugs with their ancient procedural (non-object oriented) PHP code •
Setup a website for the Region 17 communications, and for the Region 17 chaplain program •
Created a custome PHP website for one of the chapters, the USS Zebulon Pike •
Created a website for tracking crew participation and promotions, called Serenity Roster
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2011 - 2014</span>
<span class="hidden-xs">Dec 2011 - April 2014</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">UNIX Systems Administrator</p>
<p class="resume-entry-subtitle">Northrop Grumman - SBIRS</p>
<p class="resume-entry-details">Managed
<a href="#" rel="tooltip" data-toggle="tooltip" title="IRIX, Solaris 8 & 10">UNIX</a> and
<a href="#" rel="tooltip" data-toggle="tooltip" title="XP, 2000, 2008">Windows</a> systems •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Account Management, security auditing, and LDAP Troubleshooting">LDAP</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Storage Area Networks using Brocade Fiber Switches to communicate with SGI & HP RAIDs.">SAN</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Created KSH & Perl scripts to assist with managing and troubleshooting systems. These scripts performed functions such as log collection and backup, system monitoring, and security log parsing.">Scripts</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Configured Firewalls and used them to troubleshoot network issues (snoop, etc). Used McAfee and Sidewinder brand firewalls.">Firewalls</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Maintained backups for and configured switches and routers on the network.">Cisco & Juniper Networking Equipment</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="In charge of maintaing the UNIX print servers, added new printers when needed, and configured all clients to work correctly. Used CUPS print server software.">UNIX Print Server</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Created Access databases to track user account creation and deletions, and created spreadsheets to track various problems on the system.">MS Office</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Worked with customers during troubleshooting efforts to keep them aware of the status and ensure they had the information to make wise decisions on moving forward.">Customer Support</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Wrote training documentation intended to give to people new to the program. Topics covered were Basic UNIX, System Logs, The VI Editor, Data Archival and Recovery, and Basic System Administration.">Write Training Manuals</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="SSH, SNMP, SFTP, DHCP, DNS, NTP">Network Protocols</a> •
Classified & Unclassified networks
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2006 - 2001</span>
<span class="hidden-xs">June 2006 - Dec 2011</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Hardware Technician</p>
<p class="resume-entry-subtitle">Northrop Grumman - SBIRS</p>
<p class="resume-entry-details">
<a href="#" rel="tooltip" data-toggle="tooltip" title="Troubleshoot & repair Midrange Servers, such as SunFire V440, V890, SGI Tezro, SGI 350, and SGI 3000 servers.">Midrange servers</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Troubleshoot network communication equipment between sites over T-1, OC-3, and OC-92 lines with encryption devices in the path.">Network Communications</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Inventoried, loaded, and troubleshot 50+ encryption devices for a COMSEC program that always past inspections with flying colors.">COMSEC</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Performed maintenance on satellite systems, from the dish all the way to the data end point, using spectrum analyzers and other equipment to ensure a clean signal and to troubleshoot problems.">Satellite Communications</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Created scripts to notify other Hardware Techs of system changes so they could proactively correct problems.">Scripts</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Used HP OpenView to track system changes. Attended an HP class on OpenView.">HP OpenView</a> •
Application Development (<a href="#" rel="tooltip" data-toggle="tooltip" title="Assisted with the creation of a web based application that would communicate with satellite ground system devices and allow for configuring the devices. Created with PHP and Joomla for the front end, and Perl scripts for hardware control.">Satellite Ground Controller</a>) •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Briefed customers, including high ranking officers, on the ongoing status of problems and our efforts to correct it.">Customer Support</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Verified and made changes to network and rack drawings to ensure they matched the delivered system cabeling, hardware baseline, network layout, and cable ID numbers.">Quality Assurance</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Created Approximately 30 Standard Operating Procedures (SOPs) to assist the Hardware Team in doing tasks quickly and to standardize maintenance procedures.">Technical Writer</a>
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2010 - 2010</span>
<span class="hidden-xs">February 2008 - May 2010</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">QA Team Mod Validator</p>
<p class="resume-entry-subtitle">phpBB</p>
<p class="resume-entry-details">
Worked with the QA team as a Junior Validator to do QA testing and give feedback on user MODs that were submitted to the official phpBB MOD Database. Setup a reusable test environment and did detailed documentation on each MOD that was tested. I also created several MODs of my own, including one for OpenID integration, random user signature, and the basis for a multi-forum system that would allow multiple forums to use the same base phpBB files yet still maintain their own independant databases.
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2008 - 2010</span>
<span class="hidden-xs">2008 - 2010</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">CEO & Senior Software Engineer</p>
<p class="resume-entry-subtitle">ZenorSoft Web Design</p>
<p class="resume-entry-details">
Started a business on the side doing Web Design work. I managed one employee, one contractor, and had four clients. •
Created a <a href="#" rel="tooltip" data-toggle="tooltip" title="CMS is a Content Management System. It provided an easy to use interface to modify website content, upload photos, and manage user accounts.">CMS</a> system with built in
<a href="#" rel="tooltip" data-toggle="tooltip" title="Electronic store, complete with shopping cart and PayPal integration.">eCommerce</a> solution from scratch • Used PHP and a few framework tools such as
<a href="#" rel="tooltip" data-toggle="tooltip" title="PHP based template engine. This makes it easy to separate business programming logic from display logic for proper MVC principles.">SMARTY</a> where it could help more than slowing down the project •
Used Flash templates to create a photography portfolio website
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="visible-xs">2002 - 2006</span>
<span class="hidden-xs">June 2002 - June 2006</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Information Technician 3rd Class (IT3)</p>
<p class="resume-entry-subtitle">U.S. Navy</p>
<p class="resume-entry-details">
<a href="#" rel="tooltip" data-toggle="tooltip" title="Setup, and maintained a UHF satellite ground system which provided Internet, Phone, and Video Teleconference support to other units while on deployments.">Satellite Communications</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="In charge of deploying UHF, VHF, and HF communications to air crews on assignments.">Mobile Communications</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Led a project to upgrade the unit's internal computer network to make it easy to setup while on deployments while keeping within a set budget.">Designed a Network Upgrade</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Install Cisco 2600 series routers and configured them with unique configurations for each deployment. Attended a CCNA crash course.">Cisco Network Equipment</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Windows 2000 and XP systems. Maintained the Exchange server, and Active Directory server. Attended a class on how to manage Windows 2000 in a domain environment.">Windows System Administration</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="Basic system administration; user accounts, system patches and maintenance.">UNIX Systems</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="In charge of training 25 Reserve members once a month. Each month was on a different topic, such as safety or Windows networking.">Training Instructor</a> •
Used PHP and MySQL to create an <a href="#" rel="tooltip" data-toggle="tooltip" title="Developed a web based tool to track the inventory of all equipment, down to which box the equipment was stored in and which shelf the box was located. Built with PHP on our internal network.">Inventory Control system</a>
</p>
</div>
</div>
<!-- END Work Experience -->
</div>
</div>
<!-- ########## EDUCATION ########## -->
<div class="row resume-content">
<!-- BEGIN Education -->
<div class="col-sm-8 col-xs-12">
<h2 class="resume-content-header">Education & Certifications</h2>
<hr />
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span>2020</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">CAP <small>Certified Authorization Professional</p>
<p class="resume-entry-details"><strong>Completed</strong>: February 2020</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span>2013</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Security +</p>
<p class="resume-entry-details"><strong>Completed</strong>: December 2013 <strong>Last Renewed</strong>: December 2019</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span>2010 - 2013</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Bachelor of Science <small>- Information Systems Management</small></p>
<p class="resume-entry-subtitle">Colorado Technical University</p>
<p class="resume-entry-details"><strong>Completed</strong>: October 2013</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span>Fall 2009 - Spring 2010</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Bachelor of Biblical Studies</p>
<p class="resume-entry-subtitle">Calvary Chapel Bible College</p>
<p class="resume-entry-details">Did not complete</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span>2005 - 2006</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Associate of Arts <small>- Computer Systems</small></p>
<p class="resume-entry-subtitle">Coastline Community College</p>
<p class="resume-entry-details"><strong>Completed</strong>: 2006</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span>2002 - Present</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Vendor Training</p>
<p class="resume-entry-subtitle"></p>
<p class="resume-entry-details">
<a href="#" rel="tooltip" data-toggle="tooltip" title="2018">Windows Auditing</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2004, 2011">Cisco CCNA</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2013">Juniper Firewalls</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2006, 2007">IRIX Basic UNIX & Maintenance</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2006, 2007">Sun Solaris Basics & Maintenance</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2007">Perl Programming for System Administrators</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2004">Windows Server</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2013">HP Blade Systems</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2007">HP OpenView</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2015">VMWare</a> •
<a href="#" rel="tooltip" data-toggle="tooltip" title="2016">ACAS</a>
</p>
</div>
</div>
<!-- ########## Achievements & Volunteer Experience ########## -->
<h2 class="resume-content-header">Achievements & Volunteer Experience</h2>
<hr />
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">November 2022 - Present</span>
<span class="visible-xs">2022 - Present </span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Teller County Search and Rescue</p>
<p class="resume-entry-subtitle">Search and Rescue Team Member</p>
<p class="resume-entry-details">Assist in SAR missions as issued by the Sheriff. Hike trails to search for those that are lost or injured, assisted in litter carrying out patients. Assisted mission coordinator with comms, using HAM and other radio communications. Trained in CPR and other medical and back country specilized training. Trained in motorized vehicles such as Snow Mobiles and ATV/UTVs.</p>
</div>
</div>
<!-- Iron Council -->
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">January 2022 - Present</span>
<span class="visible-xs">2022 - Present </span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Order of Man • Iron Council</p>
<p class="resume-entry-subtitle">Member</p>
<p class="resume-entry-details">Master Mind group focused around becoming a better Husband, Father, man of faith, business man, and leader. Worked with teams of men to regularly hold each other accountable and support each other.</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">Oct 2023 - Dec 2023</span>
<span class="visible-xs">2023 - 2023</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-subtitle">Team Valiant Fire Team Leader</p>
<p class="resume-entry-details">Led a small group of 3 guys. Focused on maintining regular communication and helping the growth of the team.</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">Jan 2024 - Present</span>
<span class="visible-xs">2024 - Present</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-subtitle">Team Valiant XO</p>
<p class="resume-entry-details">Assisted the Battle Team Leader in running the weekly calls, taking attendance, and communicating with the fire team leaders throughout the week. Did whatever was needed to support the team and BTL.</p>
</div>
</div>
<!-- END Iron Council -->
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">December 2016 - July 2020</span>
<span class="visible-xs">2016 - 2020 </span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">ISSM WG Recorder</p>
<p class="resume-entry-subtitle">Colorado Springs ISSM/ISSO Working Group</p>
<p class="resume-entry-details">Take meeting minutes and notes during the Colorado Springs ISSM/ISSO Quarterly Working Group with security professionals from multiple organizations in the area.</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">November 2016</span>
<span class="visible-xs">2016</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">General Radio Operator</p>
<p class="resume-entry-subtitle">HAM (Amateur) Radio Operator</p>
<p class="resume-entry-details">Passed the exams for, and was awarded the Technician class and General class Amateur Radio Operator Licenses. -- KE0ZNR</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">2015 - 2016</span>
<span class="visible-xs">2015 - 2016</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">HOA Board Member</p>
<p class="resume-entry-subtitle">Local Home Owners Association Board Member</p>
<p class="resume-entry-details">Joined the board for the local HOA. Attended meetings and helped with budget planning and policy changes.</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">February - August 2014</span>
<span class="visible-xs">2014</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Organized Sky Sox Star Trek Night 2</p>
<p class="resume-entry-subtitle">Sky Sox Baseball</p>
<p class="resume-entry-details">Building on the success of the previous year we again organized another Star Trek night, which was bigger and better in every way, to include having the actor Walter Koeing (Chekov from The Original Series) and working with a firework and safety team to rig up explosives on one of our members in a borg costume so they could "explode" for the grand finale. We also had to record scenes ahead of time on green screen that would be played as part of an on-going skit on the big screen during the ball game.</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">February - August 2013</span>
<span class="visible-xs">2013</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Organized Sky Sox Star Trek Night</p>
<p class="resume-entry-subtitle">Sky Sox Baseball</p>
<p class="resume-entry-details">The Sky Sox Promotions Director contacted me about helping to organize a Star Trek theme night. I was in charge of helping come up with script, props, and video recording for the commercial. My primary job was to take the lead on getting as many people involved as I could. We ended up getting 20 people involved from 4 different groups that stretched over 100 miles.</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">September 2012 - 2015</span>
<span class="visible-xs">2012 - Present</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Organized & Led a local chapter of an International Organization</p>
<p class="resume-entry-subtitle">STARFLEET, The International Star Trek Fan Association Inc.</p>
<p class="resume-entry-details">Recruited local people to become members of a fan group, became the president of the group, and then led in the organization and execution of many events, including many to help out the community with fund raising and food collection. In less than a year we become the 3rd largest chapter in the region (spanning 4 states) and won several awards from our parent organization of about 5,000 members.</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">June 2009 - February 2010</span>
<span class="visible-xs">2009 - 2010</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Personal Computer Technician</p>
<p class="resume-entry-subtitle">Rocky Mountain Calvary Church</p>
<p class="resume-entry-details">
Install and maintain Microsoft Windows workstations and servers •
Provided application support for users for Outlook, Office, Point of Sale software, and other specialized software •
Managed hardware upgrades on network systems
</p>
</div>
</div>
<div class="row resume-entry">
<div class="col-sm-3 resume-entry-date">
<span class="hidden-xs">March 2005 - 2015</span>
<span class="visible-xs">2005 - 2015</span>
</div>
<div class="col-sm-9 resume-entry-content">
<p class="resume-entry-title">Webmaster & Content Writer</p>
<p class="resume-entry-subtitle">Eternal Truth Ministry</p>
<p class="resume-entry-details">Created several websites or web templates to use for the site over the years. Some were created entirely by hand while others used public applications, such as WordPress, and just required modifying a template to match. I also wrote several articles for the organization.</p>
</div>
</div>
</div>
<!-- Start second collumn -->
<div class="col-sm-4 col-xs-12">
<h2 class="resume-content-header">Skills</h2>
<hr />
<p class="resume-entry-title">Software Engineering / Programming</p>
<div class="col-sm-12">
PHP
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="9" aria-valuemin="0" aria-valuemax="10" style="width: 90%">
<span>Expert</span>
</div>
</div>
</div>
<div class="col-sm-12">
Programming Concepts &<br />Object Oriented Programming (OOP)
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="9" aria-valuemin="0" aria-valuemax="10" style="width: 90%">
<span>Expert</span>
</div>
</div>
</div>
<div class="col-sm-12">
SQL
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="9" aria-valuemin="0" aria-valuemax="10" style="width: 90%">
<span>Expert</span>
</div>
</div>
</div>
<div class="col-sm-12">
Perl
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="8" aria-valuemin="0" aria-valuemax="10" style="width: 80%">
<span>Advanced</span>
</div>
</div>
</div>
<div class="col-sm-12">
KSH / Shell Scripting
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="8" aria-valuemin="0" aria-valuemax="10" style="width: 80%">
<span>Advanced</span>
</div>
</div>
</div>
<div class="col-sm-12">
HTML 5
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="8" aria-valuemin="0" aria-valuemax="10" style="width: 70%">
<span>Strong</span>
</div>
</div>
</div>
<div class="col-sm-12">
CSS
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 60%">
<span>Knowledgeable</span>
</div>
</div>
</div>
<div class="col-sm-12">
Git
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 60%">
<span>Knowledgeable</span>
</div>
</div>
</div>
<div class="col-sm-12">
SalesForce Apex
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 55%">
<span>Familiar</span>
</div>
</div>
</div>
<div class="col-sm-12">
JavaScript
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 50%">
<span>Familiar</span>
</div>
</div>
</div>
<div class="col-sm-12">
C# DotNet
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 35%">
<span>Familiar</span>
</div>
</div>
</div>
<br />
<p class="resume-entry-title">Computer Technology & Security</p>
<div class="col-sm-12">
RMF
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 75%">
<span>Knowledgeable</span>
</div>
</div>
</div>
<div class="col-sm-12">
UNIX / Linux Administrator
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="8" aria-valuemin="0" aria-valuemax="10" style="width: 70%">
<span>Strong</span>
</div>
</div>
</div>
<div class="col-sm-12">
Cisco Networking
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="7" aria-valuemin="0" aria-valuemax="10" style="width: 60%">
<span>Strong</span>
</div>
</div>
</div>
<div class="col-sm-12">
LDAP / IPA
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="7" aria-valuemin="0" aria-valuemax="10" style="width: 60%">
<span>Strong</span>
</div>
</div>
</div>
<div class="col-sm-12">
WAN Communications
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="7" aria-valuemin="0" aria-valuemax="10" style="width: 60%">
<span>Strong</span>
</div>
</div>
</div>
<div class="col-sm-12">
Windows Administrator
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="10" style="width: 50%">
<span>Familiar</span>
</div>
</div>
</div>
<div class="col-sm-12">
Splunk
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 40%">
<span>Familiar</span>
</div>
</div>
</div>
<br />
<p class="resume-entry-title">Miscellaneous Skills</p>
<div class="col-sm-12">
Customer Support
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="9" aria-valuemin="0" aria-valuemax="10" style="width: 90%">
<span>Expert</span>
</div>
</div>
</div>
<div class="col-sm-12">
Satellite Communications
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="6" aria-valuemin="0" aria-valuemax="10" style="width: 60%">
<span>Knowledgeable</span>
</div>
</div>
</div>
<div class="col-sm-12">
SharePoint / InfoPath Integration
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 50%">
<span>Familiar</span>
</div>
</div>
</div>
<div class="col-sm-12">
Video Editing & Film Making
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 40%">
<span>Familiar</span>
</div>
</div>
</div>
<div class="col-sm-12">
Microsoft Project
<div class="progress">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="3" aria-valuemin="0" aria-valuemax="10" style="width: 30%">
<span>Familiar</span>
</div>
</div>
</div>
<br />
<h2 class="resume-content-header">Security Clearance</h2>
<hr />
<div class="col-sm-12">
<p><a href="#" rel="tooltip" data-toggle="tooltip" title="Top">Secret</a> Clearance Investigation last completed 2013.</p>
</div>
<br />
<h2 class="resume-content-header">Short Story Publications</h2>
<hr />
<div class="col-sm-12">
<p class="resume-entry-title">Cult of the Alpaca</p>
<p class="resume-entry-subtitle">2020 • Midnight Writers' Society</p>
</div>
<div class="col-sm-12">
<p class="resume-entry-title">Rogue Admin</p>
<p class="resume-entry-subtitle">2018 • Midnight Writers' Society</p>
</div>
<div class="col-sm-12">
<p class="resume-entry-title">Kills Like River</p>
<p class="resume-entry-subtitle">2017 • Inkwolf Press</p>
</div>
<div class="col-sm-12">
<p class="resume-entry-title">Velociraptors of Camelot</p>
<p class="resume-entry-subtitle">2016 • Midnight Writers' Society</p>
</div>
<div class="col-sm-12">
<p class="resume-entry-title">Eternity's Ark</p>
<p class="resume-entry-subtitle">2016 • Villainous Press</p>
</div>
<div class="col-sm-12">
<p class="resume-entry-title">Guardian</p>
<p class="resume-entry-subtitle">2015 • Midnight Writers' Society</p>
</div>
<div class="col-sm-12">
<p class="resume-entry-title">Rite of Passage</p>
<p class="resume-entry-subtitle">2015 • J.L. Zenor</p>
</div>
<!-- END Second Collumn -->
</div>
<!-- END Education -->
</div>
<!-- BEGIN Accordian Content -->
<div class="col-sm-12 resume-content">
<h2 class="resume-content-header">Website Portfolio</h2>
<hr />
<div class="panel-group" id="accordion">
<!-- This site is kind of old and broken and needs to be updated before I feel proud to share it -->
<!--
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseJZ">
Jon Zenor - Sys Admin & Web Designer
</a>
</h4>
</div>
<div id="collapseJZ" class="panel-collapse">
<div class="panel-body">
<div class="row resume-entry">
<div class="col-sm-12 resume-entry-content">
<p class="resume-entry-title">Jon Zenor - Sys Admin & Web Designer</p>
<p class="resume-entry-subtitle"><a href="http://jonzenor.com">jonzenor.com</a></p>
<p class="resume-entry-details">
Created as a personal site to showcase my work and to act as a resume.
<br /><br /><strong>Status</strong>: Completed August 2013. Additional features likely in the near future.
<br /><strong>Application Details</strong>: N/A - Just straight HTML with minimal PHP
<br /><strong>Design Details</strong>: Used Twitter Bootstrap for a CSS framework, and then made the rest of the design loosely based on a Resume template that I like. Simplicity, yet elegant.
</p>
</div>
</div>
</div>
</div>
</div>
-->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseAnthology">
Bryler Logistics LLC
</a>
</h4>
</div>
<div id="collapseAnthology" class="panel-collapse">
<div class="panel-body">
<div class="row resume-entry">
<div class="col-sm-12 resume-entry-content">
<p class="resume-entry-subtitle"><a href="https://brylerlogistics.com/home">BrylerLogistics.com</a></p>
<p class="resume-entry-details">
Creating a load board to help companies find trucking carriers to ship their freight.
<br /><br /><strong>Status</strong>: Active Development <small>as of October 2021</small>
<br /><strong>Application Details</strong>: Creating using the Laravel 8 PHP framework and TDD (Test Driven Design) patterns. Frontend UI work was sub-contracted out.
<br /><strong>Design Details</strong>: Tailwind CSS, using Laravel Blade Templates.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseAnthology">
Anthology Gateway
</a>
</h4>
</div>
<div id="collapseAnthology" class="panel-collapse">
<div class="panel-body">
<div class="row resume-entry">
<div class="col-sm-12 resume-entry-content">
<p class="resume-entry-subtitle"><a href="https://AnthologyGateway.com">AnthologyGateway.com</a></p>
<p class="resume-entry-details">
Created a central place to allow publishers to accept open calls for their anthologies, to allow team members to vote on submissions, and to handle much of the publication process.
<br /><br /><strong>Status</strong>: On Hold
<br /><strong>Application Details</strong>: Creating using the Laravel 5 PHP framework. I did have some help with testing and occasional programming help, but 99.9% of the work has been done by me.
<br /><strong>Design Details</strong>: Aiming for a simple and clean interface that is mobile friendly. Using Bluepring CSS to help with front-end development time.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseSerenity">
Serenity Roster
</a>
</h4>
</div>
<div id="collapseSerenity" class="panel-collapse">
<div class="panel-body">
<div class="row resume-entry">
<div class="col-sm-12 resume-entry-content">
<p class="resume-entry-subtitle"><a href="http://SerenityRoster.com">SerenityRoster.com</a></p>
<p class="resume-entry-details">
Created as an all-in-one chapter management tool for organizations. It has started with a focus on STARFLEET International chapters, but there are plans to make it more generic for other organizations later.
<br /><br /><strong>Status</strong>: On Hold <small>- 2.0 upgrade planed for <strong>2022</strong></small>
<br /><strong>Application Details</strong>: Creating using the Laravel PHP framework. All functions have been custom coded by myself.
<br /><strong>Design Details</strong>: I have created an LCARS style theme, but am hoping a designer agrees to help with the design features of this project.
</p>
</div>
</div>
</div>
</div>
</div>