Library of Examples

Stream Work:

| binaryStream |
binaryStream := 'Hello binary!' asByteArray readStream.
(ZnCharacterReadStream on: binaryStream encoding: #iso88592) upToEnd class = ByteString.
"Useful to also create a FileReference>>readStreamEncoded:do: example."

JSON - One of the AWS videos has a lot of JSON conversion code from the command line, this may be a good place to try out:

Metacello new
	repository: 'github://svenvc/NeoJSON/repository';
	baseline: 'NeoJSON';
	load.
"Compare this with https://github.com/mattonem/Phlog"

ZnClient browseHierarchy.