Timothy
2d0df9c5de
Update 07.4.md
...
错别字更正
2014-02-12 13:10:58 +08:00
chuyik
3502fd31a5
Update 05.1.md
...
RowsAffected打错了
2014-02-11 15:28:45 +08:00
morikat
a4e20cc79f
Fix issue with missing built-in image of the epub generated
2014-02-06 23:11:30 +09:00
astaxie
2be9b1e28c
Merge pull request #312 from mikulely/patch-4
...
补上段落结束的句号
2014-01-26 07:03:55 -08:00
astaxie
75f06cd56d
Merge pull request #311 from mikulely/patch-3
...
统一语言和专有名词的大小写
2014-01-26 07:03:38 -08:00
astaxie
f30e96e7e1
Merge pull request #310 from mikulely/patch-2
...
将链接名和被链接文件名进行统一
2014-01-26 07:03:16 -08:00
astaxie
4a7b00022f
Merge pull request #309 from mikulely/patch-1
...
改进对POST和GET的描述
2014-01-26 07:03:06 -08:00
astaxie
f6e5a8a0a0
Merge pull request #307 from mikulely/patch-11
...
将链接名和被链接文件名进行统一
2014-01-26 07:01:16 -08:00
astaxie
76315c267c
Merge pull request #306 from mikulely/patch-10
...
HTTP作为协议名时统一使用大写(03.0节)
2014-01-26 07:00:23 -08:00
astaxie
a56e740a6d
Merge pull request #305 from mikulely/patch-9
...
更正笔误
2014-01-26 06:59:54 -08:00
astaxie
4557cb6a3d
Merge pull request #304 from mikulely/patch-6
...
调整示例程序格式
2014-01-26 06:59:33 -08:00
astaxie
442c96fe69
Merge pull request #303 from mikulely/patch-8
...
修改对close 的描述
2014-01-26 06:59:08 -08:00
astaxie
adf892aecd
Merge pull request #301 from mikulely/patch-4
...
环境变量名采用大写形式
2014-01-26 06:58:43 -08:00
astaxie
f52adb2d17
Merge pull request #300 from mikulely/patch-3
...
改写"包含分" 语病
2014-01-26 06:58:15 -08:00
astaxie
6826c4b412
Merge pull request #299 from mikulely/patch-2
...
添加段落结束落下的句号
2014-01-26 06:57:45 -08:00
astaxie
ee184e7bd8
Merge pull request #207 from smilefish1987/patch-1
...
Update 10.2.md
2014-01-26 06:54:15 -08:00
Jiaying Ren
92422f5c8e
补上段落结束的句号
2014-01-25 15:11:38 +08:00
Jiaying Ren
e660e3144e
统一语言和专有名词的大小写
...
+ web => Web
+ GO,go => Go
+ python => Python
+ ruby => Ruby
2014-01-25 13:26:03 +08:00
Jiaying Ren
e7dcd75b1c
将链接名和被链接文件名进行统一
2014-01-25 13:20:50 +08:00
Jiaying Ren
04a4116584
改进对POST和GET的描述
...
# 结构上的改进
原来的描述在未引入任何对POST和GET的解释的情况下,先上了两张对POST和GET的抓包图,这势必引起之前没有接触过HTTP协议的同学的困惑。
故将对HTTP POST和 GET的描述放在两张抓图之前,使得条理更加清晰。
# 排版上的调整
1. 将原先中英文句号混用的情况统一成使用中文句号
2. 将原文中 `body` 和 `Body` 混用的情况统一为使用小写版本
3. 将正文中的代码片段使用反斜线进行包裹,如 `EditPosts.aspx?name=test1&id=123456`
2014-01-25 13:17:52 +08:00
Jiaying Ren
e17838b9f0
将链接名和被链接文件名进行统一
2014-01-25 11:17:10 +08:00
Jiaying Ren
5ff5905f7c
HTTP作为协议名时统一使用大写(03.0节)
...
从下一章看到基本上提到http 这四字母,如果要表示HTTP 协议,都使用了大写。而在表示 net/http 包时都用了小写。故这里表示协议,应该全部大写。
2014-01-25 11:14:21 +08:00
Jiaying Ren
f9ecac1f13
更正笔误
2014-01-23 21:39:23 +08:00
Jiaying Ren
52844de955
修改对close 的描述
2014-01-23 21:23:13 +08:00
Jiaying Ren
7bd28a6fd7
调整示例程序格式
...
将程序和输出放在某个代码片段中,应该有格式的统一。
另一个方式是将程序输出放在一个单独的代码片段中,类似 https://gobyexample.com/hello-world
2014-01-23 21:10:57 +08:00
Jiaying Ren
10dd9b20c3
改进对反射的描述
...
原句中`所谓反射就是动态运行时的状态。`,去掉形容词就是说`反射就是状态`?
按照The Laws of Reflection中的解释: `Reflection in computing is the ability of a program to examine its own structure, particularly through types;`
可以看出反射是程序的一种能力。FYI.
2014-01-23 21:02:54 +08:00
Jiaying Ren
156ee7ac52
环境变量名应为大写
...
看了下书里提到 goroot 只有一处
> ➜ ebook git:(master) grep goroot *.md
02.3.md:上面这个fmt是Go语言的标准库,其实是去goroot下去加载该模块,当然Go的import还支持如下两种方式来加载自己写的模块:
而fmt 包的位置则是在 `GOROOT` 环境变量指定目录下的 `src/pkg/fmt`中。
2014-01-19 16:48:30 +08:00
Jiaying Ren
4094e84af9
改写"包含分" 语病
...
另外这句话中先说了流程控制的好处,再说流程控制的分类时,感觉是在说所有语言的流程控制。所以还是明确限定成Golang比较好。
因为毕竟并不是所有的语言都有goto。
2014-01-18 19:20:17 +08:00
Jiaying Ren
38017b602f
添加段落结束落下的句号
2014-01-18 19:13:07 +08:00
astaxie
50e677514c
Merge pull request #295 from mikulely/patch-1
...
添加段落结束落下的句号
2014-01-17 17:46:30 -08:00
Jiaying Ren
621ca2a7d2
操作系统名采用统一的首字母大写。
...
> `go build`的时候会选择性地编译以系统名结尾的文件(linux、darwin、windows、freebsd)。例如Linux系统下面编译只会选择array_linux.go文件,其它系统命名后缀文件全部忽略。
这句话里两次说到Linux,一次大写,一次小写。
2014-01-17 18:24:44 +08:00
Jiaying Ren
e5f36b29f3
添加段落结束落下的句号
2014-01-17 18:20:22 +08:00
Siong-Ui Te
9e9e1608af
裡===》里
2014-01-08 10:28:35 +08:00
Siong-Ui Te
576d3041f6
轉簡體字
2014-01-08 10:16:09 +08:00
Siong-Ui Te
3134a0158a
新增database/sql教學網站
2014-01-08 03:40:29 +08:00
MatrixYuri
54e39ba3ba
Add some output
...
添加了示例代码的一些实际输出信息,以及报错的内容
2014-01-02 00:35:43 +08:00
Shin Kojima
5d9b06f3d9
Add config as language file
...
This patch will change several behaviour while generating the ebook:
- `build.go` now accepts two environment variables: TMP, WORKDIR
* TMP:
Temporary directory path.
The directory stores intermediate files like '*.html' or metadata.txt.
* WORKDIR:
Script base directory.
- `config` as language file
config file will be `source`d to change its ebook metadata.
- `genepub.sh` is integrated to `build.sh` and `build.go`
See `FixHeader` and `RemoveFooterLink` functions.
2013-12-31 13:10:27 +09:00
Larry Battle
837782153e
Shorter example and formatting.
...
- Refactored the last example because it was too long.
- Output should be a comment.
2013-12-02 16:41:14 -06:00
Larry Battle
6be27d951e
Corrected format for Description
...
Corrected format for `Description`
2013-11-26 01:18:02 -06:00
astaxie
4a03e79485
Merge pull request #273 from 6yf/patch-5
...
微小改动
2013-11-23 19:17:45 -08:00
astaxie
8cd64b7ed0
Merge pull request #272 from 6yf/patch-4
...
“显示的”=>“显式的”; rob => Rob
2013-11-23 19:17:22 -08:00
astaxie
af3d980f90
Merge pull request #271 from 6yf/patch-3
...
A few typos & minor improvement: Sayhi => SayHi, etc.
2013-11-23 19:16:31 -08:00
astaxie
815befafa8
Merge pull request #270 from 6yf/patch-2
...
合并两次b.Volume()为一次调用
2013-11-23 19:15:54 -08:00
6yf
ce37382a9d
微小改动
2013-11-22 17:09:24 +08:00
6yf
0a828ae3ce
“显示的”=>“显式的”; rob => Rob
2013-11-22 16:34:16 +08:00
6yf
cddb6efd03
A few typos & minor improvement: Sayhi => SayHi, etc.
...
小细节改进。谢谢老谢分享的大作,很适合学习Go。
2013-11-22 16:12:41 +08:00
6yf
3d562b202f
合并两次b.Volume()为一次调用
...
合并两次b.Volume()为一次调用,培养注重效率的习惯,充分利用Go的if可设初始值的特性。
2013-11-22 14:59:57 +08:00
6yf
1f63d7ed1d
Update 02.5.md
...
结尾处“共有”改为“公有”。
2013-11-22 14:35:02 +08:00
ahjdzx1990
45c26b76b5
Update 01.5.md
...
“然后结束了”改为“然后介绍了”
2013-11-16 17:51:55 +08:00
jasonz
c32493a2cf
fix typo
2013-11-14 00:09:12 +08:00