Skip to content

Commit

Permalink
Fix permissions, broken links, and a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nathany committed Jul 12, 2017
1 parent 91a5fc1 commit 86e1cce
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 01-dcom.slide
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Protocol Buffers use numbered fields in their message definitions, which guarant
- You never modify existing fields
- But you may add more fields to a message

Old clients will continue to work, and new clients can use newer fields. Server-side code is epected to handle both gracefully.
Old clients will continue to work, and new clients can use newer fields. Server-side code is expected to handle both gracefully.


* Protocol Buffers
Expand Down
2 changes: 1 addition & 1 deletion 06-consensus.slide
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The short version is you need at least 3 for fault tolerance, and good practice

Together:

Walk throug
Walk through
src/consensus/demos/raft

Run it on as single server, then as three nodes (with different ports)
Expand Down
12 changes: 6 additions & 6 deletions 10-dcomframeworks.slide
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Even though micro is more of a full-stack, you can still pick which backend tech

`gizmo` was written by the NY Times. It is relatively opinionated, and does a lot of work for you if you like the opinions they support.

.link src/github.com/nytimes/gizmo/examples/servers/rpc Example RPC Service
.link https://github.com/NYTimes/gizmo/tree/master/examples/servers/rpc Example RPC Service

`gizmo` has fewer plugins/options than `micro`

Expand All @@ -77,12 +77,12 @@ Even though micro is more of a full-stack, you can still pick which backend tech

Explore go-micro

.link https://github.com/micro/go-micro/tree/master/examples/service
.link https://github.com/micro/examples/tree/master/service

1. Run the example service
2. Install the cli https://github.com/micro/micro/tree/master/cli
3. Run the micro web dashboard https://github.com/micro/micro/tree/master/web
4. Explore and run the micro example services https://github.com/micro/micro/tree/master/examples using CLI and Web
2. Install the cli [[https://github.com/micro/micro/tree/master/cli]]
3. Run the micro web dashboard [[https://github.com/micro/micro/tree/master/web]]
4. Explore and run the micro example services [[https://github.com/micro/examples/tree/master/service]] using CLI and Web

Together: Run the micro slack bot: https://github.com/micro/micro/tree/master/bot
Together: Run the micro slack bot: [[https://github.com/micro/micro/tree/master/bot]]

2 changes: 1 addition & 1 deletion src/architecture/exercises/minio/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func main() {
log.Fatalln(err)
}

// Make a new bucked
// Make a new bucket
bucketName := "gophertrain"
location := "us-east-1"

Expand Down
2 changes: 1 addition & 1 deletion src/consensus/demos/raft/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var joinAddr string
func init() {
flag.StringVar(&httpAddr, "httpaddr", defaultHTTPAddr, "Set the HTTP bind address")
flag.StringVar(&raftAddr, "raftaddr", defaultRaftAddr, "Set Raft bind address")
flag.StringVar(&joinAddr, "join", "", "[optional] The address of a node to join. Leave empty to boostrap your first node.")
flag.StringVar(&joinAddr, "join", "", "[optional] The address of a node to join. Leave empty to bootstrap your first node.")
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage: %s [options] <raft-data-path> \n", os.Args[0])
flag.PrintDefaults()
Expand Down
Empty file modified src/dcom/exercises/logger/nats-docker.sh
100644 → 100755
Empty file.
Empty file modified src/dcom/exercises/onenode/nats-docker.sh
100644 → 100755
Empty file.

0 comments on commit 86e1cce

Please sign in to comment.