Skip to content

Commit

Permalink
update cv + new post
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Makhov committed Dec 27, 2020
1 parent b2664e5 commit 8b829b2
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 48 deletions.
25 changes: 10 additions & 15 deletions _data/cv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ career:
logo: behavox.jpg
location: Montreal, Canada
country: ca
dates: 01.2020 - current
dates: 01.2020 - 01.2021
duration: 1y
summary: Building data-heavy applications with Java, HBase, MySQL.

- position: Backend Developer
Expand All @@ -25,6 +26,7 @@ career:
location: Montreal, Canada
country: ca
dates: 06.2018 - 12.2019
duration: 1y 6m
summary: 'Working as a Java Backend Developer in the Product team for the largest in-venue interactive music and entertainment platform, featured in over 75,000 bars and restaurants across North America and Europe. Working in a microservice architecture, with Spring Boot-based services deployed to AWS in Docker containers, managed by Mesos/Marathon. Technology stack: Java 11, Spring Boot, Reactor, Cucumber, MongoDB'
accomplishments:
- accomplishment: backend implementation of the <a href="https://www.applemusicforbusiness.apple/">Apple Music For Business</a>.
Expand All @@ -38,6 +40,7 @@ career:
location: Montreal, Canada
country: ca
dates: 01.2018 - 05.2018
duration: 5m
summary: 'Development of the PACS - Picture Archiving and Communication System. My primary focus was on Tech Portal - a customization tool that allows technologists to create multiple worklists based on different criteria, including exam status, date range, modality, organizations, locations and rooms. Tech stack: GWT, CSS / SCSS, AngularJS.'

- position: Java Developer / Consultant
Expand All @@ -47,6 +50,7 @@ career:
location: Montreal, Canada
country: ca
dates: 08.2016 - 12.2017
duration: 1y 5m
accomplishments:
- accomplishment: Took part in development of high performance highly available Music REST API.
- accomplishment: Development of the real-time data processing application based on Apache Mahout and Apache Kafka.
Expand All @@ -59,33 +63,24 @@ career:
logo: cern.jpg
location: Geneva, Switzerland
country: ch
dates: 09.2014 - 05.2016
summary: I took part in the development of business critical eFiles document management system based on open source solution - Alfresco – the market leader in records management. As an Alfresco developer I worked on extending and customizing Alfresco. Through this project, I have learned business processes of other teams, as we constantly work with CERN HR team, developing the way to link their needs with technical abilities of the software.
dates: 10.2012 - 05.2016
duration: 3y 9m
summary: I took part in the development of business critical eFiles document management system based on open source solution - Alfresco – the market leader in records management. As an Alfresco developer I worked on extending and customizing Alfresco. I also worked on EDH (Electronic Document Handling) system with complex workflows, covering most business aspects at CERN. In this role I was developing EDH documents and improving functionality of existing ones.
accomplishments:
- accomplishment: Customization of server-side and client-side parts of Alfresco in correspondence to the organisation's internal processes and requirements.
- accomplishment: Integrating Alfresco with AppDynamics - application performance management system.
- accomplishment: Development of the web application for 2nd/3rd support of eFiles. Technology stack is Spring Boot, AngularJS, Spring Data Rest.
- accomplishment: Development of the custom user interface of Alfresco document library page based on Polymer.

- position: Software Developer
company: CERN
company-site: https://home.cern/
logo: cern.jpg
location: Geneva, Switzerland
country: ch
dates: 10.2012 – 09.2014
summary: I worked in GS-AIS-EB (Electronic Business) section for EDH (Electronic Document Handling) system, which covers many life aspects at CERN (such as absences, HR & Training, purchasing, logistics and safety). In this role I was developing EDH documents and improving functionality of existing ones. One of the biggest and the most interesting project during this period was the development of CERN Hotel booking application.
accomplishments:
- accomplishment: Extending functionality of CERN Hotel web booking application (hostel.cern.ch). Main feature developed is the possibility to create a Waiting-List reservations.
- accomplishment: Migrating existing business processes from BPEL to BPMN (Activiti).
- accomplishment: 3rd Line support
- accomplishment: Production / 3rd level support

- position: Software Developer
company: Probusinessbank
logo: life.jpg
location: Moscow, Russia
country: ru
dates: 10.2011 – 07.2012
duration: 10m
summary: While finishing the study at University I got a job at Probusinessbank in Moscow, one of TOP-50 banks in Russia. During my time there, I was responsible for several activities.
accomplishments:
- accomplishment: Development of web-services communicating with external systems such as credit agencies, payment systems.
Expand Down
File renamed without changes.
27 changes: 27 additions & 0 deletions _posts/2020-12-26-add-missing-icon-to-client.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
layout: post
title: Client is missing an icon
date: 2020-12-26
description: I didn't have an icon for Rambox and finally found how to add it
tags: awesome wm
---

For some reason Rambox didn't have an icon on the tasklist and it looked following way:

![rambox-no-icon]({{site.url}}/images/2020/rambox-no-icon.png)

Adding following lines to the signal handler finally resolved the issue (note that default configuration already has this handler):

```lua
client.connect_signal("manage", function (c)
if c.class == "Rambox" then
local icon = gears.surface("/home/pmakhov/Pictures/256x256.png")
c.icon = icon._native
icon:finish()
end
end)
```

![rambox-with-icon]({{site.url}}/images/2020/rambox-with-icon.png)

Based on this SO answer: [stackoverflow.com/a/30379815/1252056](https://stackoverflow.com/a/30379815/1252056)
35 changes: 2 additions & 33 deletions cv.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ <h2>Career</h2>
</div>
</div>
<div class="col-xs-6">
<div class="pull-right">
<div class="pull-right" style="text-align: right;">
<div><i class="flag flag-{{item.country}}"></i> {{item.location}}</div>
<div class="pull-right">{{ item.dates }}</div>
<div class="pull-right">{{ item.dates }} / {{ item.duration }}</div>
</div>
</div>
</div>
Expand Down Expand Up @@ -175,37 +175,6 @@ <h2>Career</h2>
<h2>Technical skills</h2>
</div>
<div class="col-xs-9">
<div class="row">
<div class="col-xs-4">

<h4 class="techSkillHeader"><i class="fa fa-terminal"></i> Backend</h4>
{% for item in site.data.cv.technicalSkills.left %} {{item.name}}
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0"
aria-valuemax="100" style="width: {{item.level}}%"></div>
</div>
{% endfor %}
</div>
<div class="col-xs-4">
<h4 class="techSkillHeader"><i class="fa fa-code"></i> Frontend</h4> {% for item in
site.data.cv.technicalSkills.center %} {{item.name}}
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0"
aria-valuemax="100" style="width: {{item.level}}%"></div>
</div>
{% endfor %}
</div>
<div class="col-xs-4">
<h4 class="techSkillHeader"><i class="fa fa-database"></i> Big Data</h4> {% for item in
site.data.cv.technicalSkills.right %} {{item.name}}
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0"
aria-valuemax="100" style="width: {{item.level}}%"></div>
</div>
{% endfor %}
</div>

</div>
<div class="competencies">
<h4><i class="fa fa-male"></i> Key competencies:</h4>
<ul>
Expand Down
Binary file added images/2020/rambox-no-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/2020/rambox-with-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8b829b2

Please sign in to comment.