Congyu

Results 136 comments of Congyu

Did you meet some storage limitation or some other issue?

How many bytes are the keys and values on average, roughly? And are you sure that you have enough free disk space too?

Check this out. Prebuilt: just `pip install rocksdict` without any fuss of compiling. https://github.com/Congyuwang/RocksDict A RocksDB-based python on-disk dict. It is also easy to use. ```python from rocksdict import Rdict...

I have myself implemented a rather nice little on-disk dictionary called `rocksdict` based on RocksDB. It has pre-built wheels. So just `pip install rocksdict`. It supports any python object. https://github.com/Congyuwang/RocksDict

Xcode has one of the most useful minimap I've ever used: You can use `// MARK: - XXX` to add section header, which will be displayed in the minimap, making...

I use https://docs.rs/openidconnect/latest/openidconnect/ openidconnect library in rust.

Quote from https://openid.net/specs/openid-connect-core-1_0.html#AddressClaim The Address Claim represents a physical mailing address. Implementations MAY return only a subset of the fields of an address, depending upon the information available and the...

Note that opened-connect-core advice the possibility of returning "just the full address as a single string in the formatted sub-field". That is, it is also acceptable to include only the...

Therefore, in short, I would consider the previous reverted `{formatted: "some address string"}` as a valid compliance solution to `AddressClaim`.