Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Filter by
Sorted by
Tagged with
Filter by Employee ID
Tooling
0 votes
0 replies
39 views

I am training sklearn.ensemble.RandomForestRegressor on 272k rows of data with 38 features. { "n_estimators": 200, "n_jobs": -1, "random_state": 42 "...
Best practices
1 vote
1 replies
63 views

When calling my API endpoint, the default repository output returns a flat list array like this [ { "id": "root_postgres", "name": "Main Root", &...
Score of -1
0 answers
38 views

I am experiencing some strange behaviour while using IErrorHandler with Rebus for second level retry and dead-lettering messages. In my implementation of IErrorHandler as usual I am using the value of ...
Best practices
2 votes
15 replies
351 views

What is the preferred way to serialize data to raw byte array (without any serialization libs)? I though these variants: #pragma (pack,1) struct A{...} #pragma (pop) or __attribute((packed))__ ...
Score of 0
1 answer
89 views

I wonder if there is any way - apart from creating a dummy REST API - to force Quarkus to generate reflection free jackson serializers and deserializers? My service exports data in JSON and stores ...
Best practices
0 votes
7 replies
150 views

In the past I've written code to manually serialize a binary representation of a IEEE 754 number, however, it seems like several projects simply reinterpret a floating point number as a byte array and ...
Score of 3
1 answer
154 views

I'm using newtonsoft.json. I've got classes created from XSD to C#. Inside these classes are some properties whose names should dynamically change when serializing in XML, based on the type to as ...
Score of 3
1 answer
114 views

We have a legacy application that was originally written to connect directly to a SQL Server database using OLEDB. Since then we have introduced Azure SQL databases (but some of our clients are still ...
Score of 2
1 answer
249 views

I'm using jackson-module-kotlin:2.21.0 and jackson-datatype-jsr310:2.21.0. I need to serialize (and then deserialize) java.time.Instant in specified format "yyyy-MM-dd HH:mm:ss" (without ...
Score of 0
0 answers
34 views

I am using Redisson RMap as a cache and fetching data in batches using getAll(). Original code private static final int FETCH_LIMIT = 1000; private void getResponseForSubsetOfKeys(Set<Object> ...
Advice
0 votes
2 replies
53 views

I'm working on an experimental project called NextLiber VRM, which attempts to interpret Unity scene files outside the Unity runtime. Unity stores scenes in YAML format, including transforms, ...
Score of 3
1 answer
135 views

I am currently working on a small financial management application and use XmlSerializer to persist my data. I maintain a main list (allRecords) holding all data, and two separate lists (incomeList ...
Score of 0
0 answers
39 views

AMD Processor Programming Reference (PPR) for AMD Family 19h Model 70h, Revision A0 Processors says: MSR0000_010B [Flush Command] (Core::X86::Msr::FLUSH_CMD) Writes to this register do not execute ...
Score of 2
1 answer
159 views

I have a couple of ISerializable classes (simplified): internal interface IBase : ISerializable { int Number { get; } } internal interface ITable : IBase { ISection Section { get; } } [...
Score of 3
1 answer
191 views

I have a couple of classes (simplified): internal interface ITable { int Number { get; } ISection Section { get; } } internal class Table : ITable { public int Number { get; private init; ...

15 30 50 per page
1
2 3 4 5
2234