Skip to content
Navigation Menu
{{ message }}
forked from adz624/MOPCON
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsession.php.html
More file actions
1401 lines (1380 loc) · 87 KB
/
Copy pathsession.php.html
File metadata and controls
1401 lines (1380 loc) · 87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="zh-tw">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/icomoon.css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<title>議程表 | 行動科技年會 | MOPCON 2014 | Mobile / Open / Platform Conference</title>
<meta content="議程表 | 行動科技年會 | MOPCON 2014 | Mobile / Open / Platform Conference" property="og:title">
<meta content="http://mopcon.org/2014" property="og:url">
<meta content="Mobile Open Platform Conference (MOPCON) 行動科技年會是全台第一個針對移動應用開發的技術研討會,希望大家共同來參與。" property="og:description">
<meta content="http://mopcon.org/img/snapshot-2014-v2.png" property="og:image">
<meta content="website" property="og:type">
<meta content="行動科技年會 | MOPCON 2014 | Mobile / Open / Platform Conference" property="og:site_name">
</head>
<body>
<menu class="main-menu">
<div class="container">
<a href="index.html" class="logo desktop-only"></a>
<ul>
<!-- <li class="menu-link"><a href="index.php"><span>首頁</span></a></li> -->
<!-- li class="menu-link"><a href="news.php"><span>公告</span></a></li -->
<!-- <li class="menu-link"><a href="cfp.php"><span>徵稿</span></a></li> -->
<!-- <li class="menu-link"><a href="http://mopcon.kktix.cc/events/2014-registration"><span>報名</span></a></li> -->
<li class="menu-link"><a href="session.php.html"><span>議程</span></a></li>
<li class="menu-link"><a href="sponsor.php.html"><span>贊助</span></a></li>
<li class="menu-link"><a href="speakers.php.html"><span>講者</span></a></li>
<li class="menu-link"><a href="media.php.html"><span>媒體</span></a></li>
<li class="menu-link"><a href="location.php.html"><span>交通</span></a></li>
<li class="menu-link"><a href="https://kiwiirc.com/client/irc.freenode.net/mopcon" target="_blank"><span>聊天室</span></a></li>
<!-- <li class="menu-link"><a href="#"><span>Apps</span></a></li> -->
<li class="menu-link"><a href="community.php.html"><span>社群</span></a></li>
<!--<li class="menu-link"><a href="/history.html"><span>歷年</span></a></li>-->
<!-- <li class="menu-link"><a href="#"><span>其他</span></a></li> -->
</ul>
<div class="mobile-menu mobile-only">
<a class="square-btn showmenu mobile-only">
<span></span>
<span></span>
<span></span>
</a>
<h1 class="mobile-only">MOPCON 2014</h1>
</div>
</div>
</menu>
<div class="main">
<div class="container">
<!-- layout start -->
<article class="content talk-☴">
<div class="page-title">
<h1>議程表</h1>
</div>
<div class="waring">
大會 IRC 頻道在 irc.freenode.net #mopcon<br>
也可以使用<a href="https://kiwiirc.com/client/irc.freenode.net/mopcon" target="_blank">網路聊天界面</a>
</div>
<div class="row date-link">
<a href="session.php.html#day-2">連至第二天議程 10/26 →</a>
</div>
<a name="day-1"></a>
<div class="date">
2014/10/25</div>
<time>08:00~08:45</time>
<div class="row">
<a name="2014/10/25_08:00~08:45_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>參加者報到</div>
<div style="color:#eee"></div>
</div>
</div>
<time>08:45~09:00</time>
<div class="row">
<a name="2014/10/25_08:45~09:00_全部"></a>
<article class="area-all" href="#inline_content">
<div class="place">
<span class="btn btn-blue">全部</span>
<span class="btn" style="background-color:orange">活動</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/sponsor/asuscloud.png">
</figure>
<h3>Asus Cloud</h3>
<h2><a href="session.php.html#">ASUS Cloud 贊助抽獎活動</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">由 ASUS Cloud 提供 ZenFone 手機為抽獎贈品喔!</p>
<p class="title">講者簡介</p>
<p class="introduce">華碩雲端為華碩發展雲端服務的經營團隊,以資料為核心推動整合性創新,解決大量數位資料的管理並串聯軟硬體資源,滿足使用者從生產力到娛樂的雲端需求。華碩雲端於全球擁有諸多據點資料中心,並於雲端平台設置嚴謹的資安防護技術,為使用者及企業打造安全無虞的雲端空間;同時,華碩亦開放雲端平台資源,積極與各領域夥伴合作,加速產業整合與創新,豐富雲端生態圈的應用服務。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>09:00~09:40</time>
<div class="row">
<a name="2014/10/25_09:00~09:40_全部"></a>
<article class="area-all" href="#inline_content">
<div class="place">
<span class="btn btn-blue">全部</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/peterwu.jpg">
</figure>
<h3>吳漢章 (Peter Wu)</h3>
<h2><a href="session.php.html#">ASUS Cloud & the API enabled solutions</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">Introducing the ASUS Cloud Platform
–A software-defined environment for data-driven smart applications
–Major functions enabled by APIs</p>
<p class="title">講者簡介</p>
<p class="introduce">2008 年加入了華碩電腦集團,擔任華碩雲端股份有限公司CEO 一職,肩負著華碩發展雲端產業及技術的使命,將雲端服務帶到全球的消費及商業市場,並建構健康、教育、家庭等領域生態系統,逐步帶領著華碩雲端成為雲端領域的領導品牌。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>09:40~09:50</time>
<div class="row">
<a name="2014/10/25_09:40~09:50_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>09:50~10:30</time>
<div class="row">
<a name="2014/10/25_09:50~10:30_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;margin-top:-18px;" src="images/speakers/KKBOX_drake_guan.jpg">
</figure>
<h3>Drake (官順暉)</h3>
<h2><a href="session.php.html#">How does Netflix get built and triumphed?</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">這個世代,還有多少人會每天死守著第四台看?又有多少人在通勤時直接透過手機或平板看戲劇?
傳統電視台壟斷的電視頻道,與新起的影音串流服務,鹿死誰手,熟勝熟敗,我們還不知道。
但是我們可以從技術的角度,來抽絲剝繭像 Netflix 這樣的影音服務是怎麼建造起來的。
這是我想與你們分享並討論的議題~</p>
<p class="title">講者簡介</p>
<p class="introduce">於電腦動畫產業服務期間,組織了一隻台灣動畫產業的研發團隊,發表了國際論文,參與制作了得獎動畫,成了 Pixar 軟體與技術的專家。還意外自經濟部獲頒青年創新希望獎,更不小心參與了 PyCon Taiwan 籌備委員之一。今年起,投入影音串流這個新戰場,以提供台灣一個值得擁有的影音串流服務為目標邁進。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_09:50~10:30_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/ericsk.jpg">
</figure>
<h3>上官林傑 (ericsk)</h3>
<h2><a href="session.php.html#">使用 Microsoft Azure 雲端平臺規劃及建置高延展、高可靠性的應用系統</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">Microsoft Azure 是一個完全開放且彈性的雲端平台,支援多種程式語言及作業系統;此外也提供像是儲存體、SQL資料庫、DocumentDB (noSQL)、快取服務、媒體服務、CDN、巨量資料以及機器學習等服務元件,協助您打造具有高延展性、高可靠性的應用程式架構。這堂課將會介紹數個使用Microsoft Azure架構系統的模式及實作方式,除了幫助您瞭解Microsoft Azure平台之外,也能學習如何打造適合雲端平台的應用程式。</p>
<p class="title">講者簡介</p>
<p class="introduce">網路代號 ericsk,曾在中華電信從事網站以及 App 的開發工作,亦曾組織 Taipei GTUG 社群,並且積極參與台灣各種社群,熱愛軟體開發技術,特別在 web、cloud、mobile 領域有所涉獵,現任台灣微軟的應用技術開發經理 (Technical Evangelist),持續與開發者社群互動。
講題標語: 快速、可靠、穩定的應用程式</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_09:50~10:30_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/hsu.jpg">
</figure>
<h3>徐德航</h3>
<h2><a href="session.php.html#">面對贏者全拿的APP市場開發者該怎麼成功 - 以 APP 手機遊戲市場為例</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">隨著智慧手機大行其道,App市場猶如火山噴發一般的快速成長。這個App市場是贏者全拿敗者一無所有,在這個競爭異常激烈的市場開發商該如何成功?從App市場中最賺錢丶最激烈的手機遊戲市場分析應該能給各位一些啟發。</p>
<p class="title">講者簡介</p>
<p class="introduce">愛就贏總經理徐德航在遊戲業界資歷十年,曾任上海遊戲新幹線市場部主任、遊戲新幹線香港辦公室主任、智冠台北研發中心企劃部主任與智冠市場投資處主任。在長期接觸台灣獨立遊戲開發者後發現,遊戲大賣很難提前預測,擴散效應必須掌握天時地利與人和很難複製。因此愛就贏綜合創業育成、共同開發、遊戲營運、發行平台等,與上架的公司專案合作,共同創作遊戲,成為遊戲開發商的共同開發夥伴及產品共同擁有者</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>10:30~10:40</time>
<div class="row">
<a name="2014/10/25_10:30~10:40_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>10:40~11:20</time>
<div class="row">
<a name="2014/10/25_10:40~11:20_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/generic_speaker.png">
</figure>
<h3>Tzu-ping Chung</h3>
<h2><a href="session.php.html#">Make Your Next App 🎉👏😄💘👍</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">Does your app contain text? I bet it does. But can it handle them correctly? I bet it can’t! Your app is not handling text correctly. “Wait,” I hear you say, “our app is fine. It uses Unicode.” Right. Except you don’t really understand Unicode, and as a consequence your code doesn’t really handle it. Here I’ll tell you what Unicode really is, and how you really should handle it in your next app. Correctly.</p>
<p class="title">講者簡介</p>
<p class="introduce">TP is a professional software engineer who builds his career around open source software, and enjoys committing back his little efforts to help make the community better. He writes C++ for a living, builds MacDown, an open source Markdown editor, with Objective-C, and hosts many websites built with Python.</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_10:40~11:20_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/Atsushi.jpg">
</figure>
<h3>Atsushi Enomoto</h3>
<h2><a href="session.php.html#">how Xamarin.Android works</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">This session talks about how Xamarin integrates Mono, the cross platform .NET runtime, and the SDK with Android (& iOS) platform.</p>
<p class="title">講者簡介</p>
<p class="introduce">Japanese Xamarin.Android developer, and the Mono project developer who mostly worked on class libraries.</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_10:40~11:20_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/JamesTien.jpg">
</figure>
<h3>James Tien</h3>
<h2><a href="session.php.html#">Building Mobile Apps on AWS</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">AWS makes development of cross-platform mobile applications easy. With highly-scalable cloud services, mobile developers can build powerful cloud-backed mobile apps with just a few lines of code. In this session, you will learn how to connect directly to these services and how to build a powerful back end for your Android and iOS applications. We will also share some best practices from other successful apps such as Flipboard and Supercell so you can focus on differentiating your app functionality whilst leaving the 'table stakes' with no differentiated value to the cloud.</p>
<p class="title">講者簡介</p>
<p class="introduce">James Tien has been responsible for business development activities in Taiwan for the past 2.5 years since he joined AWS in May 2012. He helps enterprises of all sizes, SMBs and startups to leverage the benefits of the AWS cloud to accelerate their businesses. He enjoys seeing innovations enabled by the cloud. He enjoys seeing Taiwanese companies scale and compete globally.
James Tien has a degree in Electrical Engineering from University of Victoria, Canada. Now calling Singapore home, he has spent much of his time living in different places such as Australia, Canada, and the USA. He has a lot of passion for technologies and music. Spotify is one of his favorite apps to date.</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>11:20~11:30</time>
<div class="row">
<a name="2014/10/25_11:20~11:30_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>11:30~12:10</time>
<div class="row">
<a name="2014/10/25_11:30~12:10_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/kewang.jpg">
</figure>
<h3>kewang</h3>
<h2><a href="session.php.html#">How to build a scalable SNS via Polling & Push</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">這場 Talk 將要分享如何使用 RESTful API,搭配 Polling 及 Push 這兩種方法來建置一套可以即時更新的系統,大綱如下:
Variety of sync mechanisms:當前後端要即時更新時,通常會使用WebSocket,Polling...等方式,這邊會簡單介紹各種同步機制。
Polling & Push:當手機在使用Polling與後端同步時,可以配合Push讓資料同步更為即時。
RESTful API Design:分享常見的RESTful API設計方式。
API Blueprint:分享前後端如何撰寫簡單的Markdown就能成功串接API。</p>
<p class="title">講者簡介</p>
<p class="introduce">研發替代役役畢之後,到了三竹資訊專職Android App的開發,2013年公司因為要成立雲端部門開發產品,就被一腳踢到雲上面。 現在則是在雲上面專職於後端開發,包括NoSQL以及AP的連接,AP以及前端的RESTful API串接。 喜歡玩各種先進的前後端技術,包括Java、Node.js、AngularJS......等。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_11:30~12:10_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/excusemejoe-mopcon.jpg">
</figure>
<h3>Joe</h3>
<h2><a href="session.php.html#">講個秘訣之:離開新手村後也可以順便聽一下的程式「設計」指南</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">圖書館、書店、網路上有很多探討程式設計的資源可以取得,但是由於考試不會考,所以最後每年還是有不少擅長撰寫 Bug 的同學畢業且投入職場。 本演講將由現實世界中「設計心理學」的觀點切入,邀請路過的朋友重新看待程式「設計」這一回事,期待能透過簡單的反思提升「設計」的水準,並且開闊視野 - 試著去了解使用者在想什麼。
參考書目:The Design of Everyday Things (<= 千真萬確,設計人在看的書)
聽眾群:建議有兩年以上程式設計經驗</p>
<p class="title">講者簡介</p>
<p class="introduce">魯蛇喬,後端工程師,現為居住於台南的創業連續失敗家。每個月與 MOSUT 社群舉辦 Tainan.py 聚會推廣另其醉心而優雅的程式語言: Python。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_11:30~12:10_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/keynes.jpg">
</figure>
<h3>鄭鎧尹 (Keynes)</h3>
<h2><a href="session.php.html#">Think in Internet</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">這個演講裡面將會跟大家分享我們是怎麼思考互聯網產業的本質. 在創建 iKala.tv 以及 LIVEhouse.in 的這三年裡面, 我們透過實踐, 理解了互聯網思考的本質, 也深深瞭解到台灣對於互聯網產業的認識是非常不足的. 因此, 我們在 MMDays 上也撰寫了一系列的文章來宣揚互聯網思考的重要性.</p>
<p class="title">講者簡介</p>
<p class="introduce">鄭鎧尹博士為 LIVEhouse.in/iKala 共同創辦人, 並擔任產品設計總監一職,負責產品設計及產品策略。LIVEhouse.in 為第一個國產直播平台;iKala為國內最大唱歌社群。其研究領域為人機互動介面設計, 並曾於日本最頂尖的 UI 研究所 JST ERATO 及微軟亞洲研究院從事研究。其在閒暇時間喜愛撰寫科技或設計相關文章, 在 MMDays 或 UIUI 粉絲團上可追蹤到他的動態。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>12:10~13:00</time>
<div class="row">
<a name="2014/10/25_12:10~13:00_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>用餐時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>13:00~13:15</time>
<div class="row">
<a name="2014/10/25_13:00~13:15_全部"></a>
<article class="area-all" href="#inline_content">
<div class="place">
<span class="btn btn-blue">全部</span>
<span class="btn" style="background-color:orange">活動</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/index-logo.svg">
</figure>
<h3>微軟公司與華碩雲端</h3>
<h2><a href="session.php.html#">議程有獎問答</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">由贊助商 ASUS Cloud 及 Microsoft 提供 ZenFone 及 Lumia 1520 手機為抽獎贈品喔!</p>
<p class="title">講者簡介</p>
<p class="introduce">微軟公司 (那斯達克證交所上市代號︰MSFT)成立於1975年,微軟是全球科技產業的領航者,提供軟體、裝置、及資訊服務解決方案,幫助人們以及企業實現他們最大的潛能。身為政府、學校與企業最值得信賴的夥伴,微軟自1989年於台灣深耕以來,始終致力於幫助台灣提升創新力、競爭力以及促進經濟繁榮- 共同來亮點台灣!華碩雲端為華碩發展雲端服務的經營團隊,以資料為核心推動整合性創新,解決大量數位資料的管理並串聯軟硬體資源,滿足使用者從生產力到娛樂的雲端需求。華碩雲端於全球擁有諸多據點資料中心,並於雲端平台設置嚴謹的資安防護技術,為使用者及企業打造安全無虞的雲端空間;同時,華碩亦開放雲端平台資源,積極與各領域夥伴合作,加速產業整合與創新,豐富雲端生態圈的應用服務。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>13:15~13:55</time>
<div class="row">
<a name="2014/10/25_13:15~13:55_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/PeterTseng.jpg">
</figure>
<h3>Peter Tseng</h3>
<h2><a href="session.php.html#">群眾資料能拿來做什麼?淺談Machine Learning技術於Smart Mobile Computing的應用</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">要想做出好產品,提案者與開發者高效的溝通與配合是必須的。若提案者懂技術,則較能預估潛在風險與困難點,方案的可行性與成功率也會較高。此次的內容會從Mobile Computing的環境與計算上的限制切入主題,介紹較適用於此的Machine Learning技術,其中以計算快速、設備要求較低的SVM in Primal form及其應用案例為主軸,期能為大家開啟Smart Mobile Computing的大門。</p>
<p class="title">講者簡介</p>
<p class="introduce">大學、研究所、博士班全都在台灣科技大學資訊工程系,主修Machine Learning和Data Mining,但博班念了2年就當兵去了。現職為Newegg Taiwan, Inc.的小小軟體工程師,主要負責的工作內容為Adaptive Product Matching。喜愛打羽球,程度(自認為是乙組的)中上。小時候愛看卡通,尤其是GUNDAM 系列,老想著要把打球專用的ZERO system做出來,好讓自己能在打球時稱王(笑)</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_13:15~13:55_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/sponsor/yahoo.png">
</figure>
<h3>Yahoo</h3>
<h2><a href="session.php.html#">Rational, Emotional, and Meaningful Design</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">How Might We design for R.E.M in the world of mobile apps?</p>
<p class="title">講者簡介</p>
<p class="introduce">Yahoo致力於讓全球網友的每日造訪都充滿驚喜和愉悅。透過各種行動裝置,我們提供深入且完整的個人數位內容使用經驗,讓全球網友隨時與其最相關的人事物連結在一起。同時,Yahoo有效連結廣告主與消費者關係,以創造絕佳廣告價值。Yahoo總部位於美國加州森尼維耳市,並於美洲、亞太、歐洲、中東與非洲區都設有辦公據點。在台灣,Yahoo 以Yahoo奇摩為品牌,提供包括商城、搜尋、新聞、知識+、電子信箱、購物中心、拍賣、股市、電影、運動等多項服務。除服務廣大網友及廣告主,Yahoo奇摩也為企業提供電子商務解決方案。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_13:15~13:55_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/hzh.jpg">
</figure>
<h3>何志恒</h3>
<h2><a href="session.php.html#">制霸行動戰場,完美跨平台行動開發</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">IBM Worklight 為一跨平台行動化解決方案,開發人員只需寫一套 code 即可同時部署到 iOS、Android、Windows 等平台上,幫助您大幅節省開發時間!
另外 Worklight 提供更完整開發管理架構,包含管理、整合、安全等進化功能!</p>
<p class="title">講者簡介</p>
<p class="introduce">IBM全球行動企業方案首席架構師</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>13:55~14:20</time>
<div class="row">
<a name="2014/10/25_13:55~14:20_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>14:20~15:00</time>
<div class="row">
<a name="2014/10/25_14:20~15:00_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/ben.png">
</figure>
<h3>Ben Lue</h3>
<h2><a href="session.php.html#">Hack & Go !</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">隨著應用軟體走上雲端,在雲端開發程式也將成為事實。
目前的 API/BaaS 服務讓我們初窺未來的可能性,但真正讓開發者瘋狂的 API
服務才正要上場。</p>
<p class="title">講者簡介</p>
<p class="introduce">獨立軟體開發者。旅美期間曾在IBM Almaden Research Center, Cognos Inc., NetClue Corp.等公司工作。所創立的 NetClue Corp.為多家公司的收購目標。返台後喜歡自造軟體,目前為 COIMOTION API 服務的總架構師。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_14:20~15:00_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;margin-top:-10px;" src="images/speakers/KKBOX_VincentChen.jpg">
</figure>
<h3>Vincent Chen</h3>
<h2><a href="session.php.html#">一個意外、兩個現實、三個心得~談『猜猜巧克力』的開發旅程</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">『猜猜巧克力』是一款益智類型遊戲,在iOS、Android、Facebook平台上都可以玩。2014年初上線至今用戶數量累積超過250萬,並前後獲選「Google PLAY」 2014上半年最佳益智類遊戲及經濟部主辦「APP創意大募集」Top100,本次由開發團隊的製作人來分享遊戲開發及推廣經驗。</p>
<p class="title">講者簡介</p>
<p class="introduce">「KKBOX」旗下遊戲開發團隊「KKPLAY」負責人,有10年唱片產業及10年遊戲產業經驗。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_14:20~15:00_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/sponsor/synology_dark_bg.png">
</figure>
<h3>群暉科技</h3>
<h2><a href="session.php.html#">愛上雲端: 如何建立便捷私有雲</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">本議程將介紹 Synology 是如何利用 QuickConnect 技術,讓使用者隨時隨地都能輕鬆存取雲端資料。並透過 iOS 和 Android 的 API,結合其他軟體的功能,藉以提升自我 App 的使用價值。同時也會與大家一同分享,開發 iOS 8.0 的全新 API (Document Provider),所需注意的兩三事。</p>
<p class="title">講者簡介</p>
<p class="introduce">群暉科技致力於整合最新科技並充分發揮其優勢,提供企業與家庭用戶可靠、經濟實惠的解決方案來集中資料儲存、簡化資料備份、跨平台分享和同步檔案,以及隨時隨地存取資料。群暉科技的目標是提供具前瞻性功能的產品與優質的客戶服務。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>15:00~15:20</time>
<div class="row">
<a name="2014/10/25_15:00~15:20_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>15:20~16:00</time>
<div class="row">
<a name="2014/10/25_15:20~16:00_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/KKBOX_jeremy.jpg">
</figure>
<h3>imsardine</h3>
<h2><a href="session.php.html#">利用 Appium + Robot Framework 實現跨平台 App 互動測試</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">Android 跟 iOS 在自動化測試上的支援漸趨成熟,要在單機上實作 App 自動化測試並不是太困難,但如果 App 支援多個設備間資料的同步,或使用者之間可以互動的社群功能呢?本議程將與大家分享如何利用 Appium 實現涉及多支手機、不同平台間互動的自動化測試,過程中也將介紹 Robot Framework 跟 Page-Object Pattern 在 "跨平台測試案例" 這個議題上所扮演的角色。</p>
<p class="title">講者簡介</p>
<p class="introduce">網路代號 imsardine,愛寫程式的魚,目前在 KKBOX 負責自動化測試開發工作。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_15:20~16:00_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/tico.jpg">
</figure>
<h3>Tico Wu</h3>
<h2><a href="session.php.html#">行動裝置的O2O應用</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">透過實際運用 iBeacon 以及庫卡實體通路,完成了一個很好的使用者體驗及流程引導使用者做 CPA (Cost-Per-Action)。</p>
<p class="title">講者簡介</p>
<p class="introduce">Tico 為堤刻科技創辦人,經營一個年輕的 Mobile App 開發團隊,成立約半年,便在 Apple AppStore 上擁有數個自行開發 App,並也為知名企業及國家單位進行 App 的開發或合作,透過與異業結盟或合作的方式,將原有的商業模式加值或吸引原來沒有的使用者加入,創造對使用者更便利的資訊環境</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_15:20~16:00_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/John.jpg">
</figure>
<h3>謝耀輝 (John Sie)</h3>
<h2><a href="session.php.html#">台灣與海外網路創業之差異與經驗談</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">分別從產品、技術到營運等方面兩岸有和差異?
互聯網~物聯網~車聯網~移動互連網~哪來那麼多網?
早創業好還是晚創業好?還是根本別創業?!
聊聊 O2O、穿戴裝置、大數據、行動支付等技術或應用...
有空會加碼附上參訪矽谷經驗談</p>
<p class="title">講者簡介</p>
<p class="introduce">謝耀輝(John Sie) 畢業 於台北工專電子及台灣科大資管, 曾任鴻海軟體工程師及PM,2009年創辦Accuvally Inc. 任CTO;於2011年推出「活動通 Accupass」榮獲國內外諸多大獎,該年榮獲《經理人雜誌》選為 100大 MVP專業經理人; 2012年轉任COO於大陸開展「活動行」服務,2013年公司獲得國際創投上億投資投資,成為亞太地區最具規模活動平台。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>16:00~16:20</time>
<div class="row">
<a name="2014/10/25_16:00~16:20_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>16:20~17:00</time>
<div class="row">
<a name="2014/10/25_16:20~17:00_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/Michael_Hung_500.jpg">
</figure>
<h3>洪志鵬 (Michael Hung)</h3>
<h2><a href="session.php.html#">以小勝大 - 從 Firefox 瀏覽器到 Firefox OS</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">本場演講將說明 Mozilla 在行動運算平台的發展策略。面臨目前行動平台的興起、桌面市場的萎縮等大環境的變化與危機,進而分享 Mozilla 努力的方向,如何堅持以開放平台持續發揮影響力,維持網路的自由與開放。</p>
<p class="title">講者簡介</p>
<p class="introduce">洪志鵬 (Michael Hung),別名 Michaelsoft。現職為 Mozilla 台灣分公司資深行銷總監,曾任台灣微軟全球技術支援中心副總經理、昇陽電腦(Sun Microsystems) 行銷總監等職。亦曾為專職作家,著有《最後的江湖道義》等四本書</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_16:20~17:00_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/appletone.jpg">
</figure>
<h3>張景隆</h3>
<h2><a href="session.php.html#">in in der 響應式編程</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">今年 Apple WWDC 2014 發表新的程式語言 Swift,造成全世界熱烈討論,在這個 典範轉移 (Paradigm Shift) 的過渡時期,我們要做好哪些準備呢? 當全世界的程式語言(包含 Swift、Java),都往 Functional Programming 發展,我們要先來了解一下,什麼是 Functional Programming,可當作是迎接 Swift 新語言挑戰之前的先修班。
什麼是 ReactiveCocoa?
ReactiveCocoa 是由 GitHub 發表,來自于兩位大師 Josh Abernathy & Justin Spahr-Summers 所創造而來,主要將 Functional Reactive Programming 概念注入 Objective-C。 Functional Reactive Programming 一般程式週期為 Input 到 Output 的處理轉換,Input 可以是來自于 資料、Web Service、鍵盤事件...等,Output 可以是 使用者UI 或 存入檔案,ReactiveCocoa 提供開發者另一個資料輸入輸出的新思維,將複雜的程式邏輯,用簡潔的方式解決。
Mattt大神說「ReactiveCocoa 是 Objective-C 的新紀元」 Justin DeWind「ReactiveCocoa 將是 Cocoa 的未來」</p>
<p class="title">講者簡介</p>
<p class="introduce">一個熱愛 iOS 開發、Ruby、Linux 的開發者。 喜愛分享、寫作,以分享知識為樂。 喜歡把問題簡化,用最簡單的方式解決問題。 - 參與 CodeData 作者 iOS Dev Club 講者 Cocoahead Taichung 講者 參加蘋果官方主辦 2013年 Tech Talk 麥克自由聚(Apple, Mac, iOS 相關) 講師 - 近期 iOS Apps 作品 CWMoney 為 台灣AppStore 最受歡迎的記賬軟體,付費排行當中榜上常客,更是台灣財經類App第一名。 biiChat 為 全台第一個電子商務即時通訊軟體,整合電子商務與訊息的便利性。 BTWCar 為 藍牙軟硬整合應用 App。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/25_16:20~17:00_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/ryo.jpg">
</figure>
<h3>東江亮(Ryo Agarie)</h3>
<h2><a href="session.php.html#">《Tengami》遊戲成功經驗分享與開發者將作品打進日本市場的可用資源</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">分享Nyamyam公司的首發款遊戲作品《Tengami》,一推出就在玩家與產業上大受肯定的成功經驗。
並介紹其所成立且主導的日本獨立遊戲開發者支援組織Indie Stream,如何協助獨立遊戲開發者將作品打進日本市場等相關事務</p>
<p class="title">講者簡介</p>
<p class="introduce">現為英國獨立遊戲公司 Nyamyam 美術總監。曾任職英國 Rare 遊戲公司擔任美術設計長達 10 年,Rare 公司專為微軟 XBOX Kinect 開發 Kinect Sports。2012年以遊戲作品《Tengami》入圍全球知名獨立遊戲盛會IndieCade Festival的獎項 。《Tengami》遊戲目前已經可在Steam平台(PC & Mac版)、任天堂Wii U eshop,以及iOS App Store上購買並取得。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>17:00~</time>
<div class="row">
<a name="2014/10/25_17:00~_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>散會,歡迎大家參與晚上 Developer's Night</div>
<div style="color:#eee"></div>
</div>
</div>
<a name="day-2"></a>
<div class="date">
2014/10/26</div>
<time>09:15~09:30</time>
<div class="row">
<a name="2014/10/26_09:15~09:30_全部"></a>
<article class="area-all" href="#inline_content">
<div class="place">
<span class="btn btn-blue">全部</span>
<span class="btn" style="background-color:orange">活動</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/sponsor/ms.jpg">
</figure>
<h3>Microsoft</h3>
<h2><a href="session.php.html#">Microsoft 贊助抽獎活動</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">有傳說中的 Microsoft Lumia 1520 手機可以抽喔!</p>
<p class="title">講者簡介</p>
<p class="introduce">微軟公司 (那斯達克證交所上市代號︰MSFT)成立於1975年,微軟是全球科技產業的領航者,提供軟體、裝置、及資訊服務解決方案,幫助人們以及企業實現他們最大的潛能。身為政府、學校與企業最值得信賴的夥伴,微軟自1989年於台灣深耕以來,始終致力於幫助台灣提升創新力、競爭力以及促進經濟繁榮- 共同來亮點台灣!</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>09:30~10:10</time>
<div class="row">
<a name="2014/10/26_09:30~10:10_全部"></a>
<article class="area-all" href="#inline_content">
<div class="place">
<span class="btn btn-blue">全部</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/Wangtun2.jpg">
</figure>
<h3>Wang-Tun Chou (周旺暾)</h3>
<h2><a href="session.php.html#">在網路上互相連結的數據 – 從資料匯流,
談雲如何讓 Big Data 不只是大而已</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">海量資料 (Big Data) 技術多半著眼於如何處理以往不敢面對的大量數據,然後隨時雲端平台的普及,並內建目前成熟的海量資料技術,我們應該更著力於資料本身的特性,利用無所不在網路,將雲視為資料互通平台,讓海量資料技術可以創造出新的價值</p>
<p class="title">講者簡介</p>
<p class="introduce">目前主要工作在推動微軟伺服器及雲端平台策略與行銷。曾任台灣微軟創新中心營運負責人、蕃薯藤數位科技協理。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>10:10~10:20</time>
<div class="row">
<a name="2014/10/26_10:10~10:20_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>10:20~11:00</time>
<div class="row">
<a name="2014/10/26_10:20~11:00_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/mark.jpg">
</figure>
<h3>宋牧奇</h3>
<h2><a href="session.php.html#">Bistro貓咪餵食器的群眾募資之路與技術挑戰</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">2014年7月15號,Bistro在國外第二大的群眾募資網站Indiegogo上正式上線,短短的三天內就募得了10萬美金,全世界包含了Time、Wired、TheVerge等,共計超過150家媒體報導,最後成為Indiegogo上最成功的寵物產品。我們會分享這一路走來的心路歷程,從產品發想、影片拍攝、原型設計等故事,以及這背後所有物聯網裝置不管是在營運面還是技術面上都會面對的挑戰。</p>
<p class="title">講者簡介</p>
<p class="introduce">宋牧奇是 Zillians Inc. (奇群科技) 執行長,致力於發展 GPU 為基礎的雲端運算平台。自交通大學畢業後,在高效能運算領域深入耕耘,曾在 IBM 加州聖荷西研究中心貢獻超級電腦的檔案系統設計,而在 2008 年創辦了奇群科技,打造了世界最強大的線上遊戲平台和通用 GPU 叢集環境。2014 年以創立子公司 42ARK,運用 GPU 開發具備貓臉辨識功能的智慧型餵食產品 Bistro</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/26_10:20~11:00_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/sleepnova.jpg">
</figure>
<h3>sleepnova (周立瑋)</h3>
<h2><a href="session.php.html#">少年工坊的奇幻旅程
頑皮的產品開發之路 - 呼叫小黃&雲端電台</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">頑皮工坊的產品發展過程與遇到的困難 (呼叫小黃&雲端電台)</p>
<p class="title">講者簡介</p>
<p class="introduce">周立瑋為頑皮工坊 (Sleepnova, Inc.) 創辦人,帶領團隊提供全方位數位解決方案,包括網頁前後端和移動裝置整合,相信運用簡單的界面、實用的科技,提供便利大家的生活,就是對社會的回饋的最佳方式。代表性專案為呼叫小黃、愛料理、東森新聞 App 等等</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/26_10:20~11:00_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/Ernest_profile_high_500.jpg">
</figure>
<h3>Ernest Chiang</h3>
<h2><a href="session.php.html#">如何面對 O2O 線上與實體的挑戰?</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">O2O (Online-to-offline), IoT (Internet of Things), Smart {something} 這些新名詞是因為 Cloud 這個老詞的舊瓶新裝?還是我們正在面對某種具有挑戰性的課題?當世界在向前滾動時,我們還在立足台灣,(等著) 放眼世界嗎?講者九月中剛從位在阿姆斯特丹的 Bluetooth Europe 2014 暨 Working Group Summit 大會洗禮回來,希望能帶來一些有趣的資訊與現場朋友一起互動討論,也希望能鼓勵更多愛台灣的朋友勇敢走出門,把台灣精神帶出門跟世界交流。</p>
<p class="title">講者簡介</p>
<p class="introduce">小時候玩 MS-DOS, OS/2, Windows 3.1, Slackware,玩著玩著玩到大學申請少了零點多分沒法進資工系玩,改玩半導體製程和微小機電,幸運地進入台積研究所玩製程整合從研發、試產玩到量產。熱愛開放與不務正業的精神,曾經玩網路創業,現在上班在玩傳統產業 + 軟硬體整合,試著把無線通訊塞進健身器材中。下班參與 Mozilla 台灣社群 MozTW SUMO 專案,以及支援朋友們玩各種創業。夢想與大家玩出各種可能性。愛台灣,不解釋</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>11:00~11:10</time>
<div class="row">
<a name="2014/10/26_11:00~11:10_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>休息時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>11:10~12:00</time>
<div class="row">
<a name="2014/10/26_11:10~12:00_一廳"></a>
<article class="area-1" href="#inline_content">
<div class="place">
<span class="btn btn-blue">一廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/anistar.jpg">
</figure>
<h3>Anistar (宋志峰)</h3>
<h2><a href="session.php.html#">架構做的巧,APP沒煩惱 – 談如何建立彈性又好維護的軟體架構</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">每次設計變動都讓你煩到想抓狂?找不出一個好的方法可以重複利用過去的資源?想破頭想要知道如何才能用簡單的方法將APP發展到極致的表現?Anistar 將在這場議題中分享一些個人的獨門最佳實踐,讓你面對 APP開發也能遊刃有餘。</p>
<p class="title">講者簡介</p>
<p class="introduce">長期專注於 Mobile app 開發,其中所開發的 Magic Shutter 被 New York Times 評為 iOS 上前十大最佳攝影軟體,之前曾在恆逸教育訓練中心針對 Mobile、Font-End、Design 領域有多年授課與專案實戰經驗,目前服務於雅虎電子商務部,致力用技術與創意提供有趣的 Mobile 應用。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/26_11:10~12:00_二廳"></a>
<article class="area-2" href="#inline_content">
<div class="place">
<span class="btn btn-blue">二廳</span>
<span class="btn" style="background-color:blue">技術</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/Peni.jpg">
</figure>
<h3>Peni</h3>
<h2><a href="session.php.html#">千里之行,始於足下:動手寫自己的App</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">App 開發者們總是有著許許多多的 idea,動手把自己的想法化為現實的過程當中,往往學到更多!作者將分享業餘開發 Windows Phone App 的經驗談。</p>
<p class="title">講者簡介</p>
<p class="introduce">一個每天上班都在寫iOS/Android的工程師,骨子裡愛的是Windows Phone,因為市集上的App太少,開始了自行開發上架之路,希望能貢獻一己之力,讓Windows Phone App的選擇能越來越多。代表作是天氣App《晴時多雲偶陣雨》。</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
<a name="2014/10/26_11:10~12:00_三廳"></a>
<article class="area-3" href="#inline_content">
<div class="place">
<span class="btn btn-blue">三廳</span>
<span class="btn" style="background-color:green">營運</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/speakers/ian_500.jpg">
</figure>
<h3>廖聰哲 (Ian Liao)</h3>
<h2><a href="session.php.html#">Golface VS. 精實創業</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">許多人以為我們擁有龐大資金與人脈,才跨入此領域,但事實上剛好相反。
Golface從一開始兩個人的團隊,一人負責業務,一人負責程式開發,一直到現在團隊人數逐漸增加,雖然我們是投入在高爾夫領域,但“精實創業”一直是我們奉行的最高原則。
透過快速的開發、驗證、討論、修正,不斷反覆的加速服務在市場的可行性,如何在客戶需求與公司發展之間,讓人力發揮最大的效益,是我們一直不斷努力的方向。
透過此次的研討會,與各位分享創業一路走來,我們如何在有限資源下,創造最大價值與機會,為看似百年傳統的運動,帶來更多的機會與可能性。</p>
<p class="title">講者簡介</p>
<p class="introduce">現為 Golface (綠夾克運動有限公司) 負責人,發現高爾夫球在台灣是很昂貴的運動,很多人希望透過這個運動建立人際關係,但國內高球場經營非常傳統,缺一套球場專屬物流系統,於是喜愛打高爾夫球的 Ian 看到這個需求,和團隊成員開發出高爾夫球場的數位化解決方案 Golface,從動態球道空拍攝影、即時資訊回報、便捷賽事紀錄管理,甚至包括球友間的社交平台都提供專項服務。目前 Golface已把整套解決方案,導入 Rolex 全球排名1000 大的高爾夫球場</p>
<a href="session.php.html#" class="jq-close">
<i class="icon-cross3"></i>
</a>
</div>
</div>
</article>
</div>
<time>12:00~13:00</time>
<div class="row">
<a name="2014/10/26_12:00~13:00_全部"></a>
<div style="color:#fff; background-color:#69CA62; padding:3px; text-align:center;">
<div>用餐時間</div>
<div style="color:#eee"></div>
</div>
</div>
<time>13:00~13:15</time>
<div class="row">
<a name="2014/10/26_13:00~13:15_全部"></a>
<article class="area-all" href="#inline_content">
<div class="place">
<span class="btn btn-blue">全部</span>
<span class="btn" style="background-color:orange">活動</span>
</div>
<div class="talker">
<figure style="overflow:hidden;">
<img style="width:auto; height:auto;" src="images/index-logo.svg">
</figure>
<h3>微軟公司與華碩雲端</h3>
<h2><a href="session.php.html#">議程有獎問答</a></h2>
<div class="detail">
<p class="title">議題介紹</p>
<p class="introduce">由贊助商 Microsoft 及 ASUS Cloud 提供 Lumia 1520 及 ZenFone 手機為抽獎贈品喔!</p>
You can’t perform that action at this time.
