-
Notifications
You must be signed in to change notification settings - Fork 36
/
db.json
2191 lines (2191 loc) · 118 KB
/
db.json
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
{
"sponsors": {
"data": [
{
"level_name": "platinum",
"sponsors": [
{
"name_en_us": "Cathay Financial Holdings",
"name_zh_hant": "國泰金控",
"subtitle_en_us": "3-year-sponsorship",
"subtitle_zh_hant": "連續三年贊助",
"intro_en_us": "國泰於金控層級設立「數位暨數據發展中心(簡稱數數發中心)」",
"intro_zh_hant": "國泰於金控層級設立「數位暨數據發展中心(簡稱數數發中心)」,以數據驅動(data-driven as culture)為理念,結合子公司的力量與基礎,協助國泰金控打造數位數據生態圈。\n數數發中心了解金融與科技人才對發揮專業、在工作上追求突破的渴望,整合集團資源打造適合跨界新型態人才的環境,團隊成員背景多元,包括技術、科技、新創、電商、零售、電信、金融……等。為讓資料及大數據分析人才擁有充足的資料量運用,同時投注相當的資源與人力於資料科學研發,數數發中心創立「資料科學實驗室」,讓成員不僅能專注開發,也能共同探討資料科學技術的創新應用。\n數數發中心以數據驅動金融科技創新,提供有感、有效的客戶數位體驗,致力成為亞洲數位生態圈及科技金融領頭羊。",
"website_url": "https://www.billgates.com",
"logo_url": "https://tw.pycon.org/2020/media/sponsors/%E5%9C%8B%E6%B3%B0%E9%87%91%E6%8E%A7/%E5%9C%8B%E6%B3%B0%E9%87%91%E6%8E%A7cmyk-%E4%B8%AD%E8%8B%B1_7hzqwdc.png"
}
]
},
{
"level_name": "gold",
"sponsors": [
{
"name_en_us": "名字超級超級超級超級超級長",
"name_zh_hant": "Have a LOOOOOOOOOOOOOOONG Name",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "but short content",
"intro_zh_hant": "但描述超級短",
"website_url": "https://docs.djangoproject.com/en/3.1/ref/models/expressions/",
"logo_url": "https://tw.pycon.org/2020/media/sponsors/%E6%88%90%E5%8A%9F%E5%A4%A7%E5%AD%B8%E8%B3%87%E8%A8%8A%E5%B7%A5%E7%A8%8B%E5%AD%B8%E7%B3%BB/NCKU_CSIE_new.png"
},
{
"name_en_us": "Elon Musk",
"name_zh_hant": "馬誼郎",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "He runs gigantic business",
"intro_zh_hant": "馬誼郎,出生於南非的美國企業家",
"website_url": "https://docs.djangoproject.com/en/3.1/ref/models/expressions/",
"logo_url": "https://i.imgur.com/RK2bZI7.jpeg"
},
{
"name_en_us": "Elon Musk",
"name_zh_hant": "馬誼郎",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "He runs gigantic business",
"intro_zh_hant": "馬誼郎,出生於南非的美國企業家",
"website_url": "https://docs.djangoproject.com/en/3.1/ref/models/expressions/",
"logo_url": "https://i.imgur.com/xiAfNVQ.jpeg"
},
{
"name_en_us": "Elon Musk",
"name_zh_hant": "馬誼郎",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "He runs gigantic business",
"intro_zh_hant": "馬誼郎,出生於南非的美國企業家",
"website_url": "https://docs.djangoproject.com/en/3.1/ref/models/expressions/",
"logo_url": "https://i.imgur.com/p1Ln71T.jpg"
},
{
"name_en_us": "Elon Musk",
"name_zh_hant": "馬誼郎",
"subtitle_en_us": "Tesla",
"subtitle_zh_hant": "特斯拉",
"intro_en_us": "He runs gigantic business",
"intro_zh_hant": "馬誼郎,出生於南非的美國企業家",
"website_url": "https://docs.djangoproject.com/en/3.1/ref/models/expressions/",
"logo_url": "https://i.imgur.com/nY1SVr7.gif"
},
{
"name_en_us": "Elon Musk",
"name_zh_hant": "馬誼郎",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "He runs gigantic business",
"intro_zh_hant": "馬誼郎,出生於南非的美國企業家",
"website_url": "https://docs.djangoproject.com/en/3.1/ref/models/expressions/",
"logo_url": "https://i.imgur.com/ARxWY48.gif"
}
]
},
{
"level_name": "silver",
"sponsors": [
{
"name_en_us": "Jeff Bezos",
"name_zh_hant": "傑佛瑞·貝佐斯",
"subtitle_en_us": "Amazon!!!",
"subtitle_zh_hant": "Amazon!!!",
"intro_en_us": "",
"intro_zh_hant": "",
"website_url": "https://amazon.com",
"logo_url": "https://static.boredpanda.com/blog/wp-content/uploads/2020/08/jeff-bezos-stonks-man1.jpg"
}
]
},
{
"level_name": "bronze",
"sponsors": [
{
"name_en_us": "Mark Zuckerberg",
"name_zh_hant": "馬克·艾略特·祖克柏",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "Mark Elliot Zuckerberg (born May 14, 1984) is an American media magnate, internet entrepreneur, and philanthropist. He is known for co-founding Facebook, Inc. and serves as its chairman, chief executive officer, and controlling shareholder. He also is a co-founder of the solar sail spacecraft development project Breakthrough Starshot and serves as one of its board members.",
"intro_zh_hant": "馬克·艾略特·祖克柏(1984年5月14日-)出生於美國紐約州白原市,Facebook創始人、董事長兼執行長,同時也是一名軟體設計師。Facebook是由他和哈佛大學的同學達斯汀·莫斯科維茲、愛德華多·薩維林、克里斯·舒爾茨於2004年共同創立,被譽爲Facebook教主。",
"website_url": "https://facebook.com",
"logo_url": "https://i.insider.com/602e8ce342b84000192f42fd?width=700"
}
]
},
{
"level_name": "co-organizer",
"sponsors": [
{
"name_en_us": "test",
"name_zh_hant": "測試",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "sponsor with empty logo & shouldn't be displayed",
"intro_zh_hant": "",
"website_url": "https://google.com",
"logo_url": ""
},
{
"name_en_us": "test",
"name_zh_hant": "測試",
"subtitle_en_us": "test",
"subtitle_zh_hant": "test",
"intro_en_us": "test",
"intro_zh_hant": "test",
"website_url": "https://google.com",
"logo_url": "https://i.imgur.com/ARxWY48.gif"
}
]
},
{
"level_name": "organizer",
"sponsors": [
{
"name_en_us": "test",
"name_zh_hant": "測試",
"subtitle_en_us": "test",
"subtitle_zh_hant": "test",
"intro_en_us": "test",
"intro_zh_hant": "test",
"website_url": "https://google.com",
"logo_url": "https://i.imgur.com/ARxWY48.gif"
}
]
},
{
"level_name": "sprint-coorganizer",
"sponsors": [
{
"name_en_us": "test",
"name_zh_hant": "測試",
"subtitle_en_us": "",
"subtitle_zh_hant": "",
"intro_en_us": "sponsor with empty logo & shouldn't be displayed",
"intro_zh_hant": "",
"website_url": "https://google.com",
"logo_url": ""
},
{
"name_en_us": "test",
"name_zh_hant": "測試",
"subtitle_en_us": "test",
"subtitle_zh_hant": "test",
"intro_en_us": "test",
"intro_zh_hant": "test",
"website_url": "https://google.com",
"logo_url": "https://i.imgur.com/ARxWY48.gif"
}
]
}
]
},
"jobs": {
"data": [
{
"sponsor_logo_url": "https://tw.pycon.org/2020/media/sponsors/%E5%9C%8B%E6%B3%B0%E9%87%91%E6%8E%A7/%E5%9C%8B%E6%B3%B0%E9%87%91%E6%8E%A7cmyk-%E4%B8%AD%E8%8B%B1_7hzqwdc.png",
"sponsor_name": "玉山銀行",
"jobs": [
{
"job_url": "https://www.cathaybk.com.tw/cathaybk/promo/event/content/financial/recruit/index.html",
"job_name_en_us": null,
"job_name_zh_hant": "test",
"job_description_en_us": "",
"job_description_zh_hant": "1. 數據介接、清洗、處理與數據模型的程式開發。\r\n2. 網路爬蟲、數據工程 API 程式撰寫。\r\n3. ETL Pipline 的工具開發與維護。\r\n4. 數據工程的自動化、監控、與維運模組開發。",
"job_requirements_en_us": null,
"job_requirements_zh_hant": "1. 愛好自我學習探索及分享的精神,具備團隊溝通合作的態度。\r\n2. 熟悉Python程式語言,並具軟體工程開發思維。\r\n3. 具Linux環境與Shell Script開發經驗、Git版本控管經驗、Hadoop/Hive/Spark等相關應用開發經驗。"
},
{
"job_url": "http://blog.ocf.tw/2019/04/jobs.html",
"job_name_en_us": null,
"job_name_zh_hant": "test",
"job_description_en_us": "",
"job_description_zh_hant": "計畫申請與結案等相關的報告之企劃與撰寫\r\n專案相關之財務核銷、會議安排等相關行政庶務\r\n規劃與舉辦專案相關之培訓活動、講座、年度活動\r\n外賓接待、參訪國際會議、拜訪合作組織等對外業務\r\n專案講師及相關社群聯繫與後續接洽\r\n主管交辦其他事務\r\n不定期支援各類社群專案之行政工作",
"job_requirements_en_us": null,
"job_requirements_zh_hant": "test"
}
]
},
{
"sponsor_logo_url": "https://i.imgur.com/RK2bZI7.jpeg",
"sponsor_name": "中國信託",
"jobs": [
{
"job_url": "https://www.cathaybk.com.tw/cathaybk/promo/event/content/financial/recruit/index.html",
"job_name_en_us": null,
"job_name_zh_hant": "test",
"job_description_en_us": "",
"job_description_zh_hant": "1. 數據介接、清洗、處理與數據模型的程式開發。\r\n2. 網路爬蟲、數據工程 API 程式撰寫。\r\n3. ETL Pipline 的工具開發與維護。\r\n4. 數據工程的自動化、監控、與維運模組開發。",
"job_requirements_en_us": null,
"job_requirements_zh_hant": "1. 愛好自我學習探索及分享的精神,具備團隊溝通合作的態度。\r\n2. 熟悉Python程式語言,並具軟體工程開發思維。\r\n3. 具Linux環境與Shell Script開發經驗、Git版本控管經驗、Hadoop/Hive/Spark等相關應用開發經驗。"
},
{
"job_url": "http://google.com",
"job_name_en_us": "software engineer",
"job_name_zh_hant": "軟體工程師",
"job_description_en_us": "test description\r\n- one\r\n- two\r\n\r\ntest description\r\n1. one\r\n2. two",
"job_description_zh_hant": "test description\r\n- one\r\n- two\r\n\r\ntest description\r\n1. one\r\n2. two",
"job_requirements_en_us": "test description\r\n- one\r\n- two\r\n\r\ntest description\r\n1. one\r\n2. two",
"job_requirements_zh_hant": "test description\r\n- one\r\n- two\r\n\r\ntest description\r\n1. one\r\n2. two"
},
{
"job_url": "https://www.104.com.tw/job/6l49y?jobsource=jolist_b_relevance",
"job_name_en_us": "software engineer",
"job_name_zh_hant": "軟體工程師",
"job_description_en_us": "",
"job_description_zh_hant": "1.規劃與設計以「數據驅動」為核心之商業解決方案,並整合跨單位業務合作,扮演企業內部顧問角色,推動數據創新轉型。\r\n2. 分析金控或子公司之數據資料,洞察客戶行為、屬性與商機,並辨識相關風險,提出符合業務專業的顧問建議,驅動商業決策。\r\n3. 執行與推動分析型專案的進行,有效組織或配合專案團隊合作完成專案分析任務。",
"job_requirements_en_us": null,
"job_requirements_zh_hant": "1.工作經驗:資料科學/數據分析相關工作經驗5年以上\r\n2. 具SQL資料庫程式撰寫能力及 Python 或 R 資料分析程式能力\r\n3.熟悉資料分析、統計模型、機器學習演算法經驗者\r\n4.具備銀行、壽險、產險或電商等產險專業知識者佳\r\n5.簡報能力佳、邏輯能力佳、主動積極、抗壓性高、溝通技巧佳"
},
{
"job_url": "http://blog.ocf.tw/2019/04/jobs.html",
"job_name_en_us": null,
"job_name_zh_hant": "test",
"job_description_en_us": "",
"job_description_zh_hant": "計畫申請與結案等相關的報告之企劃與撰寫\r\n專案相關之財務核銷、會議安排等相關行政庶務\r\n規劃與舉辦專案相關之培訓活動、講座、年度活動\r\n外賓接待、參訪國際會議、拜訪合作組織等對外業務\r\n專案講師及相關社群聯繫與後續接洽\r\n主管交辦其他事務\r\n不定期支援各類社群專案之行政工作",
"job_requirements_en_us": null,
"job_requirements_zh_hant": "test"
}
]
},
{
"sponsor_logo_url": "https://i.imgur.com/nY1SVr7.gif",
"sponsor_name": "開放文化基金會 OCF",
"jobs": [
{
"job_url": "https://www.104.com.tw/job/6l49y?jobsource=jolist_b_relevance",
"job_name_en_us": "software engineer",
"job_name_zh_hant": "軟體工程師",
"job_description_en_us": "",
"job_description_zh_hant": "1.規劃與設計以「數據驅動」為核心之商業解決方案,並整合跨單位業務合作,扮演企業內部顧問角色,推動數據創新轉型。\r\n2. 分析金控或子公司之數據資料,洞察客戶行為、屬性與商機,並辨識相關風險,提出符合業務專業的顧問建議,驅動商業決策。\r\n3. 執行與推動分析型專案的進行,有效組織或配合專案團隊合作完成專案分析任務。",
"job_requirements_en_us": null,
"job_requirements_zh_hant": "1.工作經驗:資料科學/數據分析相關工作經驗5年以上\r\n2. 具SQL資料庫程式撰寫能力及 Python 或 R 資料分析程式能力\r\n3.熟悉資料分析、統計模型、機器學習演算法經驗者\r\n4.具備銀行、壽險、產險或電商等產險專業知識者佳\r\n5.簡報能力佳、邏輯能力佳、主動積極、抗壓性高、溝通技巧佳"
},
{
"job_url": "http://blog.ocf.tw/2019/04/jobs.html",
"job_name_en_us": null,
"job_name_zh_hant": "test",
"job_description_en_us": "",
"job_description_zh_hant": "計畫申請與結案等相關的報告之企劃與撰寫\r\n專案相關之財務核銷、會議安排等相關行政庶務\r\n規劃與舉辦專案相關之培訓活動、講座、年度活動\r\n外賓接待、參訪國際會議、拜訪合作組織等對外業務\r\n專案講師及相關社群聯繫與後續接洽\r\n主管交辦其他事務\r\n不定期支援各類社群專案之行政工作",
"job_requirements_en_us": null,
"job_requirements_zh_hant": "test"
}
]
}
]
},
"schedules": {
"data": [
{
"date": "2022-09-03",
"name": "Day 1",
"rooms": [
"1-r3",
"2-all",
"3-r012",
"4-r0-2",
"4-r0",
"4-r0-1",
"5-r1",
"5-r1-1",
"5-r1-2",
"6-r2-1",
"6-r2"
],
"slots": {
"2-all": [
{
"event_id": 174,
"event_type": "custom",
"title": "Registration & Breakfast",
"speakers": [],
"begin_time": "2022-09-03T00:30:00Z",
"end_time": "2022-09-03T00:50:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 175,
"event_type": "custom",
"title": "Opening",
"speakers": [],
"begin_time": "2022-09-03T00:50:00Z",
"end_time": "2022-09-03T01:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": false
},
{
"event_id": 23,
"event_type": "keynote",
"title": {
"zh_hant": "維護集體利益",
"en_us": "Protecting the Collective Good"
},
"speakers": [
{
"zh_hant": "Dustin Ingram",
"en_us": "Dustin Ingram"
}
],
"begin_time": "2022-09-03T01:00:00Z",
"end_time": "2022-09-03T02:00:00Z",
"is_remote": true,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": false
},
{
"event_id": 176,
"event_type": "custom",
"title": "Break",
"speakers": [],
"begin_time": "2022-09-03T02:00:00Z",
"end_time": "2022-09-03T02:10:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 179,
"event_type": "custom",
"title": "Lunch",
"speakers": [],
"begin_time": "2022-09-03T03:55:00Z",
"end_time": "2022-09-03T04:55:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 182,
"event_type": "custom",
"title": "Break",
"speakers": [],
"begin_time": "2022-09-03T06:35:00Z",
"end_time": "2022-09-03T06:40:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 24,
"event_type": "keynote",
"title": {
"zh_hant": "改變世界,從 PyCon 開始 (Ver. 2022)",
"en_us": "Changing the world, one PyCon at a time (Ver. 2022)"
},
"speakers": [
{
"zh_hant": "Iqbal Abdullah",
"en_us": "Iqbal Abdullah"
}
],
"begin_time": "2022-09-03T06:40:00Z",
"end_time": "2022-09-03T07:40:00Z",
"is_remote": true,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": false
},
{
"event_id": 183,
"event_type": "custom",
"title": "Break",
"speakers": [],
"begin_time": "2022-09-03T07:40:00Z",
"end_time": "2022-09-03T07:45:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 184,
"event_type": "custom",
"title": "Job Fair",
"speakers": [],
"begin_time": "2022-09-03T07:45:00Z",
"end_time": "2022-09-03T09:15:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": false
},
{
"event_id": 185,
"event_type": "custom",
"title": "Lightning Talks",
"speakers": [],
"begin_time": "2022-09-03T09:15:00Z",
"end_time": "2022-09-03T09:45:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": false
},
{
"event_id": 186,
"event_type": "custom",
"title": "Announcement",
"speakers": [],
"begin_time": "2022-09-03T09:45:00Z",
"end_time": "2022-09-03T10:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": false
},
{
"event_id": 187,
"event_type": "custom",
"title": "PyNight Online",
"speakers": [],
"begin_time": "2022-09-03T10:00:00Z",
"end_time": "2022-09-03T12:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": false
}
],
"5-r1": [
{
"event_id": 234,
"event_type": "talk",
"title": "Use Raspberry Pi Pico + Python to provide good value on technology education in middle school",
"speakers": ["Milo Chen"],
"begin_time": "2022-09-03T02:10:00Z",
"end_time": "2022-09-03T02:40:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "NOVICE",
"break_event": false
},
{
"event_id": 266,
"event_type": "talk",
"title": "Hacking and Securing Machine Learning Systems and Environments",
"speakers": ["Joshua Arvin Lat"],
"begin_time": "2022-09-03T02:45:00Z",
"end_time": "2022-09-03T03:15:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "EXPERIENCED",
"break_event": false
},
{
"event_id": 241,
"event_type": "talk",
"title": "Type erasure in Python",
"speakers": ["Kir Chou"],
"begin_time": "2022-09-03T03:25:00Z",
"end_time": "2022-09-03T03:55:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "EXPERIENCED",
"break_event": false
},
{
"event_id": 228,
"event_type": "talk",
"title": "Revisit Python from statements and PEG",
"speakers": ["nikkie"],
"begin_time": "2022-09-03T04:55:00Z",
"end_time": "2022-09-03T05:25:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 264,
"event_type": "talk",
"title": "TasteGram: An Image Assessment App Built with TensorFlow & Python",
"speakers": ["John Lu"],
"begin_time": "2022-09-03T05:30:00Z",
"end_time": "2022-09-03T06:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 255,
"event_type": "talk",
"title": "Fighting dengue with genetically modified mosquitoes and GeoSpatial AI",
"speakers": ["Anand S"],
"begin_time": "2022-09-03T05:30:00Z",
"end_time": "2022-09-03T06:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 224,
"event_type": "talk",
"title": "Python under a microscope: Scanning Tunneling Microscopy, image processing, feature recognition and extraction of statistics",
"speakers": ["Hsu-Kai Cheng"],
"begin_time": "2022-09-03T06:05:00Z",
"end_time": "2022-09-03T06:35:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
}
],
"1-r3": [
{
"event_id": 10,
"event_type": "tutorial",
"title": "90 分鐘帶你用 Brownie 上架 NFT",
"speakers": ["陳怡升 EasonC13"],
"begin_time": "2022-09-03T02:10:00Z",
"end_time": "2022-09-03T03:40:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "NOVICE",
"break_event": false
},
{
"event_id": 12,
"event_type": "tutorial",
"title": "Effective ways to maintain and scale-up your Web Crawling project using Scrapy and it's ecosystem of tools.",
"speakers": ["Kevin Lloyd Bernal"],
"begin_time": "2022-09-03T05:05:00Z",
"end_time": "2022-09-03T06:35:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
}
],
"4-r0-2": [
{
"event_id": 272,
"event_type": "talk",
"title": "Practices of Building Trustworthy Data Pipeline",
"speakers": ["Tim Chiu"],
"begin_time": "2022-09-03T02:10:00Z",
"end_time": "2022-09-03T02:40:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 271,
"event_type": "talk",
"title": "實現超自動化的驗證碼辨識",
"speakers": ["何信賢"],
"begin_time": "2022-09-03T03:25:00Z",
"end_time": "2022-09-03T03:55:00Z",
"is_remote": false,
"recording_policy": false,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 13,
"event_type": "sponsored",
"title": "From Data Pipeline to Airflow - the Obstacles in Our Migration",
"speakers": ["莊鐵鴻"],
"begin_time": "2022-09-03T04:55:00Z",
"end_time": "2022-09-03T05:25:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "NOVICE",
"break_event": false
},
{
"event_id": 12,
"event_type": "sponsored",
"title": "數據團隊守護神-DQT",
"speakers": ["Mark Yang"],
"begin_time": "2022-09-03T05:30:00Z",
"end_time": "2022-09-03T06:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "NOVICE",
"break_event": false
},
{
"event_id": 259,
"event_type": "talk",
"title": "Using Python to interpret your genetic testing data",
"speakers": ["DailyGold999"],
"begin_time": "2022-09-03T06:05:00Z",
"end_time": "2022-09-03T06:35:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
}
],
"4-r0": [
{
"event_id": 245,
"event_type": "talk",
"title": "Distributing your pandas ETL job using Ray and Modin",
"speakers": ["李泓旻 (Andrew)"],
"begin_time": "2022-09-03T02:10:00Z",
"end_time": "2022-09-03T02:40:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 262,
"event_type": "talk",
"title": "Python Design Patterns",
"speakers": ["Max Lai"],
"begin_time": "2022-09-03T02:45:00Z",
"end_time": "2022-09-03T03:15:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 260,
"event_type": "talk",
"title": "AI 認注音:使用huggingface framework建構開源標音系統g2pW",
"speakers": ["陳宜昌"],
"begin_time": "2022-09-03T03:25:00Z",
"end_time": "2022-09-03T03:55:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 258,
"event_type": "talk",
"title": "Play Digital Signal Processing with Python (using SigmaDSP)",
"speakers": ["Wei Lin"],
"begin_time": "2022-09-03T04:55:00Z",
"end_time": "2022-09-03T05:25:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 261,
"event_type": "talk",
"title": "Building Customized Async Web Protocol from AsyncIO (Python): Exploring the low-level APIs Protocol and Transport",
"speakers": ["姜韋辰"],
"begin_time": "2022-09-03T05:30:00Z",
"end_time": "2022-09-03T06:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "EXPERIENCED",
"break_event": false
},
{
"event_id": 227,
"event_type": "talk",
"title": "Building an Arena for AI Warriors",
"speakers": ["Pei Hsuan Hsieh"],
"begin_time": "2022-09-03T06:05:00Z",
"end_time": "2022-09-03T06:35:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
}
],
"6-r2": [
{
"event_id": 246,
"event_type": "talk",
"title": "Enhancing Documentations on Sphinx with the Power of Extensions",
"speakers": ["Renaldi Gondosubroto"],
"begin_time": "2022-09-03T02:10:00Z",
"end_time": "2022-09-03T02:40:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 243,
"event_type": "talk",
"title": "Code coverage through unit tests running in sub-processes/threads: Locally and automated on GitHub",
"speakers": ["Saransh Chopra"],
"begin_time": "2022-09-03T02:45:00Z",
"end_time": "2022-09-03T03:15:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 223,
"event_type": "talk",
"title": "From snippet to project – building an analysis and visualization tool for an unusual data type",
"speakers": ["Claire Chung"],
"begin_time": "2022-09-03T03:25:00Z",
"end_time": "2022-09-03T03:55:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 249,
"event_type": "talk",
"title": "Real-time browser-ready computer vision apps with Streamlit",
"speakers": ["Yuichiro Tachibana"],
"begin_time": "2022-09-03T04:55:00Z",
"end_time": "2022-09-03T05:25:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 233,
"event_type": "talk",
"title": "Fantastic NLU: Loki, SymPy and the Solver to Math Word Problems",
"speakers": ["PeterWolf"],
"begin_time": "2022-09-03T05:30:00Z",
"end_time": "2022-09-03T06:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 254,
"event_type": "talk",
"title": "Run Bokeh in back-end, draw real-time charts to front-end, and make data scientists happy",
"speakers": ["Ko Ko"],
"begin_time": "2022-09-03T06:05:00Z",
"end_time": "2022-09-03T06:35:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
}
],
"4-r0-1": [
{
"event_id": 247,
"event_type": "talk",
"title": "從開放數據閱讀台灣能源 - 數據探索、模型預測和風險評估 In-depth Analysis of Open Energy Data in Taiwan - Data Exploration, Model Prediction and Risk Assessment",
"speakers": ["傅群 (Patrick Fu)"],
"begin_time": "2022-09-03T02:10:00Z",
"end_time": "2022-09-03T02:40:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 236,
"event_type": "talk",
"title": "Building large scale data pipelines by Apache Airflow",
"speakers": ["黃泰瑋 (Tai-Wei Huang)"],
"begin_time": "2022-09-03T02:45:00Z",
"end_time": "2022-09-03T03:15:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 257,
"event_type": "talk",
"title": "鄉民如何用Python協作貢獻天文教育",
"speakers": ["蘇羿豪"],
"begin_time": "2022-09-03T03:25:00Z",
"end_time": "2022-09-03T03:55:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 248,
"event_type": "talk",
"title": "在IC產業中寫python 是一種什麼樣的體驗?",
"speakers": ["吳啟聖"],
"begin_time": "2022-09-03T04:55:00Z",
"end_time": "2022-09-03T05:25:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "NOVICE",
"break_event": false
},
{
"event_id": 244,
"event_type": "talk",
"title": "Integrate Schema Registry & Kafka in Python to Build Streaming Processing",
"speakers": ["Mars Su"],
"begin_time": "2022-09-03T05:30:00Z",
"end_time": "2022-09-03T06:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 231,
"event_type": "talk",
"title": "醫療影像AI產品落地挑戰與持續優化的歷程分享",
"speakers": ["陳穗碧"],
"begin_time": "2022-09-03T06:05:00Z",
"end_time": "2022-09-03T06:35:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ZHEN",
"python_level": "INTERMEDIATE",
"break_event": false
}
],
"3-r012": [
{
"event_id": 177,
"event_type": "custom",
"title": "Break",
"speakers": [],
"begin_time": "2022-09-03T02:40:00Z",
"end_time": "2022-09-03T02:45:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 178,
"event_type": "custom",
"title": "Break",
"speakers": [],
"begin_time": "2022-09-03T03:15:00Z",
"end_time": "2022-09-03T03:25:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 180,
"event_type": "custom",
"title": "Break",
"speakers": [],
"begin_time": "2022-09-03T05:25:00Z",
"end_time": "2022-09-03T05:30:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
},
{
"event_id": 181,
"event_type": "custom",
"title": "Break",
"speakers": [],
"begin_time": "2022-09-03T06:00:00Z",
"end_time": "2022-09-03T06:05:00Z",
"is_remote": false,
"recording_policy": true,
"language": "",
"python_level": "",
"break_event": true
}
],
"5-r1-1": [
{
"event_id": 230,
"event_type": "talk",
"title": "Demystifying Python's Internals: Diving into CPython by implementing a pipe operator",
"speakers": ["Sebastiaan Zeeff"],
"begin_time": "2022-09-03T04:55:00Z",
"end_time": "2022-09-03T05:25:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 229,
"event_type": "talk",
"title": "Implement Shion(詩音) from SingaBitofHarmony(讓我聽見愛的歌聲) with Python",
"speakers": ["nikkie"],
"begin_time": "2022-09-03T05:30:00Z",
"end_time": "2022-09-03T06:00:00Z",
"is_remote": false,
"recording_policy": true,
"language": "JPEN",
"python_level": "INTERMEDIATE",
"break_event": false
},
{
"event_id": 267,
"event_type": "talk",
"title": "From Field to the Cloud: A Geo Person's Python Toolchain",
"speakers": ["Ian Panganiban"],
"begin_time": "2022-09-03T06:05:00Z",
"end_time": "2022-09-03T06:35:00Z",
"is_remote": false,
"recording_policy": true,
"language": "ENEN",
"python_level": "INTERMEDIATE",
"break_event": false
}
],
"5-r1-2": [
{
"event_id": 263,
"event_type": "talk",
"title": "REST API request payload validator as a decorator",
"speakers": ["Sammy Wen"],
"begin_time": "2022-09-03T04:55:00Z",
"end_time": "2022-09-03T05:25:00Z",
"is_remote": false,
"recording_policy": true,