Skip to content

Instantly share code, notes, and snippets.

View austin-patterson's full-sized avatar

Austin P austin-patterson

  • New World Now
  • Milwaukee
View GitHub Profile
@austin-patterson
austin-patterson / VS Code Extensions
Last active November 23, 2022 03:45
C/C++, Java, JS/TS, Vue, Markdown
Auto Closing Tag
Auto Rename Tag
Better C++ Syntax
Better Comments
Bookmarks
C/C++
Close All
Code Spall Checker
Debugger for Firefox
Dev Containers
@austin-patterson
austin-patterson / .gitignore
Created September 3, 2021 07:17 — forked from edesdan/.gitignore
A .gitignore file suitable for development with Java, Maven, Gradle, IntelliJ, Android Studio on a MacOS
# Reference: https://github.com/github/gitignore
# From: https://gist.github.com/edesdan/6bb43343740bcd54ef0f56a384a2f66f
######################
###### Mac OS X ######
######################
# Folder view configuration files
.DS_Store
Desktop.ini
@austin-patterson
austin-patterson / bash_aliases.sh
Last active June 28, 2024 14:46
Bash aliases for Git
#---------
# Aliases
#---------
# --show-control-chars: help showing Korean or accented characters
alias ls='ls -F --color=auto --show-control-chars'
alias lss='ls -as'
alias ll='ls -al'
alias la="ls -A"
#-------------