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
|
||||
*.html
|
||||
.tox
|
||||
build
|
||||
|
|
|
@ -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
|
||||
===============
|
||||
---------------
|
||||
|
||||
|
|
||||
|
||||
|
|
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…
Add table
Reference in a new issue