Homey eigen geluid maken
  • Ga op internet naar speechgen.io. Kies boven het invulscherm voor Dutch , Edda ( dit vind ik de prettigste stem) en 0,9. Vul je tekst in, generate speech en download als MP3.
  • Ga naar Homeypro 2019 Download de Soundboard app. (Voor 2023 werkt Soundboard niet, heb je Sonos nodig). En ga hierin naar configureren.
  • Upload jouw gemaakte MP3.
  • In een Homey Flow kies Soundboard ( of Sonos) en je MP3.

Joomla updates fix

Go to:  libraries/vendor/joomla/database/src/Mysqli/MysqliDriver.php

Insert the script mentioned inside the existing script after line 304:

mysqli_query($this->connection,"SET SQL_BIG_SELECTS = 1;" );

The script currently has this:

if ($this->options['sqlModes'] !== []) {
$this->connection->query('SET @@SESSION.sql_mode = \'' . implode(',', $this->options['sqlModes']) . '\';');
}

Once inserted, it should look like this: