Initial setup of tox and small updates in the CV
This commit is contained in:
parent
df32996620
commit
5e97124618
3 changed files with 19 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
*.pdf
|
*.pdf
|
||||||
*.html
|
*.html
|
||||||
.tox
|
.tox
|
||||||
|
build
|
||||||
|
|
|
@ -33,10 +33,10 @@ usurped by technical debt.
|
||||||
* I use VIM and Emacs as text and code editors / IDEs, Sphinx (rst) and
|
* I use VIM and Emacs as text and code editors / IDEs, Sphinx (rst) and
|
||||||
PlantUML for documentation.
|
PlantUML for documentation.
|
||||||
|
|
||||||
* Python is the language and ecosystem I have the most experience with. Rust is
|
* Python is the language and ecosystem I have the most experience with. I
|
||||||
a thing of beauty and my personal No.1 choice for almost all of the software
|
consider Rust as a thing of beauty and it's my No.1 choice for almost all
|
||||||
I write and use recently, from low-level queues to web applications in
|
software I write and use recently, from low-level queues to frontend web
|
||||||
WebAssembly, for which I gladly use Elm for personal frontend applications.
|
applications in WebAssembly, for which I also use Elm with great joy.
|
||||||
|
|
||||||
* Virtualization with KVM / QEMU, libvirt and virt-manager. Experimented with
|
* Virtualization with KVM / QEMU, libvirt and virt-manager. Experimented with
|
||||||
crosvm, Firecracker and Ignite.
|
crosvm, Firecracker and Ignite.
|
||||||
|
@ -45,7 +45,7 @@ usurped by technical debt.
|
||||||
and Kubernetes. Ansible for deployment automation.
|
and Kubernetes. Ansible for deployment automation.
|
||||||
|
|
||||||
* Fair experience (> 10 projects) with GitLab CI and Jenkins, experimented with
|
* Fair experience (> 10 projects) with GitLab CI and Jenkins, experimented with
|
||||||
Travis and Circle CI. Very passionate about GitLab, it gave the best
|
Travis and Circle CI. Very passionate about GitLab, since it gave the best
|
||||||
experience so far.
|
experience so far.
|
||||||
|
|
||||||
* Experience with Apache Kafka, RabbitMQ, MQTT, ZMQ for message
|
* Experience with Apache Kafka, RabbitMQ, MQTT, ZMQ for message
|
||||||
|
@ -56,12 +56,12 @@ usurped by technical debt.
|
||||||
Languages
|
Languages
|
||||||
---------
|
---------
|
||||||
|
|
||||||
Macedonian is my native language, I also speak English and Serbian fluently
|
Macedonian is my native language. I also speak English and Serbian fluently
|
||||||
and have a fair knowledge of German - a C2 degree in 2001.
|
and have a fair knowledge of German - a C2 degree in 2001.
|
||||||
|
|
||||||
|
|
||||||
Work Experience
|
Work Experience
|
||||||
===============
|
---------------
|
||||||
|
|
||||||
|
|
|
|
||||||
|
|
||||||
|
|
11
tox.ini
Normal file
11
tox.ini
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
[tox]
|
||||||
|
envlist=py3
|
||||||
|
skipsdist = True
|
||||||
|
|
||||||
|
[testenv:blog]
|
||||||
|
deps=sphinx
|
||||||
|
commands = sphinx-build source/ build/
|
||||||
|
|
||||||
|
[testenv:cv]
|
||||||
|
whitelist_externals=/usr/bin/pandoc
|
||||||
|
commands = pandoc --from=rst -o build/cv.pdf source/cv.rst
|
Loading…
Reference in a new issue