-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
869 lines (747 loc) · 24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Northern Wind</title>
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<meta name="theme-color" content="#f8f5ec" />
<meta name="msapplication-navbutton-color" content="#f8f5ec">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#f8f5ec">
<meta name="author" content="Chun-Fu Chao" /><meta name="description" content="Maybe you will get some, maybe you won't" />
<meta name="generator" content="Hugo 0.134.3 with theme even" />
<link rel="canonical" href="https://www.chunfuchao.com/" />
<link href="https://www.chunfuchao.com/index.xml" rel="alternate" type="application/rss+xml" title="Northern Wind" />
<link href="https://www.chunfuchao.com/index.xml" rel="feed" type="application/rss+xml" title="Northern Wind" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link href="/sass/main.min.e1e2a0bc37cfb7c7c75cf44bf0dddb9731bfd371c71d7c30dc1e5b6932f4ef5e.css" rel="stylesheet">
<link rel="stylesheet" href="/css/twitter_center.css">
<meta property="og:url" content="https://www.chunfuchao.com/">
<meta property="og:site_name" content="Northern Wind">
<meta property="og:title" content="Northern Wind">
<meta property="og:description" content="Maybe you will get some, maybe you won't">
<meta property="og:locale" content="zh_TW">
<meta property="og:type" content="website">
<meta itemprop="name" content="Northern Wind">
<meta itemprop="description" content="Maybe you will get some, maybe you won't">
<meta itemprop="datePublished" content="2024-11-11T21:00:00+08:00">
<meta itemprop="dateModified" content="2024-11-11T21:00:00+08:00">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Northern Wind">
<meta name="twitter:description" content="Maybe you will get some, maybe you won't">
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20170427/classList.min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dest/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="mobile-navbar" class="mobile-navbar">
<div class="mobile-header-logo">
<a href="/" class="logo">Northern Wind</a>
</div>
<div class="mobile-navbar-icon">
<span></span>
<span></span>
<span></span>
</div>
</div>
<nav id="mobile-menu" class="mobile-menu slideout-menu">
<ul class="mobile-menu-list">
<a href="/">
<li class="mobile-menu-item">Home</li>
</a><a href="/cs291/">
<li class="mobile-menu-item">CS291</li>
</a><a href="https://github.com/FrankNine/franknine.github.io/wiki">
<li class="mobile-menu-item">Wiki</li>
</a><a href="/index.xml">
<li class="mobile-menu-item">RSS</li>
</a>
</ul>
</nav>
<div class="container" id="mobile-panel">
<header id="header" class="header">
<div class="logo-wrapper">
<a href="/" class="logo">Northern Wind</a>
</div>
<nav class="site-navbar">
<ul id="menu" class="menu">
<li class="menu-item">
<a class="menu-item-link" href="/">Home</a>
</li><li class="menu-item">
<a class="menu-item-link" href="/cs291/">CS291</a>
</li><li class="menu-item">
<a class="menu-item-link" href="https://github.com/FrankNine/franknine.github.io/wiki">Wiki</a>
</li><li class="menu-item">
<a class="menu-item-link" href="/index.xml">RSS</a>
</li>
</ul>
</nav>
</header>
<main id="main" class="main">
<div class="content-wrapper">
<div id="content" class="content">
<section id="archive" class="archive">
<div class="collection-title">
<h2 class="archive-year">2024</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2024-11-11
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/steam-deck-reset-sudo-password/" class="archive-post-link">
Steam Deck 重置 sudo 密碼
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2024-02-27
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/years-of-the-devil/" class="archive-post-link">
Years of the Devil
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2023</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2023-08-09
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/igtm-se-zh-tw-srt/" class="archive-post-link">
Indie Game: The Movie Special Edition 正體中文字幕
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2023-06-15
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/whisper-colab/" class="archive-post-link">
在 Colab 上執行 Whisper 產生字幕
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2023-06-07
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/gatcha-game-notes/" class="archive-post-link">
手機營運類遊戲筆記
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2023-04-23
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-git-en/" class="archive-post-link">
Unity and Git
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2023-04-19
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/choose-boring-technology/" class="archive-post-link">
選擇無聊的技術
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2022</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2022-11-21
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/everything-you-do-is-ultimately-pointless/" class="archive-post-link">
你所嘗試的一切終究是徒勞
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2020</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2020-05-10
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-git/" class="archive-post-link">
Unity 和 git
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2020-05-08
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-sign-in-with-apple/" class="archive-post-link">
Unity 和 Sign in with Apple
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2020-03-08
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/there-is-no-compensation/" class="archive-post-link">
沒有人會賠你的
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2017</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2017-12-29
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-unit-testing-in-resharper-and-rider/" class="archive-post-link">
使用 ReSharper 或 Rider 在編輯器裡執行 Unity 元件測試
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2017-03-26
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/assets-objects-and-serialization/" class="archive-post-link">
Asset、Object 與序列化
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2017-03-26
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/assets-resources-and-assetbundles/" class="archive-post-link">
AssetBundle 與 Resources 指南
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2017-03-09
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/apple-ios-review-and-hot-update/" class="archive-post-link">
Apple iOS 審查與動態更新
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2017-02-07
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/hype-driven-development/" class="archive-post-link">
一窩蜂驅動開發
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2017-02-02
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/macos-sierra-wine/" class="archive-post-link">
在 macOS Sierra 透過 Wine 執行日文 Windows 遊戲
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2017-01-18
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/super-mario-run/" class="archive-post-link">
Super Mario Run
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2016</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-10-23
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/video-game-propose/" class="archive-post-link">
電玩開發者的浪漫求婚
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-07-14
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-2d-graphics-optimization/" class="archive-post-link">
Unity 2D 繪圖最佳化概論
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-06-18
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/android-gpu-profilers/" class="archive-post-link">
Android GPU Profiler
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-06-11
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-profiling-tools/" class="archive-post-link">
Unity 手機遊戲最佳化雜談 – 內建 Profiling 工具
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-06-06
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/adb-tcp-mode/" class="archive-post-link">
ADB TCP Mode
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-06-05
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-mobile-optimization-prologue/" class="archive-post-link">
Unity 手機遊戲最佳化雜談 – 概論
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-04-23
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/why-attending-game-developers-conference/" class="archive-post-link">
為什麼要參加 Game Developers Conference
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-03-19
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/game-developers-conference/" class="archive-post-link">
Game Developers Conference
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-02-15
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/apple-worldwide-developer-relations-certificate-fix/" class="archive-post-link">
修復 Apple 開發憑證
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2016-01-05
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-foreach/" class="archive-post-link">
Unity 的 foreach
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2015</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-12-09
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-crash-report/" class="archive-post-link">
Unity CrashReport
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-11-07
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-on-ios9/" class="archive-post-link">
Unity on iOS9
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-11-01
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/unity-android-6-permission/" class="archive-post-link">
Unity 在 Android 6.0 (Android M) 的權限問題
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-09-26
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/configure-xcode-project-with-postprocessbuild/" class="archive-post-link">
使用 PostProcessBuild 設定 Unity 產生的 Xcode Project
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-07-26
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/tortoise-and-hare/" class="archive-post-link">
一個龜兔賽跑(?)的寓言
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-07-05
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/first-step/" class="archive-post-link">
第一步
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-06-23
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/extra-credits-the-pre-production-problem/" class="archive-post-link">
Extra Credits – 前期準備的問題
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2015-02-04
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/extra-credits-minimum-viable-product/" class="archive-post-link">
Extra Credits – 做出你的第一個遊戲: 最小可行產品
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2014</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2014-11-06
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/new-day-new-life/" class="archive-post-link">
New Day, New Life
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2014-10-28
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/move-to-linode/" class="archive-post-link">
搬家
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2013</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2013-02-20
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/so-you-want-to-study-abroad/" class="archive-post-link">
所以你想出國唸遊戲程式設計…
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2012</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2012-10-20
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/awkward-silence/" class="archive-post-link">
Awkward silence
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2012-08-22
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/visual-concepts-2/" class="archive-post-link">
荒野工程師求生秘笈(二)
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2012-08-22
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/visual-concepts-1/" class="archive-post-link">
荒野中的工程師求生記錄(一)
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2012-02-19
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/bet-on-it/" class="archive-post-link">
Bet on it
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2011</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-12-17
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/one-and-half-year-passed/" class="archive-post-link">
One and half year passed. And you should never look back.
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-09-16
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/study-abroad/" class="archive-post-link">
求學經驗
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-07-13
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/how-to-debug/" class="archive-post-link">
所以 Bug 要怎麼 De
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-07-12
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/taiwanese-students/" class="archive-post-link">
這個國家的學生都在做甚麼呢?
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-07-12
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/talk-to-ntu-teachers/" class="archive-post-link">
跟老師們的面談 July 2011
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-05-18
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/pittsburgh/" class="archive-post-link">
Pittsburgh 行
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-04-28
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/engineering-entrepreneurship/" class="archive-post-link">
Engineering Entrepreneurship
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-04-04
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/gdc-2011-follow-up/" class="archive-post-link">
GDC Follow Up
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-03-15
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/taiwan-computer-science/" class="archive-post-link">
台灣 Computer Science 教育界的討論
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-03-12
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/gdc-2011-day-3-igf-gdca/" class="archive-post-link">
GDC Day 3 : IGF / GDCA 頒獎典禮
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-03-10
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/gdc-2011-day-3/" class="archive-post-link">
GDC Day 3
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-03-10
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/gdc-2011-day-1-2/" class="archive-post-link">
GDC Day 1~2
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2011-03-09
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/gdc-2011-prologue/" class="archive-post-link">
GDC Prologue
</a>
</span>
</div>
<div class="collection-title">
<h2 class="archive-year">2010</h2>
</div>
<div class="archive-post">
<span class="archive-post-time">
2010-09-02
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/first-day-of-school/" class="archive-post-link">
開學日
</a>
</span>
</div>
<div class="archive-post">
<span class="archive-post-time">
2010-09-02
</span>
<span class="archive-post-title">
<a href="https://www.chunfuchao.com/posts/expedition/" class="archive-post-link">
遠征
</a>
</span>
</div></section>
<nav class="pagination">
</nav>
<script async src="https://comments.app/js/widget.js?2" data-comments-app-website="SVgPxZDS" data-limit="5"></script>
</div>
</div>
</main>
<footer id="footer" class="footer">
<div class="social-links">
<a href="https://twitter.com/aaefiikmnnnr" class="iconfont icon-twitter" title="twitter"></a>
<a href="https://github.com/FrankNine/" class="iconfont icon-github" title="github"></a>
<a href="/index.xml" type="application/rss+xml" class="iconfont icon-rss" title="rss"></a>
</div>
<div class="copyright">
<span class="power-by">
Powered by <a class="hexo-link" href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a>
</span>
<span class="division">|</span>
<span class="theme-info">
Theme -
<a class="theme-link" href="https://github.com/olOwOlo/hugo-theme-even" rel="noopener noreferrer" target="_blank">Even</a>
</span>
<span class="copyright-year">
©
2010 -
2024<span class="heart"><i class="iconfont icon-heart"></i></span><span>Chun-Fu Chao</span>
</span>
</div>
</footer>
<div class="back-to-top" id="back-to-top">
<i class="iconfont icon-up"></i>
</div>
</div>
<script type="text/javascript" src="/lib/jquery/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="/lib/slideout/slideout-1.0.1.min.js"></script>
<script type="text/javascript" src="/js/main.min.4ae89da218555efa0e7093a20b92017d2e1202b66fff9fc2edf4cb8d44b44c6e.js"></script>
</body>
</html>