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

Block or report donnyhyon

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

    React frontend, SpringBoot backend, Postgres DB. Dockerised

    Java

  2. config config Public

    Shell

  3. bash aliases bash aliases
    1
    # cd "/c/Program Files/Git/etc/profile.d" && code aliases.sh
    2
    
                  
    3
    alias ls='ls -F --color=auto --show-control-chars'
    4
    alias ll='ls -l'
    5
    alias gl='git pull'
  4. WSL2 zhconfig for oh-my-zsh WSL2 zhconfig for oh-my-zsh
    1
    export ZSH="$HOME/.oh-my-zsh"
    2
    
                  
    3
    ZSH_THEME="af-magic"
    4
    
                  
    5
    plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
  5. pre-commit hook pre-commit hook
    1
    #!/bin/sh
    2
    
                  
    3
    echo "pre-commit hook running"
    4
    dotnet csharpier .
    5