Adds Uurhuss Resume directory and files
This commit is contained in:
parent
22cd76cc3e
commit
3c7090944e
2 changed files with 110 additions and 0 deletions
79
student-resumes/uurhus-resume/ben_resume.html
Normal file
79
student-resumes/uurhus-resume/ben_resume.html
Normal file
|
|
@ -0,0 +1,79 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang ="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Life so far</title>
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>Ben U M</h1>
|
||||||
|
<p>Physiotherapist</p>
|
||||||
|
</header>
|
||||||
|
<section class="experience">
|
||||||
|
<h2>What have I done so far?</h2>
|
||||||
|
<article>
|
||||||
|
<h3>Clinical director</h3>
|
||||||
|
<p>May 2022 - present</p>
|
||||||
|
<ul>
|
||||||
|
<li>Organise and manage all the business activity.</li>
|
||||||
|
<li>Keep company accounts in check.</li>
|
||||||
|
<li>Maintain and manage compliance for a healthcare business.</li>
|
||||||
|
<li>Work with insurance companies and remain compliant with the contracts.</li>
|
||||||
|
<li>Treat and manage client cases and keep detailed reports on progress and work.</li>
|
||||||
|
<li>In charge or marketing and all the relevant aspects of the business.</li>
|
||||||
|
<li>Stock and supply management.</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Clinical practitioner</h3>
|
||||||
|
<p>May 2020 - May 2022</p>
|
||||||
|
<ul>
|
||||||
|
<li>Diagnose and assess patients and refer to the rigth service.</li>
|
||||||
|
<li>Manage patients in clinic if appropriate to minimise waiting lists and strain on the healthcare system.</li>
|
||||||
|
<li>Triage and recognise urgent cases and conditions to appropriate services.</li>
|
||||||
|
<li>Leading, managing and contributing to service delivery.</li>
|
||||||
|
<li>Ensuring care is proactive, preventive in focus and population base, wtih an emphasis on early intervention.</li>
|
||||||
|
<li>Providing learning opportunities for the whole multi professinal team within primary care.</li>
|
||||||
|
<li>Exercising professional judgement, makin, justifying and taking responsiblity for decisions in unpredictable situations, including in the context of incomplete/contradictory information.</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Training and development lead</h3>
|
||||||
|
<p>December 2020 - May 2022</p>
|
||||||
|
<ul>
|
||||||
|
<li>Mentoring and inducting junior team members.</li>
|
||||||
|
<li>Providing training and managing clinical progression of junior team members.</li>
|
||||||
|
<li>Providing pre-employment practical interviews for newcomers and potential candidates.</li>
|
||||||
|
</ul>
|
||||||
|
<h3>And many, many more...the coolest roles?</h3>
|
||||||
|
<ul>
|
||||||
|
<li>European chapter of the NBA in 2019.</li>
|
||||||
|
<li>Redbull extreme urban sports in 2018.</li>
|
||||||
|
<li>Various national teams in professional Mountain biking between 2016 to 2019.</li>
|
||||||
|
<li>National rugby teams from 2014 up until 2023.</li>
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
<section class="education">
|
||||||
|
<h2>Education</h2>
|
||||||
|
<article>
|
||||||
|
<h3>BSc in Physiotherapy</h3>
|
||||||
|
<p>Completed with honours in 2016.</p>
|
||||||
|
<h3>Additional courses in Physiotherapy</h3>
|
||||||
|
<ul>
|
||||||
|
<li>Neurorehabilitation training (to treat people with brain injuries and disorders).</li>
|
||||||
|
<li>Orthopaedic diagnostics module I-VII.</li>
|
||||||
|
<li>Dry needling courses.</li>
|
||||||
|
<li>First aid training.</li>
|
||||||
|
<li>Business fundamentals and legislation course.</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Software development training so far</h3>
|
||||||
|
<ul>
|
||||||
|
<li>Harvard CS50</li>
|
||||||
|
<li>The Odin Project</li>
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
<footer>
|
||||||
|
<b>Instagram:</b> Physiobaseclinics
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
31
student-resumes/uurhus-resume/style.css
Normal file
31
student-resumes/uurhus-resume/style.css
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
body {
|
||||||
|
font-family: 'Roboto';
|
||||||
|
margin: 50px;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 1.6;
|
||||||
|
border: 2px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
header, section, footer {
|
||||||
|
padding: 25px
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1, header p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
line-height: 1.6;
|
||||||
|
border-bottom: 1px solid black;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.experience h2, .education h2 {
|
||||||
|
color: orange;
|
||||||
|
}
|
||||||
|
|
||||||
|
article h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue