Kibeom Kim
Kibeom Kim
On Ubuntu with Java 10.0.1, I get the following error during the initial build ``` $ ./gradlew allJar OpenJDK 64-Bit Server VM warning: Ignoring option MaxPermSize; support was removed in...
To my knowledge there is no binary layout optimization tool for .wasm. It would be great if we can have one. Though I don't know if it's doable with BOLT...
I think logically it makes more sense to use fixed-point to represent absolute coordinates. Reasons to avoid floating-point: - Precision depends on position. e.g., (0, 0, 1000000). - People should...
It seems grpc/grpc-web is more actively maintained nad has more Github Stars than @improbable-eng/grpc-web! - https://github.com/grpc/grpc-web/graphs/contributors - https://github.com/improbable-eng/grpc-web/graphs/contributors
ResizeObserver.observe() has `options` https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver/observe , but that's not configurable from useSize() currently. My usecase is using `border-box` option.
## Issue description Keyword argument handling is slower than CPython. CPython has an optimization that assumes the keyword name string objects are interned and performs pointer comparisons first instead https://github.com/python/cpython/blob/22424c02e51fab3b62cbe255d0b87d1b55b9a6c3/Python/ceval.c#L3975...
Currently ts-proto treats any integer types in .proto as typescript `number` type. This is not always desirable since it can be a source of bugs, e.g., unintentional integer overflow, loss...
It looks like AWS spot instance is supported (https://github.com/search?q=repo%3Adrone%2Fautoscaler%20spot&type=code) but not GCP yet? Thanks! This is a huge cost saving for us since spot instance is ~5x cheaper
Similar to https://github.com/Rantanen/proxide#direct-connection-to-proxide , it would be convenient to have a direct connection mode, so that Mediator can be used even when we don't have a great control over client...