Christoph Herbst

Results 27 comments of Christoph Herbst

Sorry, now that I checked my code I see that I only ever use `find().map()`, no `find().fetch()`. But I think this is essentially the same.

@mitar would you consider forking this package and publishing it?

All packages on Atmosphere are forks of this package. The most recent seem to be [lepozepo:reactive-publish](https://atmospherejs.com/lepozepo/reactive-publish) and my own: [cherbst:reactive-publish](https://atmospherejs.com/cherbst/reactive-publish).

Thank you for your extensive feedback. I agree to your points. We are doing this as a part of a new project and will try to incorporate your feedback with...

To your question regarding `bp_core_install_emails`. This is only run on fresh installs, when the user chooses the "Reinstall Emails" option in the BuddyPress Tools page or on update to version...

Regarding the minimum BP Version. Does this mean you are OK with removing the legacy functions if we bump the minimal required BP Version to 2.5.0?

Regarding the singleton issue, code like this ```php BP_Registration_Emails::instance()->send_moderation_email( $user, $action ); ``` would become ```php $email = new BP_Registration_Emails; $email->send_moderation_email( $user, $action ); ``` Is this what you expect?

We have had the same problem were an update overnight from 28.1.1 to 28.2.2 broke the communication between services inside swarm overlay networks. The symptoms were the same that our...

We have neither NetworkManager nor netscript installed. Two of our ten nodes use netplan but networkctl shows `unmanaged` for all docker interfaces.

I may add something to our setup in hope that it's useful: We are running docker swarm on top of a Wireshark VPN that connects over the public interface VPS...