Skip to content

Instantly share code, notes, and snippets.

View chrisdemars's full-sized avatar
💭
💻Remote

Chris DeMars chrisdemars

💭
💻Remote
View GitHub Profile
@chrisdemars
chrisdemars / pull_request_template.md
Created March 21, 2023 14:56
Pull Request Template Example

Description with screenshots if available

Task URL

Type of change

@chrisdemars
chrisdemars / list-files-when-cd.bash
Created August 9, 2021 19:09
List files and folders when changing into a directory.
function cd {
builtin cd "$@" && ls -F
}