9 Matching Annotations
- Nov 2023
-
github.com github.com
-
MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON but it's faster and smaller.
Tags
Annotators
URL
-
- Oct 2023
-
www.thenewatlantis.com www.thenewatlantis.com
-
the Stream replaces topology with serialization.
How do we experience the zettelkasten with respect to the garden and the stream metaphor?
-
- Jul 2023
-
protobuf.dev protobuf.dev
Tags
Annotators
URL
-
- Sep 2022
-
www.rfc-editor.org www.rfc-editor.org
-
However, links between resources need not be format specific; it can be useful to have typed links that are independent of their serialisation, especially when a resource has representations in multiple formats.
-
- May 2021
-
grpc.io grpc.io
-
gRPC can use protocol buffers as both its Interface Definition Language (IDL) and as its underlying message interchange format
-
-
-
protocol buffers as the Interface Definition Language (IDL) for describing both the service interface and the structure of the payload messages.
-
-
-
This improves serialization and deserialization times
Tags
Annotators
URL
-
- Dec 2020
-
stackoverflow.com stackoverflow.com
-
class Session extends Map { set(id, value) { if (typeof value === 'object') value = JSON.stringify(value); sessionStorage.setItem(id, value); } get(id) { const value = sessionStorage.getItem(id); try { return JSON.parse(value); } catch (e) { return value; } } }
-
-
sapper.svelte.dev sapper.svelte.dev
-
When Sapper renders a page on the server, it will attempt to serialize the resolved value (using devalue) and include it on the page, so that the client doesn't also need to call preload upon initialization.
-