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
tdey auditstdeyblogs.hashnode.dev·Oct 14, 2024Deserialization in CairoSerialization of uint256 values in Cairo In Cairo uint256 is represented as two felt252 values of 128 bit each The first felt252 value represent the least significant bits, low part The second felt252 value represent the most significant bits, hig...starknet
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
Donald Kibetdonaldkibet.hashnode.dev·Jul 1, 2024Excel Import and Journal Processing in D365 F&O - Part TwoPart Two: Creating and Posting the Journal Entries Introduction Having successfully read the imported Excel file and passed the values as arguments to the helper class, we will now use these values to create a journal entry, create journal lines, and...d365fo
Donald Kibetdonaldkibet.hashnode.dev·Jul 1, 2024Excel Import and Journal Processing in D365 F&O - Part OneIn this article, we'll walk through the process of importing Excel files into D365 F&O for bank charges. After the upload is complete, the contents of the Excel file are read, a journal is created with journal entries, and the journal is posted. The ...30 readsObject Oriented Programming
Vaishnave Subbramanianvaishnave.page·Apr 4, 2024Sparks FlyFile Formats In the realm of data storage and processing, file formats play a pivotal role in defining how information is organized, stored, and accessed. These formats, ranging from simple text files to complex structured formats, serve as the blue...1 like·560 readsDabbling with Apache Sparkspark
Steven Mentzerthats-so-fetch.hashnode.dev·Feb 13, 2024Data Serialization and Deserialization in React/Flask ApplicationsData serialization and deserialization are fundamental processes in modern web development, especially when building applications using frameworks like React for the frontend and Flask for the backend. In this blog post, we'll dive deep into these co...args and kwargs
Paul Mattioneradiantsoftware.hashnode.dev·Jan 16, 2024C++ Object Streaming - Part IIIn Part I we discussed our overall strategy for object streaming, which needs to be handled carefully to support deserializing objects in-place in memory. We introduced the streaming operator, how to stream simple types such as arithmetic types, and ...73 readsC++ Object SerializationC++