Archivos: Code Snippets

      Azuracast desatendido

        mkdir -p /var/azuracast cd /var/azuracast curl -fsSL https://raw.githubusercontent.com/AzuraCast/AzuraCast/main/docker.sh > docker.sh chmod a+x docker.sh # To install the "Stable" release channel instead of "Rolling Release", uncomment this line: # yes ‘Y’…

        Read more
        Laravel Symbol

          <?php $url = ‘../storage/app/public’; $enlace = ‘storage’; symlink($url,$enlace); echo readlink($enlace);

          Read more
          nextcloud.conf

            Alias /nextcloud "/var/www/nextcloud/" <Directory /var/www/nextcloud/> Options +FollowSymlinks AllowOverride All <IfModule mod_dav.c> Dav off </IfModule> SetEnv HOME /var/www/nextcloud SetEnv HTTP_HOME /var/www/nextcloud </Directory>

            Read more
            ejemplo hooks

              import { Component, OnInit, DoCheck, OnDestroy } from ‘@angular/core’; @Component({ selector: ‘componente’, templateUrl: ‘./componente.component.html’ }) export class ComponenteComponent implements OnInit, DoCheck, OnDestroy { ngOnInit(){ console.log("OnInit ejecutado"); } ngDoCheck(){ console.log("DoCheck ejecutado");…

              Read more