Eyal Z

Results 30 comments of Eyal Z

My results (I just ran mine only): ``` ./cppserialization-performance-zpp_serialize [ 20%] Launching ZppBits-Serialize. Attempt 1...Done! [ 40%] Launching ZppBits-Serialize. Attempt 2...Done! [ 60%] Launching ZppBits-Serialize. Attempt 3...Done! [ 80%] Launching...

Managed to run the benchmark in the CI - https://github.com/eyalz800/CppSerialization/runs/8168287047?check_suite_focus=true

Looks like the PR passes the CI now

@puremourning @doronbehar if you are interested here is my attempt to get command history in the vimspector prompt buffer: ```vim augroup vimspector_command_history autocmd! autocmd FileType VimspectorPrompt call InitializeVimspectorCommandHistory() augroup end...

@thekvs is there any chance we can pull this in?

@thekvs that's fair. I was just trying to show up in your benchmark main page, I thought that the project is fairly inactive for long periods of time and I...

https://github.com/eyalz800/zpp_bits adding this as well which replaces zpp::serializer, though I'm a bit concerned that the maintainer didn't want to merge even the original one.

Interesting idea, I’ll need to think if there is a workaround that you can use right now without any code change, because this usage of visiting members is intended to...

This is kind of by design, I recommend to go for std::bitset if you want bits or `std::vector` if you want bytes. What do you think?