- Download WSL2 Kernel
- run
wsl --set-default-version 2
in windows command line, so that all future WSL machine will use WSL2.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
# template/stub for functional git aliases | |
# my_alias = "!f() { 〈your complex command〉 }; f" | |
# edit git config with default text editor | |
ec = config --global -e | |
# run before each commit :) | |
pre = diff --cached --diff-algorithm=minimal -w |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function onEdit(event) | |
{ | |
Logger.log("onEdit() triggered with: %s", event); | |
// | |
// User params, edit to suit your needs | |
// | |
var timezone = "PST"; // You can use something like "GMT-7" as well. | |
var timestampFormat = "yyyy-MM-dd HH:mm:ss"; | |
var headerRowNum = 1; // The row containing data headers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"editor.rulers": [80,100], | |
"workbench.colorTheme": "Monokai", | |
"explorer.confirmDelete": false, | |
"workbench.colorCustomizations": { | |
// "tab.activeBorder": "#0A84FF", | |
"tab.activeBorderTop": "#c505df", | |
"tab.unfocusedActiveBorder": "#000000" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Credit http://stackoverflow.com/a/2514279 | |
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |
OlderNewer