Skip to content
View coltenkrauter's full-sized avatar
🔥
Fire
🔥
Fire

Highlights

  • Pro
Block or Report

Block or report coltenkrauter

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
coltenkrauter/README.md

Hi there 👋

Colten's GitHub stats

Pinned

  1. angular-ssr-example angular-ssr-example Public

    A simple example of a Dockerized Angular app which uses Angular Universal for server-side rendering.

    TypeScript 7 8

  2. Fix DNS resolution in WSL2 Fix DNS resolution in WSL2
    1
    More recent resolution:
    2
    
                  
    3
    1. cd ~/../../etc (go to etc folder in WSL).
    4
    2. echo "[network]" | sudo tee wsl.conf (Create wsl.conf file and add the first line).
    5
    3. echo "generateResolvConf = false" | sudo tee -a wsl.conf (Append wsl.conf the next line).
  3. Traefik V2 Docker Compose file with ... Traefik V2 Docker Compose file with LetsEncrypt and HTTPS redirect - Traefik dashboard and simple whoami service
    1
    # Tutorial: https://blog.creekorful.com/2020/01/how-to-expose-traefik-2-dashboard-securely-docker-swarm/
    2
    version: '3'
    3
    
                  
    4
    services:
    5
      reverse-proxy:
  4. Remove Chrome's autofill background ... Remove Chrome's autofill background color on HTML inputs. This unique solution makes the background color to transparent rather then a solid color.
    1
    // Remove chrome autofill color from inputs
    2
    input:-webkit-autofill,
    3
    input:-webkit-autofill:hover,
    4
    input:-webkit-autofill:focus,
    5
    input:-webkit-autofill:active {
  5. brussels brussels Public template

    TypeScript

  6. code-challenges code-challenges Public

    A binary tree implementation in Python with traversal operations.

    Python