new: add new job experience to resume
This commit is contained in:
parent
042ccd0a30
commit
c8576a7c2e
2 changed files with 92 additions and 50 deletions
Binary file not shown.
|
|
@ -49,8 +49,10 @@
|
||||||
|
|
||||||
% Sections formatting
|
% Sections formatting
|
||||||
\titleformat{\section}{
|
\titleformat{\section}{
|
||||||
\vspace{-4pt}\raggedright \fontsize{9}{12} \bfseries
|
\vspace{-2pt}\raggedright \fontsize{9}{12} \bfseries
|
||||||
}{}{0em}{}[\color{blue}\titlerule \vspace{-5pt}]
|
}{}{0em}{}[\color{blue}\titlerule\vspace{-2pt}]
|
||||||
|
|
||||||
|
\titlespacing{\section}{0pt}{8pt}{4pt}
|
||||||
|
|
||||||
% Ensure that generate pdf is machine readable/ATS parsable
|
% Ensure that generate pdf is machine readable/ATS parsable
|
||||||
\pdfgentounicode=1
|
\pdfgentounicode=1
|
||||||
|
|
@ -61,88 +63,121 @@
|
||||||
|
|
||||||
%-------------------------
|
%-------------------------
|
||||||
% Custom commands
|
% Custom commands
|
||||||
|
|
||||||
\newcommand{\resumeItem}[1]{
|
\newcommand{\resumeItem}[1]{
|
||||||
\item{
|
\item{#1}
|
||||||
{#1\vspace{-2pt}}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\resumeSubItem}[2]{
|
\newcommand{\resumeSubItem}[2]{
|
||||||
\item
|
\item
|
||||||
\textbf{\color{black}#1}
|
\textbf{\color{black}#1}
|
||||||
\vspace{1pt} % Adjust this value to increase or decrease space
|
\vspace{1pt}
|
||||||
% \small
|
#2
|
||||||
#2\vspace{-5pt} % Adjust this value to increase or decrease space between items
|
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\resumeSchoolItem}[2]{
|
\newcommand{\resumeSchoolItem}[2]{
|
||||||
\item
|
\item
|
||||||
\begin{tabular*}{1.0\textwidth}[t]{l@{\extracolsep{\fill}}r}
|
\begin{tabular*}{1.0\textwidth}[t]{l@{\extracolsep{\fill}}r}
|
||||||
\textbf{\color{black} #1} & \textbf{ #2} \\
|
\textbf{\color{black} #1} & \textbf{ #2} \\
|
||||||
\end{tabular*}\vspace{-7pt}
|
\end{tabular*}
|
||||||
|
\vspace{-5pt}
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\resumeSubheading}[4]{
|
\newcommand{\resumeSubheading}[4]{
|
||||||
\vspace{-2pt}\item
|
\item
|
||||||
\begin{tabular*}{1.0\textwidth}[t]{l@{\extracolsep{\fill}}r}
|
\begin{tabular*}{1.0\textwidth}[t]{l@{\extracolsep{\fill}}r}
|
||||||
\textbf{\color{black} #1} & \textbf{ #2} \\
|
\textbf{\color{black} #1} & \textbf{ #2} \\
|
||||||
\textit{#3} & \textit{ #4} \\
|
\textit{#3} & \textit{ #4} \\
|
||||||
\end{tabular*}\vspace{-7pt}
|
\end{tabular*}
|
||||||
|
\vspace{-2pt}
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\resumeSubSubheading}[2]{
|
\newcommand{\resumeSubSubheading}[2]{
|
||||||
\item
|
\item
|
||||||
\begin{tabular*}{1.0\textwidth}{l@{\extracolsep{\fill}}r}
|
\begin{tabular*}{1.0\textwidth}{l@{\extracolsep{\fill}}r}
|
||||||
\textit{#1} & \textit{ #2} \\
|
\textit{#1} & \textit{ #2} \\
|
||||||
\end{tabular*}\vspace{-7pt}
|
\end{tabular*}
|
||||||
|
\vspace{-2pt}
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\resumeProjectHeading}[2]{
|
\newcommand{\resumeProjectHeading}[2]{
|
||||||
\vspace{-2pt}\item
|
\item
|
||||||
\begin{tabular*}{1.00\textwidth}{l@{\extracolsep{\fill}}r}
|
\begin{tabular*}{1.00\textwidth}{l@{\extracolsep{\fill}}r}
|
||||||
#1 & \textbf{ #2}\\
|
#1 & \textbf{ #2}\\
|
||||||
\end{tabular*}\vspace{-8pt}
|
\end{tabular*}
|
||||||
|
\vspace{-8pt}
|
||||||
}
|
}
|
||||||
|
|
||||||
% \newcommand{\resumeSubItem}[1]{\resumeItem{#1}\vspace{-4pt}}
|
|
||||||
|
|
||||||
\renewcommand\labelitemi{$\vcenter{\hbox{\tiny$\bullet$}}$}
|
\renewcommand\labelitemi{$\vcenter{\hbox{\tiny$\bullet$}}$}
|
||||||
\renewcommand\labelitemii{$\vcenter{\hbox{\tiny$\bullet$}}$}
|
\renewcommand\labelitemii{$\vcenter{\hbox{\tiny$\bullet$}}$}
|
||||||
|
|
||||||
\newcommand{\resumeSubHeadingListStart}{\begin{itemize}[leftmargin=0.0in, label={}]}
|
\newcommand{\resumeSubHeadingListStart}{
|
||||||
\newcommand{\resumeSubHeadingListEnd}{\end{itemize}}%\vspace{-7pt}}
|
\begin{itemize}[
|
||||||
\newcommand{\resumeItemListStart}{\begin{itemize}}
|
leftmargin=0.0in,
|
||||||
\newcommand{\resumeItemListEnd}{\end{itemize}\vspace{-7pt}}
|
label={},
|
||||||
|
itemsep=5pt,
|
||||||
|
topsep=0pt,
|
||||||
|
parsep=0pt
|
||||||
|
]}
|
||||||
|
|
||||||
|
\newcommand{\resumeSubHeadingListEnd}{
|
||||||
|
\end{itemize}
|
||||||
|
\vspace{-4pt}
|
||||||
|
}
|
||||||
|
|
||||||
|
\newcommand{\resumeItemListStart}{
|
||||||
|
\begin{itemize}[
|
||||||
|
topsep=0pt,
|
||||||
|
itemsep=1pt,
|
||||||
|
parsep=0pt
|
||||||
|
]}
|
||||||
|
|
||||||
|
\newcommand{\resumeItemListEnd}{
|
||||||
|
\end{itemize}
|
||||||
|
\vspace{4pt}
|
||||||
|
}
|
||||||
|
|
||||||
\pdfstringdefDisableCommands{\def\color#1{}}
|
\pdfstringdefDisableCommands{\def\color#1{}}
|
||||||
|
|
||||||
%-------------------------------------------
|
%-------------------------------------------
|
||||||
%%%%%% RESUME STARTS HERE %%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%% RESUME STARTS HERE %%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
%----------HEADING----------
|
%----------HEADING----------
|
||||||
\begin{tabular*}{\textwidth}{@{\hspace{-1ex}}l}
|
\begin{tabular*}{\textwidth}{@{\hspace{-1ex}}l}
|
||||||
\textbf{\href{http://m.nisyif.com/}{\Huge\color{blue}MURTADHA NISYIF}} \vspace{2pt}\\
|
\textbf{\href{http://m.nisyif.com/}{\Huge\color{blue}MURTADHA SAEED NISYIF}} \vspace{2pt}\\
|
||||||
\href{mailto:mnisyif@gmail.com}{\faIcon{at} mnisyif@gmail.com} $|$
|
\href{mailto:mnisyif@outlook.com}{\faIcon{at} mnisyif@outlook.com} $|$
|
||||||
\faIcon{phone-square-alt} +964 775 608 4424 $|$
|
\faIcon{phone-square-alt} +86 177 0542 2865$|$
|
||||||
\faIcon{map-marker-alt} Karbala, Iraq $|$
|
\faIcon{map-marker-alt} Huangdao, Shandong $|$
|
||||||
\href{https://m.nisyif.com/}{\faIcon{user-tie} m.nisyif.com} $|$
|
\href{https://m.nisyif.com/}{\faIcon{user-tie} m.nisyif.com} $|$
|
||||||
\href{https://www.linkedin.com/in/mnisyif}{\faIcon{linkedin} linkedin.com/ln/mnisyif} $|$
|
\href{https://www.linkedin.com/in/mnisyif}{\faIcon{linkedin} linkedin.com/ln/mnisyif} $|$
|
||||||
\href{https://github.com/mnisyif}{\faIcon{github} github.com/mnisyif}\vspace{12pt} \\
|
\href{https://github.com/mnisyif}{\faIcon{github} github.com/mnisyif}\vspace{12pt} \\
|
||||||
\end{tabular*}
|
\end{tabular*}
|
||||||
|
|
||||||
\vspace{-20pt}
|
\vspace{-10pt}
|
||||||
|
|
||||||
%----------Experience----------
|
%----------Experience----------
|
||||||
\section{\color{blue}WORK EXPERIENCE}
|
\section{\color{blue}WORK EXPERIENCE}
|
||||||
\resumeSubHeadingListStart
|
\resumeSubHeadingListStart
|
||||||
|
\resumeSubheading
|
||||||
|
{ICT Teacher}{Mar 2026 -- Jul 2026}
|
||||||
|
{International Community School}{Baghdad, Iraq}
|
||||||
|
\resumeItemListStart
|
||||||
|
\resumeItem{Delivered the Cambridge ICT curriculum to students in Grades 1-8, teaching computer fundamentals, Microsoft Office applications, internet safety, digital citizenship, introductory programming, robotics, and computer hardware concepts}
|
||||||
|
\resumeItem{Designed lesson plans and classroom assignments tailored to students' grade levels, ensuring instruction aligned with curriculum objectives and learning outcomes}
|
||||||
|
\resumeItem{Maintained the computer laboratory by troubleshooting hardware and software issues, installing instructional software, and preparing classroom technology to support effective teaching}
|
||||||
|
\resumeItem{Resumed ICT instruction following a three-month teacher vacancy and developed a teaching plan to support continuity into the following academic year}
|
||||||
|
\resumeItem{Communicated with parents regarding student progress and participated in school-wide events, including graduation ceremonies and other academic activities}
|
||||||
|
\resumeItemListEnd
|
||||||
|
|
||||||
\resumeSubheading
|
\resumeSubheading
|
||||||
{Teaching Assistant}{Sep 2024 -- Dec 2025}
|
{Teaching Assistant}{Sep 2024 -- Dec 2025}
|
||||||
{University of Guelph}{Guelph, Ontario}
|
{University of Guelph}{Guelph, Ontario}
|
||||||
\resumeItemListStart
|
\resumeItemListStart
|
||||||
\resumeItem {Led lab demonstrations and tutorials for 100+ students, providing hands-on guidance in implementing robotic control, navigation algorithms, and hardware/software integration}
|
\resumeItem{Led laboratory sessions and tutorials for over 100 undergraduate students in robotics and microcomputer interfacing, providing hands-on instruction and technical guidance}
|
||||||
\resumeItem {Facilitated technical comprehension by bridging theoretical lecture concepts with practical applications in microcomputer interfacing and robotic systems}
|
\resumeItem{Bridged theoretical concepts with practical implementation through demonstrations, guided exercises, and one-on-one student support}
|
||||||
\resumeItem {Evaluated student performance across lab reports, project deliverables, and live demonstrations, providing constructive feedback to improve technical writing and problem-solving skills}
|
\resumeItem{Prepared and graded laboratory reports, project deliverables, and practical demonstrations while providing constructive feedback to enhance students' technical understanding}
|
||||||
\resumeItem {Resolved complex student inquiries during office hours and Q\&A sessions, ensuring a deep understanding of both high-level robotics and low-level system interfacing}
|
\resumeItem{Held office hours to mentor students, answer technical questions, and support their academic success throughout the semester}
|
||||||
\resumeItemListEnd
|
\resumeItemListEnd
|
||||||
|
|
||||||
\resumeSubheading
|
\resumeSubheading
|
||||||
|
|
@ -180,28 +215,35 @@
|
||||||
\textbf{Languages: } & Python; C++; C; Rust; JavaScript; HTML; Java; Bash; Go \\
|
\textbf{Languages: } & Python; C++; C; Rust; JavaScript; HTML; Java; Bash; Go \\
|
||||||
\textbf{Tech Stacks: } & FastAPI; PyTorch; React; Flask; SQLite, PostgresSQL, MongoDB, Express JS; Node.js; Swagger; Docker; Git; Jenkins; Terraform; AWS; Kubernetes \\
|
\textbf{Tech Stacks: } & FastAPI; PyTorch; React; Flask; SQLite, PostgresSQL, MongoDB, Express JS; Node.js; Swagger; Docker; Git; Jenkins; Terraform; AWS; Kubernetes \\
|
||||||
\end{tabularx}
|
\end{tabularx}
|
||||||
\vspace{-7pt}
|
% \vspace{-7pt}
|
||||||
|
|
||||||
%-----------PROJECTS-----------
|
%-----------PROJECTS-----------
|
||||||
\section{\color{blue}PROJECTS}
|
\section{\color{blue}PROJECTS}
|
||||||
\resumeSubHeadingListStart
|
\resumeSubHeadingListStart
|
||||||
|
|
||||||
\resumeProjectHeading {\textbf{\color{black}Home lab Adminstration} $|$ \color{blue} \emph{Docker, Terraform, Jenkins, Prometheus, Grafana, SSL/TLS}}{}
|
\resumeProjectHeading
|
||||||
|
{\textbf{\color{black}Home Lab Administration} $|$ \color{blue}\emph{Docker, Terraform, Jenkins, Prometheus, Grafana, SSL/TLS}}
|
||||||
|
{}
|
||||||
\resumeItemListStart
|
\resumeItemListStart
|
||||||
\resumeItem{Orchestrate a comprehensive home lab environment managing 15+ Docker containers for media, web, and gaming services, configured auto-renewal SSL/TLS certification with Let’s Encrypt, setup Prometheus/Grafana monitoring, and applied Fail2Ban for robust security achieving 99.9\% uptime and detailed system analytics}
|
\resumeItem{Orchestrated a comprehensive home lab environment managing 15+ Docker containers for media, web, and gaming services, configured auto-renewal SSL/TLS certification with Let’s Encrypt, setup Prometheus/Grafana monitoring, and applied Fail2Ban for robust security achieving 99.9\% uptime and detailed system analytics}
|
||||||
\resumeItemListEnd
|
\resumeItemListEnd
|
||||||
|
|
||||||
\resumeProjectHeading{\textbf{\color{black}Heart Disease Predictor} $|$ \color{blue} \emph{Python, Flask, RESTful, HTML, CSS, JS}}{}
|
\resumeProjectHeading
|
||||||
|
{\textbf{\color{black}Heart Disease Predictor} $|$ \color{blue}\emph{Python, Flask, RESTful, HTML, CSS, JS}}
|
||||||
|
{}
|
||||||
\resumeItemListStart
|
\resumeItemListStart
|
||||||
\resumeItem{Developed a scalable Flask-RESTful API paired with an interactive HTML/JS frontend while leveraging the UCI dataset and implemented real-time feature scaling with hyperparameter tuning to deliver a 95\% prediction accuracy, supporting timely clinical decision-making}
|
\resumeItem{Developed a scalable Flask-RESTful API paired with an interactive HTML/JS frontend while leveraging the UCI dataset and implemented real-time feature scaling with hyperparameter tuning to deliver a 95\% prediction accuracy, supporting timely clinical decision-making}
|
||||||
\resumeItemListEnd
|
\resumeItemListEnd
|
||||||
|
|
||||||
\resumeProjectHeading{\textbf{\color{black} Real-Time Noise Cancellation with RL} $|$ \color{blue} \emph{Python, PyTorch, Gymnasium, SciPy, librosa}}{}
|
\resumeProjectHeading
|
||||||
|
{\textbf{\color{black}Real-Time Noise Cancellation with RL} $|$ \color{blue}\emph{Python, PyTorch, Gymnasium, SciPy, librosa}}
|
||||||
|
{}
|
||||||
\resumeItemListStart
|
\resumeItemListStart
|
||||||
\resumeItem{Created a bespoke OpenAI Gym environment incorporating FFT-based audio processing and trained a PPO agent to perform adaptive noise cancellation in real time, achieving processing speeds exceeding 5,200 FPS for high-fidelity audio performance}
|
\resumeItem{Created a bespoke OpenAI Gym environment incorporating FFT-based audio processing and trained a PPO agent to perform adaptive noise cancellation in real time, achieving processing speeds exceeding 5,200 FPS for high-fidelity audio performance}
|
||||||
\resumeItemListEnd
|
\resumeItemListEnd
|
||||||
|
|
||||||
\resumeSubHeadingListEnd
|
\resumeSubHeadingListEnd
|
||||||
\vspace{-7pt}
|
\vspace{-5pt}
|
||||||
|
|
||||||
\section{\color{blue}PUBLICATIONS}
|
\section{\color{blue}PUBLICATIONS}
|
||||||
\resumeSubHeadingListStart
|
\resumeSubHeadingListStart
|
||||||
Loading…
Add table
Add a link
Reference in a new issue