File tree Expand file tree Collapse file tree
books/framework-design-guidelines
001-lazy-list-with-generator-and-iterator
002-crawling-stock-data-in-fsharp
haskell-realworld-example Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,11 +66,10 @@ excerpt: "《框架设计指南:构建可复用 .NET 库的约定、惯例和
6666
6767## Q&A
6868
69- 如果译文中有什么错漏之处,还请大家通过 [ issue] ( https://github.com/nodew /blog/issues ) 批评指正。如果有其他任何与本书相关的问题,也可以通过 [ issue] ( https://github.com/nodew /blog/issues ) 和 [ discussion] ( https://github.com/nodew /framework-design-guidelines-cn-community/discussions ) 来共同探讨。
69+ 如果译文中有什么错漏之处,还请大家通过 [ issue] ( https://github.com/unliftedq /blog/issues ) 批评指正。如果有其他任何与本书相关的问题,也可以通过 [ issue] ( https://github.com/unliftedq /blog/issues ) 和 [ discussion] ( https://github.com/unliftedq /framework-design-guidelines-cn-community/discussions ) 来共同探讨。
7070
7171## 其他
7272
73- [ 阅读样章] ( https://github.com/nodew/framework-design-guidelines-cn-community/blob/master/framework-design-guidelines-cn-3rd-sample.pdf )
74-
75- [ 勘误表] ( https://github.com/nodew/framework-design-guidelines-cn-community/blob/master/Corrigenda.md )
73+ [ 阅读样章] ( https://github.com/unliftedq/framework-design-guidelines-cn-community/blob/master/framework-design-guidelines-cn-3rd-sample.pdf )
7674
75+ [ 勘误表] ( https://github.com/unliftedq/framework-design-guidelines-cn-community/blob/master/Corrigenda.md )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const config: GatsbyConfig = {
1111 } ,
1212 social : {
1313 twitter : `wangqiao11` ,
14- github : `nodew ` ,
14+ github : `unliftedq ` ,
1515 } ,
1616 } ,
1717 graphqlTypegen : true ,
Original file line number Diff line number Diff line change 1313 },
1414 "repository" : {
1515 "type" : " git" ,
16- "url" : " git+https://github.com/nodew /blog.git"
16+ "url" : " git+https://github.com/unliftedq /blog.git"
1717 },
1818 "author" : " Qiao Wang <wangqiao11@hotmail.com>" ,
1919 "license" : " UNLICENSED" ,
2020 "bugs" : {
21- "url" : " https://github.com/nodew /blog/issues"
21+ "url" : " https://github.com/unliftedq /blog/issues"
2222 },
23- "homepage" : " https://github.com/nodew /blog#readme" ,
23+ "homepage" : " https://github.com/unliftedq /blog#readme" ,
2424 "dependencies" : {
2525 "@mdx-js/mdx" : " 3.1.1" ,
2626 "@mdx-js/react" : " 3.1.1" ,
Original file line number Diff line number Diff line change @@ -321,6 +321,6 @@ Generator 和 Iterator 是 ES6 带给我们的非常强大的语言层面的能
321321
322322另外,需要特别说明的是,虽然这篇文章通篇是在讲惰性列表,但是惰性列表并不是银弹,相反的,惰性结构的滥用会在程序的执行过程中缓存大量的 thunk,增大在内存上的开销。
323323
324- 完整代码请移步 [ GitHub] ( https://github.com/nodew /lazyList ) 。
324+ 完整代码请移步 [ GitHub] ( https://github.com/unliftedq /lazyList ) 。
325325
326326本文首发于[ 有赞技术博客] ( https://tech.youzan.com/lazy-list-with-generator-and-iterator/ ) 。
Original file line number Diff line number Diff line change @@ -324,4 +324,4 @@ let main argv =
324324
325325以上,就是整个应用的主要实现了,当然为了节省篇幅,中间省去了一些细枝末节。
326326
327- 完整的代码可以去访问我的 [ Github] ( https://github.com/nodew /TStock ) 查看。
327+ 完整的代码可以去访问我的 [ Github] ( https://github.com/unliftedq /TStock ) 查看。
Original file line number Diff line number Diff line change 11---
22name : Haskell realworld example
3- projectUrl : https://github.com/nodew /haskell-realworld-example
3+ projectUrl : https://github.com/unliftedq /haskell-realworld-example
44pinToHomePage : true
55---
66
77A Haskell implementation of ** [ realworld.io] ( https://realworld.io ) ** backend.
8-
Original file line number Diff line number Diff line change 11---
22name : Stargaze CLI
3- projectUrl : https://github.com/nodew /stargaze-cli
3+ projectUrl : https://github.com/unliftedq /stargaze-cli
44pinToHomePage : true
55---
66
77Stargaze is a CLI tool to help you manage your starred projects on GitHub.
8-
You can’t perform that action at this time.
0 commit comments