Raman Gupta

Results 219 comments of Raman Gupta

I like to avoid `DynamicImport-Package` whenever possible -- it really breaks the encapsulation OSGi is supposed to provide, and encourages code that doesn't respect module boundaries. The "right" solution in...

Another example is President's day which is All except DE, GA, IA, IN, KS, KY, LA, NC, NM, RI, WI according to https://www.timeanddate.com/holidays/us/. Easier to define it once in the...

@chopanpma I ended up switching from Docker Swarm Mode to Kubernetes. Swarm mode is too raw and I simply don't trust it yet for production orchestration. I did get it...

@chopanpma Here you go with the Kubernetes deployment descriptors for Kafka and Zookeeper: `kafka.yaml`: https://gist.github.com/rocketraman/6726ec0a26026a4ccc98c77966bb9030 `zookeeper.yaml`: https://gist.github.com/rocketraman/e58113d43ee48eac91f080b681a9fda3

See this comment: https://github.com/GitLiveApp/firebase-kotlin-sdk/pull/277#issuecomment-1092269329 The root cause of this is a bug in the IR compiler: https://youtrack.jetbrains.com/issue/KT-48836. A (non-backward-compatible) patch for this is https://github.com/innertech/firebase-kotlin-sdk/commit/0358eb46bf7fa0908f68262ad44b502fb87275bf but any existing code that relies...

@Darkos-den We do have pre-built GitHub packages, if you want to use those: https://github.com/orgs/innertech/packages?repo_name=firebase-kotlin-sdk.

> @rocketraman we want to be careful about the security implications of this Not sure I understand this. Isn't it better for the default policy to come from upstream, while...

Here is a use case that is easy with a Java `ZoneDateTime`, but I'm not even sure is possible to do correctly with kotlinx-datetime. Given a `LocalDateTime` and a time...

Hmm... `style={{ height: '100%' }}` worked for me as well... I'm not positive, but I think it really depends on how your parent container elements are defined. If your parent...