-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1612 lines (1243 loc) · 75 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>
<!--[if lt IE 7 ]>
<html class="ie ie6" lang="en" class="no-js"> <![endif]-->
<!--[if IE 7 ]>
<html class="ie ie7" lang="en" class="no-js"> <![endif]-->
<!--[if IE 8 ]>
<html class="ie ie8" lang="en" class="no-js"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>PyData Berlin</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="PyData Berlin - Berlin community for developers and users of Python data tools">
<meta name="author" content="PyData Berlin">
<!-- Styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/main.css" rel="stylesheet">
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Dosis:300,400,500,600,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,300,400,700' rel='stylesheet'
type='text/css'>
<!-- IE 9 Fallback-->
<!--[if IE 9]>
<link href="assets/css/ie.css" rel="stylesheet">
<![endif]-->
<!-- HTML5 shim, for IE6-8 support of HTML5 elements and IE Fallback-->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<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-52138032-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body id="top" class="fullscreen-image-background">
<!-- NAVBAR -->
<div class="navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-nav">
<span class="sr-only">Menu</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">
<img src="assets/img/pydata-logo-text.png" alt="PyData"/>
</a>
<!--<div class="navbar-text ">PyData Berlin</div>-->
</div>
<nav class="navbar-collapse collapse" id="main-nav" role="navigation">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#top">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="#twitter-stream">NEWS</a></li>
<li><a href="#conference">CONFERENCE</a></li>
<li><a href="#meetups">MEETUPS</a></li>
<li><a href="#videos">VIDEOS</a></li>
</ul>
</nav>
</div>
</div>
<!-- END NAVBAR -->
<!-- HERO UNIT -->
<div id="hero-unit" class="hero-unit">
<div class="hero-content text-center">
<!-- Hero text -->
<div id="slidecaption" class="slide-caption">
<div class="hero-text">
<h2 class="hero-heading">PyData Berlin</h2>
<p>Berlin community for developers and users of Python data tools</p></br>
</div>
</div>
</div>
</div>
<!-- END HERO UNIT -->
<!-- MAIN CONTENT -->
<div id="main-content" class="main-content">
<!-- WEBSITE SPONSOR -->
<div id="presented-by" class="section most-dark website-sponsor" off="200">
<p class="wow fadeInUp" data-wow-offset="200">
<a href="http://www.bakdata.com" data-toggle="tooltip" data-placement="right" title="bakdata.com">
<img src="assets/img/bakdata-website-sponsor.png" alt="bakdata"/>
</a></p>
</div>
<!-- WEBSITE SPONSOR -->
<!-- ABOUT -->
<div id="about" class="section about">
<div class="container">
<div class="section-heading">
<h2>ABOUT US</h2>
<p>The PyData community</p>
<hr/>
</div>
<div class="section-content">
<div class="row">
<img src="assets/img/pydata-large.png" alt="PyData Berlin" class="img-left"/>
<div class="col-lg-9 col-lg-offset-3">
<h3>PyData</h3>
<p>Starting out with a <a href="http://pydataworkshop.eventbrite.com/">PyData Workshop</a> at the
Googleplex in Mountain View, CA, in 2012 PyData has evolved into a successful
<a href="#conference">conference</a> series on using Python for the
management, processing, analysis, and visualization of data. Alongside the popular
conferences and the excellent <a href="http://pydata.org/downloads/">PyData tools/packages</a> a
steadily growing PyData community has formed. Visit <a href="http://pydata.org">pydata.org</a>
or search for <a href="https://twitter.com/search?q=%23pydata">#pydata</a> at Twitter to find
out more.
</p>
<h3>PyData Berlin</h3>
<p>Berlin is renowned for its vibrant tech and startup scene. Being already a stronghold in Web and
mobile application development, Berlin has also a growing community of data engineers and data
scientists, among them many Pythonistas. This website is supposed to give an overview of PyData
related activities in Berlin, join efforts and support building a strong Berlin PyData
community.</p>
<h3>NumFOCUS</h3>
<p>
The PyData conference series is organized by NumFOCUS, a non-profit organization which supports
and promotes world-class, innovative, open source scientific software. NumFOCUS aims to ensure
that money is available to keep projects in the scientific Python stack funded and available. So
if you find value in these tools and have always wanted to give back, donating to NumFOCUS gives
you a way of supporting either a specific project of your choice or all of these great codes at
once.
</br>
<a href="http://numfocus.org"
class="read-more"><span>NumFOCUS website</span> <i
class="i fa fa-arrow-circle-right"></i></a>
</br>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- END ABOUT -->
<!-- TWITTER STREAM -->
<div id="twitter-stream" class="section twitter-stream">
<div class="container">
<div class="section-heading">
<h2>NEWS </h2>
<div class="twitter-icon">
<a href="https://twitter.com/pydataberlin" data-toggle="tooltip" data-placement="left"
title="Follow us on Twitter"><i class="fa fa-twitter"></i></a>
</div>
<!--<hr/>-->
</div>
<div id="tweet"></div>
</div>
</div>
<!-- END TWITTER STREAM -->
<!-- CONFERENCE -->
<div id="conference" class="section about">
<div class="container">
<div class="section-heading">
<h2>Conference</h2>
<p>The PyData conference series</p>
<hr/>
</div>
<div class="section-content">
<div class="row">
<div class="col-lg-9 col-lg-offset-2">
<h3>PyData Conference Mission</h3>
<p>"PyData is a gathering of users and developers of data analysis tools in Python. The goals
are to
provide Python enthusiasts a place to share ideas and learn from each other about how best to
apply our language and tools to ever-evolving challenges in the vast realm of data management,
processing, analytics, and visualization."
</br>
<a href="http://pydata.org/about/about/"
class="read-more"><span>Full mission statement</span> <i
class="i fa fa-arrow-circle-right"></i></a>
</br>
</p>
<h3>PyData Berlin 2015 (May 29-30 2015)</h3>
<p>After the very successful PyData Berlin conference premiere in 2014 and due to popular demand
the sequel was not long in coming. PyData Berlin 2015 took place from May 29-30 2015 at
<a href="http://www.betahaus.com/berlin/">Betahaus Berlin</a>.
For more information checkout the <a href="http://pydata.org/berlin2015/">PyData Berlin 2015
conference site</a>.
</p>
<h3>PyData Berlin 2014 (July 25-27 2014)</h3>
<p>The second PyData conference outside the US after <a href="http://pydata.org/ldn2014/">PyData
London 2014</a> took place in Berlin from July 25-27 2014 and was hosted together with
the <a href="https://ep2014.europython.eu">EuroPython 2014 conference</a> at the BCC.
For more information see the <a href="http://pydata.org/berlin2014/">PyData Berlin 2014
conference site</a>.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- END CONFERENCE -->
<!-- POWERED BY NUMFOCUS -->
<div id="sponsor-numfocus" class="section sponsor-numfocus" off="200">
<p class="wow fadeInUp" data-wow-offset="200">
<a href="https://www.numfocus.org/">
<img src="assets/img/numfocus.png"/>
</a>
</p>
</div>
<!-- END POWERED BY NUMFOCUS -->
<!-- MEETUP -->
<div id="meetups" class="section darker services">
<div class="container">
<div class="section-heading">
<h2>Meetups</h2>
<p>Meetups and User Groups for Python and Data Geeks</p>
<hr/>
</div>
<div class="section-content">
<div class="row">
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>PyData Berlin</h3>
<p><i class="fa fa-quote-left small"></i>  A group for Python enthusiasts
to share ideas and learn from each other about how
best to apply our language and tools to ever-evolving challenges in the vast realm
of data management, processing, analytics, and visualization.  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/PyData-Berlin"
class="read-more"><span>Meetup site ...</span> <i
class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>Python Big Data Analytics</h3>
<p><i class="fa fa-quote-left small"></i>  Diese Gruppe beschäftigt sich
mit Python, Big Data und Data Analytics. Ziel ist es,
praxisrelevante Beispiele und Erfolgsgeschichten rund um Python für Big Data zu
präsentieren und zu diskutieren.  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/Python-Big-Data-Analytics/" class="read-more"><span>Meetup site ...</span>
<i class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>Python Users Berlin (PUB)</h3>
<p><i class="fa fa-quote-left small"></i>  Python Users Group Berlin -
presentations and discussions about Python and
Python-related software development (mostly framework-independent).  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/Python-Users-Berlin-PUB/" class="read-more"><span>Meetup site ...</span>
<i
class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>Berlin Big Data Beers</h3>
<p><i class="fa fa-quote-left small"></i>  Big beers and talking about Big
Data (Hadoop, MapReduce, HBase, Cassandra, Batch
processing, Real-time processing, Storm, ...).  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/Big-Data-Beers/"
class="read-more"><span>Meetup site ...</span> <i
class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>Berlin Machine Learning Group</h3>
<p><i class="fa fa-quote-left small"></i>  A meetup for academics,
profesionals and hobbyists interested in applications and latest
developments in Machine learning.  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/berlin-machine-learning/" class="read-more"><span>Meetup site ...</span>
<i class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>Algorithms & Data Challenges Berlin</h3>
<p><i class="fa fa-quote-left small"></i>  This non-IT focused group is
made up of individuals with a mathematical background who
are interested in finding answers to business questions with maths and
algorithms.  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/Algorithms-Data-Challenges-Berlin/" class="read-more"><span>Meetup site ...</span>
<i
class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>Applied Data Science</h3>
<p><i class="fa fa-quote-left small"></i>  Community of data science
practitioners: data scientists, analysts,
statisticians and hackers that have hands-on experience applying analytical and creative
thinking to their area nerdy.  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/AppliedDataScience/"
class="read-more"><span>Meetup site ...</span>
<i class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<span class="fa fa-dot-circle-o service-icon"></span>
<div class="service-text">
<h3>Data Visualization Berlin</h3>
<p><i class="fa fa-quote-left small"></i>  Community to grow skills and
tools for data visualisation & interaction.  <i
class="fa fa-quote-right small"></i></p>
<a href="http://www.meetup.com/Data-Visualization-Berlin/" class="read-more"><span>Meetup site ...</span>
<i class="i fa fa-arrow-circle-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END MEETUP -->
<!-- VIDEOS -->
<div id="videos" class="section works">
<div class="section-heading">
<h2>VIDEOS</h2>
<p>Videos from PyData Berlin events (thanks <a href="http://c3voc.de/">C3VOC</a>!)</p>
<hr />
</div>
<div class="section-content">
<ul class="list-inline work-item-filters">
<li><a class="active" href="#" data-filter="*">ALL</a></li>
<li><a href="#" data-filter=".conf2015">PyData Berlin 2015</a></li>
<li><a href="#" data-filter=".conf2014">PyData Berlin 2014</a></li>
</ul>
<div class="work-item-wrapper">
<ul class="work-item-list list-col-4 isotope">
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=HLME2WKTJJ8" class="mfp-iframe media-popup"
title="Matthew Rocklin: pyData Berlin 2015: keynote">
<img src="assets/img/videotbn/conf2015/HLME2WKTJJ8.jpg"
alt="Matthew Rocklin: pyData Berlin 2015: keynote">
<div class="image-overlay">
<div class="work-item-info">
<h3>Matthew Rocklin</h3>
<p>pyData Berlin 2015: keynote</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=kqcJLnwdBy8" class="mfp-iframe media-popup"
title="Ignacio Elola: Python as a Framework for Analytics and Growth Hacking">
<img src="assets/img/videotbn/conf2015/kqcJLnwdBy8.jpg"
alt="Ignacio Elola: Python as a Framework for Analytics and Growth Hacking">
<div class="image-overlay">
<div class="work-item-info">
<h3>Ignacio Elola</h3>
<p>Python as a Framework for Analytics and Growth Hacking</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=Fo0Ne2pYWW4" class="mfp-iframe media-popup"
title="Felix Wick: From the Life of a Data Scientist">
<img src="assets/img/videotbn/conf2015/Fo0Ne2pYWW4.jpg"
alt="Felix Wick: From the Life of a Data Scientist">
<div class="image-overlay">
<div class="work-item-info">
<h3>Felix Wick</h3>
<p>From the Life of a Data Scientist</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=xDrClxaq-Fc" class="mfp-iframe media-popup"
title="Ronert Obst: Smart cars of tomorrow: real-time driving patterns">
<img src="assets/img/videotbn/conf2015/xDrClxaq-Fc.jpg"
alt="Ronert Obst: Smart cars of tomorrow: real-time driving patterns">
<div class="image-overlay">
<div class="work-item-info">
<h3>Ronert Obst</h3>
<p>Smart cars of tomorrow: real-time driving patterns</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=ntw6HgflqtM" class="mfp-iframe media-popup"
title="Peadar Coyle: Probabilistic Programming in Sports Analytics">
<img src="assets/img/videotbn/conf2015/ntw6HgflqtM.jpg"
alt="Peadar Coyle: Probabilistic Programming in Sports Analytics">
<div class="image-overlay">
<div class="work-item-info">
<h3>Peadar Coyle</h3>
<p>Probabilistic Programming in Sports Analytics</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=hee1QDnqBpI" class="mfp-iframe media-popup"
title="Lea Böhm: What people need to be happy at work & how you can influence a diverse team environment">
<img src="assets/img/videotbn/conf2015/hee1QDnqBpI.jpg"
alt="Lea Böhm: What people need to be happy at work & how you can influence a diverse team environment">
<div class="image-overlay">
<div class="work-item-info">
<h3>Lea Böhm</h3>
<p>What people need to be happy at work & how you can influence a diverse team environment</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=E9q33wbPCGU" class="mfp-iframe media-popup"
title="Valentin Haenel: Blosc">
<img src="assets/img/videotbn/conf2015/E9q33wbPCGU.jpg"
alt="Valentin Haenel: Blosc">
<div class="image-overlay">
<div class="work-item-info">
<h3>Valentin Haenel</h3>
<p>Blosc</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=LlcZ0kaSpns" class="mfp-iframe media-popup"
title="Claas Abert: Scientific computing with Python: Tools for the solution of continuous problems">
<img src="assets/img/videotbn/conf2015/LlcZ0kaSpns.jpg"
alt="Claas Abert: Scientific computing with Python: Tools for the solution of continuous problems">
<div class="image-overlay">
<div class="work-item-info">
<h3>Claas Abert</h3>
<p>Scientific computing with Python: Tools for the solution of continuous problems</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=M-OZUQ_arNw" class="mfp-iframe media-popup"
title="Mike Müller: Measure, don't Guess - How to find out if and where to optimize">
<img src="assets/img/videotbn/conf2015/M-OZUQ_arNw.jpg"
alt="Mike Müller: Measure, don't Guess - How to find out if and where to optimize">
<div class="image-overlay">
<div class="work-item-info">
<h3>Mike Müller</h3>
<p>Measure, don't Guess - How to find out if and where to optimize</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=rLORX6w_OZI" class="mfp-iframe media-popup"
title="Trent McConaghy: Rewiring the Internet for Ownership with Big Data and Blockchains">
<img src="assets/img/videotbn/conf2015/rLORX6w_OZI.jpg"
alt="Trent McConaghy: Rewiring the Internet for Ownership with Big Data and Blockchains">
<div class="image-overlay">
<div class="work-item-info">
<h3>Trent McConaghy</h3>
<p>Rewiring the Internet for Ownership with Big Data and Blockchains</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=rLORX6w_OZI" class="mfp-iframe media-popup"
title="Trent McConaghy: Rewiring the Internet for Ownership with Big Data and Blockchains">
<img src="assets/img/videotbn/conf2015/rLORX6w_OZI.jpg"
alt="Trent McConaghy: Rewiring the Internet for Ownership with Big Data and Blockchains">
<div class="image-overlay">
<div class="work-item-info">
<h3>Trent McConaghy</h3>
<p>Rewiring the Internet for Ownership with Big Data and Blockchains</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=qVtNpUo5Ih4" class="mfp-iframe media-popup"
title="Panel Discussion">
<img src="assets/img/videotbn/conf2015/qVtNpUo5Ih4.jpg"
alt="Panel Discussion">
<div class="image-overlay">
<div class="work-item-info">
<h3></h3>
<p>Panel Discussion</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=2wq4mZyGJas" class="mfp-iframe media-popup"
title="Christine Doig: Interactive Data Visualizations with Python">
<img src="assets/img/videotbn/conf2015/2wq4mZyGJas.jpg"
alt="Christine Doig: Interactive Data Visualizations with Python">
<div class="image-overlay">
<div class="work-item-info">
<h3>Christine Doig</h3>
<p>Interactive Data Visualizations with Python</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=AXlp7qxqu8E" class="mfp-iframe media-popup"
title="Thomas Pfaff: Advanced Data Storage">
<img src="assets/img/videotbn/conf2015/AXlp7qxqu8E.jpg"
alt="Thomas Pfaff: Advanced Data Storage">
<div class="image-overlay">
<div class="work-item-info">
<h3>Thomas Pfaff</h3>
<p>Advanced Data Storage</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=JMFttHREDwY" class="mfp-iframe media-popup"
title="Paul Balzer: Analysing and predicting inner-city parking space occupancy">
<img src="assets/img/videotbn/conf2015/JMFttHREDwY.jpg"
alt="Paul Balzer: Analysing and predicting inner-city parking space occupancy">
<div class="image-overlay">
<div class="work-item-info">
<h3>Paul Balzer</h3>
<p>Analysing and predicting inner-city parking space occupancy</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=yt6anOdiIhg" class="mfp-iframe media-popup"
title="Philipp Pahl: Peachbox: Agile and Accessible Big ETL Framework">
<img src="assets/img/videotbn/conf2015/yt6anOdiIhg.jpg"
alt="Philipp Pahl: Peachbox: Agile and Accessible Big ETL Framework">
<div class="image-overlay">
<div class="work-item-info">
<h3>Philipp Pahl</h3>
<p>Peachbox: Agile and Accessible Big ETL Framework</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=Mb038zOz2fM" class="mfp-iframe media-popup"
title="Alexander Kagoshima: A Data Science Operationalization Framework">
<img src="assets/img/videotbn/conf2015/Mb038zOz2fM.jpg"
alt="Alexander Kagoshima: A Data Science Operationalization Framework">
<div class="image-overlay">
<div class="work-item-info">
<h3>Alexander Kagoshima</h3>
<p>A Data Science Operationalization Framework</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=UUVRdRpPhJU" class="mfp-iframe media-popup"
title="Alejandro Correa Bahnsen: CostCla a cost-sensitive classification library">
<img src="assets/img/videotbn/conf2015/UUVRdRpPhJU.jpg"
alt="Alejandro Correa Bahnsen: CostCla a cost-sensitive classification library">
<div class="image-overlay">
<div class="work-item-info">
<h3>Alejandro Correa Bahnsen</h3>
<p>CostCla a cost-sensitive classification library</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=4ZH6mpIFbrY" class="mfp-iframe media-popup"
title="Peter Hoffmann: Indroduction to the PySpark DataFrame API">
<img src="assets/img/videotbn/conf2015/4ZH6mpIFbrY.jpg"
alt="Peter Hoffmann: Indroduction to the PySpark DataFrame API">
<div class="image-overlay">
<div class="work-item-info">
<h3>Peter Hoffmann</h3>
<p>Indroduction to the PySpark DataFrame API</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=OrPoChOSUSE" class="mfp-iframe media-popup"
title="Sylvain Bellemare: Learning to use Docker for development">
<img src="assets/img/videotbn/conf2015/OrPoChOSUSE.jpg"
alt="Sylvain Bellemare: Learning to use Docker for development">
<div class="image-overlay">
<div class="work-item-info">
<h3>Sylvain Bellemare</h3>
<p>Learning to use Docker for development</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=LjpcolSZeGw" class="mfp-iframe media-popup"
title="Jose Luis Lopez Pino: Lessons learned from applying PyData to our marketing organization">
<img src="assets/img/videotbn/conf2015/LjpcolSZeGw.jpg"
alt="Jose Luis Lopez Pino: Lessons learned from applying PyData to our marketing organization">
<div class="image-overlay">
<div class="work-item-info">
<h3>Jose Luis Lopez Pino</h3>
<p>Lessons learned from applying PyData to our marketing organization</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=eIEsdluhoxY" class="mfp-iframe media-popup"
title="Miguel Fernando Cabrera: Processing Hotel Reviews with Python">
<img src="assets/img/videotbn/conf2015/eIEsdluhoxY.jpg"
alt="Miguel Fernando Cabrera: Processing Hotel Reviews with Python">
<div class="image-overlay">
<div class="work-item-info">
<h3>Miguel Fernando Cabrera</h3>
<p>Processing Hotel Reviews with Python</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=uSCl8mwqjP4" class="mfp-iframe media-popup"
title="Various: Lightning Talks">
<img src="assets/img/videotbn/conf2015/uSCl8mwqjP4.jpg"
alt="Various: Lightning Talks">
<div class="image-overlay">
<div class="work-item-info">
<h3>Various</h3>
<p>Lightning Talks</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=ikxm_kFL9MA" class="mfp-iframe media-popup"
title="Brian Carter: Lifecycle of Web Text Mining: Scrape to Sense">
<img src="assets/img/videotbn/conf2015/ikxm_kFL9MA.jpg"
alt="Brian Carter: Lifecycle of Web Text Mining: Scrape to Sense">
<div class="image-overlay">
<div class="work-item-info">
<h3>Brian Carter</h3>
<p>Lifecycle of Web Text Mining: Scrape to Sense</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2015">
<a href="https://www.youtube.com/watch?v=xVC9naY4LsQ" class="mfp-iframe media-popup"
title="Paul Balzer: Running, walking, sitting or biking? - Motion prediction with acceleration and rotation">
<img src="assets/img/videotbn/conf2015/xVC9naY4LsQ.jpg"
alt="Paul Balzer: Running, walking, sitting or biking? - Motion prediction with acceleration and rotation">
<div class="image-overlay">
<div class="work-item-info">
<h3>Paul Balzer</h3>
<p>Running, walking, sitting or biking? - Motion prediction with acceleration and rotation</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2014">
<a href="https://www.youtube.com/watch?v=W9_SNGymRwo" class="mfp-iframe media-popup"
title="Kashif Rasul - Intro to ConvNets">
<img src="assets/img/videotbn/conf2014/W9_SNGymRwo.jpg"
alt="Kashif Rasul - Intro to ConvNets">
<div class="image-overlay">
<div class="work-item-info">
<h3>Kashif Rasul </h3>
<p>Intro to ConvNets</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2014">
<a href="https://www.youtube.com/watch?v=vU4TlwZzTfU" class="mfp-iframe media-popup"
title="Radim Řehůřek - Faster than Google? Optimization lessons in Python.">
<img src="assets/img/videotbn/conf2014/vU4TlwZzTfU.jpg"
alt="Radim Řehůřek - Faster than Google? Optimization lessons in Python.">
<div class="image-overlay">
<div class="work-item-info">
<h3>Radim Řehůřek </h3>
<p>Faster than Google? Optimization lessons in Python.</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2014">
<a href="https://www.youtube.com/watch?v=Qva7uxmOZuA" class="mfp-iframe media-popup"
title="Thomas Wiecki - Algorithmic Trading with Zipline">
<img src="assets/img/videotbn/conf2014/Qva7uxmOZuA.jpg"
alt="Thomas Wiecki - Algorithmic Trading with Zipline">
<div class="image-overlay">
<div class="work-item-info">
<h3>Thomas Wiecki </h3>
<p>Algorithmic Trading with Zipline</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2014">
<a href="https://www.youtube.com/watch?v=sCktucuv5Yo" class="mfp-iframe media-popup"
title="Honza Král - Make sense of your (big) data using Elasticsearch">
<img src="assets/img/videotbn/conf2014/sCktucuv5Yo.jpg"
alt="Honza Král - Make sense of your (big) data using Elasticsearch">
<div class="image-overlay">
<div class="work-item-info">
<h3>Honza Král </h3>
<p>Make sense of your (big) data using Elasticsearch</p>
<i class="fa fa-search-plus"></i>
</div>
</div>
</a>
</li>
<li class="work-item conf2014">
<a href="https://www.youtube.com/watch?v=XSRr2HHedrY" class="mfp-iframe media-popup"