-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·103 lines (92 loc) · 3.08 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
<?php include('includes/header.php'); ?>
<h2>About</h2>
<section class="about" id="basics">
<h3>Basics</h3>
<b>Name: </b>
Brian Ashworth
<br />
<b>Email: </b>
bosrsf04[at]gmail[dot]com
<br />
<b>Resume: </b>
<a href="resources/resume.pdf" target="_blank">[PDF]</a>
<br />
<b>LinkedIn: </b>
<a href="https://www.linkedin.com/in/brian-ashworth-70150692/" target="_blank">[Link]</a>
<br />
<b>GitHub: </b>
<a href="http://github.com/RedSoxFan" target="_blank">[RedSoxFan]</a>
</section>
<section class="about" id="education">
<h3>Education</h3>
<ul>
<li>
<b>University of Pittsburgh, Pittsbugh, PA</b><br />
Bachelor of Science in Computer Science<br />
GPA 3.33 - Computer Science GPA 3.73<br />
April 2017
</li>
<li>
<b>Nashua Comunity College, Nashua, NH</b><br />
Running Start Program (College in High School)<br />
Nashua High School South<br />
Computer Networking
</li>
<li>
<b>Nashua High School North, Nashua, NH</b><br />
High School Diploma<br />
GPA 3.93<br />
June 2013
</li>
</ul>
</section>
<section class="about" id="employment">
<h3>Employment</h3>
<ul>
<li>
<b>Student Computer Consultant (Work Study)</b><br />
University of Pittsburgh - School of Health and Rehabilitation Science</b><br />
Semptember 2013 - Present <i>(During School Years)</i>
<ul class="bullets">
<li>Assisted faculty and staff with various help desk tickets</li>
<li>Imaged desktop computers using Norton Ghost 15 and Symantec Ghost Solution Suit 3.1</li>
<li>Setup new laptops and tablets for faculty and staff</li>
<li>Verified network and multimedia functionality in classrooms and conference rooms</li>
<li>Developed a series of web pages using ASP.NET/C#, Sass, and Microsoft SQL to record projector info</li>
</ul>
</li>
<li>
<b>IT Helpdesk Intern</b><br />
Axis Communications<br />
May 2015 - August 2015 and June 2016 - August 2016
<ul class="bullets">
<li>Created and managed user and computer accounts in Active Directory</li>
<li>Created and managed Microsoft Exchange mailboxes</li>
<li>Imaged laptops using Microsoft System Center Configuration Manager</li>
<li>Wrote a series of PowerShell scripts for automating Active Directory tasks</li>
</ul>
</li>
</ul>
</section>
<section class="about" id="courses">
<h3>Computer Science Courses</h3>
<ul class="bullets small-bottom-margin">
<li>Special Topics: Cloud Computing</li>
<li>Applied Cryptography and Network Security</li>
<li>Intro to Data Science</li>
<li>Database Management Systems</li>
<li>Intro to Computer Architecture</li>
<li>Intro to High Performance Computing Systems</li>
<li>Special Topics: Intro to Computer Vision</li>
<li>Formal Methods in Computer Science</li>
<li>Intro to Operating Systems</li>
<li>Intro to Systems Software</li>
<li>Computer Organization and Assembly Language</li>
<li>Algorithm Implementation</li>
<li>Discete Structures</li>
<li>Data Structures</li>
<li>Intermediate Networking</li>
<li>Routing Fundamentals</li>
</ul>
</section>
<?php include('includes/footer.php'); ?>