After upgrading to go 1.17+ then you will start to see this error.
fatal: could not read Username for 'https://github.com': terminal prompts disabled
#!/usr/bin/env bash | |
set -euo pipefail | |
TARGET=${1:-"${HOME}/clipage.$(date -I).${RANDOM}.png"} | |
xclip -selection clipboard -t image/png -o > ${TARGET} |
#!/usr/bin/env bash | |
################################################################################ | |
# Colors | |
# | |
# File that contains all the local colors in semi easy to use strings. Thse can | |
# be mixed together to get the desired color intensity and background. | |
# | |
################################################################################ |
When you are looking at a busy database there is more to see.
If you have a lot of Sleep processes they all show up and not the slow query you need.
This query helps pull out all the queries that have been running longer than 2 second and aren't Sleep
.
SELECT time, state, info FROM information_schema.processlist WHERE command != 'Sleep' AND time >= 2 ORDER BY time DESC, id;
#/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
# Update vim-minimal.(deps tied to man pages, etc. fixed) | |
dnf clean all | |
dnf update -v --debugsolver vim-minimal -y | |
dnf install vim -y |
On the left hand side of the keyboard there are two switches. Slide the switch closest to the USB port to "Win/Android". The writing can be very difficult to read because of the small letters. The "Win/Android" position on the switch is closest to the USB port.
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* Get Local Alaises. | |
* | |
* Returns an array that is indexed by it's alias ID without that '@'. | |
* | |
* @return array Returns an array of local sites in the Drush site aliases. | |
*/ | |
function _multisite_get_local_alias($group = NULL) { |