Skip to content

Commit 43d3181

Browse files
committed
add file examples/Display.ipynb and link it in README.md
1 parent 7c4271c commit 43d3181

File tree

3 files changed

+470
-2
lines changed

3 files changed

+470
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
- [Worker Pools](examples/Worker_Pools.ipynb)
3232
- [Matrix Operations](examples/Matrix_Operations.ipynb)
3333
- [Facial Recognition](examples/Facial_Recognition_MachineBox.ipynb)
34+
- [Display Images, HTML, LaTeX...](examples/Display.ipynb)
3435

3536
## Installation
3637

examples/Display.ipynb

Lines changed: 467 additions & 0 deletions
Large diffs are not rendered by default.

messages.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"encoding/json"
88
"time"
99

10-
"github.com/satori/go.uuid"
1110
zmq "github.com/pebbe/zmq4"
11+
"github.com/satori/go.uuid"
1212
)
1313

1414
// MsgHeader encodes header info for ZMQ messages.
@@ -38,7 +38,7 @@ type msgReceipt struct {
3838
}
3939

4040
// bundledMIMEData holds data that can be presented in multiple formats. The keys are MIME types
41-
// and the values are the data formatted with respect to it's MIME type. All bundles should contain
41+
// and the values are the data formatted with respect to its MIME type. All bundles should contain
4242
// at least a "text/plain" representation with a string value.
4343
type BundledMIMEData map[string]interface{}
4444

0 commit comments

Comments
 (0)