• Stars
    star
    179
  • Rank 214,039 (Top 5 %)
  • Language
    Go
  • Created almost 9 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Go言語によるWebアプリケーション開発


表紙


本リポジトリはオライリー・ジャパン発行書籍『Go言語によるWebアプリケーション開発』(原書名『Go Programming Blueprints』) のサポートサイトです。

サンプルコード

サンプルコードの解説は本書籍をご覧ください。

version1ブランチ変更履歴で本書籍の途中のコードを参照することができます。

原書のサンプルコードはgithub.com/matryer/goblueprintsでアクセスできます。

正誤表

下記のとおり、本書に誤りがありました。お詫びして訂正いたします。

誤植など間違いを見つけた方は、japan@oreilly.co.jpまでお知らせください。

第3刷まで

■p.106 12行目

log.Fatalf("%qに類語はありませんでした\n")

log.Fatalf("%qに類語はありませんでした\n", word)

■p.186 29行目

package meander 
type Place struct { 
  *googleGeometry `json:"geometry"` 
  Name string `json:"name"` 
  Icon string `json:"icon"` 
  Photos []*googlePhoto `json:"photos"` 
  Vicinity string `json:"vicinity"` 
} 
type googleResponse struct { 
  Results []*Place `json:"results"` 
} 
type googleGeometry struct { 
  *googleLocation `json:"location"` 
} 
type googleLocation struct { 
  Lat float64 `json:"lat"` 
  Lng float64 `json:"lng"` 
} 
type googlePhoto struct { 
  PhotoRef string `json:"photo_reference"` 
  URL string `json:"url"` 
} 

package meander
type Place struct {
  Geometry *googleGeometry `json:"geometry"`
  Name     string          `json:"name"`
  Icon     string          `json:"icon"`
  Photos   []*googlePhoto  `json:"photos"`
  Vicinity string          `json:"vicinity"`
}
type googleResponse struct {
  Results []*Place `json:"results"`
}
type googleGeometry struct {
  Location *googleLocation `json:"location"`
}
type googleLocation struct {
  Lat float64 `json:"lat"`
  Lng float64 `json:"lng"`
}
type googlePhoto struct {
  PhotoRef string `json:"photo_reference"`
  URL      string `json:"url"`
}

■p.187 31行目

    "lat": p.Lat,
    "lng": p.Lng,

    "lat": p.Geometry.Location.Lat,
    "lng": p.Geometry.Location.Lng,

第2刷まで

■p.36, 41, 46, 49, 50, 53, 61, 63, 77, 88のコマンド

./chat -host=":8080"

./chat -addr=":8080"

■p.24 3行目

必要な最小限のコードをtrace.goに追加します。

必要な最小限のコードをtracer.goに追加します。

■p.73 2行目

io.WriteString(m, strings.ToLower(user.Name()))

io.WriteString(m, strings.ToLower(user.Email()))

■p.86 13行目

io.WriteString(m, strings.ToLower(user.Name()))

io.WriteString(m, strings.ToLower(user.Email()))

第1刷

■p.158 ノート記事の1行目

GowebやGorillzによるmuxパッケージなどは、

GowebやGorillaによるmuxパッケージなどは、

More Repositories

1

deep-learning-from-scratch

『ゼロから作る Deep Learning』(O'Reilly Japan, 2016)
Jupyter Notebook
4,018
star
2

deep-learning-from-scratch-2

『ゼロから作る Deep Learning ❷』(O'Reilly Japan, 2018)
Python
1,055
star
3

deep-learning-from-scratch-3

『ゼロから作る Deep Learning ❸』(O'Reilly Japan, 2020)
Python
722
star
4

automatestuff-ja

『退屈なことはPythonにやらせよう』のリポジトリ
Python
348
star
5

deep-learning-from-scratch-4

『ゼロから作る Deep Learning ❹』(O'Reilly Japan, 2022)
Jupyter Notebook
344
star
6

deep-learning-from-scratch-5

『ゼロから作る Deep Learning ❺』(O'Reilly Japan, 2024)
Jupyter Notebook
225
star
7

conc_ytakano

『並行プログラミング入門』(O'Reilly Japan, 2021)
Rust
209
star
8

learning-react-2e-ja

『Reactハンズオンラーニング 第2版』のリポジトリ
HTML
168
star
9

deep-learning-with-keras-ja

『直感 Deep Learning』のリポジトリ
Python
140
star
10

ml-at-work

電子書籍『仕事ではじめる機械学習』のサポートリポジトリです
Jupyter Notebook
130
star
11

programming-typescript-ja

『プログラミングTypeScript』のリポジトリ
TypeScript
122
star
12

black-hat-python-jp-support

『サイバーセキュリティプログラミング』のサポートページ
Python
108
star
13

RecommenderSystems

『推薦システム実践入門』のリポジトリ
Jupyter Notebook
97
star
14

data-science-on-aws-jp

Jupyter Notebook
91
star
15

black-hat-python-2e-ja

Python
71
star
16

learning-three-js-2e-ja-support

JavaScript
60
star
17

real-world-http

書籍『Real World HTTP』のサポートリポジトリ
60
star
18

hands-on-nodejs

『ハンズオンNode.js』のリポジトリ
JavaScript
59
star
19

practical-go-programming

『実用 Go言語』のサポートリポジトリ
Go
59
star
20

fundamentals-of-deep-learning-ja

『実践 Deep Learning』のリポジトリ
Python
52
star
21

practical-nlp-ja

Jupyter Notebook
48
star
22

binary-hacks-rebooted

『Binary Hacks Rebooted』のサポートリポジトリ
C
46
star
23

ml-security-jp

『セキュリティエンジニアのための機械学習』のリポジトリ
Jupyter Notebook
43
star
24

artificial-intelligence-with-python-ja

『PythonによるAIプログラミング入門』のリポジトリ
Jupyter Notebook
42
star
25

julia-programming-cookbook

Jupyter Notebook
37
star
26

mithril-book-sample

『Mithril - 最速クライアントサイドMVC』のサンプルコード
JavaScript
37
star
27

unity-virtual-reality-projects-ja

C#
35
star
28

concurrency-in-go-support

『Go言語による並行処理』のサポートリポジトリです。
34
star
29

augmented-reality-game-development-ja

C#
28
star
30

mastering-linux-shell-scripting-2e-ja

Shell
27
star
31

machine-learning-with-python-cookbook

Python
22
star
32

pentest-starting-with-port-scanner

『ポートスキャナ自作ではじめるペネトレーションテスト』のリポジトリ
Shell
21
star
33

hands-on-javascript

『ハンズオンJavaScript』のリポジトリ
HTML
21
star
34

building-ml-pipelines-ja

『入門 機械学習パイプライン』のリポジトリ
Jupyter Notebook
20
star
35

automatestuff2-ja

Python
19
star
36

mobile-game-development-with-unity-ja

『Unityによるモバイルゲーム開発』のリポジトリ
C#
17
star
37

building-search-app-w-ml

『機械学習による検索ランキング改善ガイド』のサンプルコードのリポジトリ
Python
17
star
38

real-time-3d-graphics-with-webgl2-2e-ja

『初めてのWebGL 2 第2版』のリポジトリ
HTML
13
star
39

WebAssembly

『ハンズオンWebAssembly』のコードリポジトリ
JavaScript
12
star
40

OpenEndedCodebook

Python
9
star
41

nlp-with-transformers-ja

9
star
42

high-performance-python-2e-ja

Python
6
star
43

efficientlinux-ja

6
star
44

learningtypescript-ja

TypeScript
6
star
45

command-line-rust-ja

6
star
46

designing-ml-systems-ja

5
star
47

network-programmability-and-automation-ja

Python
4
star
48

practical-dl-for-cloud-mobile-edge-ja

Jupyter Notebook
3
star
49

version-control-with-git-3e-ja

2
star
50

ProgrammingPHP_4E

『プログラミングPHP 第4版』のファイル置き場
2
star