Web Storage API Part 1 - LocalStorage and SessionStorage
Explains the Web Storage API, focusing on synchronous key/value storage using localStorage and sessionStorage for browser-based data.
Explains the Web Storage API, focusing on synchronous key/value storage using localStorage and sessionStorage for browser-based data.
Explores two methods for estimating JSON serialization size in .NET: a 100% accurate LengthOnlyStream and a faster, approximate JsonEstimator.
A technical article on optimizing Go's standard JSON encoder for large datasets, achieving up to 55% speed improvements.
Introducing dsq, a command-line tool for running SQL queries against JSON, CSV, Excel, Parquet, and other data file formats.
Explains how to analyze large JSON files that exceed memory limits using partial JSON parsing techniques in Node.js.
A Swift developer explores using Codable to encode/decode references between types, solving data duplication in JSON-based document models.
Explains how to integrate ASP.NET Core Minimal APIs with Razor Pages for efficient JSON data handling in web applications.
Explains how to import JSON files directly into ES modules using the JSON modules proposal and import assertions in JavaScript.
A technical exploration of performance differences between row-oriented and column-oriented data structures for in-memory data processing.
A personal explanation of serialization and deserialization, using analogies and examples from Go and Wikipedia to clarify the concepts.
A Django tutorial explaining user session data, how it works, its storage engines, and how to access it via request.session.
Explains how Swift 5.5's Codable API automatically synthesizes encoding/decoding for enums, including those with associated values.
A walkthrough of building a basic JSON parsing library from scratch using modern C++ features like move semantics and smart pointers.
Explores YAML's lesser-known features, starting with its relationship to JSON and how JSON syntax is valid YAML.
A tutorial on using the JavaScript fetch() API to make GET and POST requests with JSON data, including setting headers and parsing responses.
A technical guide on building a performant object previewer in JavaScript to avoid UI freezes when handling large data structures.
Explains how to customize JSON encoding/decoding for external Swift types like TimeZone using wrapper types and Codable.
A beginner's tutorial on building a basic JSON API using the Python Flask web framework, covering setup, routing, and CRUD operations.
Explores the surprising flexibility of YAML keys, including spaces and special characters, with examples from Home Assistant config.
A tutorial on how to read and test JSON objects and arrays using the Cypress testing framework, covering dot and bracket notation.