Sumit Upadhyaysumitupadhyay.hashnode.dev·Dec 1, 2024Serialization in Sitecore XM CloudSitecore XM Cloud brings unparalleled flexibility and scalability to managing content-driven applications. A key feature enabling smooth collaboration and streamlined deployment workflows in Sitecore XM Cloud is serialization. Serialization allows de...27 readsSitecore CLI
Anirudh Singh Bhadauriaanirudhbhadauria.hashnode.dev·Nov 24, 2024Protocol Buffers - Google's data interchange format 🎃What is protobuf? 👀 Protocol Buffers are language-neutral, platform-neutral extensible mechanisms for serializing structured data. Basically, Protocol Buffers (often referred to as Protobuf) is a data format developed by Google used for serializing...11 likes·33 readsprotobuf
Tuanhdotnettuanhnet.hashnode.dev·Nov 3, 20244 Reasons Why You Should move from Lombok to Java RecordsSource: 4 Reasons Why You Should move from Lombok to Java Records 1. Understanding Lombok and Java Records 1.1 What is Lombok? Lombok is a Java library that provides annotations to reduce boilerplate code, such as getters, setters, ...Java
Le Quoc Cuongnospaceavailable.hashnode.dev·Nov 2, 2024Gadget Inspector – a tool to find Java gadget chains for exploitationTại hội nghị Black Hat 2018, Ian Haken (JackOfMostTrades) đã giới thiệu một tool cho phép automation việc tìm gadget chain trong các thư viện hoặc classpath mà một Java application sử dụng. Trong blog này thì mình sẽ đi tìm hiểu cách hoạt động của to...57 reads#gadget chain
hjklhjkl11.hashnode.dev·Oct 31, 2024Performance Analysis of JSON, Buffer / Custom Binary Protocol, Protobuf, and MessagePack for WebsocketsThis article examines and compares data serialization and deserialization methods / formats: JSON, Buffers (custom binary protocol), Protobuf, and MessagePack, and offers guidance on how to implement them. (Performance benchmark at the end) JSON This...1 likecustom binary protocol
Tuanhdotnettuanhnet.hashnode.dev·Sep 6, 2024Understanding Serialization and Deserialization: Methods, Examples, and Best PracticesSource: Understanding Serialization and Deserialization: Methods, Examples, and Best Practices 1. What is Serialization and Deserialization? Serialization and deserialization are processes used to convert complex data structures into a format ...serialization
Tomohisa Takaokatomohisa.hashnode.dev·Aug 6, 2024Serializing and deserializing interface properties in C# to JSON using JsonDerivedTypeTL;DR When serializing/deserializing a class with an interface property like public record User(string Name, IUserEmail Email); in C#, you can achieve this using the JsonDerivedType attribute. (.NET 7 and above) Background: Wanting to Program with Ty...1 like·215 readsC#
Tomohisa Takaokatomohisa.hashnode.dev·Aug 3, 2024Reasons and Solutions for Deserialization Failure of Data Persisted in Json while Representing State with Types in C#"JsonDerivedType" is an attribute in C# that can be attached to a parent interface to define which types implement that interface, allowing the state to be represented by types. By using this method, you can define the data type with the original par...39 readsjson
Abdulrahman Mustafapebble-programming.hashnode.dev·Jul 6, 2024Streamlining API Interactions: Building a Pythonic Wrapper for EgyTech APIBackground First of all, why use a wrapper? Well, wrappers are incredibly useful high-level tools that allow you to use an API without having to worry about constructing correct API calls, allowing the user of such wrapper to focus more on their code...Creating, Documenting, & Publishing A Pythonic API WrapperHttpx
The Frontendistthefrontendist.com·Jul 2, 2024Understanding the Importance of Delaying Serialization in Modern Applications1. Performance Optimization Serialization and deserialization can be computationally expensive processes. By delaying serialization, you can avoid the performance overhead until it's absolutely necessary. This can lead to more efficient use of system...serialization