Skip to content
View rinavillaruz's full-sized avatar

Block or report rinavillaruz

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. Launch WordPress Using Docker, Docke... Launch WordPress Using Docker, Docker-Compose and ENV file
    1
    services:
    2
      db:
    3
        image: mysql:5.7
    4
        container_name: local-db
    5
        ports:
  2. START/STOP AWS Instance Using AWS-CL... START/STOP AWS Instance Using AWS-CLI, Docker, Docker-Compose and Bash Script
    1
    #!/bin/bash
    2
    
                  
    3
    change_instance_state() {
    4
        action='.StartingInstances[0]';
    5
        status='stopped'
  3. Automate Background Tasks with Linux... Automate Background Tasks with Linux Service and Timer
    1
    [Unit]
    2
    Description=Empty trash every minute
    3
    
                  
    4
    [Service]
    5
    ExecStart=bash /opt/empty-trash.sh