show dbs
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
#!/usr/bin/env bash | |
# Exit on error | |
set -e | |
# On MacOS, make sure shuf command is available | |
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
Open Activity Monitor and force quit "coreaudiod" |
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
JavaScript 4 hrs 32 mins ██████████████████▉░░ 89.9% | |
Markdown 10 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.5% | |
CSS 7 mins ▌░░░░░░░░░░░░░░░░░░░░ 2.6% | |
Other 6 mins ▍░░░░░░░░░░░░░░░░░░░░ 2.1% | |
JSON 3 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.2% |
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
🌞Morning 13 commits ▍░░░░░░░░░░░░░░░░░░░░ 2.2% | |
🌆Daytime 167 commits █████▊░░░░░░░░░░░░░░░ 27.9% | |
🌃Evening 273 commits █████████▌░░░░░░░░░░░ 45.6% | |
🌙Night 146 commits █████░░░░░░░░░░░░░░░░ 24.4% |
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
🏆 9,581 Karma Points | |
✅ Completed 1,635 tasks so far | |
⌛ Longest streak is 0 days |
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
🏆 757 Contributions in year 2020 | |
📦 Used 312 MB in GitHub's Storage | |
📜 9 Public Gists | |
🔑 2 Public Keys | |
🚫 Not opted to Hire |
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
#!/bin/bash | |
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master`; do | |
git branch --track ${branch##*/} $branch | |
done | |
git fetch --all | |
git pull --all |
OlderNewer