-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1039 lines (902 loc) · 41.4 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">
<head>
<meta charset="utf-8" />
<title>Warsaw JBoss User Group</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<!--Favicon -->
<link rel="icon" type="image/png" href="images/favicon.png" />
<!-- CSS Files -->
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/animate.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/dark-style.css" />
<link rel="stylesheet" href="css/flexslider.css" />
<link rel="stylesheet" href="css/font-awesome.css" />
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/prettyPhoto.css" />
<link rel="stylesheet" href="css/responsive.css" />
<link rel="stylesheet" href="css/gradients.css" />
<link rel="stylesheet" href="css/player/YTPlayer.css" />
<!-- Theme Panel -->
<!-- Skin Colors -->
<link id="changeable-colors" rel="stylesheet" href="css/colors/blue.css" />
<!-- End CSS Files -->
</head>
<body class="transparent">
<!-- Page Loader -->
<section id="pageloader">
<div class="loader-item fa fa-spin colored-border"></div>
</section>
<!-- Navigation -->
<section id="navigation" class="not-visible-nav dark-nav">
<!-- Navigation Inner -->
<div class="nav-inner">
<!-- Site Logo -->
<div class="site-logo">
<a href="#home" class="scroll logo">
<!-- Your Logo -->
<img src="images/white-logo.png" alt="logo" />
</a>
</div><!-- End Site Logo -->
<a class="mini-nav-button dark"><i class="fa fa-bars"></i></a>
<!-- Navigation Menu -->
<div class="nav-menu">
<ul class="nav uppercase condensed bold">
<li><a href="#home" class="scroll">home</a></li>
<li><a href="#about" class="scroll">o grupie</a></li>
<li><a href="#history" class="scroll">spotkania</a></li>
<li><a href="#team" class="scroll">liderzy</a></li>
<li><a href="#prices" class="scroll">partnerzy</a></li>
<li><a href="#site-socials" class="scroll">kontakt</a></li>
</ul>
</div><!-- End Navigation Menu -->
</div><!-- End Navigation Inner -->
</section><!-- End Navigation Section -->
<!-- Home Section -->
<section id="home">
<div id="slides" class="home parallax">
<!-- Slides -->
<div class="slides-container relative">
<!-- Slider Images -->
<div class="image1 pattern-black"></div>
<div class="image2 pattern-black"></div>
<div class="image3 pattern-black"></div>
<!-- End Slider Images -->
</div>
<!-- Slider Controls -->
<nav class="slides-navigation">
<a href="#" class="next"></a>
<a href="#" class="prev"></a>
</nav>
<!-- Home Details -->
<div class="home-details-tb absolute">
<!-- Home Details Inner -->
<div class="relative home-details-inner">
<!-- Your Logo -->
<div class="logo">
<img src="images/logo-icon.png" alt="Logo" />
</div>
<div class="hometexts-1">
<!-- Slide Texts -->
<ul class="slide-text-1 condensed">
<li class="hometext-1 semibold white">Warsaw <span class="colored">JBoss </span> User Group</li>
<li class="clear"></li>
</ul>
</div>
</div><!-- End Home Texts -->
<a href="#about" class="home-arrow scroll uppercase bold" style="margin-top: 50px">
<img src="images/bottom-arrow.png" alt="bottom" />
</a>
</div><!-- End Home Texts -->
</div>
</section><!-- End Home Section -->
<!-- About -->
<section id="about" class="container dark-bg waypoint">
<div class="inner">
<!-- Header -->
<h1 class="header semibold white">Informacje o <span class="colored">grupie</span></h1>
<!-- Description -->
<h4 class="h-desc d-white">
Jesteśmy grupą entuzjastów, spotykających się, aby poznawać
technologie oraz produkty marki <span class="colored">JBoss / Red Hat</span> i o nich dyskutować. Inicjatywa
wyłoniła się jako uzupełnienie <span class="colored"><a href="http://warszawa.jug.pl/">Warszawskiej Grupy Użytkowników Javy</a></span> .
</h4>
<h4 class="h-desc d-white">
Tworzymy społeczność ludzi z pasją, którzy pragną się wspierać w dalszym rozwoju.
</h4>
<!-- Boxes -->
<div class="boxes d-white">
<!-- Box 1 -->
<div class="col-xs-3 about-box animated" data-animation="fadeIn" data-animation-delay="300">
<a class="about-icon">
<i class="fa fa-comment-o"></i>
</a>
<p class="uppercase normal about-head">Prelekcje</p>
<p class="light about-text">
Chcemy dzielić się wiedzą o najnowszych technologiach i produktach
spod znaku JBoss, Javy oraz OpenSource. Zapraszamy do
współpracy prelegentów, wykazujących się praktyczną, a zarazem dogłębną
znajomością tematu.
</p>
</div>
<!-- Box 2 -->
<div class="col-xs-3 about-box animated" data-animation="fadeIn" data-animation-delay="100">
<a class="about-icon">
<i class="fa fa-wrench"></i>
</a>
<p class="uppercase normal about-head">Warsztaty</p>
<p class="light about-text">
Wierzymy że nie ma lepszego sposobu poznawania technologii niż jej
wypróbowanie w praktyce!
</p>
</div>
<!-- Box 3 -->
<div class="col-xs-3 about-box animated" data-animation="fadeIn" data-animation-delay="500">
<a class="about-icon">
<i class="fa fa-lightbulb-o"></i>
</a>
<p class="uppercase normal about-head">Technologie</p>
<p class="light about-text">
Skupiamy się na najnowszych trendach i kierunkach rozwoju technologii.
</p>
</div>
<!-- Box 4 -->
<div class="col-xs-3 about-box animated" data-animation="fadeIn" data-animation-delay="700">
<a class="about-icon">
<i class="fa fa-users"></i>
</a>
<p class="uppercase normal about-head">Dołącz do nas :)</p>
<p class="light about-text">
Jeżeli jesteś pasjonatem technologii JBoss i chciałbyś się podzielić
swoją wiedzą czekamy na Twoje zgłoszenie! Jeżeli sam nie czujesz się
na siłach zaprezentować damego tematu, daj nam znać, o czym chciałbyś
usłyszeć na naszych spotkaniach.
</p>
</div>
</div><!-- End Boxes -->
</div><!-- End About Inner -->
</section><!-- End About Section -->
<!-- Closed Source -->
<section class="testimonials testimonial1 parallax2">
<div class="inner">
<ul class="t-slides">
<li class="monial">
<!-- Text -->
<h1 class="bold condensed white">Closed Source is <span class=" uppercase colored"> Lame </span></h1>
</li>
<li class="monial">
<!-- Text -->
<h1 class="bold condensed white">Free your <span class=" uppercase colored"> Code </span></h1>
</li>
</ul>
</div><!-- End Inner Div -->
</section><!-- End Testimonials Section -->
<!-- History -->
<section id="history" class="container parallax3 dark-bg">
<div class="inner history">
<!-- Header -->
<h1 class="header semibold white">Spotkania</h1>
<ul class="timeline">
<!-- Time -->
<li class="time today">2016</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInLeft" data-animation-delay="200">
<img src="images/projects/infinispan.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">10.03.2016 18:15</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MIMUW, Sala 5440</p>
<!-- Header -->
<p class="history-head semibold">Infinispan – Data Grid do zadań specjalnych</p>
<!-- Description -->
<p class="history-desc no-margin normal">
<p class="history-desc normal">
Projektowanie dzisiejszych aplikacji to nie lada wyzwanie a jedną z pierwszych rzeczy, o jakie musimy zadbać, to skalowalność.
Ale co ze skalowaniem danych i w jaki sposób zapewnić, aby dostęp do nich był szybki?
Podczas wykładu zabiorę Was w podróż po świecie rozproszonych Cache'y i Data Grid'ów.
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/SebastianLaskawiec-large.jpg" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Sebastian Laskawiec</h3></span>
<p>
Programista pracujący w Red Hat, na co dzień zajmujący się JBoss Data Grid'em.
Amator projektów OpenSource, czystego kodu i dobrych unit testów.
Prywatnie, zapalony narciarz i domowy piwowar
</p>
</span>
<img src="images/speakers/SebastianLaskawiec-small.jpg" alt="" />
</a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Time -->
<li class="time today">2015</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInLeft" data-animation-delay="200">
<img src="images/projects/WildFly.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">05.11.2015 18:15</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MIMUW, Sala 3180</p>
<!-- Header -->
<p class="history-head semibold">WildFly</p>
<!-- Description -->
<p class="history-desc no-margin normal">
<p class="history-desc normal">
WildFly to wersja community serwera aplikacji Java EE rozwijanego przez Red Hat,
w której za cel stawiamy sobie szybki rozwój i wprowadzanie innowacji oczekiwanych przez użytkowników.
</p>
<p class="history-desc normal">
W mojej prezentacji przedstawię nowe funkcjonalności, które wprowadziliśmy w wydaniach 9 i 10.
Wśród omawianych tematów znajdą się: integracja kodu JavaScript po stronie serwera z komponentami
Java EE za pomocą projektu undertow.js, protokół http/2 i jego konfiguracja w serwerze,
wildfly-swarm, nowe funkcjonalności w hibernate 5 i subsystemie batch, funkcja suspend, operacje migracji systemów
legacy, singleton deployments, użycie instancji serwera jako load balancer oparty o bibliotekę mod_cluster, korzystanie z CLI
w trybie offline.
</p>
<p class="history-desc normal">
Dodatkowo zarysuję ostatnie zmiany w wewnętrznej
implementacji serwera: wyodrębnienie projektu wildfly-core i stworzenie narzędzi pozwalających na
budowę dystrubucji serwera na jego bazie, funkcjonalność capabilities and requirements,
zastąpienie biblioteki HornetQ biblioteką ArtemisMQ oraz biblioteki JacORB biblioteką OpenJDK.
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/TomekAdamski-large.jpg" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Tomasz Adamski</h3></span>
<p>
Tomasz Adamski jest programistą pracującym w Red Hat, w zespole JBoss EAP/WildFly.
Przed dołączeniem do Red Hata pracował jako programista Java tworząc systemy dla firm z sektora finansowego.
</p>
</span>
<img src="images/speakers/TomekAdamski-small.jpg" alt="" />
</a>
<a href="https://www.youtube.com/watch?v=xdIOznaXG44" data-rel="prettyPhoto" class="timeline-image"><img src="images/history/video.png" alt="" /></a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInLeft" data-animation-delay="200">
<img src="images/projects/openshift.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">23.04.2015 18:15</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MiNI - Wydział Matematyki i Nauk Informacyjnych Politechniki Warszawskiej, sala 102</p>
<!-- Header -->
<p class="history-head semibold">OpenShift</p>
<!-- Description -->
<p class="history-desc no-margin normal">
<p class="history-desc normal">
During the presentation I'll start with a short architectural
introduction of OpenShift v2 (also known as OpenShift Online).
</p>
<p class="history-desc normal">
Shortly after that I'll jump into sample java application we'll
deploy on JBoss and WildFly into the OpenShift Online.
</p>
<p class="history-desc normal">
In the second part of the presentation I'll give you some details
around our current state of work on OpenShift v3 which is based
on Docker and Kubernetes.
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/MaciejS-large.png" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Maciej Szulik</h3></span>
<p>
Maciej is a passionate programmer with over 10 years of experience
in different programming languages. Currently he's working on OpenShift
in Red Hat. https://twitter.com/soltysh
</p>
</span>
<img src="images/speakers/MaciejS-small.png" alt="" />
</a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Time -->
<li class="time today">2014</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInLeft" data-animation-delay="200">
<img src="images/projects/jbpm.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">18.11.2014 18:15</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MiNI - Wydział Matematyki i Nauk Informacyjnych Politechniki Warszawskiej, sala 103</p>
<!-- Header -->
<p class="history-head semibold">jBPM</p>
<!-- Description -->
<p class="history-desc no-margin normal">
<p class="history-desc normal">
During the presentation jBPM will be introduced from the Process Engine & framework perspective.
</p>
<p class="history-desc normal">
The main goal of the session is to share with the community of developers how they can improve their systems
implementations and integrations by using a high level, business oriented methodology that will help to improve
the performance of the company. jBPM will help to keep the infrastructural code organized and decoupled from the
business knowledge.
</p>
<p class="history-desc normal">
During the presentation the new APIs and new modules in jBPM version 6 will be introduced for
the audience to have a clear spectrum of the tools provided.
</p>
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/MaciekS-large.jpg" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Maciej Świderski</h3></span>
<p>
Maciej is software engineer working as core developer of jBPM. Since 2007 he is in BPM domain both from development point of
view and helping to adopt BPM in different sectors. He's passionate about open source and tries to promote it wherever possible.
In his spare time he enjoys calm and relax life on country side and travels.
</p>
</span>
<img src="images/speakers/MaciekS-small.jpg" alt="" />
</a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInLeft" data-animation-delay="200">
<img src="images/projects/fabric.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">03.10.2014 18:15</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MiNI - Wydział Matematyki i Nauk Informacyjnych Politechniki Warszawskiej, sala 103</p>
<!-- Header -->
<p class="history-head uppercase semibold">Fabric8</p>
<!-- Description -->
<p class="history-desc no-margin normal">
<p class="history-desc normal">
Praca developera jest pracą trudną. Praca administratora systemu IT
jest pracą trudną. Praca devOpsa jest pracą po stokroć trudną. Jest
pracą po stokroć trudną, gdyż devOps nie ma na kogo zrzucić
odpowiedzialności za niedziałający system.
Istnieje wiele narzędzi usprawniających pracę developerów. Istnieje
wiele narzędzi usprawniających pracę administratorów. Jest niewiele
narzędzi usprawniających pracę devOpsa. Przez to zawód devOpsa
nierozerwalnie kojarzy się nam ze łzami i smutkiem.
</p>
<p class="history-desc normal">
Każdy integrator i administrator systemów czasem płacze. Podczas mojej
prezentacji chciałbym opowiedzieć o tym co robimy w firmie Red Hat,
aby nasi klienci płakali coraz rzadziej i mniej rzewnie. Chciałbym
opowiedzieć o projekcie typu open source o nazwie Fabric8, którego
celem jest ukojenie bólu devOpsów pracujących z systemami napisanymi
na platformę JVM. Jeżeli tworzysz systemy wdrażane na platformę Javy,
ta prezentacja jest dla Ciebie. Jeżeli jesteś odpowiedzialny za
działanie systemów opartych na platformie JVM, ta prezentacja również
jest dla Ciebie.
</p>
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/HenrykK-large.jpeg" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Henryk Konsek</h3></span>
<p>
Engineer at Red Hat (JBoss). Open source hacker (JBoss Fabric8, Apache Camel).
Evangelist of the open source software that rocks.
</p>
</span>
<img src="images/speakers/HenrykK-small.jpeg" alt="" />
</a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInLeft" data-animation-delay="200">
<img src="images/projects/docker.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">28.05.2014 18:00</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MiNI - Wydział Matematyki i Nauk Informacyjnych Politechniki Warszawskiej, sala 103</p>
<!-- Header -->
<p class="history-head uppercase semibold">Docker</p>
<!-- Description -->
<p class="history-desc no-margin normal">
<p class="history-desc normal">
Wirtualizacja była dużym przełomem. Okazało się, że można wykorzystać moc komputerów jeszcze bardziej.
Okazało się również, że dzięki niej można też łatwiej (i szybciej) pracować.
Kto potrafi sobie teraz wyobrazić pracę bez "wirtualek"?
Mimo wszystko Świat idzie do przodu. Ledwo przyzwyczailiśmy się do wirtualizacji -
a tu następna technologia puka do naszych drzwi: kontenery.
</p>
<p class="history-desc normal">
Jeżeli nie słyszałeś o kontenerach - w porządku, opowiem co to jest i
czym to się różni od wirtualizacji. Pokażę też, jak szybkie jest to diabelstwo.
</p>
<p class="history-desc normal">
Dobra, może nie słyszałeś o kontenerach, ale o Dockerze pewnie już tak. Zgadza się? :)
Docker to ekosystem narzędzi pozwalających wykorzystać technologię kontenerów.
Są to na tyle proste i szybkie narzędzia, że popularność Dockera rośnie lawinowo.
Postaram się pokazać dlaczego.
</p>
<p class="history-desc normal">
Czego możesz się spodziewać? Wielu różnego rodzaju demówek, trochę technicznych informacji a na koniec coś,
co "od zawsze" próbuję usprawnić, czyli klastrowanie serwera aplikacji WildFly przy wykorzystaniu Docker'a.
</p>
<p class="history-desc normal">
Nudno nie będzie. Mam nadzieję.
</p>
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/MarekG-large.jpg" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Marek Goldmann</h3></span>
<p>
Marek joined Red Hat in January 2009 and started hacking on Cloud-related JBoss projects.
Currently Marek leads the WildFly integration effort with the Fedora operating system,
and makes sure that Red Hat Middleware products run well on Docker.
</p>
<p>
Marek graduated from Opole Technical University, Poland. Since then he's been working as a Java EE developer
using JBoss technologies.
Marek has spoken at many conferences, like FUDCon, JUDCon, FOSDEM, Confitura, Javarsovia.
</p>
</span>
<img src="images/speakers/MarekG-small.jpg" alt="" />
</a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInLeft" data-animation-delay="200">
<img src="images/projects/WildFly.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">24.04.2014</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MIMUW, sala 3180</p>
<!-- Header -->
<p class="history-head uppercase semibold">WildFly - warsztaty</p>
<!-- Description -->
<p class="history-desc no-margin normal">
Celem warsztatów jest przećwiczenie w praktyce zagadnień poruszonych
podczas prelekcji <span class="colored">WILDFLY ON THE FLY</span>
</p>
<p class="history-desc no-margin normal">
Na warsztatach Uczestnicy nauczą się:
</p>
<ul class="history_note_ul">
<li>- konfigurować serwer aplikacyjny</li>
<li>- pisać własne moduły</li>
<li>- uruchamiać aplikacje JEE</li>
<li>- łączyć się z bazą danych</li>
<li>- konfigurować JMS</li>
<li>- zabezpieczać aplikację</li>
<li>- monitorować serwer za pomocą wbudowanych narzędzi</li>
</ul>
<p class="history-desc no-margin normal">
Podczas warsztatów wykonywać będziemy wspólnie krótkie zadania, których
celem jest przybliżenie i przećwiczenie opisywanych kwestii.
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/MarekK-large.jpg" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Marek Kapowicki</h3></span>
Doświadczony programista przykładający szczególną uwagę do jakości dostarczanego softu.
Fan sprytnych bibliotek i testowania automatycznego w każdej postaci.
Na codzień pracuje w PayU, a jego pasją jest zdobywanie certyfikatów :):P
</span>
<img src="images/speakers/MarekK-small.jpg" alt="" />
</a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Note -->
<li class="note animated" data-animation="fadeInRight" data-animation-delay="200">
<img src="images/projects/WildFly.png" style="float: right; " />
<!-- Date -->
<p class="history-date no-margin uppercase normal">08.04.2014</p>
<!-- Place -->
<p class="history-date no-margin uppercase normal">MIMUW, sala 3180</p>
<!-- Header -->
<p class="history-head uppercase semibold">WildFly on the fly</p>
<!-- Description -->
<p class="history-desc no-margin normal">
TomEE? Glassfish? Websphere? WebLogic? Poszukujecie darmowego, niewyobrażalnie szybkiego
a przy tym mało zasobożernego serwera aplikacyjnego z otwartym kodem? Dobrze trafiliście!
</p>
<p class="history-desc no-margin normal">
Poznajcie nowy serwer aplikacyjny WildFly, który kiedyś być może znany był Wam jako JBoss AS.
Podczas prezentacji dowiecie się, co go wyróżnia na tle innych serwerów aplikacyjnych,
jakie nowości w sobie kryje poza samą nazwą oraz jak nim zarządzać.
</p>
<p class="history-desc no-margin normal">
Jednocześnie wykład będzie otwierał działalność <span class="colored">Warsaw JBoss User Group</span>
- nowej inicjatywy cyklicznych spotkań, których główny cel stanowi zgłębianie projektów ze stajni JBoss'a.
</p>
<!-- Images -->
<div class="timeline-images">
<a href="images/speakers/KrzysiekM-large.jpg" data-rel="prettyPhoto" class="timeline-image">
<span style="visibility:hidden; position: fixed;">
<span class="colored"><h3>Krzysztof Miksa</h3></span>
Zawodowo prezes, współzałożyciel i programista w IT Crowd.
Na co dzień mąż. Niereformowalny zwolennik pracy zdalnej, Gentoo oraz cichy wielbiciel języków funkcyjnych.
</span>
<img src="images/speakers/KrzysiekM-small.jpg" alt="" />
</a>
<a href="https://www.youtube.com/watch?v=2aOis0DaN4M" data-rel="prettyPhoto" class="timeline-image"><img src="images/history/video.png" alt="" /></a>
</div>
<!-- Arrow -->
<span class="note-arrow"></span>
</li>
<!-- Start Icon -->
<li class="start"><a href="#history" class="scroll dark-gray-degrade-diagonal"><span class="up-arrow"></span></a></li>
<li class="clear"></li>
</ul>
</div><!-- End Inner Div -->
</section><!-- End History Section -->
<!-- Code thug -->
<section class="testimonials testimonial2 parallax1">
<div class="inner">
<ul class="t-slides">
<li class="monial">
<!-- Text -->
<h1 class="bold condensed white">Code <span class=" uppercase colored"> Thug </span></h1>
</li>
<li class="monial">
<!-- Text -->
<h1 class="bold condensed white">Keep your code <span class=" uppercase colored"> Real </span></h1>
</li>
</ul>
</div><!-- End Inner Div -->
</section><!-- End Testimonials Section -->
<!-- Team -->
<section id="team" class="container dark-bg">
<!-- Team Inner -->
<div class="inner team">
<!-- Header -->
<h1 class="header semibold white">Liderzy</h1>
<!-- Members -->
<div class="team-members inner-details">
<!-- Member -->
<div class="col-xs-4 member animated" data-animation="fadeInUp" data-animation-delay="0">
<div class="member-inner">
<!-- Team Member Image -->
<a class="team-image">
<!-- Img -->
<img src="images/team/1.jpg" alt="" />
</a>
<div class="member-details">
<div class="member-details-inner">
<!-- Name -->
<h2 class="member-name uppercase normal">Bolesław Dawidowicz</h2>
<!-- Position -->
<h4 class="member-position uppercase normal">Platform Architect</h4>
<!-- Description -->
<p class="member-description">
Red Hat
</p>
<!-- Socials -->
<div class="socials">
<!-- Google plus -->
<a href="https://plus.google.com/u/0/+BoleslawDawidowicz/posts"><i class="fa fa-google-plus"></i></a>
<!-- Twitter -->
<a href="https://twitter.com/bdawidowicz"><i class="fa fa-twitter"></i></a>
<!-- GitHub -->
<a href="https://github.com/bdaw"><i class="fa fa-github"></i></a>
</div><!-- End Socials -->
</div> <!-- End Detail Inner -->
</div><!-- End Details -->
</div> <!-- End Member Inner -->
</div><!-- End Member -->
<!-- Member -->
<div class="col-xs-4 member animated" data-animation="fadeInUp" data-animation-delay="100">
<div class="member-inner">
<!-- Team Member Image -->
<a class="team-image">
<!-- Img -->
<img src="images/team/2.jpg" alt="" />
</a>
<div class="member-details">
<div class="member-details-inner">
<!-- Name -->
<h2 class="member-name uppercase normal">Andrzej Goławski</h2>
<!-- Position -->
<h4 class="member-position uppercase normal">Programista systemów ATM</h4>
<!-- Description -->
<p class="member-description">Polska Agencja Żeglugi Powietrznej</p>
<!-- Socials -->
<div class="socials">
<!-- Google plus -->
<a href="https://plus.google.com/108877131134833991998/posts"><i class="fa fa-google-plus"></i></a>
<!-- GitHub -->
<a href="https://github.com/agolPL"><i class="fa fa-github"></i></a>
</div><!-- End Socials -->
</div> <!-- End Detail Inner -->
</div><!-- End Details -->
</div> <!-- End Member Inner -->
</div><!-- End Member -->
<!-- Member -->
<div class="col-xs-4 member animated" data-animation="fadeInUp" data-animation-delay="200">
<div class="member-inner">
<!-- Team Member Image -->
<a class="team-image">
<!-- Img -->
<img src="images/team/3.jpg" alt="" />
</a>
<div class="member-details">
<div class="member-details-inner">
<!-- Name -->
<h2 class="member-name uppercase normal">Matt Harasymczuk</h2>
<!-- Position -->
<h4 class="member-position uppercase normal">Agile Coach</h4>
<!-- Description -->
<p class="member-description">Centralny Ośrodek Informatyki</p>
<!-- Socials -->
<div class="socials">
<!-- Google Plus -->
<a href="https://plus.google.com/+MateuszHarasymczukMatt/posts"><i class="fa fa-google-plus"></i></a>
<!-- Twitter -->
<a href="https://twitter.com/TheAgileMatt"><i class="fa fa-twitter"></i></a>
<!-- Page -->
<a href="http://www.harasymczuk.pl/"><i class="fa fa-globe"></i></a>
<!-- YouTube -->
<a href="http://goo.gl/Gyhgse"><i class="fa fa-youtube"></i></a>
<!-- GitHub -->
<a href="https://github.com/TheAgileMatt"><i class="fa fa-github"></i></a>
</div><!-- End Socials -->
</div> <!-- End Detail Inner -->
</div><!-- End Details -->
</div> <!-- End Member Inner -->
</div><!-- End Member -->
<!-- Member -->
<div class="col-xs-4 member animated" data-animation="fadeInUp" data-animation-delay="300">
<div class="member-inner">
<!-- Team Member Image -->
<a class="team-image">
<!-- Img -->
<img src="images/team/4.jpg" alt="" />
</a>
<div class="member-details">
<div class="member-details-inner">
<!-- Name -->
<h2 class="member-name uppercase normal">Marek Kapowicki</h2>
<!-- Position -->
<h4 class="member-position uppercase normal">Starszy progamista J2EE</h4>
<!-- Description -->
<p class="member-description">PayU S.A.</p>
<!-- Socials -->
<div class="socials">
<!-- GitHub -->
<a href="https://github.com/marekkapowicki"><i class="fa fa-github"></i></a>
<!-- LinkedIn -->
<a href="http://pl.linkedin.com/pub/marek-kapowicki/79/98a/5b"><i class="fa fa-linkedin-square"></i></a>
<!-- StackOverflow -->
<a href=" http://stackoverflow.com/users/3177710/marek-kapowicki"><i class="fa fa-stack-overflow"></i></a>
</div><!-- End Socials -->
</div> <!-- End Detail Inner -->
</div><!-- End Details -->
</div> <!-- End Member Inner -->
</div><!-- End Member -->
<!-- Member -->
<div class="col-xs-4 member animated" data-animation="fadeInUp" data-animation-delay="400">
<div class="member-inner">
<!-- Team Member Image -->
<a class="team-image">
<!-- Img -->
<img src="images/team/5.jpg" alt="" />
</a>
<div class="member-details">
<div class="member-details-inner">
<!-- Name -->
<h2 class="member-name uppercase normal">Krzysztof Miksa</h2>
<!-- Position -->
<h4 class="member-position uppercase normal">Prezes, współzałożyciel i programista</h4>
<!-- Description -->
<p class="member-description">IT Crowd Sp. z o.o.</p>
<!-- Socials -->
<div class="socials">
<!-- Google Plus -->
<a href="https://plus.google.com/+KrzysztofMiksa"><i class="fa fa-google-plus"></i></a>
<!-- Twitter -->
<a href="https://twitter.com/KrzysztofMiksa"><i class="fa fa-twitter"></i></a>
<!-- GitHub -->
<a href="https://github.com/dejewi"><i class="fa fa-github"></i></a>
</div><!-- End Socials -->
</div> <!-- End Detail Inner -->
</div><!-- End Details -->
</div> <!-- End Member Inner -->
</div><!-- End Member -->
<!-- Clear -->
<div class="clear"></div>
</div><!-- End Members -->
</div><!-- End Team Inner -->
</section><!-- End Team Section -->
<!-- Video -->
<section id="video" class="pattern-black relative transparent">
<!-- Video Button -->
<a href="#contact" class="video-button t-center scroll">
<!-- Logo Span -->
<span class="logo-icon-m">
<!-- Your Logo -->
<img src="images/logo-icon.png" alt="" />
</span>
<!-- Video Text -->
<p class="video-text uppercase condensed bold white">
Spotkajmy się w stolicy
</p>
<div id="P2" class="player video-container" data-property="{videoURL:'KfZklwwUssY',containment:'#video',autoPlay:true, showControls:false, mute:true, startAt:0, opacity:1}"></div>
</a>
</section><!-- End Video Section -->
<!-- Support -->
<section id="prices" class="container dark-bg">
<div class="inner prices">
<!-- Header -->
<h1 class="header semibold white">Partnerzy</h1>
<!-- Description -->
<h4 class="h-desc d-white">
Bez <span class="colored">nich</span> nasza grupa nie mogłaby działać:
</h4>
<!-- Tables -->
<ul class="tables">
<!-- Table -->
<li class="col-xs-3 pricing-table relative animated" data-animation="fadeIn" data-animation-delay="300">
<!-- Table Inner -->
<div class="table-inner">
<!-- Table Top -->
<div class="price-table-top">
<!-- Image Link -->
<a class="price-table-img pattern-grid">
<!-- Your Image -->
<img src="images/partners/WJUG.gif" alt="" />
</a>
<ul class="price-plans">
<li class="price-plan uppercase bold italic">
<span class="colored"><a href="http://warszawa.jug.pl/">Warszawa Java User Group</a></span>
</li>
</ul><!-- End Price Plans -->
</div><!-- End Table Top -->
</div><!-- End Table Inner -->
</li><!-- End Table -->
<!-- Table -->
<li class="col-xs-3 pricing-table relative animated" data-animation="fadeIn" data-animation-delay="300">
<!-- Table Inner -->
<div class="table-inner">
<!-- Table Top -->
<div class="price-table-top">
<!-- Image Link -->
<a class="price-table-img pattern-grid">
<!-- Your Image -->
<img src="images/partners/RedHat.gif" alt="" />
</a>
<ul class="price-plans">
<li class="price-plan uppercase bold italic">
<span class="colored"><a href="http://www.redhat.com/">Red Hat</span></a>
</li>
</ul><!-- End Price Plans -->
</div><!-- End Table Top -->
</div><!-- End Table Inner -->
</li><!-- End Table -->
<!-- Table -->
<li class="col-xs-3 pricing-table relative animated" data-animation="fadeIn" data-animation-delay="300">
<!-- Table Inner -->
<div class="table-inner">
<!-- Table Top -->
<div class="price-table-top">
<!-- Image Link -->
<a class="price-table-img pattern-grid">
<!-- Your Image -->
<img src="images/partners/WMIMUW.gif" alt="" />
</a>
<ul class="price-plans">
<li class="price-plan uppercase bold italic">
<span class="colored"><a href="http://www.mimuw.edu.pl/">Wydział Matematyki Informatyki i Mechaniki</a></span>
</li>
</ul><!-- End Price Plans -->
</div><!-- End Table Top -->
</div><!-- End Table Inner -->
</li><!-- End Table -->
<!-- Table -->
<li class="col-xs-3 pricing-table relative animated" data-animation="fadeIn" data-animation-delay="300">
<!-- Table Inner -->
<div class="table-inner">
<!-- Table Top -->
<div class="price-table-top">
<!-- Image Link -->
<a class="price-table-img pattern-grid">
<!-- Your Image -->
<img src="images/partners/KNI.gif" alt="" />
</a>
<ul class="price-plans">
<li class="price-plan uppercase bold italic">
<span class="colored"><a href="http://kni.mini.pw.edu.pl/">Koło Naukowe Informatyków</a></span>
</li>
</ul><!-- End Price Plans -->
</div><!-- End Table Top -->
</div><!-- End Table Inner -->
</li><!-- End Table -->
<!-- Clear -->
<li class="clear"></li>
</ul><!-- End Tables -->
<h4 class="h-desc d-white">
Jeżeli jesteś zainteresowany wsparciem naszej działalności
prosimy o kontakt. Jesteśmy otwarci na różne formy współpracy.
</h4>
</div><!-- End Inner -->
</section><!-- End Prices Section -->
<!-- Google Map Section -->
<section id="map" class="container close-map white-bg">
<!-- Open/Close Button -->
<a id="map-button" class="google-map-big-button uppercase bold condensed white scroll close-map-button" href="#map" >gdzie się spotykamy ? zobacz na mapie <i class="fa fa-caret-down"></i></a>
<!-- Google Map Script -->
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<!-- Google Map -->
<div id="google-map"></div>
</section><!-- End Google Map Section -->
<!-- Site Socials and Address -->
<section id="site-socials" class="no-padding dark-bg">
<div class="site-socials inner no-padding">
<!-- Socials -->
<div class="socials">
<!-- Facebook
<a href="#" target="_blank" class="social">
<i class="fa fa-facebook"></i>
</a>
-->
<!-- Twitter -->
<a href="https://twitter.com/WarsawJBUG" target="_blank" class="social">
<i class="fa fa-twitter"></i>
</a>
<!-- Google Plus
<a href="#" target="_blank" class="social">
<i class="fa fa-google-plus"></i>
</a>
-->
</div>
<!-- Adress, Mail -->
<div class="address d-white">
<!-- Phone Number, Mail -->
<p><a href="mailto:[email protected]" class="bold colored">[email protected]</a></p>
<!-- Top Button -->
<a href="#home" class="scroll top-button">
<i class="fa fa-angle-double-up"></i>
</a>
</div><!-- End Adress, Mail -->
</div><!-- End Inner -->
</section><!-- End Site Socials and Address -->