-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharchive_index.html
1027 lines (1023 loc) · 41.2 KB
/
archive_index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="theme-dark has-navbar-fixed-top" lang="zh-Hant">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>
10 週年「開源祭」特別活動 | 開放文化基金會 Open Culture Foundation
</title>
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://10years.ocf.tw/archive_index.html"
/>
<meta
name="description"
content="開放文化基金會走過第一個 10 年,邀請開源社群夥伴一同與我們狂歡一整晚!當然還有科技跨界對談、社群回憶錄、紀念週邊商品、開源社群市集、音樂影像表演!錯過了,要再等下一個 10 年!"
/>
<meta
property="og:description"
content="開放文化基金會走過第一個 10 年,邀請開源社群夥伴一同與我們狂歡一整晚!當然還有科技跨界對談、社群回憶錄、紀念週邊商品、開源社群市集、音樂影像表演!錯過了,要再等下一個 10 年!"
/>
<meta
name="twitter:description"
content="開放文化基金會走過第一個 10 年,邀請開源社群夥伴一同與我們狂歡一整晚!當然還有科技跨界對談、社群回憶錄、紀念週邊商品、開源社群市集、音樂影像表演!錯過了,要再等下一個 10 年!"
/>
<meta
property="og:image"
content="https://10years.ocf.tw/img/10years_banner.webp"
/>
<meta
name="twitter:image"
content="https://10years.ocf.tw/img/10years_banner.webp"
/>
<meta property="twitter:card" content="summary_large_image" />
<meta
property="og:title"
content="10 週年「開源祭」特別活動 | 財團法人開放文化基金會 (OCF)"
/>
<meta
name="twitter:title"
content="10 週年「開源祭」特別活動 | 財團法人開放文化基金會 (OCF)"
/>
<link rel="icon" type="image/svg+xml" href="/img/ocf.png" />
<link rel="stylesheet" href="/css/bulma.min.css" />
<link rel="stylesheet" href="/fa/css/all.min.css" />
<link rel="stylesheet" href="/css/all.css" />
</head>
<body>
<nav
class="navbar is-dark is-fixed-top"
role="navigation"
aria-label="main navigation"
>
<div class="navbar-brand">
<a class="navbar-item" href="./archive_index.html">
<img
class="image"
src="/img/ocf_logo_compact_white.svg"
width="100px"
/>
</a>
<a
role="button"
class="navbar-burger"
aria-label="menu"
aria-expanded="false"
data-target="navbarBasicExample"
>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="#schedule">
<span class="icon-text">
<span class="icon"><i class="fas fa-clipboard-list"></i></span>
<span>活動時間表</span>
</span>
</a>
<a class="navbar-item" href="#techtalk">
<span class="icon-text">
<span class="icon"><i class="fas fa-comments"></i></span>
<span>科技跨界對談</span>
</span>
</a>
<a class="navbar-item" href="#music">
<span class="icon-text">
<span class="icon"><i class="fas fa-compact-disc"></i></span>
<span>音樂影像表演</span>
</span>
</a>
<!-- <a class="navbar-item" href="#community">
<span class="icon-text">
<span class="icon"><i class="far fa-bookmark"></i></span>
<span>社群回憶錄</span>
</span>
</a>
<a class="navbar-item" href="#gift">
<span class="icon-text">
<span class="icon"><i class="fas fa-gifts"></i></span>
<span>開源祭週邊商品</span>
</span>
</a>
<a class="navbar-item" href="#about">
<span class="icon-text">
<span class="icon"><i class="far fa-question-circle"></i></span>
<span>關於活動</span>
</span>
</a> -->
<a class="navbar-item" href="/press-release.html">
<span class="icon-text">
<span class="icon"><i class="fas fa-bullhorn"></i></span>
<span>新聞稿專區</span>
</span>
</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a
class="button is-danger is-dark is-outlined"
href="./objects.html"
>懷舊物件募集</a
>
<a
class="button is-info is-dark is-outlined"
href="./bioerosion.html"
>募資計畫</a
>
<a
class="button is-warning is-dark is-outlined"
href="./booth-recruit.html"
>工作人員</a
>
<a
class="button is-success is-dark is-outlined"
target="_blank"
href="https://ocftw.kktix.cc/events/festival20240914"
>
<strong>立即報名</strong>
</a>
</div>
</div>
</div>
</div>
</nav>
<figure class="image is-fullwidth">
<img
src="/img/banner_235x100.webp"
alt="開源祭活動頁面 Banner"
title="開源祭活動頁面 Banner"
/>
</figure>
<section class="section">
<div class="columns">
<div class="column has-text-centered igame">
<p style="margin-bottom: 12px">
<a href="./game/" class="button is-large" target="_blank">
<span class="icon">
<i class="fas fa-puzzle-piece"></i>
</span>
<span>啟動「開源祭」集點遊戲</span>
</a>
</p>
<p style="text-shadow: 0 0 1rem #4bff78; color: #ffffff">
請用可掃描
<span class="icon"><i class="fas fa-qrcode"></i></span> QRCode
的裝置啟動遊戲!
</p>
</div>
</div>
</section>
<div id="about" class="section">
<h1 class="title">關於這個活動</h1>
<div class="content">
<p>
開放文化基金會(OCF)是一個非營利性組織,致力於與科技社群和公民夥伴合作,推動臺灣的數位/網路環境更加開放、透明,並促進公眾參與,以實現數位人權的保障。自
2014
年成立以來,我們一直堅持這一使命,以孕育一個充滿活力的開源生態系為目標,我們向公民社會推廣,同時也對政府倡議、與國際交流以推動開源文化的普及與實踐。
</p>
<p>
為慶祝開放文化基金會成立十週年,我們將於 9 月 14 日(六)在 Pipe Live
Music(公館水岸廣場)舉辦「開源祭」主題活動。這場活動將是一個融合音樂與科技藝術的盛會,將邀請到林強、百合花、PUZZLEMAN、拷秋勤等知名音樂人進行精彩的表演,同時舉辦開放文化基金會十週年特展和主題講座。
</p>
<p>
這將是一個充滿活力和創意的場合,我們誠摯地邀請所有支持者以及社群夥伴們,一同參與這場慶祝活動。讓我們攜手共度,共同見證開放文化基金會的成長與發展,並展望未來的更多可能性!
</p>
</div>
</div>
<div class="section">
<div class="columns">
<div class="column">
<section class="section">
<div class="container">
<div class="content index">
<p>
꧁ 在音樂與科技的交織之下 我們聆聽著音符在不同領域的跳動
看著它串連著藝術、科技與文化 細數著那段關於你我的歷史 ꧂
</p>
<ul>
<li>6 場音樂 ✘ 影像表演</li>
<li>5 場科技 ✘ 不同領域 跨界對談</li>
<li>10 年 開放原始碼 ✘ 科技社群發展 歷史展覽</li>
<li>N 個 NGO ✘ 輕食 ✘ 市集</li>
</ul>
<h1>活動時間地點</h1>
<ul>
<li>時間:2024/9/14(六)12:00 ~ 22:00</li>
<li>
地點:<a
href="https://www.openstreetmap.org/search?query=%E5%85%AC%E9%A4%A8%E6%B0%B4%E5%B2%B8%E5%BB%A3%E5%A0%B4#map=19/25.01102/121.52856&layers=P"
>Pipe Live Music 與公館水岸廣場(台北市中正區思源街 1
號)</a
>
</li>
</ul>
<p class="has-text-right">
<span class="icon-text">
<span class="icon"><i class="fas fa-info-circle"></i></span>
<span>無活動費用,預先報名還有限量紀念禮品!</span>
</span>
</p>
<p class="has-text-right">
<a
class="button is-primary is-dark is-medium is-focused"
href="https://ocftw.kktix.cc/events/festival20240914"
>活動立即報名</a
>
</p>
</div>
</div>
</section>
</div>
<div class="column">
<section class="section">
<div class="container">
<a
href="https://www.openstreetmap.org/search?query=%E5%85%AC%E9%A4%A8%E6%B0%B4%E5%B2%B8%E5%BB%A3%E5%A0%B4#map=19/25.01102/121.52856&layers=P"
><img
class="image round maps"
src="/img/maps.png"
alt="活動地點地圖示意圖"
title="活動地點地圖示意圖"
/></a>
</div>
</section>
</div>
</div>
</div>
<div class="section">
<h1 class="title">場地地圖</h1>
<div class="columns">
<div class="column is-1"></div>
<div class="column">
<div class="card">
<section class="section">
<div class="content">
<p>「開源祭」活動會場地圖資訊摘要</p>
<p>舞台區</p>
<ul>
<li>自由之一</li>
<li>自由之二</li>
<li>自由之三(PIPE Live Music)</li>
</ul>
<p>策展區</p>
<ul>
<li>《十週年特展》科技征途:無硝煙的自由</li>
<li>創始社群策展區</li>
<li>開源社群結緣品交換區</li>
</ul>
<p>攤位區</p>
<ul>
<li>開源社群、公民團體攤位區(1 ~ 15)</li>
<li>逗號市集 x 開源福利社(16 ~ 20)</li>
</ul>
<p>其他區域</p>
<ul>
<li>醫療站</li>
<li>兒童遊戲區</li>
<li>自由之零(服務台)</li>
<li>公共廁所</li>
<li>觀眾休息帳</li>
</ul>
<p>
地圖下載:<a href="./img/10years_maps.jpg"
>原圖(JPG 11811px)</a
>、<a href="./img/10years_maps_2400.jpg">JPG 2400px</a>、<a
href="./img/10years_maps_2400.webp"
>Webp 2400px</a
>。
</p>
</div>
</section>
</div>
</div>
<div class="column">
<a href="./img/10years_maps_2400.webp"
><img
src="./img/10years_maps_2400.webp"
alt="會場場地地圖資訊"
title="會場場地地圖資訊"
style="
border-radius: 8px;
box-shadow: 0 0 2rem 0.3rem #ffffff;
border: 1px #ffffff solid;
"
/></a>
</div>
<div class="column is-1"></div>
</div>
</div>
<div class="section" id="schedule">
<h1 class="title">活動時間表</h1>
<div class="columns">
<div class="column">
<div class="columns">
<div class="column">
<div class="has-text-centered">
<table
class="table"
style="
text-shadow: 0 0 0.7rem #4bff78;
margin: auto;
box-shadow: 0 0 1rem #4bff78;
border-radius: 8px;
"
>
<thead>
<tr>
<th colspan="2">自由之一舞台<br />對談節目</th>
</tr>
<tr>
<th>時間</th>
<th>講題</th>
</tr>
</thead>
<tbody>
<tr>
<td>13:10 - 13:50</td>
<td>
「無用職業的我用 OO
改造生活,結果…!?」:開放吧!從廢柴到傳奇的進化之旅!<br />
開放文化基金會 董事 Bob Chao
</td>
</tr>
<tr>
<td>13:50 - 14:40</td>
<td>
打造一把專屬字體設計師的鍵盤<br />鍵人谷 撒景賢 x
justfont 字型設計師 簡國庭
</td>
</tr>
<tr>
<td>14:50 - 15:40</td>
<td>
雲端封建時代在臺灣<br />臺灣大學新聞所 助理教授 蔡蕙如 x
READr 總編輯 簡信昌
</td>
</tr>
<tr>
<td>15:50 - 16:40</td>
<td>
區塊鏈技術的誕生,對你我有何影響?<br />XREX
共同創辦人暨集團執行長 黃耀文 x 區塊勢 創辦人 許明恩
</td>
</tr>
<tr>
<td>16:50 - 17:40</td>
<td>
我還能是我自己嗎?監控科技時代數位自決權的重要性<br />法律白話文
營運長 徐書磊 x 世新大學社會心理學系 副教授 曹家榮
</td>
</tr>
<tr>
<td>17:50 - 18:40</td>
<td>
從藝術創作者的視角探討臺灣 GAI 與 CC 的發展現況<br />林強
x OpenLab.Taipei 共同創辦人 Honki
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="column">
<div class="columns">
<div class="column">
<div class="has-text-centered">
<table
class="table"
style="
text-shadow: 0 0 0.7rem #4bfff7;
margin: auto;
box-shadow: 0 0 1rem #4bfff7;
border-radius: 8px;
"
>
<thead>
<tr>
<th colspan="2">
自由之二舞台<br />音樂類型演出(40 - 60分鐘)
</th>
</tr>
<tr>
<th>時間</th>
<th>演出</th>
</tr>
</thead>
<tbody>
<tr>
<td>15:20 - 16:20</td>
<td>Mr. Bean Shaped Things</td>
</tr>
<tr>
<td>16:30 - 17:30</td>
<td>DJ 陳涵</td>
</tr>
<tr>
<td>17:40 - 18:20</td>
<td>拷秋勤</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="column">
<div class="has-text-centered">
<table
class="table"
style="
text-shadow: 0 0 1rem #ff4b4b;
margin: auto;
box-shadow: 0 0 1rem #ff4b4b;
border-radius: 8px;
"
>
<thead>
<tr>
<th colspan="2">
自由之三 PIPE 舞台<br />音樂類型演出(每場 40 分鐘)
</th>
</tr>
<tr>
<th>時間</th>
<th>演出</th>
</tr>
</thead>
<tbody>
<tr>
<td>18:20 - 19:00</td>
<td>OC #experiment</td>
</tr>
<tr>
<td>19:20 - 20:00</td>
<td>PUZZLEMAN</td>
</tr>
<tr>
<td>20:20 - 21:00</td>
<td>百合花</td>
</tr>
<tr>
<td>21:20 - 22:00</td>
<td>林強 + Luca Bonaccorsi</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="column">
<a href="/img/schedule.webp"
><img
src="/img/schedule.webp"
alt="開源祭講座、音樂演出時間表"
title="開源祭講座、音樂演出時間表"
style="
border-radius: 8px;
box-shadow: 0 0 2rem 0.3rem #ffffff;
border: 1px #ffffff solid;
"
/></a>
</div>
</div>
<div class="content">
<p>
<span
class="tag is-warning is-light"
style="box-shadow: 0 0 2rem #f1f100"
>晴天限定</span
>
15:00 - 18:00 期間將有<strong style="text-shadow: 0 0 1rem #f1f100"
>小朋友戶外遊樂與學習區</strong
>,請家長在開源祭期間可以多加利用。
</p>
</div>
</div>
<div id="techtalk" class="section techtalk">
<h1 class="title">科技跨界對談</h1>
<div class="fixed-grid has-1-cols-mobile">
<div class="grid">
<div class="cell">
<div class="card">
<section class="section">
<div class="content">
<h2>
「無用職業的我用 OO
改造生活,結果…!?」:開放吧!從廢柴到傳奇的進化之旅!
<span class="tag is-info is-light">13:10 - 13:40</span>
</h2>
<div style="text-align: center; padding-bottom: 10px">
<img
src="/img/ocf_10years_press_release_7.webp"
style="
width: 80%;
border: 1px #ffffff solid;
border-radius: 8px;
box-shadow: 0 0 1rem 0.1rem #ffffff;
max-width: 450px;
"
alt="「無用職業的我用 OO 改造生活,結果…!?」:開放吧!從廢柴到傳奇的進化之旅!, 開放文化基金會 董事 趙柏強 Bob Chao"
title="「無用職業的我用 OO 改造生活,結果…!?」:開放吧!從廢柴到傳奇的進化之旅!, 開放文化基金會 董事 趙柏強 Bob Chao"
/>
</div>
<p>
<span class="tag is-link is-light">趙柏強 Bob Chao</span>
開放文化基金會 董事
</p>
<p>
開放原始碼並非僅僅屬於科技達人,它早已融入我們的日常生活,如即時公車資訊、維基百科和各式簡報字體。本次
Keynote 將由開放文化基金會董事趙柏強(Bob
Chao)帶來「什麼是開放?」的精彩講解,輕鬆揭示開源的用處與好處,並解釋開源如何不知不覺地影響我們的生活。無論你是一般民眾還是公民社群夥伴,這場講座將為你揭開開源的神秘面紗,點燃你對開源世界的興趣。
</p>
</div>
</section>
</div>
</div>
<div class="cell">
<div class="card">
<section class="section">
<div class="content">
<h2>
打造一把專屬字體設計師的鍵盤
<span class="tag is-info is-light">13:50 - 14:30</span>
</h2>
<div style="text-align: center; padding-bottom: 10px">
<img
src="/img/ocf_10years_press_release_4.webp"
style="
width: 80%;
border: 1px #ffffff solid;
border-radius: 8px;
box-shadow: 0 0 1rem 0.1rem #ffffff;
max-width: 450px;
"
alt="打造一把專屬字體設計師的鍵盤, Bold 簡國庭, James 撒景賢"
title="打造一把專屬字體設計師的鍵盤, Bold 簡國庭, James 撒景賢"
/>
</div>
<p>
<span class="tag is-link is-light">Bold 簡國庭</span>
堅持開拓繁體字體設計的 Justfont
字型設計師,參與金萱字型家族專案,也投身於字型教育的推廣工作。致力於與大眾分享文字之美。
</p>
<p>
<span class="tag is-link is-light">James 撒景賢</span>
工程師與鍵盤工程師、鍵人谷社群志工、熱愛分離式鍵盤因為它解決了肩頸痠痛的問題。「鍵盤就像餐具一樣,吃不同的菜餚都要專用的與餐具,執行不同的任務當然也需要專用的鍵盤。」
</p>
<p>
隨著開源資源的廣泛應用,本場次探討開源字型與「開放硬體」的創新結合。我們邀請
justfont 的字型設計師簡國庭(Bold)
與鍵人谷社群代表撒景賢,分享字型設計師的日常工作和工具應用的重要性,並探討如何利用開源資源進行客製化設計,打造專屬於設計師的完美鍵盤,滿足美感、手感及多功能需求。不論你是工程師、設計師或字體藝術愛好者,
</p>
</div>
</section>
</div>
</div>
<div class="cell">
<div class="card">
<section class="section">
<div class="content">
<h2>
雲端封建時代在臺灣
<span class="tag is-info is-light">14:50 - 15:30</span>
</h2>
<div style="text-align: center; padding-bottom: 10px">
<img
src="/img/ocf_10years_press_release_6.webp"
style="
width: 80%;
border: 1px #ffffff solid;
border-radius: 8px;
box-shadow: 0 0 1rem 0.1rem #ffffff;
max-width: 450px;
"
alt="雲端封建時代在臺灣, 簡信昌, 蔡蕙如"
title="雲端封建時代在臺灣, 簡信昌, 蔡蕙如"
/>
</div>
<p>
<span class="tag is-link is-light">簡信昌</span>
READr 總編輯
</p>
<p>
<span class="tag is-link is-light">蔡蕙如</span>
臺大新聞所 助理教授
</p>
<p>
在科技飛速發展的時代,我們曾以為階級與不平等會隨之消失,但現實卻迥然不同。大型科技公司逐漸掌控我們的生活,透過演算法決定我們能看到什麼,這不僅改變了我們對權力的看法,還影響到民主與人權。本場對談將邀請臺大新聞所蔡蕙如助理教授與
READr
總編輯簡信昌,以《雲端封建時代》一書為引,深入探討科技巨頭如何成為新時代的「雲端領主」,並重新思考臺灣數位發展的未來。歡迎一同來了解數位時代所面臨的真相!
</p>
</div>
</section>
</div>
</div>
<div class="cell">
<div class="card">
<section class="section">
<div class="content">
<h2>
區塊鏈技術的誕生,對你我有何影響?
<span class="tag is-info is-light">15:50 - 16:30</span>
</h2>
<div style="text-align: center; padding-bottom: 10px">
<img
src="/img/ocf_10years_press_release_5.webp"
style="
width: 80%;
border: 1px #ffffff solid;
border-radius: 8px;
box-shadow: 0 0 1rem 0.1rem #ffffff;
max-width: 450px;
"
alt="區塊鏈技術的誕生,對你我有何影響?, 黃耀文, 許明恩"
title="區塊鏈技術的誕生,對你我有何影響?, 黃耀文, 許明恩"
/>
</div>
<p>
<span class="tag is-link is-light">黃耀文</span>
區塊鏈金融機構 XREX 集團執行長
</p>
<p>
<span class="tag is-link is-light">許明恩</span>
區塊勢 創辦人
</p>
<p>
區塊鏈經常與金融掛鉤,但其實這項技術在數位犯罪、人權議題中也扮演著重要角色。本場對談邀請
XREX
共同創辦人暨集團執行長黃耀文,與區塊勢創辦人許明恩,共同探討區塊鏈技術的多元應用如何影響我們的生活。從追緝創意私房案到推動數位安全,這場現場對談將深入剖析區塊鏈技術的實際應用與未來發展。
</p>
</div>
</section>
</div>
</div>
<div class="cell">
<div class="card">
<section class="section">
<div class="content">
<h2>
數位與隱私
<span class="tag is-info is-light">16:50 - 17:30</span>
</h2>
<div style="text-align: center; padding-bottom: 10px">
<img
src="/img/ocf_10years_press_release_8.webp"
style="
width: 80%;
border: 1px #ffffff solid;
border-radius: 8px;
box-shadow: 0 0 1rem 0.1rem #ffffff;
max-width: 450px;
"
alt="數位與隱私, 徐書磊, 曹家榮"
title="數位與隱私, 徐書磊, 曹家榮"
/>
</div>
<p>
<span class="tag is-link is-light">曹家榮</span>
世新大學 副教授
</p>
<p>
<span class="tag is-link is-light">徐書磊</span>
法律白話文 營運長
</p>
<p>
在監控科技無孔不入的時代,數位自決權變得尤為重要。本場對談邀請法律白話文營運長徐書磊與世新大學社會心理學系副教授曹家榮,從法律和社會學的角度,深入探討數位人權、隱私侵犯及政府監控的挑戰。他們將以《監控國家》和《你玩遊戲,還是遊戲玩你?》兩本書為切入點,分享如何在維護個人自由和隱私的同時,確保數位自決權。
</p>
</div>
</section>
</div>
</div>
<div class="cell">
<div class="card">
<section class="section">
<div class="content">
<h2>
從藝術創作者的視角探討臺灣 GAI 與 CC 授權的發展現況
<span class="tag is-info is-light">17:50 - 18:30</span>
</h2>
<div style="text-align: center; padding-bottom: 10px">
<img
src="/img/ocf_10years_press_release_3.webp"
style="
width: 80%;
border: 1px #ffffff solid;
border-radius: 8px;
box-shadow: 0 0 1rem 0.1rem #ffffff;
max-width: 450px;
"
alt="從藝術創作者的視角探討臺灣 GAI 與 CC 授權的發展現況, Limgiong 林強, Honki 鄭鴻旗"
title="從藝術創作者的視角探討臺灣 GAI 與 CC 授權的發展現況, Limgiong 林強, Honki 鄭鴻旗"
/>
</div>
<p>
<span class="tag is-link is-light">Limgiong 林強</span>
臺灣歌手、電影演員、DJ、詞曲作家、電影配樂製作人、熱愛音樂、推崇
CC 公眾授權,以開放的方式分享創作的音樂。
</p>
<p>
<span class="tag is-link is-light">Honki 鄭鴻旗</span>
OpenLab.Taipei 創始成員、FLOSS(自由開源軟體) + Art
創作者、結合藝術與開放科技的 Maker。
</p>
<p>
在生成式 AI
工具盛行的時代,藝術創作面臨著前所未有的挑戰。本場對談邀請屢獲殊榮的音樂才子林強,與
OpenLab.Taipei 的數位藝術家鄭鴻旗(Honki),共同探討
Creative Commons (CC)
授權在台灣的發展現況。他們將從音樂與數位藝術兩個不同領域出發,深入交流如何在
AI 時代保持創作熱情,並探討 CC
授權如何為創作者提供共用與創新的可能。
</p>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
<div class="section">
<div class="columns">
<div class="column" id="community">
<h1 class="title">社群回憶錄 - 開源運動在臺灣</h1>
<div class="content">
<ul>
<li>左右現代科技的開放原始碼運動是如何發生的?</li>
<li>開源科技社群如何迅速在臺灣遍地開花?</li>
<li>哪些人與組織一起在這個領域貢獻良多?</li>
</ul>
<p>臺灣開源社群一起參與的展覽!</p>
</div>
</div>
<div class="column" id="gift">
<h1 class="title">開源祭週邊商品</h1>
<div class="content">
<a href="https://www.flyingv.cc/projects/35438" target="_blank"
><img
src="./img/crowdfounding_clothes.webp"
alt="開源祭限定紀念週邊,現正募資中!"
title="開源祭限定紀念週邊,現正募資中!"
style="
border-radius: 8px;
box-shadow: 0 0 2rem 0.3rem #ffffff;
border: 1px solid #ffffff;
"
/></a>
</div>
</div>
</div>
</div>
<div id="music" class="section music">
<h1 class="title">音樂影像表演</h1>
<div class="columns">
<div class="column">
<img
class="image"
loading="lazy"
src="/img/LIMFSQ.webp"
alt="林強"
title="林強"
/>
</div>
<div class="column">
<img
class="image"
loading="lazy"
src="/img/LucaFSQ__1_.webp"
alt="Luca Bonaccorsi"
title="Luca Bonaccorsi"
/>
</div>
<div class="column">
<img
class="image"
loading="lazy"
src="/img/百合花FSQ.webp"
alt="百合花"
title="百合花"
/>
</div>
<div class="column">
<img
class="image"
loading="lazy"
src="/img/KOUFSQ.webp"
alt="拷秋勤"
title="拷秋勤"
/>
</div>
</div>
<div class="columns">
<div class="column">
<img
class="image"
loading="lazy"
src="/img/PUZZLEMAN_FSQ.webp"
alt="PUZZLEMAN"
title="PUZZLEMAN"
/>
</div>
<div class="column">
<img
class="image"
loading="lazy"
src="/img/陳涵FSQ.webp"
alt="陳涵"
title="陳涵"
/>
</div>
<div class="column">
<img
class="image"
loading="lazy"
src="/img/ocFSQ.webp"
alt="OC #experiment"
title="OC #experiment"
/>
</div>
<div class="column">
<img
class="image"
loading="lazy"
src="/img/Mr_Bean_Shape_ThingsFSQ.webp"
alt="Mr. Bean Shape Things"
title="Mr. Bean Shape Things"
/>
</div>
</div>
</div>
<div class="section perfer">
<div class="content">
<p>
「開源祭」活動參與演出的有:<a
href="https://www.instagram.com/shmeen_bean/"
>Mr. Bean Shaped Things</a
>、<a href="https://www.instagram.com/hanchen112/">DJ 陳涵</a>、<a
href="https://www.facebook.com/koucc/"
>拷秋勤</a
>、<a href="https://possibilitiestw.wixsite.com/oooc"
>OC #experiment</a
>、<a href="https://kao-inc.com/artist/puzzleman/">PUZZLEMAN</a>、<a
href="https://liliumtaiwan.com/"
>百合花</a
>、<a
href="https://zh.wikipedia.org/zh-tw/%E6%9E%97%E5%BC%B7_(1964%E5%B9%B4)"
>林強</a
>
+ <a href="https://www.instagram.com/luchint_b/">Luca Bonaccorsi</a>。
</p>
<ul>
<li>
林強照片是由<a href="https://www.k11artfoundation.org/"
>超維度 Dimension Plus </a
>提供,攝影師:張震揚 Martin Cheung
</li>
</ul>
</div>
</div>
<footer class="footer">
<div class="content has-text-centered">
<!-- All Partners -->
<div class="columns">
<div class="column">
<div class="card" style="background-color: #ffffff">
<section class="section">
<p><span class="tag is-link is-light">協辦單位</span></p>
<div class="columns">
<div class="column">
<a href="https://doit.gov.taipei/"
><img
class="cologo"
style="height: 100%"
src="/img/c/taipei_logo.svg"
/></a>
</div>
</div>
<div class="columns">
<div class="column">
<a href="https://www.water.gov.taipei/"
><img
class="cologo"
style="height: 100%"
src="/img/c/taipei_water.svg"
/></a>
</div>
</div>
<div class="columns">
<div class="column">
<a href="https://pipelivemusic.com/"
><img
class="cologo"
style="height: 160px"
src="/img/c/pipe_live_music.svg"
/></a>
</div>
</div>
</section>
</div>
</div>
<div class="column">
<div class="card" style="background-color: #ffffff">
<section class="section">
<p><span class="tag is-success is-light">贊助</span></p>
<div class="columns">
<div class="column">
<a href="https://www.archilife.org/"
><img
class="cologo"
style="height: 90%"
src="/img/c/arf.svg"
/></a>
</div>
</div>
<div class="columns">
<div class="column">
<a href="https://www.facebook.com/SideProjectFilmTW/"
><img
class="cologo"
style="height: 100px"
src="/img/c/side_project_film.svg"
/></a>
</div>
</div>
<div class="columns">
<div class="column">
<a href="https://www.radicalonline.net/"
><img
class="cologo"
style="height: 100%"
src="/img/c/radical_studio.svg"
/></a>
</div>
<div class="column">
<a href="https://www.flyingv.cc/"
><img
class="cologo"
style="height: 100%"
src="/img/c/flyingv.svg"
/></a>
</div>
<div class="column">
<a href="https://quenchwedding.com/"
><img
class="cologo"
style="height: 100%"
src="/img/c/quench.svg"
/></a>
</div>
</div>
</section>
</div>
</div>
<div class="column">
<div class="card" style="background-color: #ffffff">
<section class="section">
<p><span class="tag is-warning is-light">合作夥伴</span></p>
<div class="columns">
<div class="column">
<a href="https://streetvoice.com/"
><img
class="cologo"
style="height: 100%"
src="/img/c/street_voice.svg"
/></a>
</div>
</div>
</section>
</div>