Arnab Deka
Arnab Deka
`color-theme` package's latest version is [6.5.5](http://marmalade-repo.org/packages/color-theme). Specifying it as `6.6.1` means it's impossible to install this theme on a fresh emacs install. Looks like it was downgraded from 6.6.1, from...
While using [`isar_generator`](https://pub.dev/packages/isar_generator), the latest version: ```yaml isar_generator: ^3.1.0+1 ``` ... I regularly see dependency conflict errors with other generators. e.g.: We can't use the `riverpod_lint` package while using `isar_generator`:...
I want to specify `enclosure.url` as a required property for `episodes`. How can I do that? If I specify: ``` const options = { required: { episodes: ["title", "pubDate", "enclosure.url"],...
When you specify required attributes: ``` const options = { required: { episodes: ["title", "pubDate"], }, }; const feedData = await podcastFeedParser.getPodcastFromURL(feedUrl, options); ``` ... and the feed is missing...
First of all, thanks for this awesome plugin. Are you planning on ST3 support? Right now this plugin makes ST3 hang and then crash on Mac OSX. Details: #### Environment...
The `openai/whisper` model requires a `audio` (a file, usually an .mp3 file) argument. The [documentation on `replicate.com`](https://replicate.com/openai/whisper/versions/30414ee7c4fffc37e260fcab7842b5be470b9b840f2b608f5baa9bbef9a259ed/api) for `python` shows: ```python 'audio': open("path/to/file", "rb") ``` How can I provide this...
### Bug description The link for **Community (ask and answer usage questions)** in the [new issues templates](https://github.com/nicholascelestin/replicate-js/issues/new/choose) points to https://www.gitpod.io/community. Is that the right URL? It does not seem related...
I would like to use the Riverpod (suggested) generated approach to build the `NotifierProvider`: * https://docs-v2.riverpod.dev/docs/providers/state_notifier_provider (see the callout: Prefer using [NotifierProvider](https://docs-v2.riverpod.dev/docs/providers/notifier_provider) instead. * https://docs-v2.riverpod.dev/docs/providers/notifier_provider * https://docs-v2.riverpod.dev/docs/about_code_generation Could you please...
## Context I have the following `RiverPagedBuilder`: ```dart @override Widget build(BuildContext context, WidgetRef ref) => RiverPagedBuilder( firstPageKey: Page( key: pageKey, orderBy: 'publishedAt', descending: true, ), limit: 50, provider: paginatedControllerProvider, itemBuilder:...
First of all, thanks a lot for a great package. In my audio app, I am using the `WheelChooser.custom` to show a speed-selector. The user can drag the slider to...