Sanket Singhinstroduction-to-javascript.hashnode.dev·Feb 11, 2025Teleporting a Human : Understanding Serialization & Deserialization in JavaScriptWhile learning object in JavaScript you may also stuck in the problem of how to copy an object without and reference. And, while finding the solution for this problem you may came across the process of serialization and Deserialization. Well, this is...17 likes·41 readsChaiCode
Payal Porwalcodeswithpayal.hashnode.dev·Feb 12, 2025JavaScript Data Types: A Comprehensive Guide (With Examples)When learning JavaScript, one of the fundamental concepts to understand is data types. Data types define the kind of values a variable can hold. JavaScript is a dynamically typed language, meaning you don't need to specify a variable's type when decl...data types
himanshublogs-himanshu.hashnode.dev·Feb 11, 2025JavaScript Teleportation: Unraveling Serialization and DeserializationIn our world, human teleportation has always fascinated many people, including me. However, the technology to teleport humans is still far off in the future. To teleport humans from one place to another, we would need to first convert them into some ...21 likes·43 readsChaiCode
Ankitjson-like-object.hashnode.dev·Feb 9, 2025JSON like ObjectJSON (JavaScript Object Notation) serialization converts a JavaScript object into a JSON string. It is a good way of exchanging information between server and client or between servers. What is JSON : JSON is a lightweight data-exchange formater(str...14 likes·30 readsjson
Victory Amadilavictoire.hashnode.dev·Feb 7, 2025Building a To-do Task Script In PythonData structures are one of the most important programming concepts you can ever learn. Almost every super useful app or shiny new tool you build would require some form of storage. How else would you know the right tool to use if you don’t understand...3 likesPython
Ayush Rajputrajputayush.hashnode.dev·Feb 6, 20255. Data Structres - Arrays , JSON in JavascriptIndexed Collections 1. Arrays Arrays are ordered lists of values where elements are accessed using numeric indices (starting from 0). let numbers = [10, 20, 30, 40, 50]; console.log(numbers[0]); // 10 console.log(numbers.length); // 5 // Modi...json
Anshul Sharmaanshul-sharma.hashnode.dev·Feb 1, 2025API Adventures : Unlocking the power of Web ServicesWelcome back to another quirky dive into the tech universe! In this edition of our geeky chronicles, we’re cracking open the world of APIs — the magical bridges that let our favorite apps talk to each other. If you’ve ever wondered how your weather a...2 likesAPIs
Marek Skopowskiblog.skopow.ski·Jan 24, 2025How to validate a payload schemaProblem Incoming request payloads in JSON format often requires validation. Validators might get complex and messy. We don’t want our codebase to be messy - at least we try not to. Solution JSON schema The best way is to convert our JSON representati...Programming Blogs
Ben Huttonwords.benhutton.me·Jan 23, 2025What could possibly go wrong? AI, GPT, and structured output via JSON Schema (part 1)Before I explain why I've been compelled to do this experiment and write this article, let's ground with context. I'll be upfront: I'm conflicted about AI. It is a very powerful tool, there's no question, but just like a hammer can do many things, yo...92 readsChatGPT, Structured Output, and JSON SchemaAI
Pravin Jadhavcodetocloud.hashnode.dev·Jan 22, 2025Understanding ORM and ODM: A Simple Guide for Backend DevelopersSure! Here's a simple blog post explaining ORM and ODM for backend developers. If you’re working on the backend of a web application and using a database to store data, you’ve likely heard of ORM and ODM. These terms might sound complicated at first,...orm