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

Block or report MrChrisWeinert

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. MAMEIronXP MAMEIronXP Public

    Cross-platform MAME front-end built in C#/AvaloniaUI

    C# 6

  2. MAMEIron MAMEIron Public

    Windows-based MAME Front-end built in WPF

    C# 2 1

  3. Just a collection of stuff I use to ... Just a collection of stuff I use to troubleshoot Docker and networking issues
    1
    #Stop/Remove a specific Docker Container
    2
    docker stop containername && docker rm containername
    3
    
    
    4
    #Stop all containers with "backend" in it:
    5
    docker  rm $(docker ps -a | grep backend | cut -f1 -d' ')
  4. Remote Powershell stuff Remote Powershell stuff
    1
    Enable-PSRemoting
    2
    Get-Item WSMan:\localhost\Client\TrustedHosts
    3
    Set-Item WSMan:\localhost\Client\TrustedHosts -Value 'RemoteServerName'
    4
    
    
    5
    #This weird thing is only needed if you still can't run WSMan commands even after enabling all the trust settings (https://web.archive.org/web/20110615172805/http://www.shirmanov.com/2011/04/winrm-access-is-denied-on-local.html)
  5. Tcpdump for a given Docker container Tcpdump for a given Docker container
    1
    #!/bin/bash
    2
    IP=`docker inspect MyContainerName | grep 'IPAddress":' | cut -f4 -d'"' | head -1` && sudo tcpdump -i docker0 host $IP