Author SHA1 Message Date
joshuacoles 604a777c50 Submit application
Render LaTeX and Publish Release / build (push) Successful in 25s
2024-06-08 18:45:39 +01:00
joshuacoles e7e99ca155 Stash 2024-06-08 18:17:58 +01:00
joshuacoles b7ef6b3ef6 Cleanup a little bit 2024-06-06 20:51:59 +01:00
joshuacoles 90bc584b7e Make font work with tectonic 2024-06-06 20:46:12 +01:00
joshuacoles 7885aa5b9f Okay I lied, split it up a little and add some comments
Next focus block is research key points
2024-06-06 19:55:51 +01:00
joshuacoles 562f8b2cec Update email on CV and finish adapting cover template 2024-06-06 19:48:54 +01:00
joshuacoles 4a5c40a51c Start to make edits 2024-06-06 19:05:04 +01:00
joshuacoles d7176ca32c Alter CV wording a little 2024-06-06 19:04:20 +01:00
joshuacoles 68af3a24f6 Add initial cover letter template 2024-06-06 19:04:04 +01:00
joshuacoles b443e8d73b Remove PDFs 2024-06-06 18:45:05 +01:00
joshuacoles cf1037126f Make clear placement was between studies 2024-06-06 18:44:46 +01:00
joshuacoles e19574d9f2 Fix Justfile 2024-06-06 18:44:11 +01:00
joshuacoles 24541d119d Split licenses and add to README 2024-06-05 20:29:36 +01:00
joshuacoles 4da253c8da Fix only matching single component tags
Render LaTeX and Publish Release / build (push) Successful in 18s
2024-06-05 20:25:07 +01:00
joshuacoles 392f1598a5 Final corrections 2024-06-05 20:22:01 +01:00
joshuacoles 104800d1ce Do what I am actually supposed to be doing and update my CV 2024-06-05 20:13:30 +01:00
joshuacoles e1ebf69d47 Ahhh I am starting to dislike gitea's approach to actions 2024-06-05 20:13:11 +01:00
joshuacoles 450c0b5cc6 Try a different action
Render LaTeX and Publish Release / build (push) Successful in 1m3s
2024-06-05 19:56:40 +01:00
joshuacoles b0d6a33fd4 Make it use ref_name over ref...
Render LaTeX and Publish Release / build (push) Failing after 56s
2024-06-05 19:51:07 +01:00
joshuacoles f7067f0491 It can't detemine the name, maybe this will work
Render LaTeX and Publish Release / build (push) Failing after 57s
2024-06-05 19:47:03 +01:00
joshuacoles 8c2a9622a4 Hopefully no longer need to do any dep work
Render LaTeX and Publish Release / build (push) Failing after 1m7s
2024-06-05 19:44:03 +01:00
joshuacoles 209b2e1e82 Move to apt-get over apt in a scripting context 2024-06-05 19:33:49 +01:00
joshuacoles 8163031f75 Lets try manually adding the openssl package
Render LaTeX and Publish Release / build (push) Failing after 16s
2024-06-05 19:31:27 +01:00
joshuacoles 9c845035cd Fix access token
Render LaTeX and Publish Release / build (push) Failing after 10s
2024-06-05 19:20:55 +01:00
joshuacoles 9ba05fade1 Fix master => main
Render LaTeX and Publish Release / build (push) Failing after 9s
2024-06-05 19:08:34 +01:00
joshuacoles 2a19c9d714 Move to own version of setup-tectonic
Render LaTeX and Publish Release / build (push) Failing after 8s
2024-06-05 19:06:23 +01:00
joshuacoles 1c5fab6d8c Revert "Try make it build"
This reverts commit c5a659f910.
2024-06-05 18:47:08 +01:00
joshuacoles c5a659f910 Try make it build
Render LaTeX and Publish Release / build (push) Failing after 14s
2024-06-05 18:45:39 +01:00
joshuacoles ae8ffba48f Split ONS role across two entries to fit on two sides
Render LaTeX and Publish Release / build (push) Failing after 1m4s
2024-06-05 18:30:26 +01:00
joshuacoles 6f230b173e Add a little verbiage 2024-06-05 18:28:46 +01:00
joshuacoles 5f403ec950 Make it all a little tighter 2024-06-05 18:26:38 +01:00
21 changed files with 290 additions and 73 deletions
+30 -22
View File
@@ -3,7 +3,7 @@ name: Render LaTeX and Publish Release
on: on:
push: push:
tags: tags:
- "*" - "**"
jobs: jobs:
build: build:
@@ -23,30 +23,38 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-tectonic- ${{ runner.os }}-tectonic-
- uses: wtfjoke/setup-tectonic@v3 - uses: joshuacoles/setup-tectonic@main
name: Setup Tectonic
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.COM_DOT_GITHUB_TOKEN }}
- name: Run Tectonic - name: Run Tectonic
run: tectonic cv.tex run: tectonic cv.tex
- name: create Release - name: Release
uses: actions/create-release@v1 uses: softprops/action-gh-release@v2
id: create_release
with: with:
draft: false files: |
prerelease: false cv.pdf
# Ref will be tag in this context
release_name: ${{ github.ref }}
tag_name: ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Upload assembled CV # - name: Create Release
uses: actions/upload-release-asset@v1 # uses: actions/create-release@v1
env: # id: create_release
GITHUB_TOKEN: ${{ github.token }} # with:
with: # draft: false
upload_url: ${{ steps.create_release.outputs.upload_url }} # prerelease: false
asset_path: ./cv.pdf # # Ref will be tag in this context
asset_name: cv.pdf # release_name: ${{ github.ref_name }}
asset_content_type: application/pdf # tag_name: ${{ github.ref_name }}
# env:
# GITHUB_TOKEN: ${{ github.token }}
# - name: Upload assembled CV
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ github.token }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: ./cv.pdf
# asset_name: cv.pdf
# asset_content_type: application/pdf
+1 -1
View File
@@ -1,7 +1,7 @@
*.docx *.docx
*.pages *.pages
*.pdf *.pdf
.env
### Latex gitignore ### Latex gitignore
+8 -2
View File
@@ -1,12 +1,18 @@
set dotenv-load := true
test-act: test-act:
act -s GITHUB_TOKEN="$(gh auth token)" --container-architecture linux/amd64 # We remove the github instance as this tries to pull the actions from my
# private git server instead of github, whereas gitea will default to github.
# Gitea is becoming frustrating...
# act --github-instance git.joshuacoles.me -s GITEA_ACT_TOKEN -s COM_DOT_GITHUB_TOKEN="$(gh auth token)" --container-architecture linux/amd64
act -s GITEA_ACT_TOKEN -s COM_DOT_GITHUB_TOKEN="$(gh auth token)" --container-architecture linux/amd64
release name: release name:
git tag {{name}} git tag {{name}}
git push origin --tags git push origin --tags
upload: upload:
scp main.pdf cosmos:infrastructure/caddy/files/cv.pdf scp cv.pdf cosmos:infrastructure/caddy/files/cv.pdf
build: build:
tectonic cv.tex tectonic cv.tex
+22
View File
@@ -0,0 +1,22 @@
Copyright (c) <2018> <Jan Vorisek>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Executable → Regular
+4 -19
View File
@@ -1,22 +1,7 @@
Copyright (c) <2018> <Jan Vorisek> Copyright © 2024 Joshua Coles
Permission is hereby granted, free of charge, to any person Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
+5 -1
View File
@@ -8,4 +8,8 @@ A hosted version can be found at <https://files.joshuacoles.me/cv.pdf>
Currently the CV is built using [`tectonic`](https://tectonic-typesetting.github.io/en-US/) for a nicer build experience. This can be installed as described [here](https://tectonic-typesetting.github.io/en-US/install.html). Currently the CV is built using [`tectonic`](https://tectonic-typesetting.github.io/en-US/) for a nicer build experience. This can be installed as described [here](https://tectonic-typesetting.github.io/en-US/install.html).
Commands are managed using the [Just runner](https://just.systems/). Commands are managed using the [Just runner](https://just.systems/), to build the CV run `just build`.
## License
The template used is licensed under the MIT license, see `LICENSE-TEMPLATE.md`, the content of the CV is licensed under the MIT license, see `LICENSE.md`.
+3
View File
@@ -0,0 +1,3 @@
Author: Sid Lacy
License: Creative Commons CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
Source: Overleaf Template Gallery (https://www.overleaf.com/latex/templates/simple-cover-letter/jmkbrdnmxmbn)
+15
View File
@@ -0,0 +1,15 @@
I am writing to express my interest in the Software Developer role in Bristol. With a strong foundation in mathematics and physics from my degree, I have a deep appreciation for formal, rigorous methods and their applications to real world problems. I am excited by the opportunity to contribute to AdaCore's mission of helping developers build safe, secure, and reliable software.
I find that good, robust, tools are essential for efficient work everywhere, and creating them is a driving force for me. In my previous role at the Office for National Statistics, I took an active role in developing and improving the tools used by the team, in development and production. A key example of this was the debugging tool that I developed to assist in the analysis of issues in an isolated production environment dealing with sensitive data from the Census and other sources.
I worked across the entire application stack, from front-end to CI/CD and data ingestion, covering a range of technologies and contexts.
In addition, I leveraged my interpersonal skills to foster strong working relationships with colleagues, facilitating effective communication and collaboration across the team.
This adaptability allowed me to assist different developers as needed and brought cohesion to the team by providing a common perspective.
During this role, I also took on the responsibility of release manager, ensuring that the code quality and deadlines were met within a tight release schedule.
Throughout my programming journey, I have always been drawn to strongly typed languages, recognising their immense value in ensuring product quality and enhancing developer productivity.
I find the assurance these languages provide to be invaluable in catching potential issues early and promoting a more robust development process.
I firmly believe that moving verification earlier in the overall project development loop amplifies the benefits of this approach, leading to safer, more secure, and more reliable software systems.
I understand this conviction aligns well with Ada's design philosophy and AdaCore's commitment to empowering developers to prioritise these qualities. Having greatly enjoyed the rigorous and proof-driven aspects of my mathematics and physics education, I am excited by the prospect of working with Ada and contributing to the development of Alire.
With my strong technical background, a passion for developing reliable tools and deep appreciation for formal methods, I am confident that I can make a significant contribution to AdaCore as a Software Developer.
I am genuinely excited about the opportunity to join AdaCore and work on projects that align with my passion for creating impactful tools and promoting reliable software. Thank you for considering my application. I look forward to the opportunity to discuss further how my skills and experience can contribute to the success of AdaCore and the development of Alire.
+12
View File
@@ -0,0 +1,12 @@
% Closer
\vspace{0.1in}
\vfill
\begin{flushright}
\closer,
\ifthenelse{\boolean{include-signature}}{\vspace{-0.1in}\includegraphics[width=1.5in]{sig.png}\vspace{-0.1in}}{}
\myname\\
\mytitle
\end{flushright}
View File
+22
View File
@@ -0,0 +1,22 @@
% Shaded header banner
\AddToShipoutPictureBG{%
\color{TopBackground}
\AtPageUpperLeft{\rule[-\shadedheight]{\paperwidth}{\shadedheight}}
}
% Header
\begin{center}
{\fontsize{28}{0}\selectfont\scshape \myname}
\vspace{0.2cm}
\icon{MapMarker}{12}{Bath / Reading}
\hfill
\icon{Phone}{12}{\tel{+44 7564 199236}}
\hfill
\icon{At}{12}{\emailaddr{me@joshuacoles.me}}
\hfill
\icon{Github}{12}{\href{https://github.com/joshuacoles}{joshuacoles}}
% \icon{Linkedin}{12}{\href{https://www.linkedin.com/in/joshua-coles-a79498151/}{LinkedIn}}
\end{center}
\vspace{0.75cm}
+29
View File
@@ -0,0 +1,29 @@
%%%%
% Personal information
%%%%
\newcommand{\myname}{Joshua Coles}
\newcommand{\mytitle}{Applicant}
\newcommand{\myemail}{me@joshucoles.me}
\newcommand{\mylinkedin}{https://www.linkedin.com/in/joshua-coles-a79498151/}
\newcommand{\myphone}{+44 7564 199236}
\newcommand{\mylocation}{Bath / Reading, UK}
%%%%
% Company Information
%%%%
\newcommand{\recipient}{Hiring Manager}
\newcommand{\greeting}{Dear}
\newcommand{\closer}{Kind Regards}
\newboolean{include-signature}
\setboolean{include-signature}{false}
\newboolean{include-company-address}
\setboolean{include-company-address}{false}
\newcommand{\company}{AdaCore}
\newcommand{\companyaddress}{
1 Microsoft Way\\
Redmond, WA\ 98052}
+88
View File
@@ -0,0 +1,88 @@
\documentclass[11pt]{letter}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[empty]{fullpage}
\usepackage[hidelinks]{hyperref}
\usepackage{graphicx}
\usepackage{fontawesome}
\usepackage{eso-pic}
\usepackage[bitstream-charter]{mathdesign}
\usepackage{ifthen}
\usepackage{geometry}
\geometry{
paper=a4paper,
top=1cm,
bottom=1.25cm,
left=2cm,
right=2cm,
headheight=0.75cm, % Header height
footskip=1cm, % Space from the bottom margin to the baseline of the footer
headsep=0.5cm, % Space from the top margin to the baseline of the header
% showframe, % Uncomment to show how the type block is set on the page
}
\newcommand{\shadedheight}{3.5cm}
\definecolor{TopBackground}{RGB}{225,225,225}
\definecolor{Accent}{HTML}{367DA2}
\input{info.tex}
\begin{document}
\newcommand{\emailaddr}[1]{\href{mailto:#1}{#1}}
\newcommand{\tel}[1]{\href{tel:#1}{#1}}
% Command to vertically centre adjacent content
\newcommand{\vcenteredhbox}[1]{% The only parameter is for the content to centre
\begingroup%
\setbox0=\hbox{#1}\parbox{\wd0}{\box0}%
\endgroup%
}
\newcommand{\icon}[3]{%
\vcenteredhbox{\colorbox{Accent}{\makebox(#2, #2){\textcolor{white}{\large\csname fa#1\endcsname}}}}% Icon and box
\hspace{0.2cm}% Whitespace
\vcenteredhbox{#3}% Text
}
%%%
% Header
%%%
\input{header.tex}
%%%
% Opening block
%%%
% Date
\today \\
% Address
\vspace{-0.1in}\recipient\\\company\\
\ifthenelse{\boolean{include-company-address}}
{\companyaddress\\}
{}
% Greeting
\vspace{-0.1in}
\greeting\ \recipient, \\
%%%
% Body
%%%
%\setlength\parskip{20pt}
\vspace{-0.1in}\setlength\parindent{0pt}
\noindent\input{body.tex}
%%%
% Closer
%%%
\input{closer.tex}
\end{document}
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

+2
View File
@@ -17,6 +17,8 @@
\definecolor{Accent}{HTML}{367DA2} \definecolor{Accent}{HTML}{367DA2}
\definecolor{BarTitle}{HTML}{000000} \definecolor{BarTitle}{HTML}{000000}
\definecolor{BarColor}{HTML}{000000} \definecolor{BarColor}{HTML}{000000}
\definecolor{BarTitle}{HTML}{1C2331}
\definecolor{BarColor}{HTML}{1C2331}
\definecolor{SectTitleColor}{HTML}{367DA2} \definecolor{SectTitleColor}{HTML}{367DA2}
\definecolor{EntryTitleColor}{HTML}{367DA2} \definecolor{EntryTitleColor}{HTML}{367DA2}
+6 -5
View File
@@ -48,7 +48,7 @@
\usepackage{geometry} % Required for adjusting page dimensions and margins \usepackage{geometry} % Required for adjusting page dimensions and margins
\geometry{ \geometry{
paper=a4paper, % Paper size, change to letterpaper for US letter size paper=a4paper,
top=1.75cm, % Top margin top=1.75cm, % Top margin
bottom=1.75cm, % Bottom margin bottom=1.75cm, % Bottom margin
left=2cm, % Left margin left=2cm, % Left margin
@@ -56,7 +56,7 @@
headheight=0.75cm, % Header height headheight=0.75cm, % Header height
footskip=1cm, % Space from the bottom margin to the baseline of the footer footskip=1cm, % Space from the bottom margin to the baseline of the footer
headsep=0.5cm, % Space from the top margin to the baseline of the header headsep=0.5cm, % Space from the top margin to the baseline of the header
%showframe, % Uncomment to show how the type block is set on the page % showframe, % Uncomment to show how the type block is set on the page
} }
%%%%%%% %%%%%%%
@@ -79,10 +79,11 @@
% FontAwesome and Icon blocks % FontAwesome and Icon blocks
%%%%%%% %%%%%%%
\usepackage{fontawesome} % Required for FontAwesome icons \usepackage{fontawesome}
% Command to output an icon in a black square box with text to the right % Command to output an icon in a black square box with text to the right
\newcommand{\icon}[3]{% The first parameter is the FontAwesome icon name, the second is the box size and the third is the text % The first parameter is the FontAwesome icon name, the second is the box size and the third is the text
\newcommand{\icon}[3]{%
\vcenteredhbox{\colorbox{Accent}{\makebox(#2, #2){\textcolor{white}{\large\csname fa#1\endcsname}}}}% Icon and box \vcenteredhbox{\colorbox{Accent}{\makebox(#2, #2){\textcolor{white}{\large\csname fa#1\endcsname}}}}% Icon and box
\hspace{0.2cm}% Whitespace \hspace{0.2cm}% Whitespace
\vcenteredhbox{\textcolor{black}{#3}}% Text \vcenteredhbox{\textcolor{black}{#3}}% Text
@@ -209,7 +210,7 @@
% Customised Helpers % Customised Helpers
%%%%%%% %%%%%%%
\newcommand{\slashsep}{\hspace{3mm}/\hspace{3mm}} \newcommand{\slashsep}{\hspace{2mm}/\hspace{2mm}}
\newcommand{\emailaddr}[1]{\href{mailto:#1}{#1}} \newcommand{\emailaddr}[1]{\href{mailto:#1}{#1}}
\usepackage{etoolbox}% http://ctan.org/pkg/etoolbox \usepackage{etoolbox}% http://ctan.org/pkg/etoolbox
+2 -2
View File
@@ -3,9 +3,9 @@
\begin{entrylist} \begin{entrylist}
\entry \entry
{2019 -- 2024} {2019 -- 2024}
{MSc Mathematics and Physics (Hons)} {MSc Mathematics and Physics (Hons) (Sandwhich)}
{University of Bath} {University of Bath}
{Expected classification: 2:1} {Expected classification: 2:1\\Placement with the ONS between academic years 2 and 3.}
\entry \entry
{Graduated 2019} {Graduated 2019}
{Prior Qualifications, Graduating 2019} {Prior Qualifications, Graduating 2019}
+40 -20
View File
@@ -1,48 +1,68 @@
\cvsect{Experience} \cvsect{Experience}
\begin{entrylist} \begin{entrylist}
\entry
{Present}
{Software Developer}
{Better Conversations Foundation}
{After I have completed my degree I intend to return to the Better Conversations Foundation to continue the work I started the previous year as I look for a longer term role.}
\entry \entry
{Academic\,Year 2023/24} {Academic\,Year 2023/24}
{Final Year Project, AI Applications in Lagrangian Physics} {Final Year Project, AI Applications in Lagrangian Physics}
{University of Bath} {University of Bath}
{My project focused on incorporating Lagrangian Mechanics into physics-informed neural networks. My key contributions include, {My project focused on incorporating Lagrangian Mechanics into physics-informed neural networks. My key contributions include,
\begin{itemize}[itemsep=-2pt,topsep=3pt] \begin{itemize}[itemsep=-2pt,topsep=2pt]
\item Writing the core physics procedures in JAX to improve correctness and to allow for their use in loss functions and reducing runtimes by $10^4$. \item Writing the core physics procedures in JAX to improve correctness and to allow for their use in loss functions and reducing runtimes by a factor of $10^4$.
\item Creating and optimising physics informed loss functions for speed and utility in training. \item Creating and optimising physics informed loss functions for speed and utility in training.
\end{itemize} \end{itemize}
The completed report can be found \href{https://files.joshuacoles.me/final-year-report.pdf}{\underline{here}}. The completed report can be found \href{https://files.joshuacoles.me/final-year-report.pdf}{\underline{here}}.
\\ \\
\kwdlst{JAX, Neural Networks, Loss functions, Numpy, Flax, Tensorflow, Python}} \kwdlst{JAX, Neural Networks, Loss functions, Numpy, Flax, Tensorflow, Keras, Python}}
\entry \entry
{Summer 2023} {Summer 2023}
{Developer} {Software Developer}
{Better Conversations Foundation}
{Once I completed my work with Amphora, I moved to work at a connected non-profit, Better Conversations Foundation, working on their e-commerce and scheduling systems and initiating development on a real-time coaching flight-plan solution.
\begin{itemize}[itemsep=-2pt,topsep=2pt]
\item Implementing key components of purchase flows, scheduling, and participant management.
\item Prototyping real-time coaching flight-plans to allow coordination between Facilitators as sessions progress
\end{itemize}
\kwdlst{Ruby on Rails,Stripe}}
\entry
{Summer 2023}
{Software Developer}
{Amphora} {Amphora}
{I lead efforts exploring the feasibility and application of AI based features in the main product. {I lead efforts exploring the feasibility and application of AI based features in the main product.
\begin{itemize}[itemsep=-2pt,topsep=3pt] \begin{itemize}[itemsep=-2pt,topsep=2pt]
\item Implementing vector based search and retrieval-augmented generation into the application in a non-intrusive manner. \item Integrating vector based search and retrieval-augmented generation into the application in a non-intrusive manner.
\item Presenting work to customers and facilitating input on direction and feature fit. \item Presenting work to customers and facilitating input on direction and feature fit.
\end{itemize} \end{itemize}
\kwdlst{Langchain, Weaviate, Python}} \kwdlst{Langchain, Weaviate, Python}}
\entry \entry
{2022 -- 2023\\{\footnotesize{part time}} \\\\2021 -- 2022\\\footnotesize{placement year}} {2022 -- 2023\\{\footnotesize{part time aside studies}} \\\\2021 -- 2022\\\footnotesize{placement year}}
{Software Developer} {Software Developer}
{Office for National Statistics} {Office for National Statistics}
{For my placement I joined a team working on software for processing the results of the 2021 Census. After the end of my placement I was kept on to assist with the next phase of product development and solution design. Key contributions include, {For my placement I joined a team working on software for processing the results of the 2021 Census. After the end of my placement I was kept on to assist with the next phase of product development and solution design. In this role I worked with sensitive data from the Census in isolated production environments and thus obtained SC clearance. Key contributions include,
\begin{itemize}[itemsep=-2.5pt,topsep=3pt] \begin{itemize}[itemsep=-2.5pt,topsep=2pt]
\item Taking a leading role as release manager for the product and was heavily involved in requirements gathering for the new features. \item Taking a leading role as release manager for the product and was heavily involved in requirements gathering for the new features.
\item Developing tools for debugging and observability in sensitive production environments. \item Developing tools for debugging and observability in sensitive production environments, greatly increasing the our ability to diagnose production issues quickly.
\item Restructuring a core service to decrease code duplication and increase test \& type coverage. % \item Restructuring a core service to decrease code duplication and increase test \& type coverage.
\item Designing solution architectures for future project development. \item Designing architectures for the next stage of the project to address additional business needs.
\end{itemize} \end{itemize}}
This role gave me an appreciation for how the interpersonal aspects of successful team are crucial for the overall success of a project. This was especially important when interfacing with the business side of the organisation on the direction of the project.\\ % Split of ONS entry to keep CV on two pages.
\entry
{}
{}
{}
{This role gave me an appreciation for how the interpersonal aspects of successful team are crucial for the overall success of a project. This was especially important when interfacing with the business side of the organisation on the direction of the project.\\
\kwdlst{React, Express, Jest, Cypress, Redis, SQL, Postgres, HBase, Cloudera, Jenkins, Docker, Typescript, JavaScript, Linux, Microservices, Agile, Scrum}} \kwdlst{React, Express, Jest, Cypress, Redis, SQL, Postgres, HBase, Cloudera, Jenkins, Docker, Typescript, JavaScript, Linux, Microservices, Agile, Scrum}}
\entry \entry
{2017 -- 2021\\\footnotesize{Holidays \& Part time}} {2017 -- 2021\\\footnotesize{Holidays \& Part time}}
{Software Developer} {Software Developer}
{Amphora} {Amphora}
{I focused on independent exploration and investigation of new technologies. {I worked independently to explore and investigate new technologies including and
\begin{itemize}[itemsep=-2pt,topsep=3pt] \begin{itemize}[itemsep=-2pt,topsep=2pt]
\item Implementing and maintaining SAML based customer access mechanism for confidential documentation. \item Creating and maintaining SAML based customer access mechanism for confidential documentation.
\item Designing subscription management product using Wordpress as a Headless CMS for presentation under multiple service offering. \item Designing subscription management product using Wordpress as a Headless CMS for presentation under multiple service offering.
\end{itemize} \end{itemize}
\kwdlst{SAML, Groovy, Java, Ruby on Rails, Ruby}} \kwdlst{SAML, Groovy, Java, Ruby on Rails, Ruby}}
@@ -50,12 +70,12 @@
{2011 — present} {2011 — present}
{Ongoing Personal Projects} {Ongoing Personal Projects}
{} {}
{My latest personal projects are focused on data analysis on different aspects of my life. This is done with a strong focus on self-hosting and privacy, giving me experience running services across a range of computers. Key components include {My latest personal projects are focused on data analysis on different aspects of my life. This is done with a strong focus on self-hosting and privacy, giving me experience running services across a range of computers. Key components include
\begin{itemize}[itemsep=-2pt,topsep=3pt] \begin{itemize}[itemsep=-2pt,topsep=2pt]
\item Self hosted Gitea and CI/CD for development. \item Self hosted Gitea and CI/CD for development.
\item Centralised authentication. \item Centralised authentication.
\item Centralised database for cross-domain analytics. \item Centralised database for cross-domain analytics.
\end{itemize} \end{itemize}
A history of these is available on my \href{https://github.com/joshuacoles}{\underline{GitHub}} or \href{https://git.joshuacoles.me/explore/repos}{\underline{personal Gitea}}, along with this \href{https://git.joshuacoles.me/joshuacoles/cv}{\underline{CV and build process}}. A history of these is available on my \href{https://github.com/joshuacoles}{\underline{GitHub}} or \href{https://git.joshuacoles.me/explore/repos}{\underline{personal Gitea}}, along with this \href{https://git.joshuacoles.me/joshuacoles/cv}{\underline{CV and build process}}.
\\\kwdlst{Rust, CI/CD, Postgres, Caddy, Docker, System administration of internet connected servers}} \\\kwdlst{Rust, CI/CD, Github actions, Postgres, Caddy, Docker, Docker Compose, System administration}}
\end{entrylist} \end{entrylist}
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -18,7 +18,7 @@
% Other icons can be found by referring to fontawesome.pdf (supplied with the template) and using the word after \fa in the command for the icon you want % Other icons can be found by referring to fontawesome.pdf (supplied with the template) and using the word after \fa in the command for the icon you want
\icon{MapMarker}{12}{Bath / Reading}\\ \icon{MapMarker}{12}{Bath / Reading}\\
\icon{Phone}{12}{+44 7564 199236}\\ \icon{Phone}{12}{+44 7564 199236}\\
\icon{At}{12}{\emailaddr{josh@coles.to}}\\ \icon{At}{12}{\emailaddr{me@joshuacoles.me}}\\
\end{minipage} \end{minipage}
\begin{minipage}[t]{0.275\textwidth} % 27.5% of the page width for the second row of icons \begin{minipage}[t]{0.275\textwidth} % 27.5% of the page width for the second row of icons
\vspace{-\baselineskip} % Required for vertically aligning minipages \vspace{-\baselineskip} % Required for vertically aligning minipages
BIN
View File
Binary file not shown.