Skip to content
View nsticco's full-sized avatar
  • Moon Ladder Studios
  • Portland

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
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

    Run Claude Code, Codex, and any Omnigent agent with superior security, resiliency, and observability.

    Python 12 6

  2. Shell script to install DevOps tools... Shell script to install DevOps tools for Ubuntu
    1
    #!/usr/bin/env bash
    2
    # bash <(curl -fsSL https://gist.githubusercontent.com/nsticco/c417ce3c00a4d88ff2661e3cc60f18d4/raw/bootstrap-ubuntu-devops.sh)
    3
    # Bootstrap supported Ubuntu releases with current stable DevOps tools, Docker Engine,
    4
    # the Docker Compose plugin, and selected AI coding agent CLIs.
    5
    #
  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-mac-devops bootstrap-mac-devops
    1
    #!/usr/bin/env bash
    2
    # /bin/bash -lc 'eval "$(/opt/homebrew/bin/brew shellenv 2>/dev/null || true)"; eval "$(/usr/local/bin/brew shellenv 2>/dev/null || true)"; /bin/bash <(curl -fsSL https://gist.githubusercontent.com/nsticco/db82987b5121f06884de4010072e2cb0/raw/bootstrap-mac-devops)'
    3
    # Bootstrap macOS with DevOps tools + popular AI coding agent CLIs.
    4
    # Works on macOS default Bash 3.2 (no ${var,,} / no associative arrays).
    5
    # Spec Kit install logic fixed: "latest" installs from repo HEAD (no @latest tag).