Romain Batigne
Romain Batigne
> You could nest the ratelimited Instance. > > ``` > const axiosInstance = rateLimit(rateLimit(axios.create(), { maxRequests: 10, perMilliseconds: 5000 }), { > maxRequests: 20, > perMilliseconds: 100000, > });...
@dylburger you're a lifesaver Seriously, it's really a shame that in 2023, a still updated sdk is still using callbacks
I have the exact same issue. And what's weird is that I tried waifu2x-caffe for the first time this morning (fresh CUDA install) and it was working just fine. And...
I have the exact same problem. I'm using Laravel 4.2 and I've added 'Msurguy\Honeypot\HoneypotServiceProvider' to app.php
Nope I'm using Blade. I've just added {{ Form::honeypot('my_name', 'my_time') }} in a form to test Honeypot.
Here's the Exception: ``` Open: /home/vagrant/Code/laravel/vendor/laravel/framework/src/Illuminate/Support/Traits/MacroableTrait.php public static function __callStatic($method, $parameters) { if (static::hasMacro($method)) { return call_user_func_array(static::$macros[$method], $parameters); } throw new \BadMethodCallException("Method {$method} does not exist."); } Exception message: Method...
``` 'providers' => array( 'Illuminate\Foundation\Providers\ArtisanServiceProvider', 'Illuminate\Auth\AuthServiceProvider', 'Illuminate\Cache\CacheServiceProvider', 'Illuminate\Session\CommandsServiceProvider', 'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider', 'Illuminate\Routing\ControllerServiceProvider', 'Illuminate\Cookie\CookieServiceProvider', 'Illuminate\Database\DatabaseServiceProvider', 'Illuminate\Encryption\EncryptionServiceProvider', 'Illuminate\Filesystem\FilesystemServiceProvider', 'Illuminate\Hashing\HashServiceProvider', 'Illuminate\Html\HtmlServiceProvider', 'Illuminate\Log\LogServiceProvider', 'Illuminate\Mail\MailServiceProvider', 'Illuminate\Database\MigrationServiceProvider', 'Illuminate\Pagination\PaginationServiceProvider', 'Illuminate\Queue\QueueServiceProvider', 'Illuminate\Redis\RedisServiceProvider', 'Illuminate\Remote\RemoteServiceProvider', 'Illuminate\Auth\Reminders\ReminderServiceProvider', 'Illuminate\Database\SeedServiceProvider', 'Illuminate\Session\SessionServiceProvider', 'Illuminate\Translation\TranslationServiceProvider', 'Illuminate\Validation\ValidationServiceProvider', 'Illuminate\View\ViewServiceProvider', 'Illuminate\Workbench\WorkbenchServiceProvider',...
Yep, I have "vinicius73/seotools": "dev-master". It was due to Former actually. My form was opened/closed with Former. I tried `{{ Former::honeypot('my_name', 'my_time') }}` and it works. Well, actually, sort of:...
@garygreen : here's a test repository with the error: https://github.com/rombat/test-laravel-honeypot It's just a fresh install of Laravel 4.2 with the packages I use on my project, and the default "hello"...
Ok actually its `howlongtobeat` module that should be fixed: https://github.com/ckatzorke/howlongtobeat/issues/40 Or maybe you don't really need it anymore ? It seems that a POST request directly to HTLB should do...