Skip to content
View nsticco's full-sized avatar
Block or Report

Block or report nsticco

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

  1. 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.
  2. bootstrap-ubuntu-docker bootstrap-ubuntu-docker
    1
    #!/bin/bash
    2
    # This script will bootstrap Ubuntu with Docker
    3
    
                  
    4
    ###############################################################################
    5
    # Customize the script by passing values to the named parameters below, e.g.
  3. 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'))
  4. bootstrap-windows-vscode bootstrap-windows-vscode
    1
    ##########################################################################################
    2
    # Setup VS Code
    3
    ##########################################################################################
    4
    Write-Output "Make sure Chocolatey is installed..."
    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'))