-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.xml
1119 lines (1115 loc) · 49.5 KB
/
cv.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"?>
<cv>
<name>Major Péter</name>
<contact>
<val>+36 30 750-3031</val>
<icon>contact-phone.png</icon>
<hu>Mobiltelefon</hu>
<en>Phone number</en>
</contact>
<contact>
<val>majorpeter29@gmail.com</val>
<icon>contact-mail.png</icon>
<type>email</type>
<hu>E-mail cím</hu>
<en>E-mail address</en>
</contact>
<contact>
<val>http://hu.linkedin.com/in/majorpeter92/</val>
<icon>contact-linkedin.png</icon>
<type>url</type>
<hu>LinkedIn profil</hu>
<en>LinkedIn profile</en>
</contact>
<contact>
<val>https://github.com/majorpeter</val>
<icon>contact-github.png</icon>
<type>url</type>
<hu>GitHub profil</hu>
<en>GitHub profile</en>
</contact>
<contact>
<val>http://www.facebook.com/major.peter</val>
<icon>contact-facebook.png</icon>
<type>url</type>
<hu>Facebook profil</hu>
<en>Facebook profile</en>
</contact>
<desc>
<hu>Villamosmérnök</hu>
<en>Electrical Engineer</en>
</desc>
<desc>
<hu>Beágyazott szoftverfejlesztő</hu>
<en>Embedded software developer</en>
</desc>
<profile-img>
<url>profile.jpg</url>
</profile-img>
<!-- címkék a felsorolásokhoz -->
<tag>
<name>bme</name>
<title>
<hu>BME</hu>
<en>BUTE</en>
</title>
<desc>
<hu>A Budapesti Műszaki és Gazdaságtudományi Egyetemmel kapcsolatos.</hu>
<en>It is related to Budapest University of Technology and Economics.</en>
</desc>
</tag>
<tag>
<name>inprogress</name>
<title>
<hu>Folyamatban</hu>
<en>In progress</en>
</title>
<desc>
<hu>A projekt fejlesztés alatt van, legalább néhány hetente frissül.</hu>
<en>The project is under development, it is updated every few weeks.</en>
</desc>
</tag>
<tag>
<name>suspended</name>
<title>
<hu>Felfüggesztve</hu>
<en>Suspended</en>
</title>
<desc>
<hu>A fejlesztés határozatlan időre fel lett függesztve.</hu>
<en>Development has been suspended for an indefinite period.</en>
</desc>
</tag>
<!-- technológiai tag-ek -->
<tag>
<name>android</name>
<title>
<hu>android</hu>
<en>android</en>
</title>
<desc>
<hu>A projekt az Android operációs rendszerre készül.</hu>
<en>The project is developed for the Android operating system.</en>
</desc>
</tag>
<tag>
<name>qt</name>
<title>
<hu>Qt</hu>
<en>Qt</en>
</title>
<desc>
<hu>A projekt a Qt keretrendszert használja.</hu>
<en>The project uses the Qt framework.</en>
</desc>
</tag>
<tag>
<name>ogre</name>
<title>
<hu>OGRE</hu>
<en>OGRE</en>
</title>
<desc>
<hu>A projekt az OGRE grafikus keretrendszert használja.</hu>
<en>The project uses the OGRE graphical framework.</en>
</desc>
</tag>
<tag>
<name>cocos2dx</name>
<title>
<hu>cocos2d-x</hu>
<en>cocos2d-x</en>
</title>
<desc>
<hu>A projekt az cocos2d-x grafikus keretrendszert használja.</hu>
<en>The project uses the cocos2d-x graphical framework.</en>
</desc>
</tag>
<tag>
<name>pcb</name>
<title>
<hu>NYÁK</hu>
<en>PCB</en>
</title>
<desc>
<hu>A projekt része a nyomtatott áramköri lap tervezése.</hu>
<en>The project involves printed circuit board design.</en>
</desc>
</tag>
<section icon="section-work.png">
<title>
<hu>Szakmai tapasztalat</hu>
<en>Work Experience</en>
</title>
<li id="lightware">
<title years="2014-" image="work_lightware.png" image-full="work_lightware_full.png">
<hu>Lightware Kft. - beágyazott szoftverfejlesztő</hu>
<en>Lightware LLC - embedded software developer</en>
</title>
<content>
<hu>
A BSc szakmai gyakorlat kapcsán helyezkedtem el a <a href="http://lightware.com/">Lightware</a>-nél.
Kezdetben kisebb feladataim voltak régebbi termékek karbantartásával (pl. <a href="https://lightware.com/product-families/mx-series">MX-FR</a>),
illetve részt vettem a <a href="https://lightware.com/product-families/25g-hybrid">25G</a> videomátrix
HDMI és TPS kártyájának fejlesztében, ekkor ismerkedtem meg alaposabban a HDMI szabvány
<a href="https://en.wikipedia.org/wiki/HDMI#Consumer_Electronics_Control_(CEC)"><i>Consumer
Electronics Control</i></a> részével.
<br/>
2015-ben elhatároztuk, hogy az összes szoftverfejlesztést SVN helyett innentől Git-en fogjuk követni.
A futó projektek (és összes függőségük) költöztetését, és a munkatársak Git-képzését én végeztem.
<br/>
2016-tól eleinte MSc diplomaprojektként kezdtem foglalkozni egy 10G Ethernet-alapú AV rendszer
hálózati infrastruktúrájának tervezésével. Ezzel párhuzamosan dolgoztam magán a terméken, az
<a href="https://lightware.com/ubex-pro20-hdmi-f100">UBEX</a>-en. 2018 végétől a projekt vezető
firmware fejlesztője vagyok. Részt vettem a termék első telepítésében a <i>The House of Dancing
Water</i> produkciónál Makaóban. A projekt
<a href="https://www.livedesignonline.com/excellence-installation-awards/house-dancing-water"><i>
Excellence in Installation</i> díjat</a> is nyert (a cikk engem is említ).
<br/>
A konkrét fejlesztési feladatok mellett részt veszek az UBEX termék új funkcióinak megtervezésében,
és a felhasználóktól érkező incidensek felderítésében. Rendszeresen előadok a cég partner trainingjein
hálózati ismeretek és UBEX platform témában.
<br/>
Videotechnikai, hálózati, programozástechnikai stb. témákban gyakran konzultálok más projektek
fejlesztőivel, részt veszek az új munkatársak mentorálásában, belső folyamatok fejlesztésében.
</hu>
<en>
I started working at <a href="http://lightware.com/">Lightware</a> as an intern at the end of the BSc
course. At first I had smaller projects regarding the maintenance of older products (e.g.
<a href="https://lightware.com/product-families/mx-series">MX-FR</a>), and I took part in development
of HDMI and TPS boards for the <a href="https://lightware.com/product-families/25g-hybrid">25G</a>
videomatrix, that is when I got familiar with <a href="https://en.wikipedia.org/wiki/HDMI#Consumer_Electronics_Control_(CEC)">
<i>Consumer Electronics Control</i></a> part of the HDMI standard.
<br/>
In 2015 we decided to track all of our software development in Git instead of SVN. I handled the migration
of all of the active projects and their dependencies as well as the Git training of employees.
<br/>
Since 2016 I worked on designing a 10G Ethernet based AV system's network infrastructure, initially
as an MSc thesis project. During that time I also worked on the product itself, the
<a href="https://lightware.com/ubex-pro20-hdmi-f100">UBEX</a>. Since the end of 2018 I have been
the lead firwmare developer of the project. I took part in the first installation of the product at
<i>The House of Dancing Water</i> production in Macau. That project has also won an
<a href="https://www.livedesignonline.com/excellence-installation-awards/house-dancing-water"><i>
Excellence in Installation Award</i></a> (the article mentions me as well).
<br/>
Beside the actual development tasks, I also take part in designing new features for the UBEX product,
and investigation of user incidents. I regularly speak at partner trainings regarding network basics
and the UBEX platform.
<br/>
I often consult with developers on projects regarding video technology, networks, programming etc. I
take part in mentoring new colleagues and internal process development.
</en>
</content>
<image>
<url>thodw_rack.jpg</url>
<hu>The House of Dancing Water rack szekrénye</hu>
<en>The rack of The House of Dancing Water</en>
</image>
<image>
<url>thodw_testpattern.jpg</url>
<hu>Tesztjelek a Lightware átviteli rendszerén a The House of Dancing Water színpadán</hu>
<en>Test patterns on Lightware's transmission system at the stage of The House of Dancing Water</en>
</image>
</li>
<li id="prog1-labor">
<title years="2015">
<hu>Programozás alapjai 1. laborvezetés</hu>
<en>Basics of Programming 1. lecturer</en>
</title>
<content>
<hu>A Programozás, illetve a C nyelv alapjait oktattam számítógépes laborgyakorlat keretében.</hu>
<en>I taught the basics of programming and the C language in a computer lab course.</en>
</content>
<tag>bme</tag>
</li>
<li id="riport">
<title years="2013" image="work_riport.png" image-full="work_riport_full.png">
<hu>Riport könyvelői webalkalmazás teljes frontend fejlesztése</hu>
<en>Riport accounting web application's full frontend development</en>
</title>
<content>
<hu>
Egy <a href="http://en.wikipedia.org/wiki/Django_(web_framework)">django</a>-alapú könyveléső alkalmazás frontendjét fejlesztettem (HTML, CSS, JS, jQuery).
Az alkalmazás jelenlegi verziója a <a href="http://riport.co.hu/">riport.co.hu</a> címen érhető el.
</hu>
<en>
I was working on the frontend of a <a href="http://en.wikipedia.org/wiki/Django_(web_framework)">django</a>-based accounting application (HTML, CSS, JS, jQuery).
The current version of the application is available at <a href="http://riport.co.hu/">riport.co.hu</a>.
</en>
</content>
<image>
<url>riport_1.png</url>
<hu>Üdvözlőképernyő</hu>
<en>Welcome screen</en>
</image>
<image>
<url>riport_2.png</url>
<hu>Dashboard felület</hu>
<en>Dashboard</en>
</image>
<image>
<url>riport_3.png</url>
<hu>Főkönyvi számok kiválasztása riport kategóriához</hu>
<en>Picking ledger numbers for report category</en>
</image>
</li>
<li id="innostart">
<title years="2012-2014" image="work_inno.png" image-full="work_inno_full.png">
<hu>Innostart Kft. - webfejlesztő</hu>
<en>Innostart LLC. - web developer</en>
</title>
<content>
<hu>
Webfejlesztőként dolgoztam, főként PHP programozással foglalkoztam (Drupal, Wordpress, CakePHP platformokon).
Időnként devops feladatokat is elláttam: Linux szerver telepítést/karbantartást, és Java-alapú toolfejlesztést.
</hu>
<en>
I worked as a web developer, I mainly used PHP (on Drupal, Wordpress, CakePHP platforms).
Sometimes I also had devops tasks: installing and maintaining a Linux servers, developing tools in Java.</en>
</content>
</li>
<li id="htec">
<title years="2012" image="work_hhi.png" image-full="work_hhi_full.png">
<hu>
H-TEC nyári gyakornoki állás
</hu>
<en>
Summer internship position at H-TEC
</en>
</title>
<content>
<hu>
A Hyundai Heavy Industries magyarországi képviseleténél (H-TEC Kft.). A vállalat
invertereket (is) gyárt például nap- és szélerőművekhez, ezek termelési és egyéb adatait
<a href="http://en.wikipedia.org/wiki/Modbus">Modbus</a> protokollon keresztül lehet lekérdezni.
Egy olyan Android alkalmazást fejlesztettem, amellyel az inverterek állapotát, statisztikáit
lehetett távolról vizsgálni.
</hu>
<en>
I worked a month at the Hungarian representation of
Hyundai Heavy Industries (H-TEC LLC.).
The corporation manufactures inverters for solar and wind power plants as well as other products. One can download production and other
details from these inverters using the <a href="http://en.wikipedia.org/wiki/Modbus">Modbus</a> protocol.
I developed an Android application wit which the user could inspect the actual status and statistics
of the inverters remotely.
</en>
</content>
<image>
<url>htec1.jpg</url>
<hu>Egy erőmű aktuális termelése</hu>
<en>Production verview for a power plant</en>
</image>
<image>
<url>htec2.jpg</url>
<hu>Mai napi termelés diagramja</hu>
<en>Diagram of today's production</en>
</image>
<image>
<url>htec3.jpg</url>
<hu>Elmúlt két hét összehasonlítása</hu>
<en>Comparison of the last two weeks</en>
</image>
<tag>android</tag>
</li>
</section>
<section icon="section-school.png">
<title>
<hu>Tanulmányok</hu>
<en>Studies</en>
</title>
<item>
<title years="2015-2017">
<hu>
Budapesti Műszaki és Gazdaságtudományi Egyetem Villamosmérnöki és Informatikai Kar
<br/>
Villamosmérnök (MSc mesterképzés)
<br/>
Számítógép-alapú rendszerek főspecializáció, Programozható logikai áramkörök alkalmazástechnikája mellékspecializáció
</hu>
<en>
Budapest University of Technology and Economics Faculty of Electical Engineering and Informatics
<br/>
Electrical Engeneer (MSc)
<br/>
Engineering of Computer-Based Systems, Application of Field Programmable Gate Arrays
</en>
</title>
<content>
<hu>
<b>Kitüntetéses oklevéllel</b> végeztem.
</hu>
<en>
I have an <b>Honours Degree</b>.
</en>
</content>
</item>
<item>
<title years="2011-2015">
<hu>
Budapesti Műszaki és Gazdaságtudományi Egyetem Villamosmérnöki és Informatikai Kar
<br/>
Villamosmérnök (BSc alapképzés)
<br/>
Beágyazott és irányító rendszerek szakirány - Számítógép-alapú rendszerek ágazat
</hu>
<en>
Budapest University of Technology and Economics Faculty of Electical Engineering and Informatics
<br/>
Electrical Engeneer (BSc)
<br/>
Specialization in Embedded and Control Systems - Computer-based Systems branch
</en>
</title>
<content>
<hu>
<b>Kitüntetéses oklevéllel</b> végeztem.
</hu>
<en>
I have an <b>Honours Degree</b>.
</en>
</content>
</item>
<item>
<title years="2007-2011">
<hu>Tóparti Gimnázium és Művészeti Szakközépiskola (Székesfehérvár)</hu>
<en>Tóparti Secondary Grammar School and Secondary School of Art (Székesfehérvár)</en>
</title>
<content>
<hu>
Angol specialitású képzés; fakultatív matematika, fizika, informatika
Kitűnő érettségi bizonyítvány, általános dicséret
</hu>
<en>
English specialized class; facultative Mathematics, Physics, Informatics
<br/>
Excellent certificate of secondary education, general commendation
</en>
</content>
</item>
<item>
<title years="1999-2007">
<hu>Munkácsy Mihály Általános Iskola (Székesfehérvár)</hu>
<en>Munkácsy Mihány Primary School (Székesfehérvár)</en>
</title>
</item>
<break/>
<item>
<title>
<hu>Számos tanulmányi versenyen vettem részt, értem el helyezéseket.</hu>
<en>I attended several competitions and achieved places.</en>
</title>
<content>
<hu>
Matematika megyei versenyeken 1.,2.,3. helyek; kémia 4., informatika 1. hely
<br/>
Országos Középiskolai Tanulmányi Versenyek: matematika, informatika, angol 2. fordulók; fizika országos 23. hely (2010) és 11. hely (2011)
</hu>
<en>
County Mathematics competitions 1st, 2nd, 3rd places; Chemistry 4th, Computer Science 1st
<br/>
National Secondary School Academic Competition: Mathematics, Computer Science, English 2nd rounds; Physics national 23rd place (2010) and 11th place (2011)
</en>
</content>
</item>
<item>
<title>
<hu>Kitűnő érettségi bizonyítvány, 2 előrehozott érettségivel</hu>
<en>Excellent certificate of secondary education, 2 early exams</en>
</title>
</item>
</section>
<section icon="section-lang.png">
<title>
<hu>Nyelvtudás</hu>
<en>Languages</en>
</title>
<li>
<title year="2009">
<hu>Angol C1 felsőfok</hu>
<en>English C1 Proficient</en>
</title>
<content>
<hu>Szinte minden nap nézek angol nyelvű sorozatot, olvasok angolul,
híreken kívül angol nyelvű szakirodalmat is, leginkább programozással kapcsolatban.</hu>
<en>I watch English speaking series almost daily, I read in English, news and technical literature, mostly about programming.</en>
</content>
</li>
<li>
<title year="2011">
<hu>Német B2 középfok</hu>
<en>German B2 Competent</en>
</title>
<content>
<hu>Sajnos csak ritkán jut időm arra, hogy foglalkozzak vele.</hu>
<en>Unfortunately I rarely find the time to practice it.</en>
</content>
</li>
</section>
<section icon="section-code.png">
<title>
<hu>Programozási és villamosmérnöki ismeretek</hu>
<en>Programming and Electrical Engineering knowledge</en>
</title>
<li>
<title>
<hu>C++ - Qt és egyéb keretrendszerek</hu>
<en>C++ - Qt and other frameworks</en>
</title>
<content>
<hu>
2012 óta használom, 2014 óta a munkám. A nyelv sablonjai (<a href="http://en.wikipedia.org/wiki/Standard_Template_Library">STL</a>) mellett
használtam <a href="http://qt.digia.com/">Qt</a>, <a href="http://www.ogre3d.org/">Ogre3d</a>, <a href="http://bulletphysics.org/">Bullet Physics</a>,
<a href="http://www.cocos2d-x.org/">cocos2d-x</a> stb. keretrendszereket.
</hu>
<en>
I've been using it since 2012 and it has been my job since 2014. Beside the templates of the languge (<a href="http://en.wikipedia.org/wiki/Standard_Template_Library">STL</a>),
I have used several frameworks including <a href="http://qt.digia.com/">Qt</a>, <a href="http://www.ogre3d.org/">Ogre3d</a>,
<a href="http://bulletphysics.org/">Bullet Physics</a>, <a href="http://www.cocos2d-x.org/">cocos2d-x</a>.
</en>
</content>
</li>
<li>
<title>
<hu>Python</hu>
<en>Python</en>
</title>
<content>
<hu>2014 óta használom egyszerű teszt scriptektől és összetettebb projektekig sok mindenhez.</hu>
<en>I have been using it from 2014 for several thing ranging from simple test scripts to complex projects.</en>
</content>
</li>
<li>
<title>
<hu>Java - Android és asztali alkalmazások</hu>
<en>Java - Android and desktop applications</en>
</title>
</li>
<li>
<title>
<hu>PHP - webfejlesztés, elterjedtebb keretrendszerek</hu>
<en>PHP - web development, common frameworks</en>
</title>
</li>
<li>
<title>
<hu>Linux shell scriptek (bash, sh)</hu>
<en>Linux shell scripts (bash, sh)</en>
</title>
</li>
<li>
<title>
<hu>C - asztali és beágyazott rendszerek</hu>
<en>C - desktop and embedded systems</en>
</title>
<content>
<hu>2008 óta foglalkozom vele hobbi szinten, 2014 óta a munkám része.</hu>
<en>I have been using it since 2008, and it has been part of my job since 2014.</en>
</content>
</li>
<li>
<title>
<hu>Assembly (ARM Cortex-M)</hu>
<en>Assembly (ARM Cortex-M)</en>
</title>
</li>
<li>
<title>
<hu>FPGA fejlesztői alapok</hu>
<en>FPGA development basics</en>
</title>
</li>
<li>
<title>
<hu>Nyomtatott áramkör tervezés/ellenőrzés (Altium Designer)</hu>
<en>Printed circuit board design/review (Altium Designer)</en>
</title>
</li>
</section>
<section icon="section-misc.png">
<title>
<hu>Egyéb ismeretek</hu>
<en>Miscellaneous knowledge</en>
</title>
<item>
<title>
<hu>Linux rendszergazdai gyakorlat</hu>
<en>Linux administrator experience</en>
</title>
<content>
<hu>
Napi szinten Linuxot használok otthon és munkához egyarátnt. 2012 óta számos disztribúciót kipróbáltam,
de az Arch Linuxnál állapodtam meg. A PC mellett karbantartok egy Linux-alapú otthoni szerver gépet.
Többek között ez vezérli az otthonautomatizálásomat, amit VPN-en keresztül vezérlek távolról.
</hu>
<en>
I use Linux at home and at work on a daily basis. I have tried several distributions since 2012 but
chosen to stick with Arch Linux. Beside my PC, I also maintain a Linux based home server. Among
other things, it controls my home automation which I control remotely via VPN.
</en>
</content>
</item>
<item>
<title>
<hu>Windows rendszergazdai gyakorlat</hu>
<en>Windows administrator experience</en>
</title>
</item>
<item>
<title>
<hu>Hálózati ismeretek</hu>
<en>Network skills</en>
</title>
<content>
<hu>
A 10G Ethernet alapú AV rendszer tervezésekor (<a href="https://lightware.com/ubex-pro20-hdmi-f100">UBEX</a>)
számos hálózati szabványt (IEEE és RFC) megismertem. Teszthálózatokat építettem Cisco, Netgear, Juniper
eszközökből.
</hu>
<en>
When I was designing the 10G Ethernet based AV system (<a href="https://lightware.com/ubex-pro20-hdmi-f100">UBEX</a>)
I got to know a handful on networking standards (IEEE and RFC). I also built several test networks
using Cisco, Netgear, Juniper equipment.
</en>
</content>
</item>
<item>
<title>
<hu>Verziókövető rendszerek</hu>
<en>Version Control Systems</en>
</title>
<content>
<hu>Az összes hobbiprojektemet (is) git-ben követem és github-on teszem közzé.</hu>
<en>I keep all of my hobby projects in git and host them on github.</en>
</content>
</item>
<item>
<title>
<hu>MS Office programcsomag</hu>
<en>MS Office suite</en>
</title>
</item>
<item>
<title>
<hu>B-kategóriás jogosítvánnyal rendelkezem 2010 márciusa óta.</hu>
<en>I have a category B driver's license since March 2010.</en>
</title>
</item>
</section>
<section icon="section-person.png">
<title>
<hu>Személyiség, készségek</hu>
<en>Personality, skills</en>
</title>
<li>
<title>
<hu>Problémamegoldó képesség</hu>
<en>Problem solving skill</en>
</title>
</li>
<li>
<title>
<hu>Csapatmunka</hu>
<en>Teamwork</en>
</title>
</li>
<li>
<title>
<hu>Precizitás</hu>
<en>Exactitude</en>
</title>
</li>
<li>
<title>
<hu>Kommunikációs készség</hu>
<en>Communication skill</en>
</title>
</li>
<li>
<title>
<hu>Terhelhetőség</hu>
<en>Endurance</en>
</title>
</li>
<li>
<title>
<hu>Minőségre törekvés</hu>
<en>Ambition for Quality</en>
</title>
</li>
</section>
<section icon="section-projects.png">
<title>
<hu>Saját projektek</hu>
<en>My own projects</en>
</title>
<li id="radioalarm">
<title>
<hu>Rádiós riasztórendszer (önálló laboratórium)</hu>
<en>Alarm system with radio communiction (Project laboratory)</en>
</title>
<content>
<hu>
A hatodik félév elején önálló projekt témát kellett választanunk. Úgy gondoltam, minél nehezebb témát választok, annál többet fogok tanulni belőle. A félév folyamán két mikrokontrolleres egységet terveztem, STM32F103C4 (ARM Cortex-M3) típusú MCU-t használnak. A tervezés után az áramkörök megépítése, majd a kontrollerek felprogramozása következett. Mindkettő elemről és 5V-os tápról is képes üzemelni, képesek mérni az elemek feszültségét (jelezni, ha alacsony). Egymással rádióhullámokon keresztül kommunikálnak (FSK moduláció a 433 MHz-es sávban). A távoli egység tartalmaz egy hőmérőt és kivezetéseket, amelyekre például PIR szenzort, ultrahangos szenzort, nyitásérzékelőt stb. lehet illeszteni. A központi egység felelős az összes (jelenleg 1) távoli modul felügyeletéért, a rendszer élesítéséért és kikapcsolásáért (PIN-kód hitelesítése), illetve a felhasználóval való kommunikációért (kijelző, menürendszer). A központi egység USB-n keresztül csatlakoztatható lenne PC-hez is, az asztali alkalmazással megtekinthető lenne az eseménynapló, hozzáadhatók/szerkeszthetők lennének a PIN-kódok és a hozzájuk tartozó felhasználói nevek.
<br/>
Sajnos a félév folyamán nem jutott elég időm az összes funkció implementálására. A tervezett kommunikációs protokoll, eseménykezelés, energiatakarékos üzemmódok nem készültek el.
</hu>
<en>
In the beginning of the sixth semester, we had to pick a subject for Project laboratory. I thought, the harder the topic the more I would learn from it. During the semester I designed two microcontroller based units, they both use the STM32F103C4 (ARM Cortex-M3) MCU. After designing, I built the circuits, then programmed the controllers. They both work from batteries as well as from 5V DC power supply, they can measure the battery voltage (and alert if it is low). They communicate with each other via radio waves (FSK modulation at 433 MHz). The remote unit contains a temperature sensor and extender pins, which can be used to attach a PIR sensor, an ultrasound sensor, opening detectors etc. The main unit is responsible for keeping track of all remote units (1 for now), setting up and deactivating the system (PIN code verification) and for communicating with the user (display, menu system). The main unit could be connected to a PC via USB, a desktop application could be used to view the event log, and to alter the PIN codes and the correcponding user names.
<br/>
Unfortunately, I did not have enough time to implement all features in the semester. The planned communication protocol, event handling, powersaving modes were not created.
</en>
</content>
<image>
<url>radioalarm_mainpcb_3d.png</url>
<hu>A központi egység 3D modellje</hu>
<en>3D model of the main module</en>
</image>
<image>
<url>radioalarm_sub1pcb_3d.png</url>
<hu>A távoli egység 3D modellje</hu>
<en>3D model of the remote module</en>
</image>
<image>
<url>radioalarm_main_batt.jpg</url>
<hu>Központi egység, külső tápegység nélkül</hu>
<en>Main module without external power supply</en>
</image>
<image>
<url>radioalarm_main_swd.jpg</url>
<hu>Központi egység, tápegység és SWD csatlakoztatva</hu>
<en>Main module, power supply and SWD connected</en>
</image>
<image>
<url>radioalarm_sub_sens.jpg</url>
<hu>Távoli egység a külső szenzorokkal</hu>
<en>Remote module with external sensors</en>
</image>
<image>
<url>radioalarm_psu.png</url>
<hu>Kapcsoló üzemű tápegység stabilitása</hu>
<en>Stability of switching power supply</en>
</image>
<tag>bme</tag>
<tag>pcb</tag>
</li>
<li id="pinctrl">
<title>
<hu>PIN-kód azonosító "érintéskapcsolókkal"</hu>
<en>PIN identifier device with touch detectors</en>
</title>
<content>
<hu>
A
<i>Mikrokontroller laboratórium</i> tantárgy keretében ST32F4 Discovery Kithez tervezünk kiegészítő panelt, amivel valamilyen hardveres funkciót valósítunk meg. Az én feladatom PIN-kódok beolvasása az érzékelőkről (optocsatolókról) és visszajelzés a helyességükről. Az eszköz LED-eken és LCD-n jelzi az állapotát, hangjelzést ad, az utóbbi kettőt én tettem a feladathoz, nem volt a specifikáció része.
<br/>
A PIN-kódokat egy Qt-alkalmazással lehet szerkeszteni, miután az eszközt csatlakoztattuk a számítógép USB portjára (virtuális soros port). A feladat megtanított a nyomtatott áramkörtervezés alapjaira és remek alkalom volt egy korszerű mikrokontroller számos funkciójának megismerésére.
</hu>
<en>
At the subject called
<i>Microcontroller Laboratory</i>, we design an extension panel for ST32F4 Discovery Kit, with which we implement a hardware function. My project is about reading PIN's from sensors (optocouplers) and providing feedback about them. The unit shows its status via LED's and LCD, and also gives sounds.
<br/>
The PIN's can be edited with a Qt application after connecting the kit to the USB port of a PC (virtual COM port). The task tought me the basics of PCB editing and was a great opportunity to learn about many features of a modern microcontroller, I put the last two to the project, they were not in the specification.
</en>
</content>
<image>
<url>pinpcb_3d.png</url>
<hu>A kiegészítő panel és a Discovery Kit 3D modellje</hu>
<en>3D model of the extension panel with the Discovery Kit</en>
</image>
<image>
<url>pinpcb-1.jpg</url>
<hu>Bevitel közben; a LED-ek nem ilyen vakítóak</hu>
<en>During input; the LED's are not that blinding</en>
</image>
<image>
<url>pinpcb-2.jpg</url>
<hu>Sikeres bevitel</hu>
<en>Successful input</en>
</image>
<image>
<url>pincfg.png</url>
<hu>A PIN-kódok beállításához használható Qt-alkalmazás</hu>
<en>Qt-application to set up PIN's</en>
</image>
<tag>bme</tag>
<tag>pcb</tag>
<tag>qt</tag>
</li>
<li id="raspi-pwm">
<title>
<hu>Raspberry Pi-alapú világítástechnika</hu>
<en>Raspberry Pi-based lighting</en>
</title>
<content>
<hu>
Amikor 2013 nyarán albérletbe költöztem a kollégiumból, felmerült az ötlet, hogy RGB LED szalaggal oldjam meg a világítást.
Úgy gondoltam, jobb lenne, ha valami szakmai projekt is lenne, ezért az Android telefonról wifin keresztül vezérelhető világítás
lett a cél. Néhány alternatíva végiggondolása után végül a Pi-t választottam, mert viszonylag sok leírás van hozzá, Ethernetet
gyárilag tudja és találtam hozzá szoftveres PWM megoldást is.
<br/>
Hobbi projektként viszonylag lassan haladtam vele, de végül összeállt a kiegészítő panel és elkezdődött a szoftver fejlesztése.
A nyílt forrású PWM vezérlő köré írtam saját TCP szervert C++ nyelven, ami közvetlenül kezeli a böngészőből elérhető WebUI-t, ami egy
statikus HTML oldal Javascript
<a href="http://hu.wikipedia.org/wiki/Remote_procedure_call">RPC</a> megoldással. Ugyanezen
a porton keresztül kommunikál az Android alkalmazásom is a saját bináris protokollján keresztül.
<br/>
A vezérlő képes a három PWM csatornát egymástól függetlenül kezelni, és így a csúszkákkal beállítható az RGB skáláról bármilyen
szín. Ezekből a színekből animációk hozhatók létre, átváltási és tartási időkkel, egymásba ágyazható ciklusokkal.
<br/>
Ráérő időmben az Android klienst szoktam fejleszteni, az ébresztő órával próbálom összekötni a rendszert. Mivel Linux felhasználóként a GNOME 3.xx felületet szeretem használni, felmerült, hogy ehhez írjak bővítményt, amivel lehet irányítani a fényeket, ez is folyamatban van.
</hu>
<en>
When I moved out of the youth hostel to an apartment in the summer of 2013, the idea of lighting with an RGB LED strip
came to mind. I thought I should make it a professional project, so controlling the lights with an Android phone over wifi
became the goal. After considering a few alternatives, I decided to use the Pi, as it has lots of tutorials, supports
Ethernet out-of-the-box and I had found a software PWM solution for it as well.
<br/>
As it has been a hobby project, I made progress slowly, but in the end I had the extension panel ready and started the software
development. I wrote my TCP server around the open source PWM controller. It handles the WebUI directly, that can be opened in
any web browser. It is a static HTML page with a Javascript
<a href="http://en.wikipedia.org/wiki/Remote_procedure_call">RPC</a>
solution. The Android app uses the same port to communicate using its own binary protocol.
<br/>
The controller can set the three PWM channels independently, so it is possible to set any RGB color with the sliders. From these
colors, one can create animations with transition and hold times, embeddable loops.
<br/>
When I have some time, I work on the Android client, I have been trying to link the system to my alarm clock. Since I am a Linux user and prefer to use the GNOME 3.xx environment, I decided to write an extension for it to control the lights, it is also in progress.
</en>
</content>
<image>
<url>rgb-schem.png</url>
<hu>A kapcsolási rajz szemléltetése</hu>
<en>Schematics</en>
</image>
<image>
<url>rgb-webui.png</url>
<hu>A webes kezelőfelület</hu>
<en>WebUI</en>
</image>
<image>
<url>rgb-cupboard.jpg</url>
<hu>Bevilágított szekrénysor</hu>
<en>Illuminated cupboard</en>
</image>
<image>
<url>rgb-leds1.jpg</url>
<hu>LED-ek közelről</hu>
<en>Close-up on LED strip</en>
</image>
<image>
<url>rgb-leds2.jpg</url>
<hu>Egy másik színben</hu>
<en>Another color</en>
</image>
<tag>android</tag>
<tag>inprogress</tag>
</li>
<li id="todoapp">
<title>
<hu>Emlékeztető alkalmazás Androidra</hu>
<en>Reminder app for Android</en>
</title>
<content>
<hu>
Már régóta zavart, hogy az Android operációs rendszerben nincs beépített emlékeztető alkalmazás, ami a megadott időpontban értesít, altatható rövid vagy hosszú időre stb. A naptár értesítései hasonlók, de oda találkozókat írok be, nem halogatható teendőket. Átnéztem néhány lehetőséget a piacon, de egyikkel sem elégedtem meg igazán.
<br/>
A 6. félévben felvettem az
<i>Android alapú szoftverfejlesztés</i> tantárgyat, és az ajánlott házi feladat keretében megvalósítottam az alkalmazást. Érdekessége a felugró értesítés a képernyő alján, ami nem túl nagy ahhoz, hogy tényelegesen zavarjon, de ahhoz igen, hogy kiváltsa a felhasználó válaszát. A fejlesztést előre elkészített terv alapján végeztem.
</hu>
<en>
It has bothered me for a long time, that the Android OS does not have a built-in reminder application, that notifies at the preset time and can be snoozed for short and longer times. The calendar's notifications are like this, except I put meetings there, not todos that I can postpone. I looked at a few options at the market, but none of them really satisfied my needs.
<br/>
In the 6th semester, I took the
<i>Android based software development</i> course, and created the application as my recommended homework. The interesting part in it is the popup notification at the bottom of the screen, which is not too big to really bother, but big enough to make the user interact. The development was carried out based on the preliminary mockup.
</en>
</content>
<image>
<url>todoapp-mockup.png</url>
<hu>A mockup egyik oldala</hu>
<en>A page from the mockup</en>
</image>
<image>
<url>todoapp-1.png</url>
<hu>Főképernyő az összes teendővel</hu>
<en>Main screen with all todos</en>
</image>
<image>
<url>todoapp-2.png</url>
<hu>Teendő részletei, megjegyzések</hu>
<en>Todo details, notes</en>
</image>
<image>
<url>todoapp-3.png</url>
<hu>Teendő szerkesztése</hu>
<en>Todo edit screen</en>
</image>
<image>
<url>todoapp-4.png</url>
<hu>Értesítés az összes többi alkalmazás felett</hu>
<en>Notification above all other applications</en>
</image>
<image>
<url>todoapp-5.png</url>
<hu>Beállítható altatási idők</hu>
<en>Configurable snooze times</en>
</image>
<image>
<url>todoapp-6.png</url>
<hu>További lehetőségek</hu>
<en>Misc. options</en>
</image>
<tag>android</tag>
<tag>bme</tag>
</li>
<li id="ogre3d">
<title>
<hu>3D-s RC szimulátor</hu>
<en>3D RC simulator</en>
</title>
<content>
<hu>
A
<a href="http://en.wikipedia.org/wiki/Re-volt">Re-Volt</a> című játékot az Acclaim adta ki 1999-ben. A koncepció viszonylag egyedi,
távirányítású autókkal kell versenyezni benne. 2012 nyarán egy ehhez hasonló játékon kezdtem el dolgozni.
<br/>
A kód C++, a grafikai, fizikai, GUI könyvtárak nyílt forrású projektekből származnak (
<a href="http://www.ogre3d.org/">OGRE</a>,
<a href="http://bulletphysics.org/">Bullet</a>,
<a href="http://mygui.info/">MyGUI</a>). Ezek integrálása mély
ismereteket igényelt a fordítók és linkerek terén, különösen a keresztplatfromos megvalósítás miatt.
<br/>
A játékhoz szükséges saját bináris formátumokat, konvertáló programokat hoztam létre. Közel egy évig fejlesztettem egyetem mellett,
végül 2013 tavaszán felfüggesztettem. Be kellett látnom, hogy egy ilyen projekthet csak nagy csapattal lehet befejezni.
</hu>
<en>
<a href="http://en.wikipedia.org/wiki/Re-volt">Re-Volt</a> was released by Acclaim back in 1999. The concept is sort of unique,
it is about racing RC cars. I started working on a game like that in the summer of 2012.
<br/>
The code is C++, the graphics, physics and GUI libraries are from open source projects (
<a href="http://www.ogre3d.org/">OGRE</a>,
<a href="http://bulletphysics.org/">Bullet</a>,
<a href="http://mygui.info/">MyGUI</a>). Integrating these required
deep knowledge of compilers and linkers, especially because of the cross-platform solution.
<br/>
I created the game's own binary formats and converters. I worked on it for about a year as a university student,
and suspended it in the spring of 2013. I had to realize that such a project can only be finished with a large team.
</en>
</content>
<image>
<url>rv1.png</url>
<hu>Fizikai játszótér</hu>
<en>Physics playground</en>
</image>
<image>
<url>rv2.png</url>
<hu>Az ellenfelek intelligenciája nem túl bonyolult</hu>
<en>The AI is not too sophisticated</en>
</image>
<tag>ogre</tag>
</li>
<li id="elf">
<title>
<hu>ELF programozás Sony Ericsson-ra</hu>
<en>ELF programming for Sony Ericsson</en>
</title>
<content>
<hu>
A módosított Sony Ericsson telefonok képesek
<a href="http://en.wikipedia.org/wiki/Executable_and_Linkable_Format">ELF programok futtatására</a>, ezek C nyelven íródnak és az eszköz firmware-jébe épülnek be. Több ilyen alkalmazást
is írtam és a „modder közösség” igen aktív tagja voltam 2008-2009 körül. A fontosabbak:
<br/>
<ul>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=818">DeskBar</a>: Mac OS X-hez hasonló dokkot
hoz létre a telefon készenléti képernyőjén, vízszintesen vagy függőlegesen. Létezett menü elem is, ami a
dokkra merőleges dokként jelent meg. Nagyon népszerű volt a közösségben, több eltérő megjelenést (más képek)
is készítettek hozzá később.
</li>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=627">OPlogo</a>: Lecseréli az operátor szövegét
(pl. T-mobile) és a többi elérhető sort a kijelzőn tetszőleges szövegre
</li>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=3625">DeskBridge</a>: Elforgatható „asztal”
a Windows 7-en találhatókat mintázó widgetekkel (minialkalmazások), minden mozgatható és méretezhető rajta.
A widgetek is C-ben készültek, az interfész C struktúra volt a megfelelő függvénycímek átadásához (évekkel
később jelent csak meg a dinamikus linkelés a platformon, érdekes, hogy
<code>so</code> helyett
<code>dll</code>
-nek nevezték ezeket, pedig a rendszer inkább Unix jellegű). Az API-t közzétettem, de nem tudok más
fejlesztők részvételéről. Ettől függetlenül sok rajongója volt. Sajnos csak A1 platformon indult el,
és akkoriban nem volt időm újraírni, hogy több telefont támogasson.
</li>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=2783">SFX Installer</a>: Önkicsomagoló
archívumok létrehozása a telefon számára. Ezek a kicsomagoló kód utáni szegmensbe írt
<a href="http://en.wikipedia.org/wiki/Tar_(computing)">TAR</a> jellegű adatfolyammal voltak megvalósítva.
Készülésekor már létezett telepítőcsomag formátum a platformon, az SFX mégis kényelmesebb megoldás volt.
</li>
</ul>
<div class="noprint">Nem minden kép van itt miniatűrként, kattintás után lehet végignavigálni rajtuk.</div>
</hu>
<en>
Modified Sony Ericsson phones can run
<a href="http://en.wikipedia.org/wiki/Executable_and_Linkable_Format">ELF programs</a>, these are written in C and integrate into the firmware of the device. I wrote a couple of these applications
and was an active member of the modder community around 2008-2009. The important ones:
<br/>
<ul>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=818">DeskBar</a>: creates a dock much like Mac OS X
at the bottom of the phone's standby screen, horizontally or vertically. There was also a menu item, which opened
another dock across the main dock. It was very popular among the community, users created several skins for it (different
images).
</li>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=627">OPlogo</a>: Replaces the operator's text (like
T-mobile) and other available lines on the screen with custom texts
</li>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=3625">DeskBridge</a>: A rotatable „desktop” with
widgets like those of Windows 7, everything is movable and scalable on it.
The widgets were also written in C, the interface to send the appropriate function pointers was a C structure
(dynamic linking was released years later for the platform, strangely they call them
<code>dll</code> instead
of
<code>so</code>, even though the system is more like Unix). I published the API but haven't heard of any
other developers contributing. Even so, it had many fans. Unfortunately it only ran oth the A1 platform and at
the time I did not have the time to rewrite it to support more phones.
</li>
<li>
<a href="http://se-lifestyle.com/viewtopic.php?f=21&t=2783">SFX Installer</a>: Creates self extracting
achives for the phone. This was achieved by writing a
<a href="http://en.wikipedia.org/wiki/Tar_(computing)">TAR</a>-like
stream after the extraction code.
At the time of making, there already was an installer package format on the platfom, but the SFX was still more comfortable to use.
</li>
</ul>
<div class="noprint">Not all images are here as thumbnails, others can be open after clicking.</div>
</en>
</content>
<image>
<url>elf_dbar1.png</url>
<hu>DeskBar működés közben</hu>
<en>DeskBar operating</en>
</image>
<image hidden="1">
<url>elf_dbar2.png</url>