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
tap "homebrew/cask" | |
tap "homebrew/cask-versions" | |
brew "zsh" | |
# brew "starship" | |
brew "git" | |
brew "git-delta" # git diff => delta | |
brew "pyenv" | |
brew "pyenv-virtualenv" |
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
TypeScript 14 hrs 4 mins βββββββββββββββββββββ 71.7% | |
Prisma 2 hrs 39 mins βββββββββββββββββββββ 13.6% | |
JSON 1 hr 12 mins βββββββββββββββββββββ 6.1% | |
Git Config 37 mins βββββββββββββββββββββ 3.2% | |
Other 24 mins βββββββββββββββββββββ 2.1% |
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
π Morning 51 commits βββββββββββββββββββββ 9.3% | |
π Daytime 219 commits βββββββββββββββββββββ 39.7% | |
π Evening 184 commits βββββββββββββββββββββ 33.4% | |
π Night 97 commits βββββββββββββββββββββ 17.6% |
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
// http://www.cplusplus.com/articles/4z18T05o/ | |
#include <Windows.h> | |
void ClearScreen() | |
{ | |
HANDLE hStdOut; | |
CONSOLE_SCREEN_BUFFER_INFO csbi; | |
DWORD count; | |
DWORD cellCount; | |
COORD homeCoords = { 0, 0 }; |