-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeakers.html
More file actions
862 lines (841 loc) · 46 KB
/
speakers.html
File metadata and controls
862 lines (841 loc) · 46 KB
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
<!DOCTYPE html>
<!--[if IE 8 ]>
<html lang="en" class="ie8"> <![endif]-->
<!--[if (gt IE 8)]><!-->
<html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<title>DevDay 2015 - Speakers</title>
<meta content="Official website for DevDay 2015 conference" name="description">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="yes" name="apple-mobile-web-app-capable">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="javascripts/PIE.js"></script>
<![endif]-->
<link href="favicon.ico" rel="shortcut icon">
<link href="stylesheets/bootstrap.css" media="screen" rel="stylesheet" type="text/css"/>
<link href="stylesheets/responsive.css" media="screen" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.css">
<link href="stylesheets/theme.css" media="screen" rel="stylesheet" type="text/css"/>
<link href="stylesheets/fonts.css" media="screen" rel="stylesheet" type="text/css"/>
<link href="stylesheets/theme-custom.css" media="screen" rel="stylesheet" type="text/css"/>
<style>
.round-box .box-inner::after {
border-radius: 6px;
}
.row-fluid .span4 {
margin-bottom: 30px;
}
.row-fluid [class*="span"]:nth-child(4),
.row-fluid [class*="span"]:nth-child(7),
.row-fluid [class*="span"]:nth-child(10), {
margin-left: 0;
}
.unstyled > .span4:nth-child(4),
.unstyled > .span4:nth-child(7),
.unstyled > .span4:nth-child(10) {
margin-left: 0;
}
</style>
</head>
<body>
<div class="wrapper">
<header id="masthead">
<nav class="navbar navbar-static-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-target=".nav-collapse" data-toggle="collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">
<img src="images/logo_2015.svg">
</a>
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li class="">
<a href="speakers.html">Speakers</a>
</li>
<li class="">
<a href="sessions.html">Sessions</a>
</li>
<li class="">
<a href="workshops.html">Workshops</a>
</li>
<li class="">
<a href="location.html">Location</a>
</li>
<li class="">
<a href="https://cfp.devday.pl">CFP</a>
</li>
<li class="">
<a class="register-link" href="register.html">Register</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<div id="content" role="main">
<section class="section section-alt">
<div class="row-fluid">
<div class="super-hero-unit">
<figure>
<img alt="main image" src="images/speakers-hero-image.png"/>
<figcaption class="flex-caption">
<h1 class="super">
Speakers
</h1>
</figcaption>
</figure>
</div>
</div>
</section>
<section class="section section-padded">
<div class="container-fluid">
<div class="section-header">
<h1>
The <small class="light">lineup</small>
</h1>
</div>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/scott_allen_200.png" alt="scott allen img"/>
</span>
</div>
<h3 class="text-center">
Scott Allen
<small class="block">
Independent consultant
</small>
</h3>
<p>
K. Scott Allen is the founder of OdeToCode.com and is an independent consultant living near Washington D.C. Scott has 20 years of commercial software development experience across a wide range of technologies.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://odetocode.com/blogs/scott/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/OdeToCode" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/sebastian_belczyk_200.png" alt="sebastian belczyk img"/>
</span>
</div>
<h3 class="text-center">
Sebastian Belczyk
<small class="block">
Craftsman, Engineer
</small>
</h3>
<p>
Sebastian is a software craftsman who´s always looking for better tools and ways to challenge his point of view. His experience includes working with many different domains from banking and insurance through media and government sector to education, car rental and production. He's always keen to share his experience, insight and knowledge. He's an active member of the software craftsmanship movement (Code retreat facilitator) and programmers community (conference speaker, .net group leader). His vivid interest in various technologies, languages and practices reflects his belief that even most difficult problems can be solved easily if you choose the right tools.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://belczyk.com" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/sbelczyk" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/mathias_brandewinder_200.png" alt="mathias brandewinder img"/>
</span>
</div>
<h3 class="text-center">
Mathias Brandewinder
<small class="block">
F# Globe-Trotter
</small>
</h3>
<p>
Mathias has been developing software for about 10 years, and loving every minute of it, except maybe for a few release days. His language of choice was C#, until he discovered F# and fell in love with it. He enjoys arguing about code and how to make it better, and gets very excited when discussing TDD or functional programming. His other professional interests include machine learning and applied math. Mathias is a Microsoft F# MVP, the founder of Clear Lines Consulting, and the author of "Machine Learning projects for .NET developers" (Apress). He is based in San Francisco, blogs at <a href="http://www.clear-lines.com/blog">www.clear-lines.com/blog</a>, and can be found on Twitter as <a href="https://twitter.com/brandewinder">@brandewinder</a>.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://www.clear-lines.com/blog/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/brandewinder" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
</ul>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/manimaran_chandrasekaran_200.png" alt="manimaran chandrasekaran img"/>
</span>
</div>
<h3 class="text-center">
Manimaran Chandrasekaran
<small class="block">
Automate Thinkable
</small>
</h3>
<p>
Over 12 years of experience in crafting strategy for enterprise application delivery and enabling organisations to deliver quality code into their production environments. I'm passionate about enabling continuous delivery in organisations that suffer the pain of midnight deployments and long hours of system downtime.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://www.devopspractice.com" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/007maran" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/rob_conery_200.png" alt="rob conery img"/>
</span>
</div>
<h3 class="text-center">
Rob Conery
<small class="block">
Author, speaker, OSS contributor
</small>
</h3>
<p>
Rob has been working in the technology field full time since 1998 as a DBA and then a web developer. His original focus was the Microsoft ASP.NET stack, building tools like Subsonic nd the first Micro-ORM: <a href="https://github.com/FransBouma/Massive">Massive</a>. In addition he co-founded Tekpub.com (acquired by <a href="http://pluralsight.com/">Pluralsight</a>) with James Avery and co-host <a href="http://thisdeveloperslife.com/">This Developer's Life</a> with his friend, <a href="http://www.hanselman.com/">Scott Hanselman</a>. He <a href="http://www.pluralsight.com/author/rob-conery">currently create videos for Pluralsight</a> and <a href="https://github.com/robconery">build open source things</a> as he can.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://rob.conery.io/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/robconery" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/robconery" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/alena_dzenisenka_200.png" alt="alena dzenisenka img"/>
</span>
</div>
<h3 class="text-center">
Alena Dzenisenka
<small class="block">
Software Architect, Researcher
</small>
</h3>
<p>
Alena Dzenisenka is a young researcher in the field of theoretical mathematical abstractions and innovative algorithmic models possible in modern programming concepts. She is a member of F# Software Foundation Board of Trustees. Alena currently works as a Software Architect at Luxoft and has more than 10 years of professional experience including complex distributed systems and cloud computing. She has become MCP at the age of 16. Alena teaches F# and speaks at international conferences.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://lenadroid.github.io//" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/lenadroid" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/lenadroid" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
</ul>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/sam_elamin_200.png" alt="sam elamin img"/>
</span>
</div>
<h3 class="text-center">
Sam Elamin
<small class="block">
When is the last time you failed?
</small>
</h3>
<p>
Sam has been a software developer professionally for the last 8 years, but has been programming just for fun from a long-long time ago! Sam loves Agile, TDD and Clean code. But over all the software craftsmanship movement, he is a DDD evangelist and of course an active member and sometimes host of the London software craftsmanship meetup group. Sam likes to continuously learn from his failures. Kaizen is the motto.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="https://twitter.com/samelamin" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/will_evans_200.png" alt="will evans img"/>
</span>
</div>
<h3 class="text-center">
Will Evans
<small class="block">
PraxisFlow
</small>
</h3>
<p>
Will Evans explores the convergence of practice and theory using Lean Systems, Design Thinking, and LeanUX with global corporations from NYC to Berlin to Singapore. As Chief Design Officer at PraxisFlow, he works with a select group of corporate clients undergoing Lean and Agile transformations across the entire organization. Will is also the Design Thinker-in-Residence at NYU Stern's Berkley Center for Innovation and Entrepreneurship.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="https://twitter.com/semanticwill" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/semanticwill" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-linkedin"></i>
</a>
</li>
<li>
<a href="http://www.slideshare.net/willevans" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-slideshare"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img alt="chad fowler img" src="images/speakers/chad_fowler_200.png" class="img-rounded">
</span>
</div>
<h3 class="text-center">
Chad Fowler
<small class="block">
CTO at 6Wunderkinder
</small>
</h3>
<p>
Chad Fowler is an internationally known software developer, trainer, manager, speaker, and musician. Over the past decade he has worked with some of the world’s largest companies and most admired software developers. Chad is CTO at 6Wunderkinder. He is co-founder of RubyConf and RailsConf and author or co-author of a number of popular software books, including <a href="https://pragprog.com/book/fr_rr/rails-recipes">Rails Recipes</a> and <a href="https://pragprog.com/book/cfcar2/the-passionate-programmer">The Passionate Programmer: Creating a Remarkable Career in Software Development</a>.
</p>
<ul class="inline text-center big social-icons">
<li>
<a style="color: rgb(66, 87, 106);" data-iconcolor="#00a0d1" href="http://chadfowler.com/">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a style="color: rgb(66, 87, 106);" data-iconcolor="#00a0d1" href="https://twitter.com/chadfowler">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a style="color: rgb(66, 87, 106);" data-iconcolor="#00a0d1" href="https://github.com/chad">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
</ul>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/steve_freeman_200.png" alt="steve freeman img"/>
</span>
</div>
<h3 class="text-center">
Steve Freeman
<small class="block">
Co-author of Growing Object-Oriented Software Guided by Tests
</small>
</h3>
<p>
Steve Freeman, author of <a href="http://www.amazon.com/Growing-Object-Oriented-Software-Guided-Tests/dp/0321503627">Growing Object Oriented Software, Guided by Tests (Addison-Wesley)</a>, was a pioneer of Agile software development in the UK. He has developed software in many organisations from small vendors to multinational investment banks. Previously, he has worked in research labs and software houses, earned a PhD, written shrink-wrap applications for IBM, and taught at University College London. Steve now works for Springer Nature Publishing and Zuhlke Engineering in London.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://higherorderlogic.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/sf105" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/shay_friedman_200.png" alt="shay friedman img"/>
</span>
</div>
<h3 class="text-center">
Shay Friedman
<small class="block">
Web Ninja Turtle
</small>
</h3>
<p>
Shay Friedman is the founder and web division leader at CodeValue, and also a Microsoft .NET MVP. In the last years, Shay has migrated numerous companies to modern web technologies like angularjs, html5 and css3. He's spoken in lots of international conferences and conducted various web related courses around the world. In his spare time Shay plays the guitar, plays basketball and drinks beer. And, most important, he's a nice guy! :)
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://ironshay.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/ironshay" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/shayfriedman" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/adron_hall_200.png" alt="adron hall img"/>
</span>
</div>
<h3 class="text-center">
Adron Hall
<small class="block">
Messenger, Coder, Recon
</small>
</h3>
<p>
I’m a jovial, metal thrashing, proactive, test & code, code & test, get things done *well*, software architect, engineer, code monkey, coder, and distributed systems advocate.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://compositecode.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/adron" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
</ul>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/chris_heilmann_200.png" alt="chris heilmann img"/>
</span>
</div>
<h3 class="text-center">
Chris Heilmann
<small class="block">
HTML5/Open Web Evangelist
</small>
</h3>
<p>
Chris Heilmann has dedicated a lot of his time making the web better. Originally coming from a radio journalism background, he built his first web site from scratch around 1997 and spent the following years working on lots of large, international web sites. He then spent a few years in Yahoo building products and explaining and training people including Yahoo Answers, Search, Local and Maps. He then worked at Mozilla moving HTML5 support forward and advocating Firefox OS as an open alternative to closed mobile systems.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://christianheilmann.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/codepo8" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/james_hughes_200.png" alt="james hughes img"/>
</span>
</div>
<h3 class="text-center">
James Hughes
<small class="block">
Engineer and Tinkerer
</small>
</h3>
<p>
James is a freelance software engineer who is (mostly) based in Northern Ireland. In the 11 or so years he's been in this industry he's seen and done things that keep him awake at night, with tears in his eyes, forever scarred. To try and absolve himself of these sins he also tries to do many good things and help entertain, inspire and educate companies, teams and people. He generally speaks & writes about technologies that will probably be irrelevant in a few years.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="https://yobriefca.se/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/kouphax" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/michal_lusiak_200.png" alt="michal lusiak img"/>
</span>
</div>
<h3 class="text-center">
Michal Lusiak
<small class="block">
tretton37 ninja
</small>
</h3>
<p>
Michal is software developer from Poland, currently living in Sweden. In his daily job, he works mostly with backend for web and mobile applications. He has worked with all kind of programming platforms and languages, and currently focuses mostly on .NET. Big fan of functional programming. He likes to tinker with new things and try them out in side projects. When he's not programming, there's good chance to meet him doing some high-speed and high-g activities like shredding mountain on a sitski or piloting flying machines.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://mlusiak.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/mlusiak" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
</ul>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/mathew_mcloughlin_200.png" alt="mathew mcloughlin img"/>
</span>
</div>
<h3 class="text-center">
Mathew McLoughlin
<small class="block">
Not From Manchester
</small>
</h3>
<p>
Mathew has been a software developer for over 10 years, specialising in .NET and web development. He is passionate about the open source community and is one the main developers on the OmniSharp project. He is a regular speaker at user groups and conferences around the UK. His blog can be found at <a href="http://mat-mcloughlin.net">http://mat-mcloughlin.net</a>.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://mat-mcloughlin.net" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/mat_mcloughlin" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/mat-mcloughlin" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/tim_perry_200.png" alt="tim perry img"/>
</span>
</div>
<h3 class="text-center">
Tim Perry
<small class="block">
</small>
</h3>
<p>
By day Tim Perry is a technical lead and the open-source champion at Softwire, guiding teams, building a variety of great software at every scale for Softwire's clients, and pushing Softwire to engage with and give back to the wider software development community. By night he's a prolific open-source contributor on huge variety of projects including Sinon.JS, Moment, Knockout & Lodash, along with some of his own such as loglevel and grunt-coveralls, and is feverishly keen on all things relating to automated testing, polyglot persistence, and good old-fashioned high-quality software development.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://tim-perry.co.uk" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/pimterry" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/tomas_petricek_200.png" alt="tomas petricek img"/>
</span>
</div>
<h3 class="text-center">
Tomas Petricek
<small class="block">
Open-source F# developer, book author and computer scientist
</small>
</h3>
<p>
Tomas is a computer scientist, book author and open-source developer. He wrote a popular book called "Real-World Functional Programming" and is a lead developer of several F# open-source libraries, but he also contributed to the design of the F# language as an intern and consultant at Microsoft Research. He is a partner at fsharpWorks (<a href="http://fsharpworks.com">http://fsharpworks.com</a>) where he provides trainings and consulting services. Tomas recently submitted his PhD thesis at the University of Cambridge focused on types for understanding context usage in programming languages, but his most recent work also includes two essays that attempt to understand programming through the perspective of philosophy of science.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://tomasp.net/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/tomaspetricek" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/tpetricek" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
</ul>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/nat_pryce_200.png" alt="nat pryce img"/>
</span>
</div>
<h3 class="text-center">
Nat Pryce
<small class="block">
Co-author of Growing Object-Oriented Software Guided by Tests
</small>
</h3>
<p>
Nat Pryce is a co-author of <a href="http://www.amazon.com/Growing-Object-Oriented-Software-Guided-Tests/dp/0321503627">Growing Object-Oriented Software Guided by Tests</a>. As a fan of XP and TDD, he has developed a number of open source tools for test-driving code. He has worked as a architect, programmer, trainer and consultant in a variety of industries, including consumer electronics, e-commerce, media, telecoms & finance, and has delivered business-critical systems that range from embedded devices to large compute farms supporting global business.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://www.natpryce.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/natpryce" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/npryce" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/adam_ralph_200.png" alt="adam ralph img"/>
</span>
</div>
<h3 class="text-center">
Adam Ralph
<small class="block">
Open Source Addict
</small>
</h3>
<p>
Adam Ralph is a software developer working for Particular Software and takes special interest in distributed systems, DDD, CQRS and event sourcing. In the rest of the open source world he is a core member of scriptcs, FakeItEasy, xBehave.net, ConfigR and others. Adam has also contributed to Nancy, NuGet, JabbR, AutoFac and plenty more.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="http://adamralph.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/adamralph" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/adamralph" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
</li>
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/gary_short_200.png" alt="gary short img"/>
</span>
</div>
<h3 class="text-center">
Gary Short
<small class="block">
Freelance data science practitioner
</small>
</h3>
<p>
Gary Short is a freelance data science practitioner and trainer, based in Dundee, UK. He has a deep understanding of the full Hadoop and HDInsight environment, as well as an interest in Predictive Analytics, Social Network Analysis, Computational Linguistics and Machine Vison.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="https://garyshortblog.wordpress.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/garyshort" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
</ul>
<ul class="unstyled row-fluid">
<li class="span4">
<div class="round-box box-big">
<span class="box-inner">
<img class="img-rounded" src="images/speakers/oliver_sturm_200.png" alt="oliver sturm img"/>
</span>
</div>
<h3 class="text-center">
Oliver Sturm
<small class="block">
DevExpress
</small>
</h3>
<p>
Oliver Sturm is the Training Director at DevExpress. In over twenty years he has gathered great experience as a software developer and architect, consultant, trainer, speaker and writer. He is a long-time Microsoft C# MVP.
</p>
<ul class="inline text-center big social-icons">
<li>
<a href="https://www.oliversturm.com/" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-globe"></i>
</a>
</li>
<li>
<a href="https://twitter.com/olivers" data-iconcolor="#00a0d1" style="color: rgb(66, 87, 106);">
<i class="fa fa-twitter"></i>
</a>
</li>
</ul>
</li>
</ul>
</div>
</section>
</div>
</div>
<footer id="footer" role="contentinfo">
<div class="wrapper wrapper-transparent">
<div class="container-fluid">
<div class="row-fluid">
<div class="span6 small-screen-center">
<h3>
DevDay
</h3>
<p>
created with passion and ❤
<br>
<a href="mailto:contact@devday.pl">contact@devday.pl</a>
</p>
</div>
<div class="span6">
<ul class="unstyled inline text-right small-screen-center big social-icons">
<li>
<a data-iconcolor="#00a0d1" href="http://twitter.com/abbdevday">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a data-iconcolor="#3b5998" href="http://facebook.com/abbdevday">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a data-iconcolor="#910101"
href="https://plus.google.com/b/113103877740934428492/113103877740934428492/posts">
<i class="fa fa-google-plus"></i>
</a>
</li>
<li>
<a data-iconcolor="#910101" href="http://youtube.com/abbdevday">
<i class="fa fa-youtube"></i>
</a>
</li>
<li>
<a data-iconcolor="#910101" href="https://www.flickr.com/photos/96896358@N04/">
<i class="fa fa-flickr"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script src="javascripts/jquery.min.js" type="text/javascript"></script>
<script src="javascripts/bootstrap.js" type="text/javascript"></script>
<script src="javascripts/script.js" type="text/javascript"></script>
<script src="javascripts/script-custom.js" type="text/javascript"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-33563827-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>