show dbs
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
| #!/usr/bin/env bash | |
| # Exit on error | |
| set -e | |
| # On MacOS, make sure shuf command is available | |
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
| Open Activity Monitor and force quit "coreaudiod" |
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
| 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 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 13 commits βββββββββββββββββββββ 2.2% | |
| πDaytime 167 commits βββββββββββββββββββββ 27.9% | |
| πEvening 273 commits βββββββββββββββββββββ 45.6% | |
| πNight 146 commits βββββββββββββββββββββ 24.4% |
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
| π 9,581 Karma Points | |
| β Completed 1,635 tasks so far | |
| β Longest streak is 0 days |
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
| π 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 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
| #!/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

