Sam Johnson

Results 213 comments of Sam Johnson

Full macro output can be found here if you want to poke around with the generated DFA: https://gist.githubusercontent.com/sam0x17/d3231467d2dce929548bc77b1609860d/raw/71ab2d53267395023f1622e03b071891c5ea3fb5/dfa.rs

update: looks like one of my regexes exhibits this issue, and the other does not, so I don't think this has anything to do with how I'm encoding/decoding. Here are...

update: experiencing the same issue still after simplifying the regex: ```regex \A/users/test/[^/?#]+/other_stuff/cool-thing/[^/?#]+\z ```

I figured it out!! The bytes that get loaded _have_ to be aligned as `u32`'s, so using a struct like the following to store the `[u8; n]` consts and specifying...

I was unfamiliar with alignment issues so only figured it out when I noticed changing the size of the regex had an effect on whether things were working On Mon,...

What would be great is in the `AlignmentMismatch` error message, specifying that the alignment of the bytes that are to be loaded in via `from_bytes` must be 4 or a...

Would also make a lot of sense to include this comment in the docs for the `from_bytes` method directly On Mon, Jun 6, 2022 at 3:11 PM Sam Johnson ***@***.***>...

Just a note, we found with custom domains if you have an existing stack deployed and make a change to what domain/subdomain is being used, the only way to get...

> I have similar issue with newer version of `librocksdb-sys v0.8.0+7.4.4`: > > ``` > error: failed to run custom build command for `librocksdb-sys v0.8.0+7.4.4` > > Caused by: >...

> > we'd likely also want a way to list files in a directory, though that may be more difficult to integrate into build systems > > how is this...