From: Arthur Taft Date: Sun, 23 Nov 2025 22:36:44 +0000 (-0700) Subject: more resume work X-Git-Url: https://gitweb.arthurtaft.net/website.git/commitdiff_plain/3d255ba36b57a13f9f9cb57e4f2e4ac25481a5bf?hp=86ddc2946e5d4f6b2507ff6ab4abdd79331b2284 more resume work --- diff --git a/static/ArthurTaftResume.html b/static/ArthurTaftResume.html index 7a6c63f..ca2528f 100644 --- a/static/ArthurTaftResume.html +++ b/static/ArthurTaftResume.html @@ -1,48 +1,80 @@ + + + + - + + - -
-

Arthur Taft

-

Mobile: (385) 266 - 6682  •  Email  •  LinkedIn  •  GitHub

-
-

-

Summary

- -

Education

-

BS, Cybersecurity - Minor in German                  May 2028

-

Southern Utah University, Cedar City, UT

- -

Projects

-

Homelab

- -

Custom Scripts

-

Experience

-

SUU Cybersecurity Club

- -

IT Help Desk Technician, Southern Utah University, Cedar City, UT                                          November 2024 – August 2025

- + +
+
+

Arthur Taft

+ +
+

Summary

+
    +
  • Diversified experience troubleshooting Microsoft Windows, macOS, and other Unix-based operating systems.
  • +
  • Knowledgeable in: HTTP(S), TCP/UDP, LAN, WAN, VLAN, SSH, RDP, SSL, DNS, NAT, Bash, PowerShell, pfSense, postfix, dovecot, Microsoft Office, and Jira.
  • +
  • Experienced in interpersonal communication, with an emphasis in clarity and customer satisfaction.
  • +
  • Detail-oriented and organized, with the ability to manage multiple tasks in a time-efficient and effective manner.
  • +
+
+
+

Education

+
+

BS, Cybersecurity - Minor in German

+

May 2028

+
+

Southern Utah University, Cedar City, UT

+
    +
  • SUU Cybersecurity Club
  • +
  • Key Courses: Object Oriented Programming, Web Development, Data Communications and Networking, Database Design and Management, Systems Security
  • +
+
+
+

Projects

+

Homelab

+
    +
  • Hosted Minecraft Server, learned about TCP/UDP, using pfSense for routing and configuring LAN and WAN interfaces. Used SSH and RDP to access remote machines. Used VLANs to segregate services. Set up a mailserver using postfix and dovecot.
  • +
+

Custom Scripts

+
    +
  • Wrote a file backup and restore script to increase efficiency in moving users to new workstations. Wrote custom scripts to build packages from source on Gentoo Linux. Wrote a wrapper for the popular program yt-dlp to aid in media archival.
  • +
+
+
+

Experience

+

SUU Cybersecurity Club

+
    +
  • Attended every meeting for the 2024-2025 school year, participated in 3 CTF events, member of the NCAE Cyber Games team. Learned about DNS, routing, NAT, apache webservers, and general Linux hardening.
  • +
  • Stayed late after every club meeting in 2025 to learn from the Collegiate Cyber Defense Competition team. Learned about SIEM, Palo Alto, Windows Automation, Linux Automation.
  • +
  • Gave a presentation on Gentoo Linux and walked club members through the install process step-by-step. Enabled club members to learn more about Linux.
  • +
+

IT Help Desk Technician, Southern Utah University, Cedar City, UT November 2024 – August 2025

+
    +
  • Monitored ticket queue, personally reviewing all tickets and resolving an average of 3 tickets per week. Took initiative in answering 4-5 phone calls per day.
  • +
  • Developed and deployed a script to automate transfer of user files, increasing efficiency by over 50%.
  • +
  • Praised by coworkers and patrons averaging a 5-star review on all completed tickets.
  • +
  • Actively assisted walk-in patrons, and strove to resolve user issues in under 10 minutes when possible. All other issues were resolved in under 1 hour.
  • +
+
+ + +
+
+ diff --git a/static/resume-styles.css b/static/resume-styles.css new file mode 100644 index 0000000..93cd504 --- /dev/null +++ b/static/resume-styles.css @@ -0,0 +1,91 @@ +/* + * resume-styles.css + * + * Copyright (c) 2025 Arthur Taft. All Rights Reserved. + * + */ + +#resume-links { + margin-left: 25%; + margin-right: 25%; +} + +#resume-links .resume-list { + display: flex; + flex-flow: row wrap; + justify-content: space-between; + list-style-type: none; +} + +#resume-links .resume-list-item { + color: var(--subtext-1); +} + +#summary .main-subheading { + margin-left: 15%; +} + +#summary .summary-list { + margin-left: 20%; + margin-right: 15%; +} + +#summary .summary-list-item { + color: var(--subtext-1); +} + +#education .main-subheading { + margin-left: 15%; +} + +#education .school { + margin-left: 17.5%; + color: var(--sky); +} + +#degree-info { + display: flex; + flex-direction: row; + margin-left: 17.5%; + margin-right: 15%; + justify-content: space-between; +} + +#degree-info .degree { + color: var(--sky); +} + +#degree-info .grad-date { + color: var(--sky); +} + +#education .education-list { + margin-left: 20%; + margin-right: 15%; +} + +#education .education-list-item { + color: var(--subtext-1); +} + +#projects .main-subheading { + margin-left: 15%; +} + +#projects .project-title { + margin-left: 17.5%; + color: var(--sky); +} + +#projects .project-list { + margin-left: 20%; + margin-right: 15%; +} + +#projects .project-list-item { + color: var(--subtext-1); +} + +a { + font-size: 1rem; +}