zigzag312
zigzag312
I took a quick look at the code. My question for any dev reading this is, if it would be possible to call `ScanFunc` multiple times or would this produce...
@sr55 You raised some good points. To clarify, I was thinking only of multi-file input and not about a recursive folders scan. Although, multi-file input could also be used as...
So, the issue is that `hb_handle` contains a single `hb_title_set` ```C struct hb_title_set_s { hb_list_t * list_title; int feature; // Detected DVD feature title const char * path; }; ```...
> And yeh. It's not a "difficult" change overall for this request. Just a bit tedious. Personally I'd spend the time making it a decent implementation rather than try skirt...
I think no implementation does this as it wouldn't produce required result. `allRelatedPosts` when serialized needs to contain top 5 related posts (not indexes of posts). Moving index lookup to...
@borisbat That gives very good performance boost on my machine. Rules say no unsafe code blocks, so `unsafe_deref` and `skip_lock_checks` probably need to be removed. How can I compile AOT?...
I'm looking in `run.sh` how C++ is build in the benchmark. It builds single file directly like this: ``` g++ -O3 -std=c++20 -I./include main.cpp -o main ``` So, something like...
I'm not sure I understand what I need to do. Is there any chance you could create a PR for building AOT version?
Good question. I don't know really. C++ implementation should probably use `shared_ptr` for Posts to be by the rules. Best to raise an issue in the benchmark repo to get...
I am experiencing the same issue. Animation for `showModalBottomSheet` works at first, but then stops working. I can also reproduce the issue from the sample posted above (in both debug...