This file contains hidden or 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
git config --global alias.lg 'log --graph --format="%C(magenta)%h%Creset%C(yellow)%d%Creset %s %C(white)%ad%Creset" --date=format:"%d %b %X"' |
This file contains hidden or 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
Show hidden characters
{ | |
"name": "Yello", | |
"type": "dark", | |
"colors": { | |
"editor.background": "#2a2a2a", | |
"editor.foreground": "#fff2cc", | |
"tab.activeBorder": "#999", | |
"editorLineNumber.foreground": "#444", | |
"editorLineNumber.activeForeground": "#fff2cc", | |
"editorIndentGuide.background": "#292929" |
This file contains hidden or 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
#include <iostream> | |
#include <tuple> | |
#include <type_traits> | |
#include <utility> | |
template <int I> | |
struct constexpr_int{ | |
constexpr operator int() const { return I; } | |
constexpr constexpr_int<I+1> operator++() const { return {}; } | |
}; |
This file contains hidden or 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
{ | |
"name": "Aspirin C", | |
"type": "dark", | |
"colors": { | |
"editor.background": "#1c1c1d", | |
"editor.foreground": "#cdc", | |
"tab.activeBorder": "#999", | |
"editorLineNumber.foreground": "#333", | |
"editorLineNumber.activeForeground": "#ccc", | |
"editorIndentGuide.background": "#292929" |