Skip to content
View Katzenwerfer's full-sized avatar
🤒
Out sick
🤒
Out sick
Block or Report

Block or report Katzenwerfer

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. tf2-settings tf2-settings Public

    My Team Fortress 2 settings

  2. uBlock-Filter-Lists uBlock-Filter-Lists Public

    Some uBlock filter lists I personally use and maintain

  3. mpv-config mpv-config Public

    My mpv config :p

    5

  4. Initiate a PowerShell session that r... Initiate a PowerShell session that restarts on exit
    1
    function Restart-Session {
    2
        [Alias("ress")]
    3
        param ()
    4
        [System.Management.Automation.PathInfo]$pathInfo = Get-Location;
    5
        while ($true) {
  5. Wrapper function for the certutil.ex... Wrapper function for the certutil.exe program to compute the hash of a file
    1
    function Get-Hash {
    2
        [Alias("hash")]
    3
        param (
    4
            [Parameter(
    5
                Mandatory,
  6. Wrapper for the MKLINK command from ... Wrapper for the MKLINK command from the legacy cmd.exe terminal
    1
    function New-Link {
    2
        [Alias("mklink")]
    3
        param(
    4
            [ValidateSet(
    5
                "SymbolicLink",