Files
website-2/src/lib/components/portfolio/timeline.svelte
Nick Bland e6164752b1 Migrate to Tailwind 4 & DaisyUI 5
Additionally add in some more work experience, adjust the skills section, and update the contents to better reflect me now.
2025-05-14 22:26:16 +10:00

177 lines
6.8 KiB
Svelte

<script lang="ts">
import Circle from "lucide-svelte/icons/circle";
</script>
<h3 class="p-5 text-4xl text-center">Work Experience</h3>
<ul class="timeline timeline-snap-icon max-md:timeline-compact timeline-vertical pb-8">
<li>
<div class="timeline-middle"><Circle class="fill-neutral" /></div>
<div
class="timeline-start timeline-box bg-neutral mb-10 max-w-3xl shadow-lg text-neutral-content text-base"
>
<time class="font-mono" datetime="2024-11">Nov 2024 - Present</time>
<div class="text-xl">Villanova College</div>
<div class="text-sm pb-2">Casual Relief + Placement</div>
<div class="divider my-1"></div>
Casual Relief:
<ul class="list-disc list-inside mt-2">
<li>Casual relief in the IT department while continuing with uni</li>
</ul>
<div class="divider my-1"></div>
Placement:
<ul class="list-disc list-inside mt-2">
<li>Placement project was beginning the migration process from SCCM to Intune</li>
<li>
Required careful documentation of current systems and assessing the feasability
of moving to an Intune/Autopilot environment.
</li>
<li>
Worked closely with different members of the department to gain access and
assessing what improvements could be made for the new system.
</li>
</ul>
<div class="divider my-1"></div>
Key Experiences and Takeaways:
<ul class="list-disc list-inside mt-2">
<li>
Gained more experience in the Azure ecosystem, exposing me to AzureAD (Entra)
and Intune.
</li>
<li>
Important lessons in taking careful note of what is currently in place, how it
works, and how to migrate functionality to new platforms.
</li>
<li>
Gained further understanding on the importance of documentation, and how it can
be used by future staff members to understand the new environment.
</li>
<li>
Important experience gained in doing in-place migrations without affecting the
end-user experience and functionality of current systems.
</li>
</ul>
</div>
<hr class="bg-neutral-content" />
</li>
<li>
<hr class="bg-neutral-content" />
<div class="timeline-middle"><Circle class="fill-neutral" /></div>
<div
class="timeline-end timeline-box bg-neutral mb-10 max-w-3xl shadow-lg text-neutral-content text-base"
>
<time class="font-mono" datetime="2022-10">Oct 2022 - Feb 2023</time>
<div class="text-xl">St Pauls School</div>
<div class="text-sm pb-2">System Administrator</div>
<div class="divider my-1"></div>
System Administrator Role:
<ul class="list-disc list-inside mt-2">
<li>
Became more experienced in scripting languages, and streamlining legacy scripts
in use.
</li>
<li>
Continually worked on improving my knowledge in Python, Powershell, and
Bashscript for automation tasks, and small projects.
</li>
<li>
Assisted in streamlining SDS (Student Data Sync service) scripts, including
importing new users into TASS and AD.
</li>
</ul>
<div class="divider my-1"></div>
Key Experiences and Takeaways:
<ul class="list-disc list-inside mt-2">
<li>There is always something to be improved upon if you look hard enough.</li>
<li>
Gained significant experience in deploying Autotune and Intune, as well as how
AzureAD works under the hood.
</li>
</ul>
</div>
<hr class="bg-neutral-content" />
</li>
<li>
<hr class="bg-neutral-content" />
<div class="timeline-middle"><Circle class="fill-neutral" /></div>
<div
class="timeline-start timeline-box bg-neutral mb-10 max-w-3xl shadow-lg text-neutral-content text-base"
>
<div class="md:text-end">
<time class="font-mono" datetime="2020-8">Aug 2020 - Oct 2022</time>
<div class="text-xl">St Pauls School</div>
<div class="text-sm pb-2">Information Technology Officer</div>
</div>
<div class="divider my-1"></div>
Help Desk Role:
<ul class="list-disc list-inside mt-2">
<li>
Assisted students and teachers with level 1 and 2 issues, and logged warranty
jobs. Continued triaging until issue was resolved.
</li>
<li>
Gained experience in cloud-based solutions in the enterprise environment, namely
AWS. I was able to apply some of the teaching for my homelab setup.
</li>
<li>
Gained more experience in Azure ecosystem, SCCM deployment, and networking.
</li>
</ul>
<div class="divider my-1"></div>
Key Experiences and Takeaways:
<ul class="list-disc list-inside mt-2">
<li>Working in a larger group to cover more ground</li>
<li>
The importance of relationships with end-users and suppliers to get issues
sorted in a timely manner.
</li>
<li>
Much more experience in networking (both Cisco and Unifi), and configuration in
an enterprise environment.
</li>
</ul>
</div>
<hr class="bg-neutral-content" />
</li>
<li>
<hr class="bg-neutral-content" />
<div class="timeline-middle"><Circle class="fill-neutral" /></div>
<div
class="timeline-end timeline-box bg-neutral max-w-3xl shadow-lg text-neutral-content text-base"
>
<time class="font-mono" datetime="2020-3">Mar 2020 - Jul 2020</time>
<div class="text-xl">Villanova College</div>
<div class="text-sm">Information Technology Officer</div>
<div class="divider my-1"></div>
Help Desk Role:
<ul class="list-disc list-inside mt-2">
<li>Performed repairs and troubleshooting for both students and teachers.</li>
<li>
Logged warranty claims with suppliers and triaged with parents and students
during this process.
</li>
<li>
Collaborated with IT team on installing and configuring equipment inside a new
building.
</li>
<li>
Assisted contractors with installation of Salto Systems and improved on existing
configuration throughout school.
</li>
</ul>
<div class="divider my-1"></div>
Key Experiences and Takeaways:
<ul class="list-disc list-inside mt-2">
<li>Became more comfortable and confident in an end-user facing role.</li>
<li>
Experience in a <i>professional</i> team environment, learning of the strengths and
weaknesses that come with it.
</li>
<li>
Gained first-hand experience using ticketing software (LanSweeper), and using it
as a powerful tool for organisation.
</li>
</ul>
</div>
</li>
</ul>