Compare commits
1 Commits
release-cc
...
release-33
Author | SHA1 | Date | |
---|---|---|---|
331e3d1e25 |
@@ -1,37 +0,0 @@
|
|||||||
name: Build and Release PDF
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- "**"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Install LaTeX (XeLaTeX)
|
|
||||||
run: |
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y texlive-xetex texlive-science texlive-fonts-extra
|
|
||||||
|
|
||||||
wget -P /usr/local/share/fonts https://github.com/CatharsisFonts/Cormorant/raw/refs/heads/master/fonts/ttf/CormorantGaramond-Regular.ttf
|
|
||||||
wget -P /usr/local/share/fonts https://github.com/CatharsisFonts/Cormorant/raw/refs/heads/master/fonts/ttf/CormorantGaramond-Bold.ttf
|
|
||||||
wget -P /usr/local/share/fonts https://github.com/CatharsisFonts/Cormorant/raw/refs/heads/master/fonts/ttf/CormorantGaramond-Italic.ttf
|
|
||||||
wget -P /usr/local/share/fonts https://github.com/CatharsisFonts/Cormorant/raw/refs/heads/master/fonts/ttf/CormorantGaramond-BoldItalic.ttf
|
|
||||||
wget -P /usr/local/share/fonts https://github.com/CatharsisFonts/Cormorant/raw/refs/heads/master/fonts/ttf/CormorantGaramond-Light.ttf
|
|
||||||
fc-cache -fv
|
|
||||||
|
|
||||||
- name: Compile PDF
|
|
||||||
run: |
|
|
||||||
xelatex main.tex
|
|
||||||
|
|
||||||
- name: Release
|
|
||||||
uses: https://github.com/akkuman/gitea-release-action@main
|
|
||||||
with:
|
|
||||||
name: "Release ${{github.sha}}"
|
|
||||||
tag_name: "release-${{github.sha}}"
|
|
||||||
files: |-
|
|
||||||
main.pdf
|
|
42
.gitlab-ci.yml
Normal file
42
.gitlab-ci.yml
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
variables:
|
||||||
|
GIT_SUBMODULE_STRATEGY: recursive
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- release
|
||||||
|
|
||||||
|
build:
|
||||||
|
image: texlive/texlive
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- xelatex main.tex
|
||||||
|
after_script:
|
||||||
|
- echo "JOB_ID=$CI_JOB_ID" >> job.env
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- "*.pdf"
|
||||||
|
expire_in: 1d
|
||||||
|
reports:
|
||||||
|
dotenv: job.env
|
||||||
|
except:
|
||||||
|
- tags
|
||||||
|
|
||||||
|
release:
|
||||||
|
image: registry.gitlab.com/gitlab-org/release-cli
|
||||||
|
stage: release
|
||||||
|
needs:
|
||||||
|
- job: build
|
||||||
|
artifacts: true
|
||||||
|
script:
|
||||||
|
- echo "Create Release $CI_COMMIT_SHA"
|
||||||
|
release:
|
||||||
|
name: "Release $CI_COMMIT_SHA"
|
||||||
|
tag_name: "release-$CI_COMMIT_SHA"
|
||||||
|
ref: "$CI_COMMIT_SHA"
|
||||||
|
description: "Release $CI_COMMIT_SHA"
|
||||||
|
assets:
|
||||||
|
links:
|
||||||
|
- name: "main.pdf"
|
||||||
|
url: "https://git.karaolidis.com/karaolidis/cv/-/jobs/$JOB_ID/artifacts/raw/main.pdf"
|
||||||
|
except:
|
||||||
|
- tags
|
32
template.cls
32
template.cls
@@ -18,25 +18,25 @@
|
|||||||
\titlespacing*{\subsection}{0pt}{3.5ex plus 1ex minus .2ex}{-2.5ex}
|
\titlespacing*{\subsection}{0pt}{3.5ex plus 1ex minus .2ex}{-2.5ex}
|
||||||
|
|
||||||
\newcommand{\datedlocatedsubsection}[4]{%
|
\newcommand{\datedlocatedsubsection}[4]{%
|
||||||
\subsection[#2]{#3 \hfill \small{\textlf{\scshape{#2}}}}%
|
\subsection[#2]{#3 \hfill \small{\textlf{\scshape{#2}}}}%
|
||||||
\begin{minipage}{5cm}
|
\begin{minipage}{5cm}
|
||||||
\vspace*{-.7ex}\hspace*{-3cm}\footnotesize #1
|
\vspace*{-.7ex}\hspace*{-3cm}\footnotesize #1
|
||||||
\end{minipage}
|
\end{minipage}
|
||||||
\raggedright
|
\raggedright
|
||||||
|
|
||||||
\begin{small}
|
\begin{small}
|
||||||
#4
|
#4
|
||||||
\end{small}
|
\end{small}
|
||||||
}
|
}
|
||||||
|
|
||||||
\newcommand{\datedsubsection}[3]{%
|
\newcommand{\datedsubsection}[3]{%
|
||||||
\subsection[#2]{#2}%
|
\subsection[#2]{#2}%
|
||||||
\begin{minipage}{5cm}
|
\begin{minipage}{5cm}
|
||||||
\vspace*{-.7ex}\hspace*{-3cm}\footnotesize #1
|
\vspace*{-.7ex}\hspace*{-3cm}\footnotesize #1
|
||||||
\end{minipage}
|
\end{minipage}
|
||||||
\raggedright
|
\raggedright
|
||||||
|
|
||||||
\begin{small}
|
\begin{small}
|
||||||
#3
|
#3
|
||||||
\end{small}
|
\end{small}
|
||||||
}
|
}
|
||||||
|
34
work.tex
34
work.tex
@@ -1,30 +1,15 @@
|
|||||||
\datedlocatedsubsection{Nov 2024 - Present}
|
|
||||||
{SAS Institute, Glasgow, UK}
|
|
||||||
{Senior Associate Software Developer}
|
|
||||||
{%
|
|
||||||
A global leader in analytics and AI software, SAS is empowering organizations across more than 145 countries.
|
|
||||||
%
|
|
||||||
\begin{itemize}
|
|
||||||
\item Spearheaded the design and development of a microservices-based platform (\textbf{Go}, \textbf{Python}, \textbf{Postgres}, \textbf{Redis}), enabling massively parallel task execution at accelerated rates compared to the legacy solution.
|
|
||||||
\item Architected distributed task scheduling with \textbf{Ray} and \textbf{KEDA}-powered autoscaling on \textbf{Kubernetes} clusters.
|
|
||||||
\item Authored and maintained the platform's \textbf{unit test} suite and \textbf{CI/CD} pipelines to guarantee reliability across all services.
|
|
||||||
\item Triaged and fixed Viya 4 UI (\textbf{TypeScript}) and backend (\textbf{Go}/\textbf{Java}) issues.
|
|
||||||
\item Prototyped a lightweight isolation platform for the SAS language executor using \textbf{Linux kernel} capabilities and system calls.
|
|
||||||
\end{itemize}
|
|
||||||
}
|
|
||||||
|
|
||||||
\datedlocatedsubsection{Jun 2023 - Sep 2023}
|
\datedlocatedsubsection{Jun 2023 - Sep 2023}
|
||||||
{WebHotelier | primalRES, Athens, Greece}
|
{WebHotelier | primalRES, Athens, Greece}
|
||||||
{Software Engineering Intern}
|
{Software Engineering Intern}
|
||||||
{%
|
{%
|
||||||
With 9000+ customers in 38 countries, WebHotelier | primalRES stands as one of Europe's hospitality tech giants.
|
With 9000+ customers in 38 countries, WebHotelier | primalRES stands as the leading hospitality tech group in Greece and one of Europe's giants.
|
||||||
%
|
%
|
||||||
\begin{itemize}
|
\begin{itemize}
|
||||||
\item Spearheaded a complete overhaul of the company's \textbf{Grafana} dashboards, slashing the time-to-load by approximately 80\% while also increasing the number of metrics shown.
|
\item Spearheaded a complete overhaul of the company's \textbf{Grafana} dashboards, slashing the time-to-load by approximately 80\% while also increasing the number of metrics shown.
|
||||||
\item Collaborated directly with the CTO to secure a year-long contract with \textbf{ClickHouse Cloud} and \textbf{AWS}.
|
\item Collaborated directly with the CTO to secure a year-long contract with \textbf{ClickHouse Cloud} and \textbf{AWS}.
|
||||||
\item Migrated the entire metrics stack from \textbf{InfluxDB} to \textbf{ClickHouse}. This shift amped up performance by over 50\% without inflating operational costs.
|
\item Migrated the entire metrics stack from \textbf{InfluxDB} to \textbf{ClickHouse}. This shift amped up performance by over 50\% without inflating operational costs.
|
||||||
\item Engineered an open-source \textbf{Telegraf} ClickHouse plugin optimized for Terabyte-scale data outputs, outperforming the in-built plugin in terms of efficiency.
|
\item Engineered an open-source \textbf{Telegraf} ClickHouse plugin optimized for Terabyte-scale data outputs, outperforming the in-built plugin in terms of efficiency.
|
||||||
\item Deployed Telegraf across 12 \textbf{Amazon EC2} instances, revealing and subsequently rectifying performance bottlenecks.
|
\item Deployed Telegraf across 12 \textbf{Amazon EC2} instances, revealing and subsequently rectifying several performance bottlenecks.
|
||||||
\item Modernized the logging approach by transitioning to \textbf{ClickHouse}, thereby ending the thread-related challenges of the previous file-based system.
|
\item Modernized the logging approach by transitioning to \textbf{ClickHouse}, thereby ending the thread-related challenges of the previous file-based system.
|
||||||
\item Teamed up with fellow developers to incorporate \textbf{DataDog} performance monitoring into \textbf{Java} applications, improving understanding of app operations and pinpointing areas of enhancement.
|
\item Teamed up with fellow developers to incorporate \textbf{DataDog} performance monitoring into \textbf{Java} applications, improving understanding of app operations and pinpointing areas of enhancement.
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
@@ -44,3 +29,18 @@
|
|||||||
\item Authored clean and maintainable code which was tested using unit, integration, and end-to-end testing.
|
\item Authored clean and maintainable code which was tested using unit, integration, and end-to-end testing.
|
||||||
\end{itemize}
|
\end{itemize}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
\datedlocatedsubsection{Jul 2019}
|
||||||
|
{InterSearch Worldwide, Dubai, UAE}
|
||||||
|
{Intern}
|
||||||
|
{%
|
||||||
|
Ranked among the 30 largest executive search firms in the world, InterSearch Worldwide has 90 offices in 50 different countries.
|
||||||
|
%
|
||||||
|
\begin{itemize}
|
||||||
|
\item Developed a \textbf{Python} CLI Tool to automate Candidate CV and Financial Documentation Entry, extracting information from .pdf, .doc, and .docx CVs to a \textbf{FileFinder} database.
|
||||||
|
\item Incorporated \textbf{XML} parsing techniques for data extraction from Microsoft Word documents, and \textbf{Optical Character Recognition} with OpenCV to interpret non-editable PDFs.
|
||||||
|
\item Applied \textbf{Natural Language Processing} using NLTK to categorize text tokens such as names, addresses, and skills.
|
||||||
|
\item Navigated database interactions using PyAutoGUI, a workaround due to limited direct database access.
|
||||||
|
\item Refined the E-mail spam filter to improve productivity and internal communications.
|
||||||
|
\end{itemize}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user