Eric van der Vlist
Eric van der Vlist
Please note that, unlike written in the README, there is no admin user predefined in the docker image. It's not a big deal since its easy to create through "python...
The NSD back-end passes the server hostname directly to the nsd-control command: ```python zs_out = subprocess.check_output( ["/usr/sbin/nsd-control", "-c", self.get_config_path(), "-s", self.hostname, "zonestatus"], stderr=subprocess.STDOUT, ).decode('utf-8') ``` The problem is that this...
The Worker class is implemented but not the SharedWorker one. Is there any plan to implement it ? Thanks !
Hi Stefano and thanks for this library, Object literals are currently supported and mentioned in the doc, for instance: ```javascript en:{ how:"How do you want your egg today?", boiledEgg:"Boiled egg",...
I am using this wonderful tiny library to generate keys for puchdb as suggested in a number of places on the web and I have been confronted to the common...
I have started to develop a WordPress plugin to display my obervations with WhoBIRD (https://github.com/evlist/wp-whobird/tree/main). The plugin queries the app SQLite db exports and can also replay the recordings (you...
I am using this plugin to track multi-days hiking tours with PhoneTrack and to use the `[tsmap]` shortcode I haven't found a better solution than configuring the plugin to generate...
The plugin applies the filter with 2 parameters: [apply_filters( 'wp_generate_attachment_metadata', $metadata, $attachment_id );](https://github.com/Rahe/simple-image-sizes/blob/a722ac4cc84d23bab150e0978ab8298664901a20/classes/Admin/Main.php#L332C10-L332C88) while [WordPress requires 3 parameters](https://developer.wordpress.org/reference/hooks/wp_generate_attachment_metadata/) and this can crash other plugins.