forked from IstanbulPHP/2015.phpkonf.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1452 lines (1314 loc) · 94.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 ng-app="PHPKonfApp">
<head>
<meta charset=utf-8>
<meta name=description content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>{{ 'TITLE' | translate }}</title>
<link rel="shortcut icon" href="img/favicon.ico" />
<meta name="description" content="PHPKonf: 25/26 Temmuz 2015'de Bahçeşehir Üniversitesi'nde düzenlenecek PHP Konferansı hakkında bilgilere ulaşabileceğiniz web sitesi.">
<meta name="keywords" content="PHP Konferansı, PHP, PHPKonf">
<meta name="author" content="IstanbulPHP"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="PHPKonf - Istanbul PHP Konferansı 2015" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://phpkonf.org/" />
<meta property="og:image" content="http://phpkonf.org/img/covers/phpkonf2014.jpg" />
<meta property="og:description" content="PHPKonf: 25/26 Temmuz 2015'de Bahçeşehir Üniversitesi'nde düzenlenecek PHP Konferansı hakkında bilgilere ulaşabileceğiniz web sitesi." />
<link rel=stylesheet href="libs/zozo-tabs/css/zozo.examples.min.css">
<link rel=stylesheet href="libs/zozo-tabs/css/zozo.tabs.min.css">
<link rel=stylesheet href="css/main.min.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body ng-controller="MainController">
<!-- <header id="sticky-header" class="header"> -->
<header id="sticky-header" class="header">
<div class="container">
<a class="logo logo--sticky header__logo" href="#">PHPKonf</a>
<a class="button button--primary header__language" ng-click="changeLanguage('tr')">TR</a>
<a class="button button--primary header__language" ng-click="changeLanguage('en')">EN</a>
<a class="button button--primary header__btn" href="http://istanbulphp.eventbrite.com/" target="_blank">{{ 'REGISTER' | translate }}</a>
<nav id="sticky-header-menu" class="menu header__menu">
<a class="menu__item" data-target-id="main" href="#">{{ 'HOME' | translate }}</a>
<a class="menu__item" data-target-id="about" href="#">{{ 'ABOUT' | translate }}</a>
<a class="menu__item" data-target-id="speakers" href="#">{{ 'SPEAKERS' | translate }}</a>
<a class="menu__item" data-target-id="program" href="#">{{ 'PROGRAM' | translate }}</a>
</nav>
</div>
</header>
<div id="main" class="jumbotron jumbotron--main">
<div class="container jumbotron__container">
<section class="jumbotron__inner">
<a class="logo logo--header" href="#">PHPKonf</a>
<h1 class="jumbotron__title jumbotron--main__title">{{ 'LOCATION_DATE' | translate }}</h1>
<span class="inline-block" translate="{{ 'MAIN_DESCRIPTION' }}"></span><br>
<span class="inline-block" style="margin-top: 10px;">{{ 'SHARE_TO_WORLD' | translate }} <a href="https://twitter.com/intent/tweet?button_hashtag=phpkonf&text=PHPKonf%3A%20Istanbul%20PHP%20conference%202015%20hosted%20by%20Istanbul%20PHP%20community!%20%23php" class="twitter-hashtag-button" data-related="EmirKarsiyakali,IstanbulPHP,yuxel" data-url="http://phpkonf.org/">Tweet #phpkonf</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></span><br>
<a class="button button--primary jumbotron--main__btn" href="https://istanbulphp.eventbrite.com/" target="_blank">{{ 'REGISTER' | translate }}</a>
<a class="button button--primary jumbotron--main__btn" href="http://optin.sndlp.com/R6U/078/3446915b" target="_blank">{{ 'MAIL_LIST' | translate }}</a>
</section>
</div>
</div>
<div id="about" class="pad-vertical-large bg-snow">
<div class="container">
<div class="row">
<section class="col-md-6 gap-bottom-tablet-v">
<h3 class="gap-bottom-medium clear-gap-top">{{ 'ABOUT_PHPKONF_TITLE' | translate }}</h3>
<p class="gap-bottom-medium" translate="{{ 'ABOUT_PHPKONF_DESC' }}"></p>
<a class="button button--primary" target="_blank" href="https://twitter.com/IstanbulPHP">{{ 'ISTANBULPHP_ON_TWITTER' | translate }}</a><br/><br/>
<a class="button button--primary" target="_blank" href="http://www.meetup.com/IstanbulPHP">{{ 'ISTANBULPHP_ON_MEETUP' | translate }}</a>
</section>
<div class="col-md-6">
<div class="row gap-bottom">
<div class="col-sm-4 gap-bottom-mobile-h">
<figure class="thumb thumb--primary">
<img data-src="img/2014/6.jpg" alt="" class="thumb__img">
</figure>
</div>
<div class="col-sm-8">
<figure class="thumb thumb--primary">
<img data-src="img/2014/2.jpg" alt="" class="thumb__img">
</figure>
</div>
</div>
<div class="row">
<div class="col-sm-6 gap-bottom-mobile-h">
<figure class="thumb thumb--primary">
<img data-src="img/2014/3.jpg" alt="" class="thumb__img">
</figure>
</div>
<div class="col-sm-6">
<figure class="thumb thumb--primary">
<img data-src="img/2014/1.jpg" alt="" class="thumb__img">
</figure>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="speakers" class="container text-center pad-vertical-large">
<h3 class="clear-gap-top">{{ 'SPEAKERS' | translate }}</h3>
<hr class="hyphen">
<div class="honeycomb-wrapper">
<div class="honeycomb-layout">
<div class="honeycomb-line">
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/cal-evans.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("cal")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Cal Evans</h4>
<span class="honeycomb__subtitle">Zend</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/mert-hurturk.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("mert")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Mert<br/>Hürtürk</h4>
<span class="honeycomb__subtitle">Sendloop</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/bernhard-schussek.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("bernhard")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Bernhard Schussek</h4>
<span class="honeycomb__subtitle">Symfony2</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/davey-shafik.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("davey")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Davey Shafik</h4>
<span class="honeycomb__subtitle">Engine Yard</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/frank-de-jonge.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("frank")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Frank de Jonge</h4>
<span class="honeycomb__subtitle">The PHP League</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/hugo-hamon.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("hugo")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Hugo<br/>Hamon</h4>
<span class="honeycomb__subtitle">SensioLabs</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/jordi-boggiano.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("jordi")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Jordi Boggiano</h4>
<span class="honeycomb__subtitle">Nelmio</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/marco-pivetta.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("marco")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Marco<br/>Pivetta</h4>
<span class="honeycomb__subtitle">Doctrine Project</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/michael-bodnarchuk.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("michael")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Michael<br/>Bodnarchuk</h4>
<span class="honeycomb__subtitle">CodeCeption Testing Framework</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/mikhail-vink.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("mikhail")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Mikhail Vink</h4>
<span class="honeycomb__subtitle">JetBrains</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/paul-dragoonis.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("paul")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Paul Dragoonis</h4>
<span class="honeycomb__subtitle">PHP-Fig</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/pierre-joye.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("pierre")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Pierre Joye</h4>
<span class="honeycomb__subtitle">Microsoft</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/akin-moroglu.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("akin")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Akın Moroğlu</h4>
<span class="honeycomb__subtitle">Bahçeşehir University</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/berat-dogan.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("berat")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Berat Doğan</h4>
<span class="honeycomb__subtitle">MetGlobal</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/bora-yalcin.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("bora")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Bora Yalçın</h4>
<span class="honeycomb__subtitle">Dion Adworks</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/devrim-gunduz.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("devrim")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Devrim Gündüz</h4>
<span class="honeycomb__subtitle">EnterpriseDB</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/emir-karsiyakali.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("emir")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Emir Karşıyakalı</h4>
<span class="honeycomb__subtitle">İstanbul PHP</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/emre-yilmaz.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("emre")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Emre Yılmaz</h4>
<span class="honeycomb__subtitle">Volt</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/fatih-kadir-akin.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("fatih")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Fatih Kadir Akın</h4>
<span class="honeycomb__subtitle"></span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/fatih-erikli.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("erikli")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Fatih Erikli</h4>
<span class="honeycomb__subtitle">Gezi.com</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/hidayet-dogan.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("hidayet")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Hidayet Doğan</h4>
<span class="honeycomb__subtitle">Yazılım Parkı</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/huseyin-mert.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("huseyin")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Hüseyin Mert</h4>
<span class="honeycomb__subtitle">OkulBilişim</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/ibrahim-gunduz.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("ibrahim")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">İbrahim Gündüz</h4>
<span class="honeycomb__subtitle">Markafoni</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/midori-kocak.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("midori")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Midori Koçak</h4>
<span class="honeycomb__subtitle">-</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/muhittin-ozer.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("muhittin")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Muhittin<br/>Özer</h4>
<span class="honeycomb__subtitle">Atölye15</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/mustafa-kutsal-ay.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("mustafa")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Mustafa Kutsal Ay</h4>
<span class="honeycomb__subtitle">Symbie</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/osman-ungur.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("osman")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Osman Üngür</h4>
<span class="honeycomb__subtitle">Tasit.com</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/oytun-tez.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("oytun")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Oytun Tez</h4>
<span class="honeycomb__subtitle">MotaWord</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/ugur-ozyilmazel.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("ugur")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Uğur -vigo- Özyılmazel</h4>
<span class="honeycomb__subtitle">Istanbul Bilgi University</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/meryem-alay.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("meryem")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Meryem Alay</h4>
<span class="honeycomb__subtitle">SoftTech</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/nesrin-kalender.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("nesrin")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Nesrin Kalender</h4>
<span class="honeycomb__subtitle">Nomad Commerce</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/sirin-saygili.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("sirin")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Şirin Saygılı</h4>
<span class="honeycomb__subtitle">Prisync</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/hakki-ocal.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("hakki")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Hakkı Öcal</h4>
<span class="honeycomb__subtitle">Bahçeşehir University</span>
</div>
</a>
</figcaption>
</figure>
<figure class="honeycomb" href="">
<img class="honeycomb__img" data-src="img/speakers/ugur-aydogdu.jpg" alt="">
<figcaption class="honeycomb__caption">
<a href="" class="honeycomb__link" ng-click='clickToOpen("aydogdu")'>
<div class="honeycomb__text">
<h4 class="honeycomb__title">Uğur Aydoğdu</h4>
<span class="honeycomb__subtitle">Epigra</span>
</div>
</a>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div id="program" class="pad-vertical-medium bg-snow">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div id="tabbed-nav">
<!-- Tab Navigation Menu -->
<ul>
<li><a>{{ 'DAY_1' | translate }} </a></li>
<li><a>{{ 'DAY_2' | translate }}</a></li>
</ul>
<!-- Content container -->
<div>
<!-- DAY1 -->
<div>
<p class="gap-bottom-medium">{{ 'DAY_1_DESC' | translate }}
</p>
<a class="gap-bottom-medium button button--primary"
href="http://istanbulphp.eventbrite.com/" target="_blank">{{
'REGISTER' | translate }}</a>
<table>
<thead>
<tr>
<th>{{ 'DATE' | translate }}</th>
<th><h4>BKONF</h4></th>
<th><h4>Fazıl Say Hall</h4></th>
</tr>
</thead>
<tbody>
<tr>
<td>08:00</td>
<td colspan="2" class="text-center"><h6>Registration</h6></td>
</tr>
<tr>
<td>09:00</td>
<td colspan="2" class="text-center">
<h6>Keynote going Pro</h6><span>Cal Evans</span>
<p class="text-left">
What makes a developer a "professional developer"? Getting paid? Getting
quoted? Publishing a book? Let's take a look at this. This talk will look at
the traits that define a professional developer. Not the hard tech skills,
those change with the tools being used. These are the soft and quasi-soft
skills that developers have to master to be considered a professional
developer. Along the way there will be some tweetable moments, and of
course, a long line of bad jokes. Hopefully though, you will take away a
concept that you need to work on to round out your skills and unlock your
"Going Pro" badge.
</p>
</td>
</tr>
<tr>
<td>10:00</td>
<td>
<h6>Composer best pratices</h6><span>Jordi Boggianno</span>
<p>
Composer has grown into the de-facto standard PHP dependency manager. While
we struggle to make it easy to use, mastering dependency management and
packaging in general remains tricky. In this session you will learn how to
leverage Composer version constraints, grasp stabilities and semantic
versioning along with a few more tips on being a good OSS citizen. You
should already be comfortable with Composer basics and eager to learn about
it some more.
</p>
</td>
<td> </td>
</tr>
<tr>
<td>11:00</td>
<td>
<h6>Modern PHP</h6><span>Emir Karşıyakalı</span>
<p>PHP ekosisteminde son birkaç yılda olan değişiklikler, PHP7, modern araçlar,
ekosistem ve topluluktan bahsedilecek bu sunum, her seviyeden geliştiriciye
hitap ediyor!</p>
</td>
<td>
<h6>Her beyin bir sermaye peki yatırımcısı kim?</h6><span>Akın Moroğlu</span>
<p>
Teknoloji sektörünün en pahalı enstrümanı "developer"ın gelişim süreci, motivasyonu ve vizyonu neyle beslenir?
</p>
</td>
</tr>
<tr>
<td>12:00</td>
<td colspan="2" class="text-center lunch"><h6>Lunch</h6></td>
</tr>
<tr>
<td>13:00</td>
<td>
<h6>Growing your filesystem</h6>
<span>Frank de Jonge</span>
<p>
When your application is under heavy load, it'll need to scale. How we
handle our filesystem is a necessary step in our scaling plan. Let's grow
our filesystem understanding as our app goes from 10-100 users to thousands.
We'll start small, scale out, and see which hurdles we need to tackle along
the way.
</p>
</td>
<td>
<h6>PHP Uygulamalarınızı Güçlendirin</h6><span>Muhittin Özer</span>
<p>
Arama motoru, kuyruklama ve cache teknolojileri ile PHP uygulamalarına nasıl
güç katılabileceğinin anlatılacağı bu oturumda bahsedilen teknolojilerin öne
çıkanları hakkında genel bir bilgilendirme yapılacaktır.
</p>
</td>
</tr>
<tr>
<td>14:00</td>
<td>
<h6>PHP ve SOA deneyimleri</h6><span>Osman Üngür</span>
<p> Hayatta ve yazılım geliştirme döngüsünde değişmeyen tek şey değişimin
kendisidir. Bu sunum varolan monolitik projelerin servis odaklı mimariye
evrilmesi, servis odaklı modelleme, tasarım konseptleri, prensipleri,
karşılaşılan problemler, ölçekleme gibi konuları ele almaktadır.</p>
</td>
<td>
<h6>Advanced Monitoring</h6>
<span>Mustafa Kutsal Ay</span>
<p>Her sistemin, kaynak yönetimi ve darboğaz analizi olarak iki temel konusu vardır. İzleyemediğiniz ve raporlayamadığınız bir sistem size ait bir sistem değildir. Bu sunumda temel monitoring kavramları üzerinde durulacak ve örneklerle olası senaryolar anlatılacaktır.</p>
</td>
</tr>
<tr>
<td>15:00</td>
<td>
<h6>Design Patterns, the practical approach in PHP</h6><span>Hugo Hamon</span>
<p>
Design patterns are conceptual solutions to solve common redundant problems
in software engineering. However, learning them is not easy as litterature
or tutorials on the Internet often introduce them with theorical examples.
This talk gives you a slightly different approach by introducing design
patterns with practical code samples to solve real world problems. You won't
just learn design patterns, you will also discover how to leverage them for
your next PHP projects.
</p>
</td>
<td>
<h6>PHP ile Soket Programlama ve Ağ Servisleri </h6>
<span>Hidayet Doğan</span>
<p>
PHP ile soket programlama nasıl yapılır, ağ servisleri nasıl
oluşturulabilir, günümüzde adını sıkça duyduğumuz WebSocket ve gerçek
zamanlı web uygulamalarını PHP ile nasıl geliştirebiliriz gibi soruların
yanıtlarını alıp, bunlar için geliştirilen kütüphane ve eklentileri
tanıyacağız.
</p>
</td>
</tr>
<tr>
<td>16:00</td>
<td>
<h6>HHVM, PHP7 & co</h6><span>Pierre Joye</span>
<p>
PHP 7 is on track, 1st test releases are out, everyone work hard to get the
next php major version out. Dozen of patches have reached the branch,amazing
RFCs have been worked on and commited. Are you ready to migrate? Hopefully
yes! If not and you still need to improve performances, then let take a
look at the alternatives. Be full stack alternative PHP implementations like
php or small additions to speedup the critical
parts of your apps.
</p>
</td>
<td>
<h6>PHP Uygulamalarını Docker ile Çalıştırmak</h6>
<span>Berat Doğan</span>
<p>
Populerliği günden güne artan yeni sanallaştırma yöntemi Linux Container'ları
ve Docker ile PHP uygulamalarının bu Linux Container'larında taşınarak uygulamaya
özel, bağımsız geliştirme ortamlarının hazırlanması ve yayınlanması anlatılacak.
</p>
</td>
</tr>
<tr>
<td>17:00</td>
<td>
<h6>PHP Interoperability with PPI Framework</h6><span>Paul Dragoonis</span>
<p>
There's lot of buzz these days about PHP Interoperability (PHP-FIG, PSR).
Paul's talk will initially be on the benefits of PHP interoperability and
what added value it brings to the PHP table. He will then dive straight into
showing how to practically take advantage of Interoperability, in
real-world projects by using the PPI Framework. PPI Framework goes beyond
the basic PSR's that are in the PHP-FIG and takes things to the next level.
Come along and see how PPI Framework will put you in the driving seat and
let you easily consume the PHP eco-system into your project.
</p>
</td>
<td>
<h6>WP REST API sonrası WordPress ekosistemi ve kullanım alanları</h6>
<span>Bora Yalçın</span>
<p>
Sunumda, yaklaşık iki yıldır geliştirilen ve WordPress core yapısına
katılması için çalışılan WP REST API, hem WordPress ekosistemi hem de mobil
uygulamalar gibi farklı alanlarda ne gibi değişiklikler ve kullanım alanları
bulacağı anlatılacak.
</p>
</td>
</tr>
<tr>
<td>18:00</td>
<td class="text-center" colspan="2">
<h6>Teknik Sohbet</h6><span>Hakkı Öcal , Uğur Aydoğdu</span>
</td>
</tr>
</tbody>
</table>
</div>
<!-- DAY2 -->
<div>
<p class="gap-bottom-medium">{{ 'DAY_2_DESC' | translate }}
</p>
<a class="gap-bottom-medium button button--primary"
href="http://istanbulphp.eventbrite.com/" target="_blank">{{
'REGISTER' | translate }}</a>
<table>
<thead>
<tr>
<th>{{ 'DATE' | translate }}</th>
<th><h4>BKONF</h4></th>
<th><h4>Fazıl Say Hall</h4></th>
</tr>
</thead>
<tbody>
<tr>
<td>08:00</td>
<td colspan="2" class="text-center"><h6>Registration</h6></td>
</tr>
<tr>
<td>09:00</td>
<td colspan="2" class="text-center">
<h6>Keynote: Uzun soluklu projelerde kod yönetimi, sorular ve kararlar
</h6><span>Mert Hürtürk</span>
<p class="text-left">
Bu sunumda 1 yıldan fazla süredir ayakta duran, daha da durması planlanan ve
üzerinde devamlı geliştirmeler yapılan yazılım projelerinde karşılaşılan
problemler, sürdürülebilirlik ve stratejiler üzerine bilgi ve tecrübelerin
paylaşılacaktır.
</p>
</td>
</tr>
<tr>
<td>10:00</td>
<td>
<h6>What to Expect When You're Expecting: PHP 7</h6><span>Davey Shafik</span>
<p>
PHP 7 is coming, and with it will come new features, backwards compatibility
breaks, and huge performance gains. This talk will get you prepared for all
the changes in this upcoming release and offer practical advice you can
implement now to ensure you code still works come upgrade time.
</p>
</td>
<td> </td>
</tr>
<tr>
<td>11:00</td>
<td>
<h6>Beyond Testing</h6><span>Michael Bodnarchuk</span>
<p>
Yes, you know, you should have written that test! But what If you already do
writing tests, but you don't see the result of your actions. Tests run slow,
they are fragile, hard to read and maintain. Fixing a test is harder than
disabling it.
Don't blame yourself. It's not about you, it's about some points you should
have taken into account while your testing
codebase grew. In this talk I will tell you about
* What are best practices for tests (with code samples)
* Should you follow TDD or not
* What are acceptance || functional || unit tests
* Do we need acceptance tests and what framework to choose: Behat,
Codeception, Selenium, PhantomJS
* How to test untestable code
* How data should be managed (Fixtures, FactoryMuffin)
* Creating isolated test environments with Docker
* Parallel testing with Docker
</p>
</td>
<td><h6>Kim korkar OOP'dan?</h6><span>Midori Koçak</span>
<p>
Anneye anlatır gibi Nesne Yönelimli Programlama sunumudur. Yoksa siz hala
spaghetti mi seviyorsunuz? Nesne nedir? Neye yarar? Korkulacak bir şey
midir? Değil midir? Kodlarınızı yönetirken, başkaları okurken saç baş
yolmasın diye, derli toplu düzenli olmayı "Projelerle PHP" kitabının yazarı
Mutlu Koçak bebek adımlarıyla anlatıyor.
</p></td>
</tr>
<tr>
<td>12:00</td>
<td colspan="2" class="text-center lunch"><h6>Lunch</h6></td>
</tr>
<tr>
<td>13:00</td>
<td>
<h6>PhpStorm: 42 Tips and Tricks</h6>
<span>Mikhail Vink</span>
<p>
With the PhpStorm IDE buzzing in modern PHP community, there are always many
neat things to learn for better synergy with your every-day tool for web
development. This session will give you an insight on 42 powerful tips and
tricks that will make you more productive and efficient. From
lightning-smart navigation to debugging and testing hidden tricks, from
making UI of the IDE even more suitable for presentations to some handy
tools integrations - all of those tips will find a good use in your
development workflow.
</p>
</td>
<td>
<h6>Günlük hayatta işe yarar GIT ipuçları</h6><span>Uğur Özyılmazel</span>
<p>
`add`, `pull`, `push` ve `commit` dışında hayatımızı kolaylaştıran GIT
komutları, gündelik kullanımları ve faydalı komut satırı hileleri.
</p>
</td>
</tr>
<tr>
<td>14:00</td>
<td>
<h6>Puli: PHP's Next Package Revolution</h6><span>Bernhard Schussek</span>
<p> The development of Composer packages is thriving. But much effort is
duplicated, creating the same packages but for different frameworks. Why not
join forces and create great tools together, for everyone? Puli, a new
toolkit built on top of Composer, is a step to make this possible. With
Puli, you can create packages that can be enabled in any project (Plug 'n
Play) simply by running "composer install" - independent of your framework.
Are you ready for the future of PHP?
</p>
</td>
<td>
<h6>Nginx'i kullanarak yüksek hacimli trafiğin üstesinden nasıl gelinir?
</h6>
<span>Hüseyin Mert</span>
<p>Web uygulamalarınızın LoadBalancer, Cache ve Proxy ihtiyacını nasıl
giderilir? Lua veya Memcache modüllerini nasıl kullanırdığının ve daha
fazlasının cevabını bu sunumda bulacaksınız.
</p>
</td>
</tr>
<tr>
<td>15:00</td>
<td>
<h6>A complex ORM... faster than SQL?
</h6><span>Marco Pivetta</span>
<p>
Complex applications are never easy to build and maintain; add performance to the mix and you will have a huge problem! What if we could get very fast applications without sacrificing good abstraction? We will focus on the hazards affecting PHP OLTP application performance, and on particular features of Doctrine ORM that will improve it. Also, we will try and see how we can reverse-engineer these features to build robust, scalable and clean software.
</p>
</td>
<td>
<h6>OAuth 2.0: Konsept ve Uygulama
</h6>
<span>Oytun Tez</span>
<p>
Bu oturumda OAuth 2.0 ve öğelerini tanımlayacak ve gerçek hayat örnekleri
işleyeceğiz. OAuth 2.0 nedir? Neden dün yoktu ve bugün var? Benim işime
nasıl yarar? 5 yıl sonra hala kullanacak mıyız? Bu gibi soruları
cevaplayacağız ve PHP dünyasında OAuth 2.0 uygulamalarını nasıl
geliştirdiğimizi göreceğiz.
</p>
</td>
</tr>
<tr>
<td>16:00</td>
<td>
<h6>Kaya Gibi Sağlam Yazılım Projelerine İmza Atmanın 5 Prensibi
</h6><span>İbrahim Gündüz</span>
<p>
Geliştiriciler arasında her bir prensibin baş harfinin birleşiminden oluşan
SOLID kelimesi ile anılan nesnel programlama ve tasarım prensiplerinin
gerçek hayat örnekleri ile anlatıldığı keyifli bir sunum sizleri bekliyor.
</p>
</td>
<td>
<h6>MySQL kullanıcıları için PostgreSQL'in avantajları
</h6><span>Devrim Gündüz</span>
<p>
--
</p>
</td>
</tr>
<tr>
<td>17:00</td>
<td>
<h6>Pratik Redis
</h6><span>Emre Yılmaz</span>
<p>
Redis, son yıllarda kendisini endüstri standartı olarak kanıtlamış bir in-memory veritabanıdır. Redis'in pratik kullanım alanlarından, çalışma senaryolarına uygulamalı bir şekilde değineceğiz.
</p>
</td>
<td>
<h6>Graph Databases & Neo4j</h6>
<span>Fatih Erikli</span>
<p>
Graph kavramı, karmaşık ağlar, karmaşık ilişkiler ve bunların yönetimini veritabanı olarak üstlenen NEO4J hakkında bilgiler.
</p>
</td>
</tr>
<tr>
<td>18:00</td>
<td>
<h6>Yazılım Geliştirme Süreçleri ve Agile Kültürü
</h6>
<span>Emrah Işıklı</span>
<p>
Yazılım geliştirme süreçlerinin ve agile yaklaşımlarının gerçek örneklerle
anlatıldığı keyifli bir sunum.