full_time 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +17 -33
- data/example/cv.html +331 -286
- data/example/cv.pdf +1628 -0
- data/example/cv.rb +5 -2
- data/example/template.html.erb +29 -18
- data/example/template.pdf.prawn +65 -0
- data/exe/full_time +2 -3
- data/lib/full_time.rb +14 -12
- data/lib/full_time/profile.rb +1 -1
- data/lib/full_time/version.rb +1 -1
- metadata +18 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e503f413d5f433c4d7790ce17780e7d61e1cab4071c7103ac621bd184d88874
|
4
|
+
data.tar.gz: 284b8d887257586166ec5433b72a4395a65c4fd8c225111dbcc2ce4035453623
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2eaa12c937ba06deb7c6d05fedc1f04c4cb496b17eda2104ba5886a4f8f38c75f049256c407707862e3d4c86304d17cf05f4fef27d56e6bc5675e45df125c3a
|
7
|
+
data.tar.gz: def23896ad64a838b8090534c2d25c39f17928d5732614c03de1fdefe962cb141cbb1a0f8fca299e620d9c49f90e9173d455936da89fbec324f7fafb3e689986
|
data/README.md
CHANGED
@@ -1,28 +1,19 @@
|
|
1
1
|
# FullTime
|
2
2
|
|
3
|
-
|
3
|
+
The gem allows to declare your CV with Ruby DSL and render it further with [`tilt`](https://github.com/rtomayko/tilt) supported engines.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
Add this line to your application's Gemfile:
|
8
|
-
|
9
|
-
```ruby
|
10
|
-
gem 'full_time'
|
11
|
-
```
|
12
|
-
|
13
|
-
And then execute:
|
14
|
-
|
15
|
-
$ bundle
|
16
|
-
|
17
|
-
Or install it yourself as:
|
18
|
-
|
19
7
|
$ gem install full_time
|
8
|
+
|
9
|
+
For some formats you require additional gems:
|
20
10
|
|
21
|
-
|
11
|
+
| Target | Gem |
|
12
|
+
| ------- | ------------------------------------------ |
|
13
|
+
| HTML | – |
|
14
|
+
| PDF | [prawn](https://github.com/prawnpdf/prawn) |
|
22
15
|
|
23
|
-
|
24
|
-
| -------- | ---------------------------------------- |
|
25
|
-
| HTML | [tilt](https://github.com/rtomayko/tilt) |
|
16
|
+
Check out template engines supported by [`tilt`](https://github.com/rtomayko/tilt#tilt---).
|
26
17
|
|
27
18
|
## Usage
|
28
19
|
|
@@ -83,13 +74,17 @@ FullTime.profile do
|
|
83
74
|
end
|
84
75
|
```
|
85
76
|
|
86
|
-
|
77
|
+
Add custom template of your choice and convert CV Ruby file to HTML file within custom ERB template:
|
78
|
+
|
79
|
+
$ full_time -t html ./cv.rb template.html.erb > cv.html
|
80
|
+
|
81
|
+
or PDF file within custom Prawn template:
|
87
82
|
|
88
|
-
$ full_time -t html cv.rb
|
83
|
+
$ full_time -t html ./cv.rb template.pdf.prawn > cv.pdf
|
89
84
|
|
90
|
-
For the more extensive example checkout `example
|
85
|
+
For the more extensive example checkout `example` folder.
|
91
86
|
|
92
|
-
## High-Level Structure
|
87
|
+
## High-Level CV Structure
|
93
88
|
|
94
89
|
```
|
95
90
|
* Profile
|
@@ -104,18 +99,7 @@ For the more extensive example checkout `example/cv.rb`.
|
|
104
99
|
|
105
100
|
## TODO
|
106
101
|
|
107
|
-
*
|
108
|
-
* Add "Intro"
|
109
|
-
```ruby
|
110
|
-
intro <<-INTRO
|
111
|
-
Software Engineer
|
112
|
-
10 years in IT industry
|
113
|
-
Engineering, development, delivery
|
114
|
-
INTRO
|
115
|
-
```
|
116
|
-
* Add "Skills" –> "Services" (Mandrill, Pingdom, etc)
|
117
|
-
* Add the different template engines, e.g. render to `pdf`, `doc`, etc
|
118
|
-
* Add LinkedIn export
|
102
|
+
* Investigate LinkedIn API
|
119
103
|
* Add CI
|
120
104
|
* Add badges
|
121
105
|
|
data/example/cv.html
CHANGED
@@ -23,6 +23,10 @@
|
|
23
23
|
</header>
|
24
24
|
|
25
25
|
<section class="row">
|
26
|
+
<div class="col-12">
|
27
|
+
<h2>Intro</h2>
|
28
|
+
<div>10+ years in IT industry. Focused on cloud DevOps and backend web development. Fond of operating systems, networking, distributed systems, book reading, go, tea. Open source software contributor. Interested in relocation to Australia.</div>
|
29
|
+
</div>
|
26
30
|
<div class="col-12">
|
27
31
|
<h2>Skills</h2>
|
28
32
|
<ul>
|
@@ -67,6 +71,8 @@
|
|
67
71
|
|
68
72
|
<li>IDE/Editor: RubyMine, Sublime Text, Vim</li>
|
69
73
|
|
74
|
+
<li>Services: Gmail, Mandrill, Pingdom, Geckoboard, HoneyBadger, Slack, Keybase, Zoom</li>
|
75
|
+
|
70
76
|
<li>Methodology: Kanban, Scrum</li>
|
71
77
|
|
72
78
|
</ul>
|
@@ -74,335 +80,350 @@
|
|
74
80
|
<div class="col-12">
|
75
81
|
<h2>Employment</h2>
|
76
82
|
|
77
|
-
<!-- companies should be presented as a list (<ul>) -->
|
78
83
|
<h3>Intetics</h3>
|
79
84
|
<div><a href="http://intetics.com">http://intetics.com</a></div>
|
80
85
|
|
81
86
|
|
82
87
|
<!-- projects should be presented as a list (<ul>) -->
|
83
|
-
<h4>Resolver ( January 2016 – Current )</h4>
|
84
|
-
<div><a href="https://resolver.co.uk">https://resolver.co.uk</a></div>
|
85
|
-
<p>Free online tool for complaints and claims</p>
|
86
|
-
<div>Senior Software Engineer & Team Lead</div>
|
87
|
-
|
88
|
-
<h5>Technologies</h5>
|
89
88
|
<ul>
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
<li>Web Frontend Frameworks: AngularJS</li>
|
96
|
-
|
97
|
-
<li>Web Backend Frameworks: Rails, Sinatra, Grape, Rocket Pants</li>
|
98
|
-
|
99
|
-
<li>Background Processors: Sidekiq, Sneakers</li>
|
100
|
-
|
101
|
-
<li>Databases: MySQL, DynamoDB, MongoDB, Postgres, Redis, Memcached, Neo4j, AuroraDB</li>
|
102
|
-
|
103
|
-
<li>Queues/Message Brokers: Redis, RabbitMQ</li>
|
104
|
-
|
105
|
-
<li>AWS: EC2, EBS, ASG, ECS, ELB, Route53, RDS, S3, VPC, IAM, CloudFront, CloudWatch, CloudTrail, DynamoDB, ElastiCache, CloudFormation, Lambda, SNS</li>
|
106
|
-
|
107
|
-
<li>Configuration Management: Puppet, Packer</li>
|
108
|
-
|
109
|
-
<li>Infrastructure Management: Terraform</li>
|
110
|
-
|
111
|
-
<li>Web Servers: Nginx</li>
|
112
|
-
|
113
|
-
<li>OS/Execution Environment: Ubuntu, Alpine, MacOS, Docker</li>
|
114
|
-
|
115
|
-
<li>CMS: Refinery</li>
|
116
|
-
|
117
|
-
</ul>
|
89
|
+
<li>
|
90
|
+
<h4>Resolver ( January 2016 – Current )</h4>
|
91
|
+
<div><a href="https://resolver.co.uk">https://resolver.co.uk</a></div>
|
92
|
+
<p>Free online tool for complaints and claims.</p>
|
93
|
+
<div>Senior Software Engineer & Team Lead</div>
|
118
94
|
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
95
|
+
<h5>Technologies</h5>
|
96
|
+
<ul>
|
97
|
+
|
98
|
+
<li>Primary Languages: Ruby, SQL</li>
|
99
|
+
|
100
|
+
<li>Secondary Languages: CoffeeScript/JavaScript, Slim/HAML/HTML5</li>
|
101
|
+
|
102
|
+
<li>Web Frontend Frameworks: AngularJS</li>
|
103
|
+
|
104
|
+
<li>Web Backend Frameworks: Rails, Sinatra, Grape, Rocket Pants</li>
|
105
|
+
|
106
|
+
<li>Background Processors: Sidekiq, Sneakers</li>
|
107
|
+
|
108
|
+
<li>Databases: MySQL, DynamoDB, MongoDB, Postgres, Redis, Memcached, Neo4j, AuroraDB</li>
|
109
|
+
|
110
|
+
<li>Queues/Message Brokers: Redis, RabbitMQ</li>
|
111
|
+
|
112
|
+
<li>AWS: EC2, EBS, ASG, ECS, ELB, Route53, RDS, S3, VPC, IAM, CloudFront, CloudWatch, CloudTrail, DynamoDB, ElastiCache, CloudFormation, Lambda, SNS</li>
|
113
|
+
|
114
|
+
<li>Configuration Management: Puppet, Packer</li>
|
115
|
+
|
116
|
+
<li>Infrastructure Management: Terraform</li>
|
117
|
+
|
118
|
+
<li>Web Servers: Nginx</li>
|
119
|
+
|
120
|
+
<li>OS/Execution Environment: Ubuntu, Alpine, MacOS, Docker</li>
|
121
|
+
|
122
|
+
<li>CMS: Refinery</li>
|
123
|
+
|
124
|
+
</ul>
|
125
|
+
|
126
|
+
<h4>Achievements</h4>
|
127
|
+
<ul>
|
128
|
+
|
129
|
+
<li>Setup test framework and covered with specs existing and new features</li>
|
130
|
+
|
131
|
+
<li>Deployment scripts support and enhancement</li>
|
132
|
+
|
133
|
+
<li>Setup backup model for MySQL to AWS S3 and Rackspace Cloud Files</li>
|
134
|
+
|
135
|
+
<li>Developed credit card number concealer</li>
|
136
|
+
|
137
|
+
<li>Contributed filter parameters config fixes to 'rails' and 'dookeeper' gems in the sake of application</li>
|
138
|
+
|
139
|
+
<li>Setup and integrated web application with IBM Bluemix cognitive services AlchemyAPI, Watson and Tone Analyzer</li>
|
140
|
+
|
141
|
+
<li>Developed and implemented HTML email sanitizers (loofah scrubbers)</li>
|
142
|
+
|
143
|
+
<li>Consolidated MailChimp/Mandrill templates workflow, introduced dynamic content</li>
|
144
|
+
|
145
|
+
<li>Setup CDN (AWS CloudFront distributions)</li>
|
146
|
+
|
147
|
+
<li>Setup CI/CD (GitHub, CircleCI, Slack)</li>
|
148
|
+
|
149
|
+
<li>Integrated web application with secure (TLS) email server</li>
|
150
|
+
|
151
|
+
<li>Internationalized and localized web application</li>
|
152
|
+
|
153
|
+
<li>Adjusted Puppet manifests and node definitions for the existing and new services in the sake of the better reliability of infrastructure configuration</li>
|
154
|
+
|
155
|
+
<li>Adjusted custom Ruby scripts for AWS EC2 instances provisioning</li>
|
156
|
+
|
157
|
+
<li>Contributed typecasted attributes to 'mongoid' gem in the sake of the application</li>
|
158
|
+
|
159
|
+
<li>Handled emoticons in MySQL</li>
|
160
|
+
|
161
|
+
<li>Introduced asynchronous event sourcing with RabbitMQ</li>
|
162
|
+
|
163
|
+
<li>Developed mailer microservice</li>
|
164
|
+
|
165
|
+
<li>Developed companies administration application</li>
|
166
|
+
|
167
|
+
<li>Numerous contributions to 'mandrill_dm', 'capistrano', 'capistrano-sidekiq' and 'capistrano-sneakers' gems in the sake of the application</li>
|
168
|
+
|
169
|
+
<li>Contributed URI query parameters parsing to 'amq-protocol', 'bunny', 'amqp' gems in the sake of the application</li>
|
170
|
+
|
171
|
+
<li>Contributed unparsed mail field value to 'mail' gem in the sake of the application</li>
|
172
|
+
|
173
|
+
<li>Replaced Rails protected attributes with strong parameters</li>
|
174
|
+
|
175
|
+
<li>Introduced Docker and AWS ECS</li>
|
176
|
+
|
177
|
+
<li>Refactored and extended inbound emails receiving system to the multiple regions</li>
|
178
|
+
|
179
|
+
<li>Adopted Packer + Terraform for AutoScaling purposes and Blue/Green deployments in the multi-region environment</li>
|
180
|
+
|
181
|
+
<li>Interviewed and mentored other developers in the highly distributed team</li>
|
182
|
+
|
183
|
+
<li>Introduced new developers to the application</li>
|
184
|
+
|
185
|
+
<li>Spread out Agile principles and Kanban methodology to the team</li>
|
186
|
+
|
187
|
+
</ul>
|
188
|
+
</li>
|
180
189
|
</ul>
|
181
190
|
|
182
191
|
|
183
192
|
<hr>
|
184
193
|
|
185
|
-
<!-- companies should be presented as a list (<ul>) -->
|
186
194
|
<h3>GlobalLogic</h3>
|
187
195
|
<div><a href="http://globallogic.com">http://globallogic.com</a></div>
|
188
196
|
|
189
197
|
|
190
198
|
<!-- projects should be presented as a list (<ul>) -->
|
191
|
-
<h4>Advanced creative platform for online advertising ( November 2014 – January 2016 )</h4>
|
192
|
-
<div><a href=""></a></div>
|
193
|
-
<p>Advanced creative platform for online advertising, which allows you to automate the processes related to creative services. It supports both platforms – desktop and mobile.</p>
|
194
|
-
<div>Senior Software Engineer</div>
|
195
|
-
|
196
|
-
<h5>Technologies</h5>
|
197
199
|
<ul>
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
<li>Web Backend Frameworks: Rails, Sinatra, Grape, Rocket Pants</li>
|
204
|
-
|
205
|
-
<li>Databases: MySQL, Postgres</li>
|
206
|
-
|
207
|
-
<li>AWS: (EC2, EBS, RDS, S3, CloudFront, IAM, CloudFormation, SES)</li>
|
208
|
-
|
209
|
-
<li>Configuration Management: Ansible</li>
|
210
|
-
|
211
|
-
<li>OS/Execution Environment: Docker</li>
|
212
|
-
|
213
|
-
</ul>
|
200
|
+
<li>
|
201
|
+
<h4>ACP ( November 2014 – January 2016 )</h4>
|
202
|
+
<div><a href=""></a></div>
|
203
|
+
<p>Advanced creative platform for online advertising, which allows you to automate the processes related to creative services. It supports both platforms – desktop and mobile.</p>
|
204
|
+
<div>Senior Software Engineer</div>
|
214
205
|
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
206
|
+
<h5>Technologies</h5>
|
207
|
+
<ul>
|
208
|
+
|
209
|
+
<li>Primary Languages: Ruby, SQL</li>
|
210
|
+
|
211
|
+
<li>Secondary Languages: CoffeeScript/JavaScript, Slim/HAML/HTML5, SASS/CSS</li>
|
212
|
+
|
213
|
+
<li>Web Backend Frameworks: Rails, Sinatra, Grape, Rocket Pants</li>
|
214
|
+
|
215
|
+
<li>Databases: MySQL, Postgres</li>
|
216
|
+
|
217
|
+
<li>AWS: (EC2, EBS, RDS, S3, CloudFront, IAM, CloudFormation, SES)</li>
|
218
|
+
|
219
|
+
<li>Configuration Management: Ansible</li>
|
220
|
+
|
221
|
+
<li>OS/Execution Environment: Docker</li>
|
222
|
+
|
223
|
+
</ul>
|
224
|
+
|
225
|
+
<h4>Achievements</h4>
|
226
|
+
<ul>
|
227
|
+
|
228
|
+
<li>Setup test framework and covered with specs existing and new features</li>
|
229
|
+
|
230
|
+
<li>Performed development operations – infrastructure setup, configuration and application deployment</li>
|
231
|
+
|
232
|
+
<li>Developed bulk import/export of the records from/to excel spreadsheet</li>
|
233
|
+
|
234
|
+
<li>Interviewed and mentored other developers</li>
|
235
|
+
|
236
|
+
<li>Introduced new developers to the application</li>
|
237
|
+
|
238
|
+
<li>Contributed to 'cocoon' gem in the sake of application</li>
|
239
|
+
|
240
|
+
<li>Performed major refactoring to advertisement showing mechanics</li>
|
241
|
+
|
242
|
+
<li>Developed application multitenancy</li>
|
243
|
+
|
244
|
+
<li>Migrated from MySQL to Postgres</li>
|
245
|
+
|
246
|
+
<li>Researched solutions for the cross-browser issues</li>
|
247
|
+
|
248
|
+
<li>Refactored event tracking system for the existing advertisements</li>
|
249
|
+
|
250
|
+
<li>Introduced video player to the advertisements</li>
|
251
|
+
|
252
|
+
<li>Delivered first and launched subsequent production releases intime</li>
|
253
|
+
|
254
|
+
<li>Spread out Agile principles and SCRUM methodology to the team</li>
|
255
|
+
|
256
|
+
</ul>
|
257
|
+
</li>
|
246
258
|
</ul>
|
247
259
|
|
248
260
|
|
249
261
|
<hr>
|
250
262
|
|
251
|
-
<!-- companies should be presented as a list (<ul>) -->
|
252
263
|
<h3>DataArt</h3>
|
253
264
|
<div><a href="http://dataart.com">http://dataart.com</a></div>
|
254
265
|
|
255
266
|
|
256
267
|
<!-- projects should be presented as a list (<ul>) -->
|
257
|
-
<h4>Online advertising aggregator ( July 2014 – November 2014 )</h4>
|
258
|
-
<div><a href=""></a></div>
|
259
|
-
<p>Online advertising aggregator from different services, particularly Google Adwords and Bing Ads, which provides data to the end user in the target scope. The application was divided into several parts: Rails application for the user management purposes, Ember application (frontend) for the users with dashboard/charts/statistics, Rails API application (backend) to support frontend, MapReduce cluster for the data import and analysis from advertising services.</p>
|
260
|
-
<div>Software Engineer</div>
|
261
|
-
|
262
|
-
<h5>Technologies</h5>
|
263
268
|
<ul>
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
<li>Postgres</li>
|
270
|
-
|
271
|
-
<li>MongoDB</li>
|
272
|
-
|
273
|
-
<li>AWS (EMR, EC2, RDS, S3)</li>
|
274
|
-
|
275
|
-
<li>Google Analytics</li>
|
276
|
-
|
277
|
-
<li>Google DFP</li>
|
278
|
-
|
279
|
-
<li>Bing Ads</li>
|
280
|
-
|
281
|
-
<li>JSON</li>
|
282
|
-
|
283
|
-
</ul>
|
269
|
+
<li>
|
270
|
+
<h4>Online advertising aggregator ( July 2014 – November 2014 )</h4>
|
271
|
+
<div><a href=""></a></div>
|
272
|
+
<p>Online advertising aggregator from different services, particularly Google Adwords and Bing Ads, which provides data to the end user in the target scope. The application was divided into several parts: Rails application for the user management purposes, Ember application (frontend) for the users with dashboard/charts/statistics, Rails API application (backend) to support frontend, MapReduce cluster for the data import and analysis from advertising services.</p>
|
273
|
+
<div>Software Engineer</div>
|
284
274
|
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
275
|
+
<h5>Technologies</h5>
|
276
|
+
<ul>
|
277
|
+
|
278
|
+
<li>Ruby</li>
|
279
|
+
|
280
|
+
<li>Rails</li>
|
281
|
+
|
282
|
+
<li>Postgres</li>
|
283
|
+
|
284
|
+
<li>MongoDB</li>
|
285
|
+
|
286
|
+
<li>AWS (EMR, EC2, RDS, S3)</li>
|
287
|
+
|
288
|
+
<li>Google Analytics</li>
|
289
|
+
|
290
|
+
<li>Google DFP</li>
|
291
|
+
|
292
|
+
<li>Bing Ads</li>
|
293
|
+
|
294
|
+
<li>JSON</li>
|
295
|
+
|
296
|
+
</ul>
|
297
|
+
|
298
|
+
<h4>Achievements</h4>
|
299
|
+
<ul>
|
300
|
+
|
301
|
+
<li>Setup test framework and covered with specs existing and new features</li>
|
302
|
+
|
303
|
+
<li>Figured out detailed requirements</li>
|
304
|
+
|
305
|
+
<li>Developed Hadoop MapReduce streaming steps</li>
|
306
|
+
|
307
|
+
<li>Enhanced API according to frequently changing business logic</li>
|
308
|
+
|
309
|
+
<li>Implemented 3rd party integrations with Google Analytics & DFP, Bing Ads</li>
|
310
|
+
|
311
|
+
<li>Delivered the first production releases intime</li>
|
312
|
+
|
313
|
+
<li>Adopted Agile principles and Kanban methodology</li>
|
314
|
+
|
315
|
+
</ul>
|
316
|
+
</li>
|
302
317
|
</ul>
|
303
318
|
|
304
319
|
|
305
320
|
<hr>
|
306
321
|
|
307
|
-
<!-- companies should be presented as a list (<ul>) -->
|
308
322
|
<h3>Anadea Inc</h3>
|
309
323
|
<div><a href="http://anadea.info">http://anadea.info</a></div>
|
310
324
|
|
311
325
|
|
312
326
|
<!-- projects should be presented as a list (<ul>) -->
|
313
|
-
<h4>NowShop ( October 2012 – July 2014 )</h4>
|
314
|
-
<div><a href="http://nowshop.com">http://nowshop.com</a></div>
|
315
|
-
<p>Online e-commerce platform, that provides integrated web-shops for the news sites. The platform includes over 1.000.000 products in all categories, full payment solution as well as 3rd party delivery solution.</p>
|
316
|
-
<div>Software Engineer</div>
|
317
|
-
|
318
|
-
<h5>Technologies</h5>
|
319
327
|
<ul>
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
<li>Postgres</li>
|
326
|
-
|
327
|
-
<li>XML</li>
|
328
|
-
|
329
|
-
<li>XML Scheme</li>
|
330
|
-
|
331
|
-
<li>HTML</li>
|
332
|
-
|
333
|
-
</ul>
|
328
|
+
<li>
|
329
|
+
<h4>NowShop ( October 2012 – July 2014 )</h4>
|
330
|
+
<div><a href="http://nowshop.com">http://nowshop.com</a></div>
|
331
|
+
<p>Online e-commerce platform, that provides integrated web-shops for the news sites. The platform includes over 1.000.000 products in all categories, full payment solution as well as 3rd party delivery solution.</p>
|
332
|
+
<div>Software Engineer</div>
|
334
333
|
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
334
|
+
<h5>Technologies</h5>
|
335
|
+
<ul>
|
336
|
+
|
337
|
+
<li>Ruby</li>
|
338
|
+
|
339
|
+
<li>Rails</li>
|
340
|
+
|
341
|
+
<li>Postgres</li>
|
342
|
+
|
343
|
+
<li>XML</li>
|
344
|
+
|
345
|
+
<li>XML Scheme</li>
|
346
|
+
|
347
|
+
<li>HTML</li>
|
348
|
+
|
349
|
+
</ul>
|
350
|
+
|
351
|
+
<h4>Achievements</h4>
|
352
|
+
<ul>
|
353
|
+
|
354
|
+
<li>Developed mechanism for obtaining XML data feeds from the retailers in different countries (Denmark, Norway, Sweden, United Kingdom), validation, parsing and multithread saving to the database</li>
|
355
|
+
|
356
|
+
<li>Implemented XML import optimizations to speed up the process x2 times like digesting, queries reduction, ActiveRecord refusal in favor of raw SQL</li>
|
357
|
+
|
358
|
+
<li>Supported the time task scheduler for the periodic tasks with logging and email notification</li>
|
359
|
+
|
360
|
+
<li>Developed HTML scrappers for the retailer sites to grab products info</li>
|
361
|
+
|
362
|
+
<li>Covered with specs existing and new features in TDD style</li>
|
363
|
+
|
364
|
+
<li>Maintained shop UI uptodate the backend side</li>
|
365
|
+
|
366
|
+
<li>Adopted Agile principles and XP methodology</li>
|
367
|
+
|
368
|
+
</ul>
|
369
|
+
</li>
|
352
370
|
</ul>
|
353
371
|
|
354
372
|
|
355
373
|
<hr>
|
356
374
|
|
357
|
-
<!-- companies should be presented as a list (<ul>) -->
|
358
375
|
<h3>Donetskoblgaz PLC</h3>
|
359
376
|
<div><a href=""></a></div>
|
360
377
|
|
361
378
|
|
362
379
|
<!-- projects should be presented as a list (<ul>) -->
|
363
|
-
<h4>Internal accounting system ( July 2008 – October 2012 )</h4>
|
364
|
-
<div><a href=""></a></div>
|
365
|
-
<p></p>
|
366
|
-
<div>Software Engineer</div>
|
367
|
-
|
368
|
-
<h5>Technologies</h5>
|
369
380
|
<ul>
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
<li>Oracle</li>
|
376
|
-
|
377
|
-
<li>XML</li>
|
378
|
-
|
379
|
-
<li>DTD</li>
|
380
|
-
|
381
|
-
<li>DBF</li>
|
382
|
-
|
383
|
-
<li>HTML</li>
|
384
|
-
|
385
|
-
<li>Excel</li>
|
386
|
-
|
387
|
-
</ul>
|
381
|
+
<li>
|
382
|
+
<h4>Internal accounting system ( July 2008 – October 2012 )</h4>
|
383
|
+
<div><a href=""></a></div>
|
384
|
+
<p></p>
|
385
|
+
<div>Software Engineer</div>
|
388
386
|
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
387
|
+
<h5>Technologies</h5>
|
388
|
+
<ul>
|
389
|
+
|
390
|
+
<li>Perl</li>
|
391
|
+
|
392
|
+
<li>MS SQL Server</li>
|
393
|
+
|
394
|
+
<li>Oracle</li>
|
395
|
+
|
396
|
+
<li>XML</li>
|
397
|
+
|
398
|
+
<li>DTD</li>
|
399
|
+
|
400
|
+
<li>DBF</li>
|
401
|
+
|
402
|
+
<li>HTML</li>
|
403
|
+
|
404
|
+
<li>Excel</li>
|
405
|
+
|
406
|
+
</ul>
|
407
|
+
|
408
|
+
<h4>Achievements</h4>
|
409
|
+
<ul>
|
410
|
+
|
411
|
+
<li>Figured out detailed requirements, evaluated system program needs, wrote and maintained program code to meet system requirements, system designs and technical specifications</li>
|
412
|
+
|
413
|
+
<li>Maintained inner accounting software package (client-server model)</li>
|
414
|
+
|
415
|
+
<li>Developed web-services to provide the customers ability to view the balance, edit counter values, make payments</li>
|
416
|
+
|
417
|
+
<li>Improved software for the data exchange between organization and banks</li>
|
418
|
+
|
419
|
+
<li>Administrated ERP Parus 8.2 database, wrote technical and user documentation, enterprise standards</li>
|
420
|
+
|
421
|
+
<li>Assumed a leadership role in cooperative work, inspired and motivated other employees</li>
|
422
|
+
|
423
|
+
<li>Adopted Waterfall methodology</li>
|
424
|
+
|
425
|
+
</ul>
|
426
|
+
</li>
|
406
427
|
</ul>
|
407
428
|
|
408
429
|
|
@@ -418,28 +439,52 @@
|
|
418
439
|
<h2>Certification</h2>
|
419
440
|
|
420
441
|
<!-- certificates should be presented as a list (<ul>) -->
|
421
|
-
<
|
422
|
-
|
442
|
+
<ul>
|
443
|
+
<li>
|
444
|
+
<h3>Amazon Web Services – AWS Certified Solutions Architect - Associate (SAA) (April 2018 – April 2020)</h3>
|
445
|
+
<div><a href="https://www.certmetrics.com/amazon/public/badge.aspx?i=1&t=c&d=2018-04-02&ci=AWS00435488">MGV91PF2BE1QQBGD</a></div>
|
446
|
+
</li>
|
447
|
+
</ul>
|
423
448
|
|
424
449
|
<!-- certificates should be presented as a list (<ul>) -->
|
425
|
-
<
|
426
|
-
|
450
|
+
<ul>
|
451
|
+
<li>
|
452
|
+
<h3>Amazon Web Services – AWS Certified Developer - Associate (DVA) (March 2018 – March 2020)</h3>
|
453
|
+
<div><a href="https://www.certmetrics.com/amazon/public/badge.aspx?i=2&t=c&d=2018-03-01&ci=AWS00435488">S4BBW3CKBBQQQM94</a></div>
|
454
|
+
</li>
|
455
|
+
</ul>
|
427
456
|
|
428
457
|
<!-- certificates should be presented as a list (<ul>) -->
|
429
|
-
<
|
430
|
-
|
458
|
+
<ul>
|
459
|
+
<li>
|
460
|
+
<h3>Coursera – Web Application Architectures </h3>
|
461
|
+
<div><a href=""></a></div>
|
462
|
+
</li>
|
463
|
+
</ul>
|
431
464
|
|
432
465
|
<!-- certificates should be presented as a list (<ul>) -->
|
433
|
-
<
|
434
|
-
|
466
|
+
<ul>
|
467
|
+
<li>
|
468
|
+
<h3>Coursera – Algorithms: Design and Analysis, Part 1 </h3>
|
469
|
+
<div><a href=""></a></div>
|
470
|
+
</li>
|
471
|
+
</ul>
|
435
472
|
|
436
473
|
<!-- certificates should be presented as a list (<ul>) -->
|
437
|
-
<
|
438
|
-
|
474
|
+
<ul>
|
475
|
+
<li>
|
476
|
+
<h3>Coursera – Gamification </h3>
|
477
|
+
<div><a href=""></a></div>
|
478
|
+
</li>
|
479
|
+
</ul>
|
439
480
|
|
440
481
|
<!-- certificates should be presented as a list (<ul>) -->
|
441
|
-
<
|
442
|
-
|
482
|
+
<ul>
|
483
|
+
<li>
|
484
|
+
<h3>Coursera – Functional Programming Principles in Scala </h3>
|
485
|
+
<div><a href=""></a></div>
|
486
|
+
</li>
|
487
|
+
</ul>
|
443
488
|
|
444
489
|
</div>
|
445
490
|
<div class="col-12">
|