-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1505 lines (1419 loc) · 69.8 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>
Jiří Procházka / Javascript Developer / Frontend Developer / API Maker
</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta
name="description"
content="Jiří Procházka / Javascript Developer / Frontend Developer / API Maker"
/>
<meta
name="keywords"
content="javascript, frontend, website, development, programming, vuejs, svelte, api, .net, csharp, c#"
/>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="css/animate.css" type="text/css" />
<link rel="stylesheet" href="css/animations.css" type="text/css" />
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css" />
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<link rel="stylesheet" href="css/custom.css" type="text/css" />
<link
rel="stylesheet"
href="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css"
type="text/css"
/>
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<!-- Loading animation -->
<div class="preloader">
<div class="preloader-animation">
<div class="preloader-spinner"></div>
</div>
</div>
<!-- /Loading animation -->
<div id="page" class="page">
<!-- Header -->
<header id="site_header" class="header mobile-menu-hide">
<div class="header-content clearfix">
<div class="my-photo">
<img src="images/photo.jpg" alt="image" />
</div>
<div class="site-title-block">
<div class="site-title">Jiří Procházka</div>
</div>
<!-- Navigation -->
<div class="site-nav">
<!-- Main menu -->
<ul id="nav" class="site-main-menu">
<li>
<a class="pt-trigger" href="#home">Home</a
><!-- href value = data-id without # of .pt-page. -->
</li>
<li>
<a class="pt-trigger" href="#about-me">About Me</a>
</li>
<li>
<a class="pt-trigger" href="#resume">Resume</a>
</li>
<li>
<a class="pt-trigger" href="#portfolio">Portfolio</a>
</li>
<li>
<a class="pt-trigger" href="#contact">Contact</a>
</li>
</ul>
<!-- /Main menu -->
</div>
<!-- Navigation -->
<!-- Social Links -->
<div class="social-links">
<a href="https://twitter.com/JiProchazka" target="_blank"
><i class="fab fa-twitter"></i
></a>
<a href="https://www.linkedin.com/in/jiriprochazka/" target="_blank"
><i class="fab fa-linkedin"></i
></a>
<a href="https://www.facebook.com/jiri.prochazka" target="_blank"
><i class="fab fa-facebook-f"></i
></a>
</div>
<!-- / Social Links -->
<!-- Copyrights -->
<div class="copyrights">© 2024 All rights reserved.</div>
<!-- / Copyrights -->
</div>
</header>
<!-- /Header -->
<!-- Mobile Header -->
<div class="mobile-header mobile-visible">
<div class="mobile-logo-container">
<div class="mobile-header-image">
<a href="#">
<img src="images/photo.jpg" alt="image" />
</a>
</div>
<div class="mobile-site-title"><a href="#">Jiří Procházka</a></div>
</div>
<a class="menu-toggle mobile-visible">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- /Mobile Header -->
<!-- Arrows Nav -->
<div class="lmpixels-arrows-nav">
<div class="lmpixels-arrow-left">
<i class="lnr lnr-chevron-left"></i>
</div>
<div class="lmpixels-arrow-right">
<i class="lnr lnr-chevron-right"></i>
</div>
</div>
<!-- /Arrows Nav -->
<!-- Main Content -->
<div id="main" class="site-main">
<!-- Page changer wrapper -->
<div class="pt-wrapper">
<!-- Subpages -->
<div class="subpages">
<!-- Home Subpage -->
<section
data-id="home"
data-title="Home"
class="pt-page pt-page-home start-page"
>
<div class="section-inner vcentered">
<div class="mask"></div>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div class="title-block">
<h2>Jiří Procházka</h2>
<div class="owl-carousel text-rotation">
<div class="item">
<div class="sp-subtitle">Javascript Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">Frontend Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">API Maker</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Home Subpage -->
<!-- About Me Subpage -->
<section class="pt-page" data-id="about-me">
<div class="section-inner custom-page-content">
<div class="section-title-block second-style">
<h2 class="section-title">About Me</h2>
<h5 class="section-description">
Frontend, Javascript & APIs are my cup of tea
</h5>
</div>
<div class="section-content">
<div class="row bs-30">
<div class="col-xs-6 col-sm-6">
<h3>I'm freelance Javascript & Frontend Developer</h3>
<p>
For my clients I'm creating nice looking applications
using several
<abbr title="User Interface">UI</abbr> libraries, which
are together with modern Javascript giving the users a
smooth feeling using the website.<br />User's impression
is the key point of websites I'm creating.
</p>
<p>
I'm able to deliver a whole application with complex
business logic created from top to bottom or participate
as a team member on the frontend part.
</p>
</div>
<div class="col-xs-6 col-sm-6">
<ul class="info-list">
<li>
<span class="title">Experience</span
><span class="value">18 yrs</span>
</li>
<li>
<span class="title">Residence</span
><span class="value">Czechia, EU</span>
</li>
<li>
<span class="title">E-mail</span
><span class="value"
><a
href="mailto:ji.prochazka@gmail.com"
>ji.prochazka@gmail.com</a
></span
>
</li>
<li>
<span class="title">Phone</span
><span class="value"
>+420 777 96 44 97</span
>
</li>
<li>
<span class="title">Freelance</span
><span class="value available">Available</span>
</li>
</ul>
</div>
</div>
<!-- Services Block -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="col-inner">
<div class="block-title">
<h3>What I Do</h3>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<!-- Service Item 1 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<!-- <i class="lnr lnr-store"></i> -->
<img src="images/logos/vue.png" alt="vue" />
</div>
<div class="ci-text">
<h4>Vue.js / NuxtJS</h4>
<p>
I have most experience with Vue on frontend. I
have built several projects for my clients as
well as my private projects on this framework.
It was my first choice for a long time.
</p>
</div>
</div>
<!-- /Service Item 1 -->
<!-- Service Item 2 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<img
src="images/logos/nodejs.png"
alt="Node.js"
/>
</div>
<div class="ci-text">
<h4>Node.js</h4>
<p>
I like the idea of one programming language for
both, the
<abbr title="Frontend">FE</abbr> and
<abbr title="Backend">BE</abbr>. It is a good
choice for building lightweight but scalable
APIs. My choice N<sup>o</sup> 1 for backend
recently.
</p>
</div>
</div>
<!-- Service Item 2 -->
<!-- Service Item 5 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<img
src="images/logos/flutter.png"
alt="Flutter"
/>
</div>
<div class="ci-text">
<h4>Flutter</h4>
<p>
For mobile apps I use this Google developed
framework. It is possible to develop mobile apps
for Android as well as for iOS with one
codebase.<br />I ♡ these nice looking apps.
</p>
</div>
</div>
<!-- Service Item 5 -->
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<!-- Service Item 3 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<img src="images/logos/react.png" alt="React" />
</div>
<div class="ci-text">
<h4>React</h4>
<p>
Although I'm still using Vue more, React is the
most used frontend framework nowadays. It is
fast, the development follows the proven
standards and it is easy to find programmers. It
is a first choice for many companies.
</p>
<p></p>
</div>
</div>
<!-- Service Item 3 -->
<!-- Service Item 4 -->
<div class="info-block-w-icon">
<div class="ci-icon">
<img src="images/logos/net.png" alt=".NET C#" />
</div>
<div class="ci-text">
<h4>.NET C#</h4>
<p>
I'm a frontend developer yet I have more than 13
years of experience in
<abbr title="Backend">BE</abbr> development.
When I need to build an API for my projects,
Node.js and .NET Core are my choices.
</p>
</div>
</div>
<!-- Service Item 4 -->
</div>
</div>
</div>
</div>
<!-- /Services Block -->
<!-- Testimonials Block -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="col-inner ts-25 bs-50">
<!-- Testimonials Block Title -->
<div class="block-title">
<h3>Testimonials<span></span></h3>
</div>
<!-- /Testimonials Block Title -->
<!-- Testimonials Carousel Block -->
<div class="testimonials owl-carousel">
<!-- Testimonial 1 -->
<div class="testimonial-item">
<!-- Testimonial Content -->
<div class="testimonial-content">
<div class="testimonial-text">
<p>
Jiří is both your go to technical guy, and at
the same time a person, who takes his time to
fully understand your business in order to
deliver the very best service to your full
satisfaction.
</p>
</div>
</div>
<!-- /Testimonial Content -->
<!-- Testimonial Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<img
src="images/testimonials/testimonial-2.jpg"
alt="Václav Myšák"
/>
</div>
<!-- /Picture -->
<!-- Testimonial author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Václav Myšák</p>
<p class="testimonial-firm">Nymble.eu</p>
</div>
</div>
<!-- /Testimonial author information -->
</div>
<!-- End of Testimonial 1 -->
<!-- Testimonial 2 -->
<div class="testimonial-item">
<!-- Testimonial Content -->
<div class="testimonial-content">
<div class="testimonial-text">
<p>
It's always pleasure and enriching to
cooperate with Jiří. Focused developer with
ability to quickly understand complex business
needs and with deep knowledge of his craft. I
especially appreciate Jiří's extremly clean
code and quick results delivery.
</p>
</div>
</div>
<!-- /Testimonial Content -->
<!-- Testimonial Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<img
src="images/testimonials/testimonial-3.jpg"
alt="Martin Baroš"
/>
</div>
<!-- /Picture -->
<!-- Testimonial author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Martin Baroš</p>
<p class="testimonial-firm">CEO at Cryptelo</p>
</div>
</div>
<!-- /Testimonial author information -->
</div>
<!-- End of Testimonial 2 -->
<!-- Testimonial 3 -->
<div class="testimonial-item">
<!-- Testimonial Content -->
<div class="testimonial-content">
<div class="testimonial-text">
<p>
I have met Jiri as a coworker on a project and
I liked working with him. He is very skilled
in frontend technologies and he is acquiring
new ones quickly. Coworking with him was a
pleasure and beneficial. I'm looking forward
to work with him again.
</p>
</div>
</div>
<!-- /Testimonial Content -->
<!-- Testimonial Author -->
<div class="testimonial-credits">
<!-- Picture -->
<div class="testimonial-picture">
<img
src="images/testimonials/testimonial-1.jpg"
alt="Jiří Hejduk"
/>
</div>
<!-- /Picture -->
<!-- Testimonial author information -->
<div class="testimonial-author-info">
<p class="testimonial-author">Jiří Hejduk</p>
<p class="testimonial-firm">
Colleague at CETIN
</p>
</div>
</div>
<!-- /Testimonial author information -->
</div>
<!-- End of Testimonial 3 -->
</div>
<!-- /Testimonials Carousel Block -->
</div>
</div>
</div>
<!-- /Testimonials Block -->
<!-- Clients Block -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="col-inner">
<!-- Clients Block Title -->
<div class="block-title">
<h3>Clients<span></span></h3>
</div>
<!-- /Clients Block Title -->
<!-- Clients Carousel Block -->
<div class="clients owl-carousel">
<div class="client-block">
<a
href="https://nymble.eu"
target="_blank"
title="Nymble.eu"
>
<img
src="images/clients/nymble.png"
alt="Nymble.eu"
/>
</a>
</div>
<div class="client-block">
<a
href="https://www.integra.cz"
target="_blank"
title="Integra Czech Republic"
>
<img
src="images/clients/integra.png"
alt="Integra Czech Republic"
/>
</a>
</div>
<div class="client-block">
<a
href="https://zrychlujemecesko.cz"
target="_blank"
title="CETIN"
>
<img src="images/clients/cetin.png" alt="CETIN" />
</a>
</div>
<div class="client-block">
<a
href="https://digicard.space"
target="_blank"
title="DigiCard Space"
>
<img
src="images/clients/digicard.png"
alt="DigiCard Space"
/>
</a>
</div>
<div class="client-block">
<a
href="https://cryptelo.com"
target="_blank"
title="Cryptelo"
>
<img
src="images/clients/cryptelo.png"
alt="Cryptelo"
/>
</a>
</div>
<div class="client-block">
<a
href="https://physter.com"
target="_blank"
title="Physter"
>
<img
src="images/clients/physter.png"
alt="Physter"
/>
</a>
</div>
</div>
<!-- /Clients Carousel Block -->
</div>
</div>
</div>
<!-- /Clients Block -->
</div>
</div>
</section>
<!-- About Me Subpage -->
<!-- Resume Subpage -->
<section class="pt-page" data-id="resume">
<div class="section-inner custom-page-content">
<div class="section-title-block second-style">
<h2 class="section-title">Resume</h2>
<h5 class="section-description">18 Years of Experience</h5>
</div>
<div class="section-content">
<div class="row">
<div class="col-xs-12 col-sm-8">
<div class="col-inner bs-30">
<div class="block-title">
<h3>Experience<span></span></h3>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jan 2023 - Current</h5>
<span class="item-company">PHYSTER TECHNOLOGY, a.s.</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Frontend Senior Software Developer (Team Lead)
</h4>
<p>
I'm building a frontend for integration plaform including various designing (UI) tools.
<br />Used technologies:
<strong>React, Tailwindcss</strong>
</p>
</div>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Mar 2022 - May 2023</h5>
<span class="item-company">Storymkrs</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Chief Technology Officer
</h4>
<p>
I'm responsible for the SaaS product development
and for a complete app frontend.
<br />Used technologies:
<strong>VueJS, NestJS</strong>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Oct 2020 - Apr 2022</h5>
<span class="item-company"
>Cashflow Solutions</span
>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Chief Technology Officer
</h4>
<p>
Tech first financial start-up. We are building a
plug'n'play platform for banks and fintechs. As
a CTO I was responsible for the overall platform
architecture, code standards etc.<br />
Used technologies:
<strong
>ASP.NET Core API, Workflows, Flutter,
VueJS</strong
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jan 2017 - Current</h5>
<span class="item-company">Freelance</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Freelance Developer / Contracting
</h4>
<p>
Besides contracting I'm helping companies to
simplify their processes by putting right tools
on right places. I'm using
<strong>Vue.js & Vuex</strong> or
<strong>Svelte</strong> on frontend and mainly
<strong>Node.js</strong> or
<strong>.NET Core</strong> on backend
•
<a class="pt-trigger" href="#portfolio"
>Profolio</a
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jun 2016 - Dec 2016</h5>
<span class="item-company">GAC Group, Dubai</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Senior Software Developer
</h4>
<p>
I was developing internal website application
for logistic company backoffice.<br />Used
technologies:
<strong>.NET ASP.NET MVC, AngularJS</strong>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Sep 2015 - May 2016</h5>
<span class="item-company">EmbedIT</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">.NET Developer</h4>
<p>
I was responsible for loan retailer's desktop
.NET client in Belarussian branch. The project
was closing so I decided to take a chance and
move abroad. <br />
Used technologies:
<strong
>.NET Windows Forms, Smart Client Factory
2010, Aurelia, Typescript</strong
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Nov 2014 - Jun 2015</h5>
<span class="item-company">MonJour App</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Co-Founder</h4>
<p>
I was Co-Founder of MonJour. I also developed
Windows Phone 8.1 app and .NET WebApi2 backend
server.<br />
Used technologies:
<strong
>Windows Phone 8.1, WebApi2, SignalR</strong
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Aug 2011 - Oct 2014</h5>
<span class="item-company">FCR Tech</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Microsoft CRM 2011 implementation, team leader
</h4>
<p>
I started as a MC CRM 2011 developer with a
responsibility for own product development.
</p>
<p>
After one and half year I become a teamleader
responsible for Google AdWords campaigns
management implementation in CRM 2011 for
Sweden, Hungary and
Czech & Slovakia.<br />
Used technologies:
<strong
>CRM 2011, .NET, WPF, Silverlight 5, WCF,
jQuery</strong
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jan 2011 - Jul 2011</h5>
<span class="item-company"
>GARANZIA Finance s.r.o.</span
>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Business Analyst, Architect, Designer, Developer
- contract
</h4>
<p>
In cooperation with headquaters I analysed,
designed and developed a mid-sized information
system for a new financial advisors company
(like OVB or AWD) in which they are managing the
whole agenda (brokers, contracts, clients,
brokerages, brokerage imports from insurance
companies, etc.). I used ORM/Mapper (Lightspeed)
and own UI framework, because the system was
demanded to deliver in seven months from scratch
(I was making this just by myself).<br />
Used technologies:
<strong
>ORM, Linq, ASP.NET 3.5, javascript</strong
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Sep 2009 - Dec 2010</h5>
<span class="item-company">AXA</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Senior Lead Programmer, Architecture Designer
</h4>
<p>
In Axa (French insurance company) I was senior
lead programmer for small-medium size business
support application in WPF and Windows Forms. In
cooperation with an analyst I designed an
architecture of application and wrote codes. I
was also responsible for other programmers (2-3
persons), code correctness and project code
format conventions.<br />
Used technologies:
<strong
>.NET, WPF, Winforms, Linq, Web Services,
FirebirdSQL</strong
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jun 2008 - Sep 2009</h5>
<span class="item-company">HAVIT, s.r.o.</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">ASP.NET Developer</h4>
<p>
In Havit I was working as developer with
responsibility for own projects. I worked on
projects for O2, ŠkoFin, Atlas.cz, Mediatel,
Maggi.<br />
Used technologies:
<strong
>ASP.NET 3.5, ORM, Active Records</strong
>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Jan 2006 - Jun 2008</h5>
<span class="item-company"
>Blue Pixel, s.r.o.</span
>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">ASP.NET Developer</h4>
<p>
I joined Blue Pixel as GUI XHTML/CSS designer in
order to achieve the best possible users‘
impression in using applications (e.g. for
Nokia).
</p>
<p>
After one and half year I started to work as C#
.NET programmer (Windows Forms, ASP.NET) on
projects for U:fon (Czech 4th mobile operator),
Wirpo and others.<br />
Used technologies:
<strong
>(X)HTML/CSS, Javascript, .NET 2.0</strong
>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="col-inner">
<div class="block-title">
<h3>Experience<span></span></h3>
</div>
<div class="skills-info skills-second-style">
<!-- Skill 1 -->
<div class="clearfix">
<h4>HTML/CSS</h4>
<div class="skill-value">18 years</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-1"></div>
</div>
<!-- /Skill 1 -->
<!-- Skill 2 -->
<div class="clearfix">
<h4>C#</h4>
<div class="skill-value">14 years</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-2"></div>
</div>
<!-- /Skill 2 -->
<!-- Skill 3 -->
<div class="clearfix">
<h4>Backend</h4>
<div class="skill-value">14 years</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-2"></div>
</div>
<!-- /Skill 3 -->
<!-- Skill 4 -->
<div class="clearfix">
<h4>Frontend</h4>
<div class="skill-value">6 years</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-3"></div>
</div>
<!-- /Skill 4 -->
<!-- Skill 5 -->
<div class="clearfix">
<h4>Modern Javascript</h4>
<div class="skill-value">6 years</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-4"></div>
</div>
<!-- /Skill 5 -->
</div>
<div class="block-title ts-10">
<h3>Language Skills<span></span></h3>
</div>
<div class="skills-info skills-second-style">
<!-- Skill 5 -->
<div class="clearfix">
<h4>Czech</h4>
<div class="skill-value">Native</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-5"></div>
</div>
<!-- /Skill 5 -->
<!-- Skill 6 -->
<div class="clearfix">
<h4>English</h4>
<div class="skill-value">Fluent</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-6"></div>
</div>
<!-- /Skill 6 -->
<!-- Skill 7 -->
<div class="clearfix">
<h4>Finnish</h4>
<div class="skill-value">Limited</div>
</div>
<div class="skill-container">
<div class="skill-percentage skill-7"></div>
</div>
<!-- /Skill 7 -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Resume Subpage -->
<!-- Portfolio Subpage -->
<section class="pt-page" data-id="portfolio">
<div class="section-inner custom-page-content">
<div class="section-title-block second-style">
<h2 class="section-title">Portfolio</h2>
<h5 class="section-description">My Works</h5>
</div>
<div class="section-content">
<div class="row">
<div class="col-xs-12 col-sm-12">