Skip to content
View nsticco's full-sized avatar

Block or report nsticco

Report abuse

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

Report abuse

Pinned Loading

  1. MoonLadderStudios/MoonMind MoonLadderStudios/MoonMind Public

    MoonMind is a self-hosted AI orchestration hub for chat and automation.

    Python 6 3

  2. Shell script to install DevOps tools... Shell script to install DevOps tools for Ubuntu
    1
    #!/bin/bash
    2
    # This script will bootstrap Ubuntu with DevOps related tools
    3
    
                  
    4
    ###############################################################################
    5
    # Customize the script by passing values to the named parameters below, e.g.
  3. bootstrap-ubuntu-docker bootstrap-ubuntu-docker
    1
    #!/bin/bash
    2
    # This script will bootstrap Ubuntu with Docker
    3
    
                  
    4
    # Customize the script by passing values to the named parameters below, e.g.
    5
    # ./bootstrap-ubuntu-docker.sh --user ec2-user
  4. bootstrap-windows-devops bootstrap-windows-devops
    1
    ###############################################################################
    2
    # Install Windows DevOps Tools
    3
    ###############################################################################
    4
    Write-Output "Installing Chocolatey..."
    5
    Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))