Alex Bacart
Alex Bacart
@tdewolff sorry for commenting on a closed issue. What do you think about adding new option to `Minifier`? Something like `DontLowercase bool` it will be really helpful and would allow...
@tdewolff can you please take a look at my [PR](https://github.com/tdewolff/minify/pull/312)? I really don't like the name of an option `DontLowercaseAttributes` so maybe you'll pick a better one.
@ggerganov BTW is it ok that whisper.cpp divides "Ponzi" into "Pon" and "zi"? Using `--max-len 1` I get tons of such a chunks in transcription results.
I'm not a C++ developer but here is my try to fix it #444 take a look please.
In January 2023, an article was published on Google Chrome blog https://developer.chrome.com/blog/scrollend-a-new-javascript-event/ And now we have new `onscrollend` event. Here is the function to scroll into view and wait for...
I've implemented a MongoDB document caching using Symfony 3 build in [cache system](http://symfony.com/blog/new-in-symfony-3-1-cache-component). Following your [suggestion](https://github.com/doctrine/mongodb-odm/issues/1127#issuecomment-110289530) extended a `DocumentPersister`.
> Also to answer your question: making things public requires us to maintain BC and there are places in ODM we don't want end-user to use on his/her own. I...
Something like this: ``` php if (1 === count($criteria) && array_key_exists('_id', $criteria) && $this->eventManager->hasListeners(Events::preFetch)) { $eventArgs = new EventArgs($this, $document, $criteria); $this->eventManager->dispatchEvent(Events::preFetch, $eventArgs); $result = $eventArgs->getData(); } if (null ===...
It's a good idea but it will take a lot of time to port it into ODM and will take your team's resources to maintain it. IMO my solution is...