Deserialize JSON field with multiple possible types in Rust
A guide to handling JSON fields with multiple possible data types (like strings, integers, arrays) during deserialization in Rust using the serde library.
A guide to handling JSON fields with multiple possible data types (like strings, integers, arrays) during deserialization in Rust using the serde library.
A tutorial on exporting key-value pairs from Azure App Configuration Service to a JSON file using Azure CLI commands.
A developer shares two free tools, n:point and Mockeroo, for quickly mocking and generating API endpoints and data for prototyping and testing.
A tutorial on building a basic jq-like JSON parser in Go, focusing on memory-efficient partial parsing and using Go's profiler for optimization.
A developer shares their naive approach to building a custom parser in Elixir to migrate recipe data from a JSON file to a new format.
A guide comparing JSON, YAML, and TOML configuration file formats, showing syntax examples and use cases.
An updated guide on using the Azure Resource Explorer tool within the Azure Portal to view and analyze Azure resources as JSON.
Explains how to import and strongly type JSON data in TypeScript using the resolveJsonModule compiler option and the typeof operator.
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.