This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
844 lines (825 loc) · 42.6 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>.NET/FRINGE/ - An atypical conference for open-source .NET developers.</title>
<meta name="description" content=".NET/FRINGE/ - An atypical conference for open-source .NET developers. April 12-14 2015, Portland, OR">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto:400,700">
<link rel="stylesheet" href="css/main.css">
<script src="js/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="splash">
<center>
<a href="/"><img src="img/vector/dotnetfringe-splash.png"/></a>
</center>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="mc_embed_signup">
<span class="tell-me-more">
<strong>TELL ME MORE</strong>
</span>
<form class="form-inline" action="http://dotnetfringe.us8.list-manage.com/subscribe/post?u=ba68ae915a1a06c6cb2302e3c&id=2ee142e90b" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate="">
<button type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn">GO</button>
<span class="input-container">
<input class="form-control" type="EMAIL" placeholder="Email Address" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</span>
</form>
</div>
</div>
</div>
<div class="row front-button-row">
<div class="col-md-2 col-sm-1 xs-hidden">
</div>
<div class="col-md-4 col-sm-5 col-xs-12">
<h3 class="front-button"><center><a href="schedule.html#schedule">VIEW SCHEDULE</a></center></h3>
</div>
<div class="col-md-4 col-sm-5 col-xs-12">
<h3 class="front-button"><center><a href="tickets.html#ticket-types">BUY A TICKET</a></center></h3>
</div>
<div class="col-md-2 col-sm-1 xs-hidden">
</div>
</div>
<div id="nav-wrapper">
<div id="nav" class="container">
<div class="row">
<div class="col-md-12">
<div class="fringe-nav">
<span>
<a href="index.html#what-is-net-fringe">WHAT IS .NET FRINGE?</a>
</span>
<span>
<a href="schedule.html#schedule">SCHEDULE</a>
</span>
<span>
<a href="index.html#speakers">SPEAKERS</a>
</span>
<span>
<a href="tickets.html#ticket-types">TICKETS</a>
</span>
<span>
<a href="index.html#info">INFO</a>
</span>
<span>
<a href="index.html#sponsors">SPONSORS</a>
</span>
<span>
<a href="index.html#team">TEAM</a>
</span>
<span>
<a href="geektrain.html#geektrain">GEEK TRAIN</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1 col-sm-10 col-sm-offset-1 col-content">
<h2><span><a name="what-is-net-fringe" href="#what-is-net-fringe">WHAT IS .NET FRINGE?</a></span></h2>
<p><strong>.NET Fringe</strong> is a new conference focused on .NET developers who are breaking the rules and pushing the boundaries. The .NET platform is more interesting today than it ever has been! The old Microsoft that was at odds with Open Source has been replaced with one that is actively contributing to OSS and hosts a huge number of important
projects on GitHub! The .NET OSS community has been collaborating and creating new, really exciting, interesting, and innovative projects which are changing the landscape. They are defining the future!</p>
<p>Come be a part of this fantastic gathering of open source .NET developers!!!</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2><span><a name="speakers" href="#speakers">SPEAKERS</a></span></h2>
</div>
</div>
<div class="row">
<div class="col-lg-offset-1 col-md-offset-1 col-lg-10 col-md-10">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-3">
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="speaker keynote">
<div class="speaker-image">
<a href="https://github.com/jbogard"><img src="img/speaker/jbogard.png" alt="Jimmy Bogard"></a>
</div>
<h2><a href="https://github.com/jbogard">Jimmy Bogard</a><br><small>KEYNOTE SPEAKER</small></h2>
<h3><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktqq/">How to Succeed in OSS Without Really Trying</a></small></h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/haacked"><img src="img/speaker/haacked.jpg" alt="@haacked"></a>
</div>
<h3><a href="https://github.com/haacked">Phil Haack</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxmr/">Social Coding</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/ammeep"><img src="img/speaker/amypalamountain.jpg" alt="@ammeep"></a>
</div>
<h3><a href="https://github.com/ammeep">Amy Palamountain</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktqz/">Space, Time and State</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/synhershko"><img src="img/speaker/synhershko.jpg" alt="@synhershko"></a>
</div>
<h3><a href="https://github.com/synhershko">Itamar Syn-Hershko</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwdw/">Lucene.Net: The resurrection</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://twitter.com/uxnoah"><img src="img/speaker/noahaddy.jpg" alt="@noahaddy"></a>
</div>
<h3><a href="https://twitter.com/uxnoah">Noah Addy</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrt/">Spice Up Your Apps</a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/shanselman"><img src="img/speaker/shanselman.png" alt="@shanselman"></a>
</div>
<h3><a href="https://github.com/shanselman">Scott Hanselman</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkzpk/">Oscillations in Open Source at Microsoft</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/glennblock"><img src="img/speaker/glennblock.jpg" alt="@glennblock"></a>
</div>
<h3><a href="https://github.com/glennblock">Glenn Block</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrd/">scriptcs, adventures in scripting</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/KathleenDollard"><img src="img/speaker/kathleendollard.jpg" alt="@KathleenDollard"></a>
</div>
<h3><a href="https://github.com/KathleenDollard">Kathleen Dollard</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwdy/">Your Code, Your Brain</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/Aaronontheweb"><img src="img/speaker/aaronontheweb.jpg" alt="@Aaronontheweb"></a>
</div>
<h3><a href="https://github.com/Aaronontheweb">Aaron Stannard</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrm/">Akka.NET: The Future of Distributed Programming in .NET</a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/serialseb"><img src="img/speaker/serialseb.jpg" alt="@serialseb"></a>
</div>
<h3><a href="https://github.com/serialseb">Sebastian Lambla</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrc/">OWIN, an update</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://ua.linkedin.com/pub/alena-dzenisenka/5a/903/447"><img src="img/speaker/alena-dzenisenka.png" alt="Alena Dzenisenka"></a>
</div>
<h3><a href="http://ua.linkedin.com/pub/alena-dzenisenka/5a/903/447">Alena Dzenisenka</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkttg/">Embracing Clouds: F#, MBrace & Azure</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/tjanczuk"><img src="img/speaker/tjanczuk.jpg" alt="@tjanczuk"></a>
</div>
<h3><a href="https://github.com/tjanczuk">Tomasz Janczuk</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwdr/">On the fringe of Node.js and .NET with Edge.js</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/jbevain"><img src="img/speaker/jbevain.png" alt="@jbevain"></a>
</div>
<h3><a href="https://github.com/jbevain">Jb Evain</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrk/">The most important file format</a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://twitter.com/LadyNaggaga"><img src="img/speaker/ladynaggaga.jpg" alt="@LadyNaggaga"></a>
</div>
<h3><a href="https://twitter.com/LadyNaggaga">Maria Naggaga</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxmf/">Legacy... What?</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/gmelnik"><img src="img/speaker/gmelnik.jpg" alt="@gmelnik"></a>
</div>
<h3><a href="https://github.com/gmelnik">Grigori Melnik</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwdx/">Development in the Open: A CQRS Journey</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/shiftkey"><img src="img/speaker/shiftkey.png" alt="@shiftkey"></a>
</div>
<h3><a href="https://github.com/shiftkey">Brendan Forster</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwdz/">The Joys of Being A Maintainer</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/jamesmontemagno"><img src="img/speaker/jamesmontemagno.jpg" alt="@jamesmontemagno"></a>
</div>
<h3><a href="https://github.com/jamesmontemagno">James Montemango</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrp/">Building C# Powered Robots Controlled by C# Mobile Apps</a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/lukebakken"><img src="img/speaker/lukebakken.jpg" alt="@lukebakken"></a>
</div>
<h3><a href="https://github.com/lukebakken">Luke Bakken</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktry/">Stewardship of the Open-Source RIAK .NET Client</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://www.linkedin.com/in/joshvaneikeren"><img src="img/speaker/jvaneikeren.jpg" alt="@jvaneikeren"></a>
</div>
<h3><a href="https://www.linkedin.com/in/joshvaneikeren">Josh van Eikeren</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwfb/">Chemical structure searching using Lucene.NET and Indigo</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://twitter.com/panesofglass"><img src="img/speaker/panesofglass.jpg" alt="@panesofglass"></a>
</div>
<h3><a href="https://twitter.com/panesofglass">Ryan Riley</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwfc/">Relax and let the HTTP Machine do the Work</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://twitter.com/ruby_gem"><img src="img/speaker/ruby_gem.jpg" alt="@ruby_gem"></a>
</div>
<h3><a href="https://twitter.com/ruby_gem">Gemma Cameron</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwdt/">DevOps: What's next?</a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/eddiegarmon"><img src="img/speaker/eddiegarmon.jpg" alt="@eddiegarmon"></a>
</div>
<h3><a href="https://github.com/eddiegarmon">Eddie Garmon</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwfd/">Bringing Tasks to NETMF via a Batmobile</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://www.github.com/adamralph"><img src="img/speaker/adamralph.png" alt="@adamralph"></a>
</div>
<h3><a href="https://www.github.com/adamralph">Adam Ralph</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkttb/">Nancy, the super duper happy OSS .NET project</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://twitter.com/darrel_miller"><img src="img/speaker/darrelmiller.jpg" alt="@darrel_miller"></a>
</div>
<h3><a href="https://twitter.com/darrel_miller">Darrel Miller</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkttc/">Tooling for the HTTP Uniform Interface</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://github.com/ferventcoder"><img src="img/speaker/ferventcoder.jpg" alt="@ferventcoder"></a>
</div>
<h3><a href="https://github.com/ferventcoder">Rob Reynolds</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxkq/">DevOps: Chocolatey Goodness</a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/avanderhoorn"><img src="img/speaker/avanderhoorn.jpg" alt="@avanderhoorn"></a>
</div>
<h3><a href="https://github.com/avanderhoorn">Anthony Vanderhorn</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkwff/">Modern Web Diagnostics with a Glimpse into ASP.NET</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://www.github.com/arielbh"><img src="img/speaker/arielbh.png" alt="@arielbh"></a>
</div>
<h3><a href="https://www.github.com/arielbh">Ariel Ben Horesh</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxmg/">Prism the Next Generation</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://github.com/brianlagunas"><img src="img/speaker/brianlagunas.jpg" alt="@brianlagunas"></a>
</div>
<h3><a href="https://github.com/brianlagunas">Brian Lagunas</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxmg/">Prism the Next Generation</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://github.com/jrusbatch"><img src="img/speaker/jrusbatch.png" alt="@jrusbatch"></a>
</div>
<h3><a href="https://github.com/jrusbatch">Justin Rusbatch</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxmm/">Embellishing APIs with Code Analyzers</a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://www.github.com/amirrajan"><img src="img/speaker/amirrajan.jpg" alt="@amirrajan"></a>
</div>
<h3><a href="https://www.github.com/amirrajan">Amir Rajan</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkttk/">C# going dynamic, Ruby style!</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://github.com/kenegozi"><img src="img/speaker/kenegozi.jpg" alt="@kenegozi"></a>
</div>
<h3><a href="https://github.com/kenegozi">Ken Egozi</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktth/">NotNet - what lies beyond the wall</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://twitter.com/dsplaisted"><img src="img/speaker/dsplaisted.jpg" alt="@dsplaisted"></a>
</div>
<h3><a href="https://twitter.com/dsplaisted">Daniel Plaisted</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkttm/">Serilog - The best logging library for .NET you've never heard of</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://github.com/jen20"><img src="img/speaker/jamesnugent.jpg" alt="@jen20"></a>
</div>
<h3><a href="https://github.com/jen20">James Nugent</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkttq/">Investigating the production-readiness of Mono via Event Store<a></small></h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://github.com/mat-mcloughlin"><img src="img/speaker/mat-mcloughlin.jpg" alt="@mat-mcloughlin"></a>
</div>
<h3><a href="https://github.com/mat-mcloughlin">Mat Mcloughlin</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxmp/">OmniSharp: .NET development in YOUR editor of choice</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="https://www.github.com/sethjuarez"><img src="img/speaker/sethjuarez.jpg" alt="@sethjuarez"></a>
</div>
<h3><a href="https://github.com/sethjuarez">Seth Juarez</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkxmq/">Simplifying Machine Learning with nuML</a></small></h4>
</div>
</div>
<div class="clearfix hidden-sm hidden-md hidden-lg visible-xs-block"></div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://twitter.com/robertfriberg"><img src="img/speaker/robertfriberg.jpg" alt="@robertfriberg"></a>
</div>
<h3><a href="https://twitter.com/robertfriberg">Robert Friberg</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdkttp/">DDD dead simple</a></small></h4>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://github.com/praeclarum"><img src="img/speaker/praeclarum.jpg" alt="@praeclarum"></a>
</div>
<h3><a href="https://github.com/praeclarum">Frank Kruger</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrr/">Functional GUI Apps</a></small></h4>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker">
<div class="speaker-image">
<a href="http://github.com/kangaroo"><img src="img/speaker/geoffnorton.png" alt="@kangaroo"></a>
</div>
<h3><a href="https://github.com/kangaroo">Geoff Norton</a></h3>
<h4><small><a href="http://lanyrd.com/2015/dotnetfringe/sdktrz/">Open Source Hacking the CoreCLR</a></small></h4>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2><span><a name="conversation" href="#conversation">A CONVERSATION</a></span></h2>
</div>
</div>
<!-- Convo 1 -->
<div class="row convo-left">
<div class="col-lg-offset-1 col-md-offset-1 col-lg-2 col-md-2 col-sm-3 col-xs-3">
<img src="img/vector/dotnetfringe-convo-1.svg" />
</div>
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-9">
<div class="convo-box"><span>Have you heard there's this new *different* .NET conf call Fringe?</span></div>
</div>
</div>
<!-- Convo 2 -->
<div class="row convo-right">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-9">
<div class="convo-box"><span>What? Isn't .NET dead? <br>I mean I remember I was excited about this ALT.NET thing<br> a while ago, but not sure what happened. <br>Node is the cool kid nowadays.</span></div>
</div>
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-3">
<img src="img/vector/dotnetfringe-convo-2.svg" />
</div>
</div>
<!-- Convo 1 -->
<div class="row convo-left">
<div class="col-lg-offset-1 col-md-offset-1 col-lg-2 col-md-2 col-sm-3 col-xs-3">
<img src="img/vector/dotnetfringe-convo-1.svg" />
</div>
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-9">
<div class="convo-box"><span>Dude, a lot has changed since the last time you checked! <br> <br>Did you know there are over 200,000 C# projects on Github? <br><br>Did you hear about the NuGet package manager which has over 30,000 projects?<br><br>Did you know Microsoft killed their JSON library and is now shipping JSON.NET?<br><br>Did you know Microsoft is building a new nextgen node-like .NET stack<br> which is completely OSS on Github (As in taking PRs) and works on Linux and Mac?</span></div>
</div>
</div>
<!-- Convo 2 -->
<br><br>
<div class="row convo-right">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-9">
<div class="convo-box"><span>Woah! I guess you are right. Things really have changed!</span></div>
</div>
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-3">
<img src="img/vector/dotnetfringe-convo-2.svg" />
</div>
</div>
<div class="row">
<div class="col-lg-offset-1 col-md-offset-1 col-lg-10 col-md-10">
<h2><span><a name="info" href="#info">INFO</a></span></h2>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12 col-content">
<h3>Venue</h3>
<p>This year's conference will be held at the beautiful historic <a href="http://www.bossanovaballroom.com/">Bossanova Ballroom</a> located at <a href="https://goo.gl/maps/8lDKU">722 East Burnside, Portland, Oregon</a>. The <strong>Bossanova Ballroom</strong> was built in 1909, and is one of the 9 remaining arcade buildings in Portland Oregon. </p><p>Bossanova Ballroom is <strong>ADA accessible</strong>, but there is not an elevator. If you are, or have someone that is, in a wheelchair please call <a href="tel:5032067630">503-206-7630</a> for our wheelchair accessibility options prior to event.</p>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6 col-content">
<a href="http://www.bossanovaballroom.com/gallery/"><img style="width: 100%;" src="img/info/bossanova.jpg"/></a>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 col-content">
<a href="http://www.bossanovaballroom.com/gallery/"><img style="width: 100%;" src="img/info/bossanova1.jpg"/></a>
</div>
</div>
<h3>Hotels</h3>
<p>If you're coming from out of town, consider staying at the stylish <a href="https://goo.gl/maps/k4Pxp">Jupiter Hotel</a> or the more budget friendly <a href="https://goo.gl/maps/8sq8c">Eastside Lodge</a> which are both within a block of the venue. If those are already booked, consider staying in one of the many hotels in the near-by <a href="https://www.google.com/search?q=hotels+near+downtown+portland&oq=hotels+near+down&aqs=chrome.1.69i57j0l5.3719j0j4&sourceid=chrome&es_sm=91&ie=UTF-8#safe=off&hotel_dates=2015-04-12%2C2015-04-14&tbm=lcl&q=hotels%20near%20lloyd%20district%20portland%20oregon">Lloyd District</a> or <a href="https://www.google.com/search?q=hotels+near+downtown+portland&oq=hotels+near+down&aqs=chrome.1.69i57j0l5.3719j0j4&sourceid=chrome&es_sm=91&ie=UTF-8#safe=off&hotel_dates=2015-04-12%2C2015-04-14&tbm=lcl&q=hotels+near+downtown+portland">Downtown Portland</a>.</p>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6 col-content">
<a href="https://goo.gl/maps/k4Pxp"><img style="width: 100%;" src="img/info/jupiter.jpg"/></a>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 col-content">
<a href="https://goo.gl/maps/8sq8c"><img style="width: 100%;" src="img/info/eastsidelodge.jpg"/></a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 col-content">
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-content">
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<h3>Map</h3>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d11181.468949129772!2d-122.658099!3d45.522815!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x141f7e26a4c1c73b!2sThe+Bossanova+Ballroom!5e0!3m2!1sen!2sus!4v1424123709984" width="600" height="450" frameborder="0" style="border:0"></iframe>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<h3>Twitter</h3>
<a class="twitter-timeline" href="https://twitter.com/dotnetfringe" data-widget-id="560358141158633472" data-chrome="noscrollbar">Tweets by @dotnetfringe</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2><span><a name="sponsors" href="#sponsors">SPONSORS</a></span></h2>
</div>
</div>
<div class="row">
<div class="col-lg-offset-1 col-md-offset-1 col-lg-10 col-md-10">
<h3>Become a Sponsor!</h3>
<p>If you'd like to sponsor .NET Fringe, please send an email to <a href="mailto:[email protected]?subject=Sponsorship Info">[email protected]</a> for more info.
<style>
.sponsor-image img {
width: 100%;
vertical-align: middle;
}
.sponsor-image {
white-space: nowrap;
text-align: center; margin: 1em 0;
}
.image-spacer{
display: inline-block;
height: 100%;
vertical-align: middle;
}
#splunk, #elastic {
margin-bottom: 80px;
}
#github, #microsoft,
#infragistics, #thoughtworks, #octopusdeploy {
margin-bottom: 80px;
}
#jetbrains, #everymove, #ozcode, #puppet, #bridgedotnet, myget {
margin-bottom: 80px;
/**/
}
</style>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="sponsor-image" id="splunk">
<span class="image-spacer"></span>
<a href="http://www.splunk.com"><img src="img/sponsor/splunk.png" alt="Splunk"></a>
<center><h3><a href="http://www.splunk.com">Listen to your data</a></h3></center>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="sponsor-image" id="elastic">
<span class="image-spacer"></span>
<a href="http://www.elastic.co"><img src="img/sponsor/elastic.png" alt="Elastic"></a>
<center><h3><a href="http://www.elastic.co">Make Sense of Your Data</a></h3></center>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="sponsor-image" id="github">
<a href="http://github.com"><img src="img/sponsor/github.png" alt="GitHub"></a>
<center><h4><a href="http://github.com">Build software better, together.</a></h4></center>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="sponsor-image" id="microsoft">
<a href="http://microsoft.com"><img src="img/sponsor/microsoft.png" alt="GitHub"></a>
<center><h4><a href="http://microsoft.com">Technology has the power to unite us.</a></h4></center>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="sponsor-image" id="infragistics">
<a href="http://www.infragistics.com"><img src="img/sponsor/infragistics-horizontal.png" alt="Infragistics"></a>
<center><h4><a href="http://www.infragistics.com">Great Apps Happen By Design</a></h4></center>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="sponsor-image" id="thoughtworks">
<a href="http://www.thoughtworks.com"><img src="img/sponsor/thoughtworks.png" alt="ThoughtWorks"></a>
<center><h4><a href="http://www.thoughtworks.com">Knowledge should be for all, not just for the few</a></h4></center>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="sponsor-image" id="octopusdeploy">
<a href="http://www.octopusdeploy.com"><img src="img/sponsor/octopusdeploy.png" alt="Octopus Deploy"></a>
<center><h4><a href="http://www.octopusdeploy.com">Automated deployment for .NET</a></h4></center>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="sponsor-image" id="jetbrains">
<a href="http://jetbrains.com"><img src="img/sponsor/jetbrains.png" alt="JetBrains"></a>
<center><h4><a href="http://jetbrains.com">Develop with pleasure!</a></h4></center>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="sponsor-image" id="everymove">
<a href="http://everymove.org"><img src="img/sponsor/everymove.png" alt="EveryMove"></a>
<center><h4><a href="http://everymove.org">Motivation is contagious</a></h4></center>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="sponsor-image" id="ozcode">
<a href="http://oz-code.com"><img src="img/sponsor/ozcode.png" alt="OzCode"></a>
<center><h4><a href="http://oz-code.com">Your Road to Magical Debugging</a></h4></center>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="sponsor-image" id="puppet">
<a href="https://puppetlabs.com/"><img src="img/sponsor/puppet.png" alt="Puppet Labs"></a>
<center><h4><a href="https://puppetlabs.com/">Automation Makes IT Better</a></h4></center>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="sponsor-image" id="bridgedotnet">
<a href="http://bridge.net/"><img style="max-height: 85px;" src="img/sponsor/bridgedotnet.png" alt="Bridge.NET"></a>
<center><h4><a href="http://bridge.net/">C# to JavaScript Compiler</a></h4></center>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="sponsor-image">
<a href="mailto:[email protected]?subject=Sponsorship Info"><img style="width:70%; left: 15%; top: 15%; max-height: 64px;" src="img/sponsor/unknown.svg" alt="Become a sponsor!"></a>
<center><h4><a href="mailto:[email protected]?subject=Sponsorship Info">Your Company?<br><small>Become a sponsor!</small></a></h4></center>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2><span><a name="supporters" href="#supporters">COMMUNITY SUPPORTERS</a></span></h2>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="sponsor-image" id="myget">
<a href="http://myget.org/"><img style="max-height: 85px;" src="img/sponsor/myget.png" alt="MyGet.Org"></a>
<center><h4><a href="http://myget.org/">MyGet provides hosted NuGet, npm and Bower feeds</a></h4></center>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2><span><a name="team" href="#team">TEAM</a></span></h2>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1 col-sm-10 col-sm-offset-1 col-content">
<h3>Ask a Question!</h3>
<p>Want to chat up the organizers? Feel free to email us at <a href="mailto:[email protected]?subject=General Question">[email protected]</a> with any questions, ideas, comments, rants, or just to show us with praise.
<p>If you're interested in volunteering, we could sure use some help (and we'll give you a free ticket in exchange!). Send an email to <a href="mailto:[email protected]?subject=Become A Volunteer">[email protected]</a> to get the conversation started.
</div>
</div>
<div class="row">
<div class="col-lg-offset-1 col-md-offset-1 col-lg-10 col-md-10">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/thoward.jpg" alt="@thoward">
</div>
<h3><a href="https://github.com/thoward">@thoward</a></h3>
<h4><small>Troy Howard</small></h4>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/glennblock.jpg" alt="@glennblock">
</div>
<h3><a href="https://github.com/glennblock">@glennblock</a></h3>
<h4><small>Glenn Block</small></h4>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/irisclasson.jpg" alt="@irisclasson">
</div>
<h3><a href="https://github.com/irisclasson">@irisclasson</a></h3>
<h4><small>Iris Classon</small></h4>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/synhershko.jpg" alt="@synhershko">
</div>
<h3><a href="https://github.com/synhershko">@synhershko</a></h3>
<h4><small>Itamar Syn-Hershko</small></h4>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/adronhall.jpg" alt="@adron">
</div>
<h3><a href="https://github.com/adron">@adron</a></h3>
<h4><small>Adron Hall</small></h4>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/haacked.jpg" alt="@haacked">
</div>
<h3><a href="https://github.com/haacked">@haacked</a></h3>
<h4><small>Phil Haack</small></h4>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/shanselman.png" alt="@shanselman">
</div>
<h3><a href="https://github.com/shanselman">@shanselman</a></h3>
<h4><small>Scott Hanselman</small></h4>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-6">
<div class="speaker-image">
<img src="img/speaker/unknown1.svg" alt="Become a Volunteer!">
</div>
<h3><a href="mailto:[email protected]?subject=Become A Volunteer">You?</a></h3>
<h4><small>Become a Volunteer!</small></h4>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-offset-1 col-md-offset-1 col-lg-10 col-md-10 col-sm-12 col-xs-12">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<p>© 2015 .NET Fringe.
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<p><a href="https://twitter.com/dotnetfringe">Twitter</a> · <a href="https://github.com/dotnetfringe">Github</a> · <a href="mailto:[email protected]?subject=General Inquiry">Email</a> · <a href="http://confcodeofconduct.com/">Code of Conduct</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- <script src="js/main.js"></script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type='text/javascript'>
$(window).load(function(){
$(function() {
$('#nav-wrapper').height($("#nav").height());
$('#nav').affix({
offset: { top: $('#nav').offset().top }
});
});
});
</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-51709103-1', 'dotnetfringe.org');
ga('send', 'pageview');
</script>
</body>
</html>