-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
752 lines (617 loc) · 30.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>JSConf Budapest</title>
<meta name="description" content="JSConf Budapest is a JSConf family member 2-day non-profit for-the-community by-the-community conference about JavaScript in Budapest, Hungary." />
<meta name="keywords" content="jsconf, javascript, jsconfbp, conference, budapest, jsconf budapest" />
<meta property="og:url" content="http://jsconfbp.com" />
<meta property="og:title" content="JSConf Budapest" />
<meta property="og:image" content="http://jsconfbp.com/images/og_image.jpg" />
<meta property="og:description" content="JSConf Budapest is a JSConf family member, 2-day, non-profit, for-the-community by-the-community conference about JavaScript in Budapest, Hungary." />
<meta name="generator" content="DocPad v6.69.2" />
<link href='//fonts.googleapis.com/css?family=Lato:300,400,700,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles/all.min.css" />
<link rel="shortcut icon" href="./favicon.ico">
<script>(function() {
var _fbq = window._fbq || (window._fbq = []);
if (!_fbq.loaded) {
var fbds = document.createElement('script');
fbds.async = true;
fbds.src = '//connect.facebook.net/en_US/fbds.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(fbds, s);
_fbq.loaded = true;
}
_fbq.push(['addPixelId', '1412312612411866']);
})();
window._fbq = window._fbq || [];
window._fbq.push(['track', 'PixelInitialized', {}]);
</script>
<noscript><img height="1" width="1" alt="" style="display:none" src="https://www.facebook.com/tr?id=1412312612411866&ev=PixelInitialized" /></noscript>
</head>
<body>
<div id="header">
<div class="logo">
<img src="/images/logo.png" />
<span class="tr-1 triangle red"
data-pr3-prop="rotate" data-pr3-from="-40" data-pr3-to="0"
data-pr1-prop="translateY" data-pr1-from="20" data-pr1-to="0"
data-pr2-prop="translateX" data-pr2-from="-100" data-pr2-to="0"></span>
<span class="tr-2 left triangle red"
data-pr1-prop="translateY" data-pr1-from="-30" data-pr1-to="0"
data-pr2-prop="translateX" data-pr2-from="-30" data-pr2-to="0"></span>
<span class="tr-3 triangle red"
data-pr3-prop="rotate" data-pr3-from="30" data-pr3-to="0"
data-pr2-prop="translateY" data-pr2-from="60" data-pr2-to="0"
data-pr1-prop="translateX" data-pr1-from="-200" data-pr1-to="0"></span>
<span class="tr-4 bottom triangle green"
data-pr1-prop="translateY" data-pr1-from="-90" data-pr1-to="0"
data-pr3-prop="rotate" data-pr3-from="-40" data-pr3-to="0"
data-pr2-prop="translateX" data-pr2-from="-40" data-pr2-to="0"></span>
<span class="tr-5 left triangle green"
data-pr3-prop="rotate" data-pr3-from="-30" data-pr3-to="0"
data-pr1-prop="translateX" data-pr1-from="-150" data-pr1-to="0"></span>
<span class="tr-6 triangle bottom blue"
data-pr2-prop="translateY" data-pr2-from="40" data-pr2-to="0"
data-pr3-prop="rotate" data-pr3-from="-20" data-pr3-to="0"
data-pr1-prop="translateX" data-pr1-from="-80" data-pr1-to="0"></span>
<span class="tr-7 triangle yellow"
data-pr3-prop="rotate" data-pr3-from="10" data-pr3-to="0"
data-pr1-prop="translateY" data-pr1-from="10" data-pr1-to="0"
data-pr2-prop="translateX" data-pr2-from="-40" data-pr2-to="0"></span>
<span class="tr-8 triangle yellow"
data-pr3-prop="rotate" data-pr3-from="-30" data-pr3-to="0"
data-pr1-prop="translateX" data-pr1-from="-60" data-pr1-to="0"></span>
<span class="tr-9 left triangle yellow"
data-pr3-prop="rotate" data-pr3-from="50" data-pr3-to="0"
data-pr1-prop="translateY" data-pr1-from="90" data-pr1-to="0"
data-pr2-prop="translateX" data-pr2-from="-110" data-pr2-to="0"></span>
<span class="tr-10 triangle white left"
data-pr3-prop="rotate" data-pr3-from="-20" data-pr3-to="0"
data-pr1-prop="translateX" data-pr1-from="-90" data-pr1-to="0"
data-pr2-prop="translateY" data-pr2-from="40" data-pr2-to="0"></span>
<span class="tr-11 triangle bottom red"
data-pr3-prop="rotate" data-pr3-from="-10" data-pr3-to="0"
data-pr1-prop="translateX" data-pr1-from="-80" data-pr1-to="0"></span>
<span class="tr-12 triangle left white"
data-pr3-prop="rotate" data-pr3-from="-50" data-pr3-to="0"
data-pr1-prop="translateX" data-pr1-from="-50" data-pr1-to="0"></span>
</div>
<h1>JSConf<span class="dot">.</span><span class="loc">Budapest</span></h1>
<h2>2015 May 14-15.</h2>
<div id="social">
<a class="twitter" target="_blank" href="https://twitter.com/jsconfbp">@jsconfbp on Twitter</a>
<a class="facebook" target="_blank" href="https://www.facebook.com/pages/JSConf-Budapest/383505985164517">JSConf Budapest on Facebook</a>
</div>
<div id="navigation">
<ul>
<li>
<a href="/#"><span class="circle"></span></a>
</li>
<li>
<a href="/#speakers">Speakers</a>
</li>
<li>
<a href="/#venue">Venue</a>
</li>
<li>
<a href="/#sponsors">Sponsors</a>
</li>
<li>
<a href="/diversity-sponsorship.html">Diversity Sponsorship</a>
</li>
<li>
<a href="/budapest-guide.html">Budapest Guide</a>
</li>
<li>
<a href="/about.html">About</a>
</li>
</ul>
</div>
<div class="bg-layer"></div>
</div>
<div id="content">
<p class="text-center text-big">
<b>JSConf Budapest</b> is a JSConf family member 2-day non-profit for-the-community by-the-community conference about JavaScript in Budapest, Hungary.
</p>
<h1 id="speakers">Speakers</h1>
<div class="speaker master-of-ceremony">
<div class="item">
<h4>Karolina Szczur</h4>
<p>
<a class="twitter" href="https://twitter.com/fox">@fox</a>
<br />
<a class="company" href="https://andyet.com/">&yet</a>
<br />
Master of Ceremony
</p>
<span class="image"><img src="/images/speaker-karolina.jpg" /></span>
</div>
</div>
<div class="topics">
<div class="topic" data-deeplink="mattpodwysocki">
<div class="meta">
<h4>Matthew Podwysocki</h4>
<p>
<a class="twitter" href="https://twitter.com/mattpodwysocki" target="_blank">@mattpodwysocki</a>
∙
<a class="company" target="_blank" href="http://www.microsoft.com/">Microsoft</a>
</p>
<h3>
Asynchronous JavaScript at Netflix
</h3>
</div>
<span class="image"><img src="/images/speaker-matthew.png" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/a8W5VVGO-jA?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
What’s does a mouse drag event have in common with an Array of numbers?
</p>
<p>
The answer to this question may surprise you: they are both collections.
</p>
<p>
This key insight holds the key to dramatically simplifying asynchronous programming in JavaScript. In this talk you will learn how you can use the familiar JavaScript Array methods to create surprisingly expressive asynchronous programs.
</p>
<p>
Using just a few functions, you will learn how to do the following:
</p>
<ul>
<li>Declaratively build complex events out of simple events (ex. drag n’ drop)</li>
<li>Coordinate and sequence multiple Ajax requests</li>
<li>Reactively update UI’s in response to data changes</li>
<li>Eliminate memory leaks caused by neglecting to unsubscribe from events</li>
<li>Gracefully propagate and handle asynchronous exception</li>
</ul>
<p>
In this talk we’ll be exploring the Reactive Extensions (RxJS) library (<a href="http://github.com/reactive-extensions/RxJS">http://github.com/reactive-extensions/RxJS</a>), which allows us to treat events as collections. You’ll learn about how Netflix uses Rx on the client and the server, allowing us to build end-to-end reactive systems. We’ll also contrast Rx with Promises, another popular approach to building asynchronous programs in JavaScript.
</p>
</div>
<div class="topic" data-deeplink="misslivirose">
<div class="meta">
<h4>Liv Erickson</h4>
<p>
<a class="twitter" href="https://twitter.com/misslivirose" target="_blank">@misslivirose</a>
∙
<a class="company" target="_blank" href="http://www.microsoft.com/">Microsoft</a>
</p>
<h3>
JavaScript for Virtual Reality
</h3>
</div>
<span class="image"><img src="/images/speaker-liv.png" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/DjC3axxkcL0?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Is 2015 the year of Virtual Reality? Experts suggest that VR will be a 5.2B industry within the next 2 years -
but right now, the majority of VR development tools require heavy game engines and specialized desktops.
</p>
<p>
In this talk, we'll discuss the emerging support from the VR and web communities for WebVR, a new API emerging
to support writing VR-enabled websites using HTML, CSS, and JavaScript. We'll be taking a look at existing applications
for virtual reality on the web, the benefits of WebVR, and how to get started with the available tools and
libraries for browser-based virtual reality written in JavaScript.
</p>
</div>
<div class="topic" data-deeplink="philnash">
<div class="meta">
<h4>Phil Nash</h4>
<p>
<a class="twitter" href="https://twitter.com/philnash" target="_blank">@philnash</a>
∙
<a class="company" target="_blank" href="https://www.twilio.com/">Twilio</a>
</p>
<h3>
The web is getting pushy
</h3>
</div>
<span class="image"><img src="/images/speaker-philnash.jpg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/4-WnlHhqcjU?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
The battle between native and web rages on. The browsers are fighting hard to tear down the benefits that native
developers have relied on since the inception of mobile platforms. Geolocation, sorted. Accelerometer, done.
Performance, we'll come back to that. But one of the greatest draws for native developers has been push notifications,
for the web,<br /> email alerts just don't cut it.
</p>
<p>
But now, new in browsers for 2015, is the Service Worker. Born out of the struggle to make the Appcache work
for offline capable sites it has also brought the advent of push notifications to the web. Through building
up an example application live we will see how to implement the Service Worker to not only serve up an app when
we're offline but enhance the online experience with push notifications.
</p>
<p>
The battle may continue, but the web is definitely pushing back.
</p>
</div>
<div class="topic" data-deeplink="boennemann">
<div class="meta">
<h4>Stephan Bönnemann</h4>
<p>
<a class="twitter" href="https://twitter.com/boennemann" target="_blank">@boennemann</a>
</p>
<h3>
We fail to follow SemVer – and why it needn’t matter
</h3>
</div>
<span class="image"><img src="/images/speaker-stephan.jpeg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/tc2UgG5L7WM?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
If extensive libraries and even the tiniest module followed SemVer strictly, dependency hell would be a thing of the past … but humans weren’t made to follow rules.
</p>
<p>
There are over 125.000 packages on npm today. By the time of this conference, at least another 10.000 will have been added. Using the right packages in your own modules and applications makes JavaScript the joy to develop it is today. But if even immensely popular libraries fail to properly declare breaking changes, how can we trust the over 50.000 strangers who developed all these modules?
Currently we can’t. Let me show you how to write confidence-inspiring modules by leaving package publishing up to the machines – instead of buggy humans.
</p>
</div>
<div class="topic" data-deeplink="juliancheal">
<div class="meta">
<h4>Julian Cheal</h4>
<p>
<a class="twitter" href="https://twitter.com/juliancheal" target="_blank">@juliancheal</a>
</p>
<h3>
Dancing with Robots
</h3>
</div>
<span class="image"><img src="/images/speaker-juliancheal.jpg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/zsJnsRGh8dE?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Web apps are great and everything, but imagine using JS to fly drones and make them dance to the sounds of dubstep!
Or to control disco lights and other robots! Sounds fun, right? In this talk, we will not only explore
how we can write code to make this possible, but it will also be full of exciting, interactive (and possibly dangerous ;) ) demos!
</p>
</div>
<div class="topic" data-deeplink="langziehohr">
<div class="meta">
<h4>Anika Lindtner</h4>
<p>
<a class="twitter" href="https://twitter.com/langziehohr" target="_blank">@langziehohr</a>
∙
<a class="company" target="_blank" href="https://travis-ci.org">Travis CI</a>
</p>
<h3>
How you can fix your community in one day
</h3>
</div>
<span class="image"><img src="/images/speaker-anika.jpg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/lDGiYPcg5qI?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
This talk will teach you a magic trick.
</p>
<p>
It will show you to stop our communities from breaking apart. Studies have shown that half the women who enter the technology field will over time leave. HALF! What’s happening? How did we get here? What can we do?
</p>
<p>
In my talk I will show you how we can fix the diversity problem, and why we should care. I'll tell you a true story about about role models, broken stereotypes - and cat gifs.
</p>
<p>
How to build community-driven initiatives that change our world. And the best part is: Everyone can do it. In one day.
</p>
</div>
<div class="topic" data-deeplink="aemkei">
<div class="meta">
<h4>Martin Kleppe</h4>
<p>
<a class="twitter" href="https://twitter.com/aemkei" target="_blank">@aemkei</a>
∙
<a class="company" target="_blank" href="http://www.ubilabs.net/">Ubilabs</a>
</p>
<h3>
Invisible Code
</h3>
</div>
<span class="image"><img src="/images/speaker-martin-kleppe.jpg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/T3xMyZH93i8?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
The JavaScript world has seen stunning demos in 1024 bytes, crazy hacks in 140 characters and esoteric sequences of only 6 different symbols.
This talk will push the limits even further and reveal, how to write "Invisible Code": Hidden programs that will execute with mind-bending magic.
</p>
</div>
<div class="topic" data-deeplink="andrestaltz">
<div class="meta">
<h4>
André Staltz
</h4>
<p>
<a class="twitter" href="https://twitter.com/andrestaltz" target="_blank">@andrestaltz</a>
∙
<a class="company" target="_blank" href="http://futurice.com/">Futurice</a>
</p>
<h3>
What if the user was a function?
</h3>
</div>
<span class="image"><img src="/images/speaker-andre.jpeg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/1zj7M1LnJV4?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Exploring MV*, user interfaces, unidirectional dataflow, reactive and functional programming
</p>
</div>
<div class="topic" data-deeplink="thespite">
<div class="meta">
<h4>
Jaume Sanchez Elias
</h4>
<p>
<a class="twitter" href="https://twitter.com/thespite" target="_blank">@thespite</a>
∙
<a class="company" target="_blank" href="http://www.b-reel.com/">B-Reel</a>
</p>
<h3>
Getting started with three.js and WebGL
</h3>
</div>
<span class="image"><img src="/images/speaker-thespite.png" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HwkGTYRopYg?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Get started coding real-time graphics in the browser with WebGL and three.js. Starting from the basic structure of a three.js web app, going through to the main elements of the API with several useful examples, will help you to get a foothold on the exciting world of 3D graphics, now on desktop and mobile. It's not required to have previous knowledge of 3D graphics, linear algebra or linear transforms.
</p>
</div>
<div class="topic" data-deeplink="mikaelbrevik">
<div class="meta">
<h4>
Mikael Brevik
</h4>
<p>
<a class="twitter" href="https://twitter.com/mikaelbrevik" target="_blank">@mikaelbrevik</a>
∙
<a class="company" target="_blank" href="http://www.bekk.no">Bekk Consulting</a>
</p>
<h3>
Functional UIs and Unidirectional Dataflow
</h3>
</div>
<span class="image"><img src="/images/speaker-brevik.png" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/JNMWi7Z0Ssg?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Let us bring back the days where we could write declarative representations of how we want our UI components to work. We should be able to read our code from top to bottom and intuitively know what the output will be, just like the good old HTML, but with the power of functional programming.
</p>
<p>
In this talk we'll explore bringing functional programming into views. Instead of moving logic to markup through weird DSLs we bring expressive views into the programming language. We'll see how to create a UI where we have composable, pure and referentially transparent components; components with no side-effects and predictable output. We couple this with immutable data and components with single responsibilities, and we can get a fast and smart way to build UIs with a unidirectional flow and a simpler static mental model.
</p>
</div>
<div class="topic" data-deeplink="sebarmeli">
<div class="meta">
<h4>
Sebastiano Armeli
</h4>
<p>
<a class="twitter" href="https://twitter.com/sebarmeli" target="_blank">@sebarmeli</a>
∙
<a class="company" target="_blank" href="https://www.spotify.com/">Spotify</a>
</p>
<h3>
Enforcing coding standards in a JS library
</h3>
</div>
<span class="image"><img src="/images/speaker-sebastiano.jpeg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/odZpA6yrOYY?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
This talk is around enforcing coding standards in your JS project. We’ll discuss, as a use case, one of the libraries we use at Spotify in order to show the importance of keeping standards in your codebase.
</p>
<p>
In this session we’ll cover a few tools and practices you might want to follow when you build a JS library.
</p>
</div>
<div class="topic" data-deeplink="substack">
<div class="meta">
<h4>James Halliday</h4>
<p>
<a class="twitter" href="https://twitter.com/substack" target="_blank">@substack</a>
∙
<a class="company" target="_blank" href="http://browserify.org/">Browserify</a>
</p>
<h3>
Anyone can edit
</h3>
</div>
<span class="image"><img src="/images/speaker-substack.jpeg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/GJhN4aop2_g?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Wikis are a powerful data structure for collaboratively editing
documents, but the data structures and social dynamics of wikis can be
applied to other kinds of applications outside the narrow domain of
encylopedic content.
</p>
</div>
<div class="topic" data-deeplink="supersole">
<div class="meta">
<h4>Soledad Penadés</h4>
<p>
<a class="twitter" href="https://twitter.com/supersole" target="_blank" >@supersole</a>
∙
<a class="company" target="_blank" href="https://www.mozilla.org/">Mozilla</a>
</p>
<h3>
The disconnected ensemble: scattered clouds, underground.
</h3>
</div>
<span class="image"><img src="/images/speaker-supersole.png" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/0FhVF5fMmAw?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Leave the routers and repeaters, the cabling and the splitters all behind.
Just bring those phones, and let's go underground.
Let's sit on a train and play music, left to our own devices, with our own devices.
</p>
</div>
<div class="topic" data-deeplink="sufianrhazi">
<div class="meta">
<h4>Sufian Rhazi</h4>
<p>
<a class="twitter" href="https://twitter.com/sufianrhazi" target="_blank">@sufianrhazi</a>
∙
<a class="company" target="_blank" href="https://www.etsy.com/">Etsy</a>
</p>
<h3>
Transform your codebase without breaking a sweat
</h3>
</div>
<span class="image"><img src="/images/speaker-sufian.jpeg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/X8WgkMbEAVQ?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Making sweeping changes across a codebase with confidence is difficult. How can you
know what will go wrong? Etsy's Front End Infrastructure team recently converted their
codebase from CSS to SCSS and is moving from inlined javascript to structured AMD modules.
In this talk, Sufian will teach you the pitfalls, strategies, and tools you can use to ensure that
large sweeping changes across your codebase will go smoothly.
</p>
</div>
<div class="topic" data-deeplink="indutny">
<div class="meta">
<h4>Fedor Indutny</h4>
<p>
<a class="twitter" href="https://twitter.com/indutny" target="_blank">@indutny</a>
∙
<a class="company" target="_blank" href="https://iojs.org/en/index.html">io.js</a>
</p>
<h3>
Diving into io.js C++ internals
</h3>
</div>
<span class="image"><img src="/images/speaker-fedor.png" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/2I_hWYHE6Vc?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Exploring the code and file structure of the internal C++ core bindings of io.js
</p>
</div>
<div class="topic" data-deeplink="pascalprecht">
<div class="meta">
<h4>Pascal Precht</h4>
<p>
<a class="twitter" href="https://twitter.com/pascalprecht" target="_blank">@pascalprecht</a>
∙
<a class="company" target="_blank" href="http://thoughtram.io/">Thoughtram</a>
</p>
<h3>
Dependency Injection for Future Generations
</h3>
</div>
<span class="image"><img src="/images/speaker-pascal.jpeg" /></span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/8c-qv9TisVE?list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm" frameborder="0" allowfullscreen></iframe>
<p>
Because dependency injection is cool and that it makes life of all us developers a looot easier,
we start off this talk by first understanding what dependency injection stands for and why it is
such a blessing in disguise...and also because first things first. Once that is clear we can dive
deeper into some existing implementations, to get a real feel of how it all works,
and finish by looking at how these implementations are used inside the new Angular 2,
by embracing the power of TypeScript annotations.
</p>
</div>
<p></div></p>
<h1 id="news">News</h1>
<div class="news-entry">
<small class="date" id="news20150429">29 April 2015</small>
<h3 id="schedule">Schedule!</h3>
<p>
We've put together the exact schedule for the two conference days!
</p>
<ul>
<li>
<a href="https://docs.google.com/spreadsheets/d/1lv8xO2K4Xl7cutVzntEyFVf5uafGKZntSldT6oSJxBo/edit?usp=sharing">Readable-Shareable Google Docs</a>
</li>
<li>
<a href="http://lanyrd.com/2015/jsconfbp/schedule/">Lanyrd schedule page</a>
</li>
<li>
<a href="https://www.google.com/calendar/ical/ustream.tv_2dnklajebeu140r8c58q7b6s10%40group.calendar.google.com/public/basic.ics">iCal</a>,
<a href="https://www.google.com/calendar/feeds/ustream.tv_2dnklajebeu140r8c58q7b6s10%40group.calendar.google.com/public/basic">XML</a>,
<a href="https://www.google.com/calendar/embed?src=ustream.tv_2dnklajebeu140r8c58q7b6s10%40group.calendar.google.com&ctz=Europe/Budapest">HTML Calendar</a>
</li>
</ul>
</div>
<p><a href="/news.html">News archive</a></p>
<h1 id="venue">Venue</h1>
<div class="decoration venue">
<img src="/images/urania-1.jpg" alt="Uránia Nemzeti Filmszínház" />
</div>
<p><a href="https://goo.gl/maps/FB2r9">Uránia Cinema in the middle of the city</a>, near the party-district. Designed by Henrik Schmahl in the late 1890's, the interior is
characterized by the ornamental motifs of the Venetian Gothic and Moor styles. The place is listed as the <a href="http://www.boredpanda.com/urania-national-film-theatre-budapest-hungary/">world's 3rd most beautiful cinema on
Bored Panda</a>, and many tech conferences were hosted here recently, like <strong>TEDx</strong>,
and Strech Conference, because of the unique atmosphere.</p>
<h1 id="party">Party</h1>
<div class="decoration party">
<img src="/images/corvinteto.jpg" alt="Corvintető" />
</div>
<p>Recommended by The New York Times, <a href="http://corvinteto.hu/en/">Corvintető</a> is a rooftop ruin bar and a modern, buzzing underground dance club above
Blaha Lujza tér in Budapest, Hungary. We invite every attendee and speaker, as our guest, for a party above the city on the first day!</p>
<h1 id="sponsors">Sponsors</h1>
<p>
We're currently looking for sponsors, who help us make this conference experience awesome.
<a href="mailto:[email protected]">Contact us</a> if you're interested in sponsorship opportunities.
</p>
<div class="sponsor-list">
<a href="http://www.toptal.com/">
<img src="/images/toptal.png" class="tier2" />
</a>
<a href="https://www.doclerholding.hu/en">
<img src="/images/doclerlabs.png" class="tier2" />
</a>
<a href="http://www.microsoft.com/">
<img src="/images/microsoft.png" class="tier3" />
</a>
<a href="https://www.twilio.com/">
<img src="/images/twilio.png" class="tier3" />
</a>
<a href="https://travis-ci.org">
<img src="/images/travis-ci.png" class="tier3" />
</a>
<a href="https://www.spotify.com">
<img src="/images/spotify.png" class="tier3" />
</a>
<a href="https://www.etsy.com/">
<img src="/images/etsy.png" class="tier3" />
</a>
<a href="https://www.mozilla.org/">
<img src="/images/mozilla.png" class="tier3" />
</a>
<a href="http://futurice.com/">
<img src="/images/futurice.png" class="tier3" />
</a>
</div>
<h1 id="media-sponsors">Media Sponsors</h1>
<div class="sponsor-list">
<a href="http://www.smashingmagazine.com/">
<img src="/images/smashingmag.png" class="tier3" />
</a>
</div>
<h1 id="organized-by">Organized by</h1>
<div class="sponsor-list">
<a href="http://risingstack.com/">
<img src="/images/risingstack.png" class="tier3" />
</a>
<a href="http://ustream.tv/">
<img src="/images/ustream.png" class="tier3" />
</a>
</div>
</div>
<div id="footer">
JSConf Budapest welcomes everybody, and remember, be nice to each other
<div class="links">
<a href="/code-of-conduct.html">Code of Conduct</a>
<span class="pipe">|</span>
<a href="/about.html">About</a>
<span class="pipe">|</span>
<a href="https://twitter.com/jsconfbp">@jsconfbp</a>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<!-- DocPad Scripts + Our Own -->
<script defer="defer" src="scripts/all.min.js"></script>
<script>
// replace the sample tracking ID below with your Google Analytics Tracking ID
var googleUA = 'UA-58489830-1';
// replace XYZ.com with your domain, and add in any other domains that you’d like to track requests across
var googleDomainList = ['jsconfbp.com', 'ti.to'];
// no more replacements
(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', googleUA, 'auto', {'allowLinker': true});
ga('require', 'linker');
ga('linker:autoLink', googleDomainList);
ga('send', 'pageview');
</script>
</body>
</html>