Skip to content

Instantly share code, notes, and snippets.

View yansklyarenko's full-sized avatar
🇺🇦
Ukraine keeps fighting for its freedom!

Yan Sklyarenko yansklyarenko

🇺🇦
Ukraine keeps fighting for its freedom!
View GitHub Profile
@twwilliams
twwilliams / Get-RepoConfigFiles.ps1
Last active September 26, 2019 18:22
Create Visual Studio .gitignore and .gitattributes files
(Invoke-WebRequest -Uri "https://www.gitignore.io/api/visualstudio").Content | Out-File ".gitignore"
(Invoke-WebRequest -Uri "https://gitattributes.io/api/visualstudio").Content | Out-File ".gitattributes"
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active June 7, 2024 07:28
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@skalinets
skalinets / .gitconfig
Created October 11, 2012 14:13
Git aliases
[alias]
prep = !git clean -ffd && git submodule foreach 'git reset --hard && git clean -ffd && git fetch --all' && git submodule update --init
lg = log --graph --date-order --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
pr = pull --rebase
[difftool "kdiff3"]
path = C:/Program Files/KDiff3/kdiff3.exe
trustExitCode = false
[difftool]