Skip to content
View Ale-Code404's full-sized avatar
🏠
Trabajando desde casa
🏠
Trabajando desde casa

Block or report Ale-Code404

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Una rapida implementacion de cache b... Una rapida implementacion de cache busting en Laravel.
    1
    # Como implementar el **cache_busting** en Laravel
    2
    
                  
    3
    La intención de esta funcionalidad es que nuestros archivos estaticos, como **.js** o **.css** puedan ser re-cacheados una vez se haga la actualización mediante un *hook* en el servidor o en el *proceso de integración* de turno.
    4
    
                  
    5
    > En este caso haremos uso de un servidor *git*.
  2. Convert mp4 to gif with ffmpeg in Linux Convert mp4 to gif with ffmpeg in Linux
    1
    > Edit input, fps, width and output name
    2
    3
    ffmpeg -i {input} -vf "fps={fps},scale={width}:-1"  -loop 0 {output}.gif 
  3. Template para implementar compilacio... Template para implementar compilacion tipo CI en el hook "post-receive" en un proyecto Laravel
    1
    #!/bin/bash
    2
    
                  
    3
    site=/var/www/{site_name}
    4
    git_dir={project_git_directory}
    5
    
                  
  4. laravel-firebase-messaging-start laravel-firebase-messaging-start Public

    Simple template for firebase push notifications in Laravel 10.x

    PHP 1

  5. server-summary server-summary Public

    Simple server summary to list app installed

    Astro