Skip to content
View kevcoxe's full-sized avatar

Block or report kevcoxe

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. tailscale-with-minecraft tailscale-with-minecraft Public

    A few ansible playbooks to automate setting up a minecraft serve accessible via tailscale

    Python 1

  2. Simple-Flask-App Simple-Flask-App Public

    A simple flask tutorial

    HTML

  3. first-game first-game Public

    first game in js from scratch

    JavaScript

  4. docker-stuff docker-stuff Public

    Playing around with docker

    JavaScript

  5. Git rebase merge conflicts Git rebase merge conflicts
    1
    git rebase origin/master
    2
    # fix conflicts
    3
    git add -A
    4
    git rebase --continue
    5
    git push --force
  6. Next.js Dockerfile with entrypoint.s... Next.js Dockerfile with entrypoint.sh to enable building minimal images without including your ENV vars in the image
    1
    FROM node:18-alpine AS base
    2
    
                  
    3
    # Install dependencies only when needed
    4
    FROM base AS deps
    5
    # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.