Skip to content

Instantly share code, notes, and snippets.

View anthonyalvarez's full-sized avatar
🏠
Working from home as a remote web coder

Anthony E. Alvarez anthonyalvarez

🏠
Working from home as a remote web coder
View GitHub Profile
@KristofferRisa
KristofferRisa / choco-install-apps.ps1
Last active March 5, 2025 04:59
Choco install scripts
# Install script for Kristoffer
# Created 06.08.2015
ECHO Installing apps
ECHO Configure chocolatey
choco feature enable -n allowGlobalConfirmation
#choco install visualstudiocode
choco install notepadplusplus
@parmentf
parmentf / GitCommitEmoji.md
Last active May 14, 2026 00:08
Git Commit message Emoji
@honmaaax
honmaaax / WebDevelopmentBestPractice1.md
Last active April 23, 2017 20:20
Web Development Best Practice #1

Web Development Best Practice #1

Compress all images

  • All image type (png, jpeg, git)
  • Resize (Max size possible to show)
  • Keep a certain quality (Not grubby-looking)
@ajn123
ajn123 / Git Config
Last active June 6, 2019 19:11
git config settings
git config --global user.name "John Doe" # Set name
git config --global user.email johndoe@example.com # set email
# Convenient log message display
git config --global alias.lg "log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative"
# Alias 'git a' to 'git add .'
git config --global alias.a "add ."
# set Git editor to emacs
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #