Eric AllamforAPI Hero blogmaverickdotdev-1650030744087.hashnode.net·Apr 22, 2022FeaturedIntroducing JSON Hero: an open-source, beautiful JSON viewer for the web that lets you browse, search and navigate your JSON files at speed. 🚀Programming on the web in 2022: https://twitter.com/tlakomy/status/1491049739978436612 So we set out to create a new tool to make reading and understanding JSON easier and more efficient than a Wall-O-Text: It's too easy to get lost in a deeply nest...Akhil Gautam and 12 others are discussing this13 people are discussing thisDiscuss·236 likes·20.8K readsjson
Ronald Blüthldevoted.hashnode.net·Apr 2, 2022FeaturedHow to implement better APIsTL;DR I created "reference implementation" based on my recent post on How to design better APIs. I tried my best to practically implement all tips mentioned in the article. It's built with Next.js. Check it out here. Walk-through Video https://www.yo...Discuss·114 likes·3.6K readsAPIs
Tapas Adhikaryatapas.hashnode.net·Apr 21, 2022How to parse JSON in JavaScriptWhat is JSON? JSON, also known as JavaScript Object Notation, is a text-based data exchange format. It is a collection of key-value pairs with a few rules to keep in mind, The key must be a string type and enclosed in double-quotes. The value can be...Olubisi Idris Ayinde and 2 others are discussing this3 people are discussing thisDiscuss·97 likes·13.6K readsJavaScriptGreat article. I love the explanation. Thanks for sharing Tapas Adhikary 3
Shai Almogcodenameone.hashnode.net·Apr 25, 2023Revolutionize JSON Parsing in Java with ManifoldJava developers have often envied JavaScript for its ease of parsing JSON. Although Java offers more robustness, it tends to involve more work and boilerplate code. Thanks to the Manifold project, Java now has the potential to outshine JavaScript in ...Discuss·20 likes·279 readsjson
Igor Rodionovrodionov5.hashnode.net·Apr 24, 2023JSON to PDF Magic: Harnessing LaTeX and JSON for Effortless Customization and Dynamic PDF GenerationIn this article, we show how to control the layout and content of the PDF document via the JSON body of the API call. We present three different JSON examples and produce three different types of documents using the same end-point. In each case, maki...Discuss·1 likeProgramming Blogs
Nikhil Akkinikhilakki.hashnode.net·Apr 22, 2023What is JSON Schema?I recently used JSON Schema in one of my projects for API request validation on AWS API gateway. I found it overwhelming at first, but quite powerful as it fit our use case quite well. Validating request before it hits your back-end system can filter...Discussjson-schema
webbureaucratwebbureaucrat.hashnode.net·Apr 20, 2023Parsing JSON in ReScript Part III: Getting to the PointAfter having established some requirements and some basic utilities, we're ready for the fun part: putting the pieces together. At the end of this post, we will have our working parser. Writing our pipeline functions When we use our parsing library, ...Discussrescript
Vrishni Shree V Bvrishni.hashnode.net·Apr 19, 2023DevOps, Day - 15Reading JSON and YAML in Python Basic differences between YAML and JSON As a DevOps Engineer, you should be able to parse files, be it txt, json, yaml, etc. As a DevOps Engineer, it's important to be able to read and work with different types of f...Discuss·45 readsDevops
vrushabh mahadikvrushabhmahadik.hashnode.net·Apr 19, 2023Day 15 Task :Python Libraries for DevOpsReading JSON and YAML in Python As a DevOps Engineer, you should be able to parse files, be it Txt, json, yaml, etc. You should know what libraries one should use in Python for DevOps. Python has numerous libraries like os, sys, json, yaml etc tha...DiscussDevops
webbureaucratwebbureaucrat.hashnode.net·Apr 18, 2023Parsing JSON in ReScript Part II: Building BlocksThis is the second in a series of articles on how to build one's own, general-purpose parsing library. After having established a few expectations in the previous post, we are ready to begin building our utilities for our library. Let's start with so...Discussrescript
webbureaucratwebbureaucrat.hashnode.net·Apr 17, 2023Parsing JSON in ReScript Part I: Prerequisites and RequirementsThere are few things more satisfying than a slick, readable, and safe JSON parser. It's one of the joys of functional programming. Using a good JSON parsing pipeline can feel like magic. This series seeks to lift the veil and empower readers (and, im...Discussrescript
Sanyam SainiforSanyam's blogitssanyam.hashnode.net·Apr 17, 2023Understanding YAML and JSONIntroduction In today's world of data-driven applications, efficient and reliable data serialization and manipulation are critical skills for any developer. Two of the most popular data serialization formats are YAML and JSON. While they have many si...DiscussBlogsWithCC
Shivraj Salunkheshivrajofficial.hashnode.net·Apr 16, 2023Python Libraries for DevOps-> Reading JSON in Python To read JSON files in Python, you can use the json module. import json # Open the JSON file with open('data.json') as f: data = json.load(f) # Access data in the JSON file print(data['name']) In this example, we open ...DiscussDevops