Nibodh Dawarenibodhdaware.hashnode.dev·Jan 16, 2025HTMX: The Future of The WebRecently I have been developing a platform SaaS website and have been using HTMX along with TailwindCSS for my frontend and Python and Flask for my backend I have used most of them earlier but HTMX is the new tool in my tool belt so in this post we w...3 likes·1.5K readshtmx
Neticnetic.hashnode.dev·Jan 14, 2025Get JSON Value with Dynamic Key in TypeScriptSmall and hopefully helpful snippet. Problem Scenario We have Car data in JSON with an on going updates. modelyear will be added regularly. We wanted to output model description base on year input by user on a form. Solution Convert input to key for ...10 likesjson
Dhadve Yashnimbusnotes.hashnode.dev·Jan 12, 2025Build your own Json parser in GolangBefore we start, if you find anything hard to understand in this or theres something can be improved let me know in the comments or you can reach me out on x.com/Yash_Dhadve4 First of all what even is a parser? Well parser is simply a application/fun...2 likes·98 readsGo Language
syncfusionsyncfusion-blogs.hashnode.dev·Jan 9, 2025How to Easily Load JSON Data in .NET MAUI TreeView?TL;DR: Let’s see how to load JSON data into the .NET MAUI TreeView effortlessly. This blog guides you through fetching JSON data from a URI, storing it locally, and binding it to the TreeView control. Perfect for creating intuitive navigation and hie....Net maui
Adekunle Fatundecore-architectural-components-of-azure.hashnode.dev·Jan 9, 2025YAML and JSONWHAT IS YAML? YAML (short for "YAML Ain't Markup Language"). It is a method for writing data in a format that is simple enough for people to understand and write. It is frequently applied to software application configuration files. Consider it a met...YAML vs JSON
Ramu Narasingathinkthroo.hashnode.dev·Jan 8, 2025“Defu” usage in unbuild source code.For this week, I have been reading unbuild source code and found few packages that I have never seen before or used. I wanted to share some interesting packages that are used in these OSS projects so we can learn a thing or two ;) The following are d...Defu
Dhaval Singhwww.dsdev.in·Jan 5, 2025Order of fields in Structured output can hurt LLMs outputWe at Seezo deal with structured output(SO) a lot, and hence I have a lot of interest in understanding what’s the best way to prompt LLMs, esp when constraining their output to JSON and how can it affects result. Recently, I came across Let Me Speak ...1.8K readsllm
Tuanhdotnettuanhnet.hashnode.dev·Jan 1, 2025Techniques for Storing JSON Documents in PostgreSQLSource: Techniques for Storing JSON Documents in PostgreSQL 1. Introduction to JSON in PostgreSQL PostgreSQL offers native support for JSON data types, which allows you to store JSON documents directly in the database. This feature is benefici...database
Dhruvi Shahdhruvi-shah.hashnode.dev·Dec 31, 2024The Secret Life of Protobuf: The Fast, Small, and Mighty Data Format! 🚀Picture this: you’re packing for a vacation ✈️, and instead of neatly folding your clothes, you’re stuffing them into a suitcase with no organization just random piles of socks, shirts, and shoes. That’s what JSON and XML do to your data, stuffing it...1 likedata transformation
Sean M. Drew Sr.blog.seandrew.info·Dec 26, 2024Consuming and Processing JSON Stream Data in an API Webhook using C#Recently, I was tasked with developing a custom webhook for our API that would consume a specific client-supplied point-of-sale (POS) JSON stream, parse the data, and write it to a series of custom SQL tables. The provided POS JSON stream includes de...C#