Jack W
Jack W
The [current declaration file](https://github.com/kfiroo/react-native-cached-image/blob/master/index.d.ts) specifies doesn't specify any props as optional, although most actually are. This makes the package difficult to use in TypeScript projects without lots of `@ts-ignore`s. The...
The [GraphQL docs](http://graphql.github.io/graphql-js/error/#errors) specify a field called `extensions` is available for a GraphQLError. GraphQL Python does seem to have a ['slot'](https://github.com/graphql-python/graphql-core/blob/master/graphql/error/base.py#L13) for this. Users could add the field using a...
When scraping metadata with `get_metadata.py`, there's a [6 second sleep](https://github.com/bpb27/twitter_scraping/blob/master/get_metadata.py#L38) between each `api.statuses_lookup(id_batch)` call. The Twitter API allows up to 300 calls per 15 minute window for application auth, or...
## Description When using syncpack 12.3.1, running `yarn syncpack update` results in every package being given the version number of the last checked package. e.g. if `some-package` has a new...
## What does this PR do? This PR changes the Next.js output type of the @calcom/web app to "standalone", which is needed if https://github.com/calcom/docker/pull/355 is to merge. The ["output" config...
This PR is an overhaul of the small calcom-docker repo that takes advantage of Next.js's new-ish "standalone" output to create smaller image sizes (1.03GB -> 636MB). It also removes various...
### 🎤 Tell us your idea I am wondering whether adding inline suggestions is on the roadmap. This feature exists in code editors like Cursor and is incredibly useful. ![CleanShot...
Adds native support for exporting OpenTelemetry traces to Adaline Trace, the hosted observability platform for LLM applications. Changes: - Add AdalineTraceExporter class (SpanExporter implementation) - Add AdalineTracer wrapper class with...