Prashant Deva

Results 48 comments of Prashant Deva

maybe i have an older version checked out, i see it implementing `ImplicitLinkedHashMultiCollection` ![Screenshot 2024-09-20 at 11 21 54 AM](https://github.com/user-attachments/assets/471f3da8-da11-4506-bfda-9e98fe1cd718)

confirming that even in the latest kafka commit, topics are defined as ``` public static class CreatableTopicCollection extends ImplicitLinkedHashMultiCollection ``` the `MultiCollection` part allows it to hold multiple topics with...

i dont think anything in the wire protcol use maps https://kafka.apache.org/protocol#protocol_api_keys the only collection seemed to be used is a list. the java implementation replaces that with a `MultiCollection` to...

hmm no particular reason. quite frankly i didnt know there was even a difference semantically one way or the other, since it achieves the same results (as far as data...

facing same issue. tried in both vscode and zed and issue repros every time for me

it is shocking that you work on ant design and not know what css grid layout is.. https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout

i was getting this error too: ``` no such target '@@rules_rust~~crate~crate_specs//:protoc-gen-prost__protoc-gen-prost': target 'protoc-gen-prost__protoc-gen-prost' not declared in package '' defined by /home/pdeva/.cache/bazel/_bazel_pdeva/b1a4ac6988a94eb0ad1222a792d4139b/external/rules_rust~~crate~crate_specs/BUILD.bazel ``` i agree this should have been mentioned in...

i think adding the use of `Option` is so redundant when the base error type already contains a `None` value. its less verbose everywhere and just overall feels simpler to...