Piotr Sawicki

Results 14 comments of Piotr Sawicki

No problem, VIM is very complicated and I understand, that it is almost impossible to reproduce all it's functionality. I regret, that I am unable to help with implementation myself....

+1 IMO very good idea for quick mock deployments.

Dear devs, any news about this feature? In case, that not, I have found something on GTK+ reference pages: https://developer.gnome.org/gtk3/stable/GtkApplication.html#gtk-application-inhibit gtk_application_inhibit() may be called with a proper flag when one...

in order to have multiple workers you should run workes in separate processes (in order to properly utilize cpu power). simple bash script will be handy: ``` export LOCUST_HOST="https://example.com" for...

I think instead of intelligent parsing an override of a message could take place in case of this type of exception. A bit hacky but would work.

> Still no giflossy in Ubuntu 2019.04's gifsicle. Same in Linux Mint 19.3 - gifsicle version 1.91, while current-one is 1.92. ~~Maybe it is worth to ping debian package maintainer?~~...

A one possibility I can see would be to access the stats instance within environment and then lookup inside it's `entry` dictionary and then on entry's `num_reqs_per_sec` property. see [doc](https://docs.locust.io/en/stable/_modules/locust/stats.html#RequestStats)

Dear all, I would advise to use AVR stdlib function `dtostrf`: ``` char * dtostrf( double __val, signed char __width, unsigned char __prec, char * __s) ``` where: __val -...