diff --git a/.gitignore b/.gitignore index 9e37fe7..6ddeec9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.pdf *.html .tox +build diff --git a/source/cv.rst b/source/cv.rst index f1da4e8..060b1e3 100644 --- a/source/cv.rst +++ b/source/cv.rst @@ -33,10 +33,10 @@ usurped by technical debt. * I use VIM and Emacs as text and code editors / IDEs, Sphinx (rst) and PlantUML for documentation. -* Python is the language and ecosystem I have the most experience with. Rust is - a thing of beauty and my personal No.1 choice for almost all of the software - I write and use recently, from low-level queues to web applications in - WebAssembly, for which I gladly use Elm for personal frontend applications. +* Python is the language and ecosystem I have the most experience with. I + consider Rust as a thing of beauty and it's my No.1 choice for almost all + software I write and use recently, from low-level queues to frontend web + applications in WebAssembly, for which I also use Elm with great joy. * Virtualization with KVM / QEMU, libvirt and virt-manager. Experimented with crosvm, Firecracker and Ignite. @@ -45,7 +45,7 @@ usurped by technical debt. and Kubernetes. Ansible for deployment automation. * 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 with Apache Kafka, RabbitMQ, MQTT, ZMQ for message @@ -56,12 +56,12 @@ usurped by technical debt. 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. Work Experience -=============== +--------------- | diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..a201ead --- /dev/null +++ b/tox.ini @@ -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