Skip to content

Instantly share code, notes, and snippets.

View awray13's full-sized avatar
😅
Probably googling something about .NET!

Ashton Wray awray13

😅
Probably googling something about .NET!
View GitHub Profile
@jwill9999
jwill9999 / README.md
Last active December 12, 2023 20:01
ASP.NET Razor Cheat Sheet
@carlbennett
carlbennett / linux-cheatsheet.sh
Last active June 2, 2024 14:41
Cheatsheet for Fedora, CentOS, and RedHat family members of Linux
# Fix user and directory permissions:
find . -type f -print0 | sudo xargs -0 chmod 664
find . -type d -print0 | sudo xargs -0 chmod 775
# Copy user permissions to group permissions:
chmod -R g=u .
# Make new files inherit the group of the container directory
chmod g+s <directory>