Ganesh Rama HegdeforDesign Patterns in Software Blogdesignpatterns.hashnode.dev·Sep 1, 2024Abstract Factory PatternThe Abstract Factory Pattern is another creational design pattern that provides an interface for creating families of related or dependent objects without specifying their concrete classes. Instead of just creating one type of object, like in the Fac...Discuss·1 likeTypeScript
Kaif Khankwiz.hashnode.dev·Jul 9, 2024Build Your own JSON Parser (Day-2)Welcome back! I hope you enjoyed the previous blog on this topic. This is a continuation, so let's dive in and discuss today's scope. Scope Today, we take a step forward and extend our Lexer as well as Parser to recognize key-value pairs. We focus on...Discuss·1 like·33 readsjson
Kaif Khankwiz.hashnode.dev·Jul 7, 2024Build your own JSON Parser in C (Day-1)Introduction Welcome to our first day of building a JSON parser from scratch in the C programming language. Before we start implementing it, let's briefly go over what our JSON parser does. Generally, a JSON parser takes a JSON string and converts it...Discuss·14 likes·115 readsC
MakxforMelsonicmelsonic.hashnode.dev·Jul 5, 2024You Don't Know Json-ParserIntroduction Recently I have been taking up some projects and implementing them in Golang. So, this week I took up the challenge of learning the inner workings of a JSON parser and enforcing it in the Golang programming language. In this blog, I will...Discussjson
Cloud Tunedcloudtuned.hashnode.dev·Apr 28, 2024Daily Hack #day25 - JSON Parser OnlineOnline JSON parsing tools are web-based utilities that allow users to parse and validate JSON (JavaScript Object Notation) data directly within their browser. These tools are invaluable for developers and users who need to work with JSON data but don...DiscussDaily Hacksjson parser
Christian Buchhave Mortensencbm.dev·Apr 4, 2024Parsing multi dimensional json in classic aspHad to do some new stuff to our old classic asp site. Wrote a SQL query which returned json, this had to be parsed and put into a Google graph component. Spent a shit load of time to get to know aspJson and figure out how to get my data. This is what...DiscussASP
Omkar Kirpanomkarkirpan.hashnode.dev·Feb 26, 2024Mastering jq: The Ultimate Guide to Data Transformation Like a Pro1. Overview JSON is a popular structured data format that is utilized in most modern APIs and data services. It is especially popular in online applications because of its lightweight design and interoperability with JavaScript. Unfortunately, shells...Discuss·30 likes·52 readsjq
Piyush Agarwalpiyushagarwal.hashnode.dev·Feb 23, 2024Building a basic JSON parser in RustJSON (JavaScript Object Notation) is a widely used data interchange format that is easy for humans to read and write. In this tutorial, we will explore how to create a basic JSON parser in Rust that will simply tell if the input string is a valid JSO...Discuss·1 like·69 readsRust
Ashish mauryablog.theashishmaurya.me·Dec 29, 2023The Hierarchy of Grammars: Unveiling the Language Rules in Computer ScienceIn our daily used language, we use Grammar, similarly, in computer language, we have a set of rules called grammar on which a language is defined. In this article, we will look into what those Grammars are and how we define and use them. Exploring th...Discuss·10 likes·177 readstoc
Namya Shahbigsmoke.hashnode.dev·Dec 25, 2023Python Requests ModuleFunctions for Making Requests: requests.request(): Sends a request to a specified URL with customizable parameters. requests.get(): Sends a GET request to the specified URL. requests.post(): Sends a POST request to the specified URL with data in t...Discussget requests