Cria uma stream de vídeo no nodejs plano (sem express ou outros módulos)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Rules; | |
use Illuminate\Contracts\Validation\Rule; | |
class RegisterEmailRule implements Rule | |
{ | |
private $domains = [ | |
/* Default domains included */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
V_DIR_SQL="/home/sysadmin/data" | |
V_DIR_BACKUP="/home/sysadmin/backup" | |
V_HOST="localhost" | |
V_DATABASE="database" | |
V_USER="root" | |
V_PASSWORD="root" |