Kevin Chen
Kevin Chen
Great work on this library! It's really useful for debugging 👍🏼 I'm wondering if [these log levels](https://github.com/simukti/sqldb-logger/blob/c462204a331714d7e6c0c43020a31e6bbf3f5ffc/transaction.go#L25) can be made configurable instead of being hard-coded to Debug level.
Right now, [awsEbUploadBundle is skipped if that WAR plugin is not available in the project](https://github.com/classmethod/gradle-aws-plugin/blob/59bb90e525da2e06214ca85d586125741401b3c2/src/main/java/jp/classmethod/aws/gradle/elasticbeanstalk/AwsBeanstalkPlugin.java#L58). Currently, I wish to deploy a zip file containing a "fat jar," which contains Spring...
[AwsBeanstalkPluginExtension](https://github.com/classmethod/gradle-aws-plugin/blob/59bb90e525da2e06214ca85d586125741401b3c2/src/main/java/jp/classmethod/aws/gradle/elasticbeanstalk/AwsBeanstalkPluginExtension.java) should support multiple environments (e.g., staging, production, etc).
Hello 👋🏼 This is an excellent library that seems to do the trick for my team. I was wondering: Are there plans to support the "richer error model" discussed [here](https://www.grpc.io/docs/guides/error/#richer-error-model)?...
Github Discussions is currently a beta feature, but a repo w/ 3 or more contributors qualifies. Discussions let you separate bug questions (which should be reserved for Github Issues) from...
I cloned this repo and ran ``` pnpm i pnpm dev ``` But am getting some errors from the `toBeInTheDocument` function in [`App.test.tsx`](https://github.com/jherr/game-zone/blob/build-time-deps/apps/cardpicker/src/App.test.tsx#L8). ``` ERROR in src/App.test.tsx:8:23 TS2339: Property 'toBeInTheDocument'...
Is it possible to link to the GitHub repo? https://twitter.com/StarHistoryHQ/status/1748241574272585802 https://star-history.com/#firefly-iii/firefly-iii&Date
If [**Block String**](https://spec.graphql.org/October2021/#BlockStringCharacter) comment contains a double-quote, the resulting printed SDL will be invalid. ### Example problem Suppose you have the following schema: ```graphql """ Representation of a "Foo" """...
Is there an example of a self-referential table? example: I'm implementing a tree of nodes. The `node` table has a nullable `parent_id` column. How would I implement trees of arbitrary...