Skip to content
View mariuscucuruz's full-sized avatar
💭
typing...
💭
typing...

Block or report mariuscucuruz

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. Run Wordpress website behind nGinx, ... Run Wordpress website behind nGinx, on Docker, with SSL via Lets Encrypt
    1
    # normally (on Linux) your user / group has the ID 1000
    2
    UID=1000
    3
    GID=1000
    4
    WEBUSER=host-user
    5
    WEBGROUP=host-group
  2. Docker: build & push images for give... Docker: build & push images for given environment
    1
    #!/bin/bash
    2
    
                  
    3
    ## This program accepts an environment name (local, staging, prod) and 
    4
    ## expects respective Dockerfiles (for these suported environments) to 
    5
    ## exist in specific directory (i.e. `docker/$environment.Dockerfile`).
  3. BASH: assign CLI positional argument... BASH: assign CLI positional argument to local variables
    1
    #!/bin/bash
    2
    
                  
    3
    ### assign variables from CLI (posibional arguments)
    4
    first_user_arg="$1"
    5
    second_user_arg="$2"
  4. Shell Git aliases: Fetch Pull Update... Shell Git aliases: Fetch Pull Update Rebase Stash
    1
    #!/bin/bash
    2
    
                  
    3
    # run `gupdate` to safely update your local branch
    4
    alias gfetch="git fetch origin && git pull origin --ff-only"
    5
    alias gpull="git pull origin --ff-only"
  5. php-sockets-docker php-sockets-docker Public

    PHP Sockets on Docker

    PHP 1

  6. satellite-tracker satellite-tracker Public

    Laravel Lumen API that uses N2YO service to locate satelites and alert of their visibility

    PHP 1