$ ssh guest@caseyrapnicki.com _ _ _ (_) | | (_) ___ __ _ ___ ___ _ _ _ __ __ _ _ __ _ __ _ ___| | ___ ___ ___ _ __ ___ / __/ _` / __|/ _ \ | | || '__/ _` | '_ \| '_ \| |/ __| |/ / | / __/ _ \| '_ ` _ \ | (_| (_| \__ \ __/ |_| || | | (_| | |_) | | | | | (__| <| || (_| (_) | | | | | | \___\__,_|___/\___|\__, ||_| \__,_| .__/|_| |_|_|\___|_|\_\_(_)___\___/|_| |_| |_| __/ | | | |___/ |_|12:18:05 up 10 days, 14:51, 1 user, load average: 0.34, 0.31, 0.36 guest@caseyrapnicki.com:~# pygmentize -g caseyrapnicki.py #!/usr/bin/env pythonversion = "2024.05.14"class CaseyRapnicki: website = " caseyrapnicki.com" resume = " caseyrapnicki.com/docs/resume.pdf" linkedin = " linkedin.com/in/caseyrapnicki/" git = " git.caseyrapnicki.com" def Employment(): Position = [] Position[0] = { " company": "Bixal", " title": "Principal Cloud Engineer", " agancies": [ "DOJ", "GSA", "SBA", "USAID", "USDA" ], " duration": "2020/09/14 - current (4 years, 3 months)", " website": "www.bixal.com" } Position[1] = { " company": "IronNet Cybersecurity", " title": "Site Reliability Engineer", " duration": "2018/05/07 - 2020/07/25 (2 years, 2 months)", " website": "www.ironnet.com" } Position[2] = { " company": "National Cybersecurity Center of Excellence (IT Coalition)", " title": "Sr. Linux System Engineer", " agancies": [ "NIST" ], " duration": "2014/06/16 - 2018/05/04 (3 years, 10 months)", " website": "nccoe.nist.gov" } Position[3] = { " company": "The Kingsbury Center", " title": "System Engineer", " duration": "2011/02/07 - 2014/06/13 (3 years, 4 months)", " website": "www.kingsbury.org" } return Position def Education(): Degree = [] Degree[0] = { " school": "University Of Maryland Global Campus", " location": "Adelphi, MD", " level": "Master of Science", " program": "Information Technology", " specialization": "Systems Engineering", " duration": "2019/05/20 - 2021/05/21 (2 years)", " graduated": True, " societies": [ "Upsilon Pi Epsilon", "Phi Kappa Phi" ], } Degree[1] = { " school": "University Of Maryland University College", " location": "Adelphi, MD", " level": "Bachelor of Science", " program": "Computer Networks and Cybersecurity", " minor": "Computer Science", " duration": "2017/07/17 - 2019/05/19 (1 year, 10 months, )", " graduated": True, " honors": [ "Summa Cum Laude", "Deans List x6" ], " societies": [ "Phi Kappa Phi", "Alpha Sigma Lamba" ], } return Degree def Skills(): ## Skill type Applications = { ##"Skill": <years xp>, ## (<year last used>) " Apache": 19, ## (2024) " AWS": 6, ## (2024) " Docker": 9, ## (2024) " Git": 9, ## (2024) " Jira": 6, ## (2024) " Kubernetes": 6, ## (2024) " NGINX": 10, ## (2024) " MySQL": 19, ## (2024) " Terraform": 4, ## (2024) } General = { ##"Skill": <years xp>, ## (<year last used>) " Agile": 4, ## (2024) " CI/CD": 4, ## (2024) " Cloud Engineering": 6, ## (2024) " Desktop Support": 9, ## (2014) " DevOps": 7, ## (2024) " Networking": 8, ## (2024) " Programming": 28, ## (2024) " Security Engineering": 10, ## (2024) " Systems Engineering": 14, ## (2024) " Test Automation": 4, ## (2024) " Web Operations": 19, ## (2024) } Languages = { ##"Skill": <years xp>, ## (<year last used>) " Bash": 13, ## (2024) " C#": 10, ## (2018) " Golang": 1, ## (2024) " HCL": 4, ## (2024) " PHP": 17, ## (2024) " Powershell": 7, ## (2018) " Python": 12, ## (2024) " Visual Basic": 12, ## (2008) } OS = { ##"Skill": <years xp>, ## (<year last used>) " Linux": 19, ## (2024) " MacOS": 15, ## (2024) " Windows Server": 15, ## (2020) } return Applications, General, Languages, OS guest@caseyrapnicki.com:~# © 2024. Casey Rapnicki.