Skip to content
This repository was archived by the owner on Oct 26, 2023. It is now read-only.

Commit 8922e36

Browse files
committed
use author email
1 parent 29114c9 commit 8922e36

6 files changed

+6
-6
lines changed

post/2020-10-07-from-template.scrbl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@(require (for-label racket))
33

44
@title{from-template}
5-
@author[(author+email "Lîm Tsú-thuàn" "racket@racket.tw")]
5+
@author[(author+email "Lîm Tsú-thuàn" "dannypsnl@gmail.com")]
66

77
from-template 是一個項目模板產生器,這裏簡單介紹它怎麼安裝及使用。
88

post/2020-10-15-semilit.scrbl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
semilit))
44

55
@title{semilit}
6-
@author[(author+email "Lîm Tsú-thuàn" "racket@racket.tw")]
6+
@author[(author+email "Lîm Tsú-thuàn" "dannypsnl@gmail.com")]
77

88
semilit 是一個文學編程用的語言模組,可以通過以下指令安裝
99

post/2020-10-22-pattern-matching-value.scrbl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@(require (for-label racket))
33

44
@title{Pattern matching value}
5-
@author[(author+email "Lîm Tsú-thuàn" "racket@racket.tw")]
5+
@author[(author+email "Lîm Tsú-thuàn" "dannypsnl@gmail.com")]
66

77
pattern matching 是 Lisp/ML 家族很常見也很好用的功能,但因為語法衝突,我們總是只能選擇以變數名稱做綁定或是取值比對兩種行為。舉例來說:
88

post/2020-11-15-raco-run.scrbl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@(require (for-label racket))
33

44
@title{raco-run}
5-
@author[(author+email "Lîm Tsú-thuàn" "racket@racket.tw")]
5+
@author[(author+email "Lîm Tsú-thuàn" "dannypsnl@gmail.com")]
66

77
raco-run 是一個 raco 指令介面擴展,可以直接通過 raco 執行相應模組內的程式
88

post/2020-11-20-riposte.scrbl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@(require (for-label racket))
33

44
@title{Riposte}
5-
@author[(author+email "Lîm Tsú-thuàn" "racket@racket.tw")]
5+
@author[(author+email "Lîm Tsú-thuàn" "dannypsnl@gmail.com")]
66

77
Riposte 可以像 postman 一樣幫助我們建立可以反覆測試的 HTTP Request,但寫出來的腳本可以提交進 repository 的同時又不需要依賴 postman 這樣的操作介面。可以通過下面的指令安裝:
88

post/2020-12-18-simple-type-check-with-nanopass.scrbl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
nanopass/base))
55

66
@title{用 nanopass 做簡單的類型檢查}
7-
@author[(author+email "Lîm Tsú-thuàn" "racket@racket.tw")]
7+
@author[(author+email "Lîm Tsú-thuàn" "dannypsnl@gmail.com")]
88

99
nanopass 是一種編譯器實作的思想,旨在每個 pass 都只做簡單的最佳化,與傳統個位數個 pass 就做完全部事情相比。這種作法雖然需要遍歷程式更多次,總體而言卻比傳統的做法更有效率,並且遠比傳統做法更容易維護。這次則是以簡單運用 nanopass 作為起頭,以後應該還會繼續擴展這個系列下去 XD。
1010

0 commit comments

Comments
 (0)