Vaishnav Mkwishee.hashnode.dev·Sep 28, 2023JSON is incredibly slow: Here’s What’s Faster!Yes, you heard that right! JSON, the ubiquitous format for data interchange in web development, might be slowing down your applications. In a world where speed and responsiveness are paramount, it’s crucial to examine the performance implications of ...Discuss·1 likeJavaScript
Metismetis.hashnode.dev·Sep 28, 2023How to avoid performance bottlenecks when using JSONB in PostgreSQLPostgreSQL database queries are a common performance bottleneck for many reasons. There are well known techniques for speeding up the queries, like caching or read replicas. They can save a lot of time and headache, however, it may not be straightfor...DiscussSQL
Rubel Mehmedrubelmehmed.hashnode.dev·Sep 27, 2023Mastering JSON Web Tokens (JWTs) for Modern Web ApplicationsIn the ever-evolving landscape of web applications and microservices, secure and efficient user authentication and authorization mechanisms are paramount. JSON Web Tokens (JWTs) have emerged as a versatile solution to these challenges, offering a sta...DiscussJWT
Chaithra H Rchaithrahr.hashnode.dev·Sep 26, 2023Day 15 : Python Libraries for DevOpsJSON and YAML in Python JSON: The full form of JSON is JavaScript Object Notation. JSON is a lightweight data format for data interchange that can be easily read and written by humans, easily parsed, and generated by machines. Python has a built-in p...DiscussDevops
Zikani Nyirenda Mwasezikani.hashnode.dev·Sep 23, 2023Keeping @JsonProperty and Bean Validation field error messages in sync in a Spring Boot projectDamn, this one bit me very recently. So imagine you have a Java API and because of whatever reasons you agreed that the JSON properties for the requests should be in snake_case_form. Cool, cool, that just wants a simple Jackson @JsonProperty annotati...DiscussSpringboot
Rubel Mehmedrubelmehmed.hashnode.dev·Sep 23, 2023Mastering JavaScript Object MethodsBy Rubel Mehmed JavaScript Objects An object in JavaScript is a collection of key-value pairs. Each key is a string (or Symbol), and each value can be of any data type. Objects are often used to represent real-world entities and provide a structured...Discussoop
Elijah Oyerindescribe.elijahthis.com·Sep 18, 2023Object Cloning in JavaScript (Deep vs. Shallow Copies) - A Comprehensive GuideIntroduction In the world of JavaScript, understanding how data is copied and referenced is crucial for preventing bugs and ensuring the correct behavior of applications. One of the most common sources of confusion is the difference between deep and ...Discuss·36 likes·182 readsJavaScript
Chandrasekar(Chan) Rajaramcr88.hashnode.dev·Sep 16, 2023Using Python's pathlib to Work with JSON Files: Why and How?Python's standard library provides a plethora of modules designed to make common operations simple and straightforward. Among these, the pathlib module, introduced in Python 3.4, has become a favored tool for file and directory operations. In this ar...DiscussPython
DbVisualizerforThe Tablethetable.hashnode.dev·Sep 14, 2023Bridging the Gap Between SQL and NoSQL in PostgreSQL with JSONPostgreSQL, a popular open-source relational database system can be used as a hybrid database to handle both structured and semi-structured data. PostgreSQL's support for JSON and JSONB object types allows for flexible data modelling and can solve ma...DiscussPostgreSQL
Sven Willhauksvensblog.hashnode.dev·Sep 10, 2023Day 14 of learning JavaScript: Deploying the Chrome extensionToday I learned how to deploy the Chrome extension so that people can use it. The first thing I had to know was JSON. The JavaScript Object Notation. It's a format for storing and transporting data and is often used when data is sent from a server to...Discusschrome extension