Julian Braha
Julian Braha
I just spent a week troubleshooting, because I was using `subscribe()` to receive messages from my Pub/Sub subscription, and strangely, most acked messages were getting redelivered. At first I thought...
The `clap` dependency is unused. This PR removes it.
The `glob` dependency is currently unused. This PR removes it.
I'm trying to decode some token metadata, and `mpl_token_metadata::accounts::Metadata::from_bytes()` works for most tokens, but it's failing for 2 that I've found. The raw data is encoded in base64, so I've...
Using `const` for constant functions allows the compiler to evaluate them at compile-time, and allows the calling functions to be `const`, too. These functions were detected with the clippy lint:...
See this example javascript code: ``` export const IconText = { extend: 'Flex', type: 'checkbox', ':checked + div': 'primary', display: 'none', }; ``` and notice the `':checked + div'` field....