git -A
git pull && git clean -fd
| [alias] | |
| ad = add -A | |
| cm = commit | |
| co = checkout | |
| st = status | |
| br = branch | |
| lg = !git --no-pager log --pretty --oneline -n 10 | |
| pu = push | |
| pl = pull | |
| hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short |
| powershell iwr -outf .gitignore https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore | |
| echo #Jupyter notebook checkpoint files. >> .gitignore | |
| echo .ipynb_checkpoints/* >> .gitignore |
| set path=%path%;%programfiles%\Mozilla Firefox | |
| firefox %userprofile% |
| ############################################################################################## | |
| # Remove unwanted appes that are installed after the upgrade of Windows 10 from 1703 to 1709 # | |
| # Run using SCCM task sequence after the system has been upgraded # | |
| # Apps and Features white listed will not be removed # | |
| ############################################################################################## | |
| # LS 2017 # | |
| ############################################################################################## | |
| ### White list of appx packages to keep installed ### | |
| $WhiteListedApps = @( |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent] | |
| "DisableWindowsConsumerFeatures"=dword:00000001 | |
| @-moz-document url-prefix("http://localhost:8888/") | |
| { | |
| :root | |
| { | |
| --main-font-family: Consolas, monaco, monospace; | |
| --main-bg-color: #282C34; | |
| --atom-one-dark-cyan: #56B6C2; | |
| --atom-one-dark-blue: #61AFEF; | |
| --atom-one-dark-bg-1: #121417; |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| .Python |