-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.xml
1004 lines (999 loc) · 34.8 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="./index.xsl" type="text/xsl"?>
<site>
<title>Artem Deykun <span>Front-End Developer</span></title>
<myphoto>
<src>./img/photo.jpg</src>
<alt>Watching Simpsons in headphones</alt>
</myphoto>
<myinfo>
<name>Artem Deykun</name>
<year>28 years</year>
<position>Front-End Developer</position>
<phone>+380930149790</phone>
<mail>[email protected]</mail>
<skype>skype: artemhp</skype>
</myinfo>
<footer>
<copyright>Lorem ipsum dolor sit amet.</copyright>
</footer>
<navigation>
<item name="General Info" title_display="hide">
<me>
<item title="Nationality">Ukrainian</item>
<item title="City">Kiyv</item>
<item title="Birthday">05.05.1988</item>
<item title="Civil status">married to Ludmila Deykun</item>
<item title="Specialization">Front-End Developer</item>
<item title="Work/Position">EcomDev / Front End Developer</item>
<item title="Work Address">Ukraine. Kiyv.</item>
<item title="Languages">Ukrainian, Russian, English</item>
<item title="Phone">mobile: +380930149790; skype: artemhp</item>
<item title="E-mail">[email protected]</item>
</me>
<content class="info">
I have started my career as a web-project manager and now I'm a
Web Developer with more than 8 years of well-rounded experience.
My skills include HTML, CSS, LAMP administrating and Graphic Design.
I also have experience with SEO and Internet Advertising.
</content>
</item>
<item name="Social Networks" title_display="hide">
<soc>
<link name="RSS">deykun.com</link>
<link name="Twitter">twitter.com/deykun</link>
<link name="Facebook">facebook.com/deykun</link>
<link name="LinkedIn">ua.linkedin.com/in/deykun</link>
<link name="Google">https://plus.google.com/105787874856080534370</link>
<link name="YouTube">www.youtube.com/artemhp</link>
</soc>
</item>
<item name="Objective" title_display="show">
<content>
<p>
I want to achieve high quality development of web applications and services,
to be a reliable partner and worker. At the beginning of
career I have tried myself in different areas of IT industry -
from manager to backend developer.
</p>
<p>
For long time I have been preferred freelance work, but now I see more
opportunities to cultivate my knowledge and experience working as an
employee in IT company. Free time I spend with my family.
</p>
<p>
Last 3 years I was working in ArtDepo studio as web-developer on 1C-Bitrix CMS,
on EcomDev company developing templates for Magento CMS and developing heavy load project
PeopleSmart.com on Svitla Systems and Inflection companies using .NET technologies.
</p>
</content>
</item>
<item name="Skills" title_display="show">
<rate>
<item title="HTML/CSS" rate="9">
Ranking above is my own evaluation of my skills in reference to each other.
So, the highest score has HTML/CSS because in my opinion developing layout
is the best I do, and with the knowledge of JavaScript I'm pretty good
front end developer.
</item>
<item title="Responsive Design" rate="9">
Ranking above is my own evaluation of my skills in reference to each other.
So, the highest score has HTML/CSS because in my opinion developing layout
is the best I do, and with the knowledge of JavaScript I'm pretty good
front end developer.
</item>
<item title="Preprocessors" rate="9">
For optimize development process use preprocessors JS (CoffeeScript, TypeScript), html (haml, jade),
styles (less, scss).
</item>
<item title="PHP" rate="7">
I have experience of PHP-programing above 5 years. In this time
I have written a lot of scripts for CMS's, have developed my own CMS
named DEngine which is very successful and useful for me and supports on
more then 10 sites. Last time I concentrate on developing own templates for
CMSs like Wordpress, Magento and adjusting modules.
</item>
<item title="JavaScript" rate="7">
Knowledge and experience in pure JS, nodejs, mobile applications.
Crossbrowser development.
Unit tesing code.
Working with different frameworks.
</item>
<item title="Windows" rate="7">
.NET project development and support. Adjustment web-sites on IIS. Internet Explorer 6 html/css
markup. Have experience in development product based on Microsoft since working in Svitla Systems (2012).
</item>
<item title="UNIX" rate="8">
I prefer work in Linux environmental as server and desktop. Since I have
been a student I support Linux servers, later support hostings of Internet
Shops and install one server at parents home. As for me - monitoring Linux
servers is more easily then Windows.
</item>
<item title="Design" rate="7">
All my pet projects (including this CV web-site) is designed by my own. Also have experience as
a desiginer in companies - has developed corporate style for main products.
</item>
<item title='AngularJS' rate='8'>
Develop complex applications. Architecture and generic solutions for bunch of projects.
</item>
<item title='Cordova/PhoneGap' rate='8'>
Develop complex applications. Architecture and generic solutions for bunch of projects.
</item>
</rate>
</item>
<item name="Experience" title_display="show">
<content>
<p>I have been working in web development for 7 years. Have experience in project management, web-design and OOP programming.<br />
For last 3 years I have concentrated all my forces and skill in front-end development.</p>
</content>
<experience>
<item>
<company>Zorallabs</company>
<logo>zoral.png</logo>
<title>
<position>Front-End Developer</position>
<url>zorallabs.com</url>
<director>Alan Hambrook</director>
<date>November 2014 — Today</date>
</title>
<description>
<p>Architecturing web-applications for company's main products.</p>
<p>Developing web application base on AngularJS for different browsers and devices.</p>
<p>Responsible for creating a design for web application in Google Material Design, preparation products for the demo.</p>
</description>
</item>
<item>
<company>EcomDev</company>
<logo>ecomdev.png</logo>
<title>
<position>Front-End Developer</position>
<url>ecomdev.org</url>
<director>Andrey Korolyov</director>
<date>April 2011 - April 2012</date>
</title>
<description>
<p>I was invited to the command of developers online stores on Magento as front-end developer.</p>
<p>I had the first experience of working in highly qualified programmers team.</p>
<p>Ecomdev is working on Europe and USA and main language within company is english - it's a good practice in speaking and writing documentation</p>
</description>
</item>
<item>
<company>Design Studio ArtDepo</company>
<logo>artdepo.png</logo>
<title>
<position>Web Developer</position>
<url>artdepo.com.ua</url>
<director>Michael Heina</director>
<date>July 2011 - April 2012</date>
</title>
<description>
<p>After graduation I wished to try myself in company and was interested in stable income. So I choose for work one of the best web-studios in Ukraine.</p>
<p>My main task was to programming web-sites based on 1C-Bitrix. Supporting big projects with heavy load on the server.</p>
<p>I make my markup HTML pages in a very high level due to very extraordinary designes and scrupulous quality control.</p>
</description>
</item>
<item>
<company>Own company - DEngine</company>
<logo>dengine.png</logo>
<title>
<position>CEO, Web Developer</position>
<url>dengine.deykun.com</url>
<director>Artem Deykun</director>
<date>October 2010 - July 2011</date>
</title>
<description>
<p>Some big projects give me a opportunity to try myself in my own business.</p>
<p>Company provided the following services: Developing web-sited based on own CMS DEngine; Administrating Linux, FreeBSD and Windows servers. Supporting web-servers and optimization them; System administrating in offices; Tutoring, private lessons in computer science at home, in companies, in institutes;</p>
</description>
</item>
<item>
<company>Infotec</company>
<logo>infotec.png</logo>
<title>
<position>System Administrator</position>
<url>infotec.ua</url>
<director>Viktor Gurieiev</director>
<date>June 2012 - July 2012</date>
</title>
<description>
<p>In the externship of bachelor I was working in Infotec company. It was something like agency of General Electrics in Ukraine. Main objective - to write software simulator for electrical power stations.</p>
<p>My practice got on the period when company was porting programs from Delphi to Java + Oracle and I was responsible for installing and supporting Linux Suse Enterprise and Oracle DB on it.</p>
</description>
</item>
<item>
<company>DjOne - internet market of music equipment</company>
<logo>djone.png</logo>
<title>
<position>Team-lead, Web-Developer</position>
<url>djone.com.ua</url>
<director>Yuriy Lutchenko</director>
<date>May 2008 - September 2012</date>
</title>
<description>
<p>I has joined the project at the beginning of it development as main programmer. My task was to write a PHP-system for the chain stores musical equipment.</p>
<p>In one year was developed DEngine System. And for a three years under my direction project has been in progress. More than 30 plugins was been created. At the second year of life the project should migrate from the hosting to the powerful server. System was adjusted and optimized for MySQL, Apache/nginx servers.</p>
</description>
</item>
<item>
<company>Mucos Pharma</company>
<logo>mucos.png</logo>
<title>
<position>Programmer, SEO</position>
<url>mucos.com.ua</url>
<director>Anatoliy Terzov</director>
<date>May 2008 - September 2012</date>
</title>
<description>
<p>Mucos Pharma Become my first official work with employment records as Software Engineer. I am responsible for development online services. Order huge amount of information in DB MySQL.</p>
<p>Responsible for the promotion the production in Internet.</p>
</description>
</item>
<item>
<company>Chemical faculty "Kyiv Polytechnic Institute"</company>
<logo>xtf.png</logo>
<title>
<position>System Administrator</position>
<url>xtf.kpi.ua</url>
<director>Igor Astrelin</director>
<date>May 2006 - December 2011</date>
</title>
<description>
<p>After one year of education I have been joined to Student Science Association of NTUU KPI. Since that time I was involved in many projects like organization of conferences, summer schools.</p>
<p>Then I was concentrated on the web-development and designed cafedral web-site, later site of faculty. Take park in supporting internet resources for conferences.</p>
<p>Has developed internet journal of students progress in points with private access but project stops in bureaucratic reason.</p>
</description>
</item>
<item>
<company>Ukrainian Harry Potter fan-club</company>
<logo>hpclub.png</logo>
<title>
<position>Founder and Project Manager</position>
<url>hpclub.com.ua</url>
<director>Artem Deykun</director>
<date>October 2005 - December 2009</date>
</title>
<description>
<p>In childhood I was very like books Harry Potter, so, when it was really popular in 2005 I decided to organize fan-club. It was my first experience of web-site creation and managing, meeting with sponsors, speaking with press.</p>
<p>I have created HTML web-site with over then 100 pages, installed forum on IPB CMS. In 2007 year it was more then 2000 members. I was organizator of premiers and books presentation in Ukraine.</p>
</description>
</item>
</experience>
</item>
<item name="Portfolio" title_display="show">
<content>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cum,
animi, consectetur aliquid earum perferendis laborum temporibus tempora
explicabo sint mollitia error odio dolorum quas dolore vel incidunt excepturi
aspernatur quia.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cum,
animi, consectetur aliquid earum perferendis laborum temporibus tempora
explicabo sint mollitia error odio dolorum quas dolore vel incidunt excepturi
aspernatur quia.</p>
</content>
<portfolio>
<item>
<title>PeopleSmart - People Search</title>
<url>peoplesmart.com</url>
<company>
<item>Inflection</item>
</company>
<screenshot>new-peoplesmart.com</screenshot>
<year>
<item>2014</item>
</year>
<info>
Took park in developing front-end architecture.
Developing One Page Applications - in Backbone, AngularJS.
Developing heavy load project on ASP.NET MVC (templates on Razor).
Creating mixins, architecture for SCSS styles for consolidation member area web-sites.
</info>
<tools>
<item>HTML5</item>
<item>CSS3</item>
<item>JavaScript</item>
<item>jQuery</item>
<item>Razor</item>
<item>.NET</item>
<item>C#</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>PeopleSmart - People Search</title>
<url>peoplesmart.com</url>
<company>
<item>Inflection</item>
</company>
<year>
<item>2013</item>
</year>
<info>
Supporting big web-project on XSLT on pretty outdated technologies. Fixing bugs, implement improvements.
Split testing developing.
</info>
<tools>
<item>HTML4</item>
<item>XSLT</item>
<item>CSS2</item>
<item>JavaScript</item>
<item>jQuery</item>
<item>IIS</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Free Phone Tracer - Reverse Phone Lookup</title>
<url>freephonetracer.com</url>
<company>
<item>Inflection</item>
</company>
<year>
<item>2014</item>
</year>
<info>
One of the satelite on PeopleSmart. Supporting this project on XSLT/CSS2/HTML4 on pretty outdated technologies. Fixing bugs, implement improvements.
Split testing developing.
</info>
<tools>
<item>HTML4</item>
<item>XSLT</item>
<item>CSS2</item>
<item>JavaScript</item>
<item>jQuery</item>
<item>IIS</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Emailfinder - Email Search</title>
<url>emailfinder.com</url>
<company>
<item>Inflection</item>
</company>
<year>
<item>2014</item>
</year>
<info>
One of the satelite on PeopleSmart. Supporting this project on XSLT/CSS2/HTML4 on pretty outdated technologies. Fixing bugs, implement improvements.
Split testing developing.
</info>
<tools>
<item>HTML4</item>
<item>XSLT</item>
<item>CSS2</item>
<item>JavaScript</item>
<item>jQuery</item>
<item>IIS</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Online Shop "Spytronic"</title>
<url>spytronic.com</url>
<company>
<item>EcomDev</item>
</company>
<year>
<item>2013</item>
</year>
<info>
Full refactor existing design and markup to Magento templates.
Store in 2 localization - french and english.
</info>
<tools>
<item>Magento</item>
<item>HTML5</item>
<item>CSS3</item>
<item>PHP5</item>
<item>JavaScript</item>
<item>Prototype</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Online Shop "Montelle"</title>
<url>montelle.ca</url>
<company>
<item>EcomDev</item>
</company>
<year>
<item>2013</item>
</year>
<info>Took park in development. Developed custom sliders slider, extention for spots on picture, CMS pages styling</info>
<tools>
<item>Magento</item>
<item>HTML5</item>
<item>CSS3</item>
<item>JavaScript</item>
<item>Prototype</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Online Shop "BabyPark"</title>
<url>babypark.nl</url>
<company>
<item>EcomDev</item>
</company>
<year>
<item>2013</item>
</year>
<info>Project was developed for desktop and mobile devices. A lot of custom elements in forms and popups. Lazy load, quick view in product list. Checkout structure was refactored.</info>
<tools>
<item>Magento</item>
<item>HTML5</item>
<item>CSS3</item>
<item>Media Queries</item>
<item>PHP5</item>
<item>JavaScript</item>
<item>Prototype</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Company "EcomDev"</title>
<url>ecomdev.org</url>
<company>
<item>EcomDev</item>
</company>
<year>
<item>2012</item>
</year>
<info>Took part in design and developing template. Been main front-end developer for the project.</info>
<tools>
<item>Wordpress</item>
<item>HTML5</item>
<item>CSS3</item>
<item>PHP5</item>
<item>JavaScript</item>
<item>Prototype</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Online Shop "Prima Ouders"</title>
<url>primaouders.nl</url>
<company>
<item>EcomDev</item>
</company>
<year>
<item>2012</item>
</year>
<info>My first project in which I fully developed front-end part by myself.
Now, it's some modificated with another company developers, but main scripts and layout stay.</info>
<tools>
<item>Magento</item>
<item>HTML5</item>
<item>CSS3</item>
<item>PHP5</item>
<item>JavaScript</item>
<item>Prototype</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>TV company "VIASAT Ukraine"</title>
<url>viasat-channels.tv</url>
<company>
<item>Art Depo</item>
</company>
<year>
<item>2012</item>
</year>
<info>Has developed approvements. Was resposible for stable work administrating server based on Linux. Took part in redesign.</info>
<tools>
<item>1C-Bitrix</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>Cufon</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>team lead</item>
<item>back-end developer</item>
<item>sytem administrator</item>
</role>
</item>
<item>
<title>Restaurant "Colonnada"</title>
<url>colonnada.com.ua</url>
<screenshot>na</screenshot>
<company>DEngine</company>
<year>
<item>2012</item>
</year>
<info>XMTML Markup and programming. Support project.</info>
<tools>
<item>Wordpress</item>
<item>HTML5</item>
<item>CSS3</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>project manager</item>
</role>
</item>
<item>
<title>Medication "Wobenzym"</title>
<url>wobenzym.com.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2012</item>
</year>
<info>My idea to create separate web-site for promo Mucos Pharma product. SEO optimization</info>
<tools>
<item>Wordpress</item>
<item>HTML5</item>
<item>CSS3</item>
<item>Media Queries</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>project manager</item>
<item>designer</item>
</role>
</item>
<item>
<title>Company "Ecobond"</title>
<url>ecobond.ru</url>
<company>
<item>Art Depo</item>
</company>
<year>
<item>2012</item>
</year>
<info>My task was to installing and adjusting component of quiz developed in Art Depo.</info>
<tools>
<item>1C-Bitrix</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
</role>
</item>
<item>
<title>Design Studio "Art Depo"</title>
<url>artdepo.com.ua</url>
<company>
<item>Art Depo</item>
</company>
<year>
<item>2012</item>
</year>
<info>Remotely installing and adjusting server based on Linux Debian. Optimization for stable and efficient work of web-server.</info>
<tools>Linux (Debian), Apache2, MySQL</tools>
<tools>
<item>Linux</item>
<item>Apache2</item>
<item>MySQL Server</item>
</tools>
<role>
<item>sytem administrator</item>
</role>
</item>
<item>
<title>Construction "Energopol-Ukraine"</title>
<url>energopol-ukraine.com</url>
<company>
<item>Art Depo</item>
</company>
<year>
<item>2011</item>
</year>
<info>Corporate web-site with more then 5 jquery plugins. More time was spent on developing gallery and project category wich consist alot of sorted objects.</info>
<tools>
<item>1C-Bitrix</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
</role>
</item>
<item>
<title>Beauty salon "Lelia"</title>
<url>leliabeauty.com.ua</url>
<company>
<item>Art Depo</item>
</company>
<year>
<item>2011</item>
</year>
<info>In some metters difficult project due to not standart fonts and high requirements for compliance PSD design to markup. Optimizing web-site for very quickly pages loading</info>
<tools>
<item>1C-Bitrix</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>Cufon</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Company "Ritrama"</title>
<url>ritrama.com.ua</url>
<company>
<item>Art Depo</item>
</company>
<year>
<item>2011</item>
</year>
<info>My first web-site based on 1C-Bitrix. Task was to copy design from official site to ukrainian branch office.</info>
<tools>
<item>1C-Bitrix</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
</role>
</item>
<item>
<title>Service for legal advices</title>
<url>advice.org.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2011</item>
</year>
<info>Web-site with a difficult navigation. Has been developed few custom forms. Has been done in 2 days.</info>
<tools>
<item>Wordpress</item>
<item>HTML5</item>
<item>CSS3</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Company "Web Intelligence"</title>
<url>webintelligence.com.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2011</item>
</year>
<info>Developing template for Wordpress. XMTML Markup and programming. Be me was developed front-end part of slider using nextgen gallery plugin.</info>
<tools>
<item>Wordpress</item>
<item>HTML5</item>
<item>CSS3</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
</role>
</item>
<item>
<title>Company "Vizit Service"</title>
<url>vizitservice.com</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2011</item>
</year>
<info>
Markup and programming web-site from jpg design-source.
Very simple web-site in 1 day with news, gallery, contact form
</info>
<tools>
<item>Wordpress</item>
<item>HTML5</item>
<item>CSS2</item>
<item>PHP5</item>
</tools>
<role>
<item>front-end developer</item>
<item>project manager</item>
</role>
</item>
<item>
<title>Agency "RTconference"</title>
<url>rtconference.com.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2010</item>
</year>
<info>Transfer from one CMS to another. Feature requests and support.</info>
<tools>
<item>Own CMS</item>
<item>SMARTY</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
<item>project manager</item>
</role>
</item>
<item>
<title>Municipal Enterprise "KBio Himki"</title>
<url>kbiox.ru</url>
<screenshot>na</screenshot>
<company>
<item>DEngine</item>
</company>
<year>
<item>2010</item>
</year>
<info>Developed in one week using my own CMS DEngine Corporate. The most hard part of web-site was main page with special hover effect on the big image-map.</info>
<tools>
<item>Own CMS</item>
<item>SMARTY</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
</role>
</item>
<item>
<title>Shop "Aqua Breeze"</title>
<url>pompa.net.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2009</item>
</year>
<info>Creating internet-shop for selling pumps. Low budget allowed o create only catalog.</info>
<tools>
<item>Own CMS</item>
<item>SMARTY</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
<item>Photoshop</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
<item>project manager</item>
<item>designer</item>
</role>
</item>
<item>
<title>Company "Mucos Pharma"</title>
<url>mucos.com.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2008</item>
</year>
<info>Web-site for a company in which I have been working for 4 years.</info>
<tools>
<item>Own CMS</item>
<item>SMARTY</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
<item>Photoshop</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
<item>project manager</item>
<item>designer</item>
</role>
</item>
<item>
<title>Pharmaceutical company "R-Pharm"</title>
<url>r-pharm.com.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2008</item>
</year>
<info>The second web-site developed by me for Mucos Pharma. Task was to create small light-weight web-site. With no CMS.</info>
<tools>
<item>Own CMS</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>Photoshop</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
<item>project manager</item>
<item>designer</item>
</role>
</item>
<item>
<title>Company "TechElectrotrade"</title>
<url>hagerland.com.ua</url>
<screenshot>na</screenshot>
<company>
<item>DEngine</item>
</company>
<year>
<item>2007</item>
</year>
<info>Due to this project was developed CMS "DEngine Shop". For a years was made more than 40 extensions.</info>
<tools>
<item>Own CMS</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>Photoshop</item>
</tools>
<role>
<item>front-end developer</item>
<item>back-end developer</item>
<item>project manager</item>
<item>designer</item>
</role>
</item>
<item>
<title>Internet Shop "DjOne"</title>
<url>djone.com.ua</url>
<company>
<item>DEngine</item>
</company>
<year>
<item>2006</item>
</year>
<info>Due to this project was developed CMS "DEngine Shop". For a years was made more than 40 extensions.</info>
<tools>
<item>Own CMS</item>
<item>SMARTY</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
<item>Photoshop</item>
<item>Linux</item>
<item>MySQL Server</item>
<item>Apache2</item>
</tools>
<role>
<item>designer</item>
<item>front-end developer</item>
<item>back-end developer</item>
<item>sytem administrator</item>
<item>team lead</item>
</role>
</item>
<item>
<title>Harry Potter fan-club in Ukraine</title>
<url>hpclub.com.ua</url>
<company>
<item>Own Project</item>
</company>
<year>
<item>2005</item>
</year>
<info>Fan-club of Harry Potter in Ukraine was created due to this web-site. Consist of 120 HTML pages and forum.</info>
<tools>
<item>IPB</item>
<item>HTML4</item>
<item>CSS2</item>
<item>PHP5</item>
<item>MySQL</item>
<item>JavaScript</item>
<item>jQuery</item>
</tools>
<role>
<item>front-end developer</item>
<item>sytem administrator</item>
<item>team lead</item>
<item>project manager</item>
<item>founder</item>
</role>
</item>
</portfolio>
</item>
<item name="Equipment" title_display="show">
<content>
<p>I prefer comfortable place ofh work and high perfomance computer technics. This is a list of my own current equipment.</p>
</content>
<equipment>
<item title="desktop">Windows 7 / AMD Athlon II X2 3 Ghz / 4 Gb DDR3;</item>
<item title="desktop">Linux Mint / Intel Dual Core 2.2 Ghz / GeForce 9500 GT / 2 Gb DDR2;</item>
<item title="server">(situated in "Kyiv Politechnical Institute) Linux Ubuntu / Pentium IV 2,4 Ghz / 3Gb DDR;</item>
<item title="netbook">Asus Eee PC 1215B / AMD Fusion APU E450 1.65GHz / Radeon HD 6320 / 3 Gb DDR2;</item>
<item title="laptop"> Windows 8 / DELL Inspiron 15 - 7000 series;</item>
<item title="phone">HTC One M7;</item>
</equipment>
</item>
<item name="Interests" title_display="show">
<content>
<p>First of all I'm dad and lovely husband.</p>
<p>I'm front-end Developer in Svitla Systems and Inflection company. I love my job.</p>
<p>I very proud that took active part in development front-end architecture for a huge projects. In our project we use just modern technologies.</p>
<p>I like write some technical stuff in my blog, project documentation.</p>
<p>Free time I spend with my family. Sometimes we go to enjoy nature, sometimes stay at home and play games (favourite monopoly, playstation 3).</p>
<p>I love sport. I'm very skilled in tennis. I am fan of pump it up.</p>
<p>My favourite films is Armagedon, Star Wars. Book - Harry Potter, Lord of the Rings.</p>