This will connect to SSID and prompt for the password.
nmcli dev wifi connect SSID --ask
#!/usr/bin/env bash | |
if [ "`echo ${1} | grep -i mongo`" ]; then | |
PASS=$(bw get item "${1}" | jq --join-output --raw-output .login.password | jq --slurp --raw-input '@uri' --raw-output) | |
else | |
PASS=$(bw get item "${1}" | jq --join-output --raw-output .login.password) | |
fi | |
echo ${PASS} | |
echo ${PASS} | pbcopy |
This will connect to SSID and prompt for the password.
nmcli dev wifi connect SSID --ask
{ | |
"keymap": [ | |
{ | |
"keyCode": 65535, | |
"label": "", | |
"verbose": "Transparent" | |
}, | |
{ | |
"keyCode": 30, | |
"label": "1" |
window.setInterval(() => { | |
;[ | |
...document.querySelectorAll( | |
'button.settings-button.warning-button.client-disconnect' | |
) | |
] | |
.pop() | |
.click() | |
window.setTimeout(() => document.querySelector('#submit-btn').click(), 300) | |
}, 600) |
[user] | |
email = [email protected] | |
name = Ryan McQuen | |
[core] | |
autocrlf = false | |
eol = lf | |
editor = subl -w | |
[pull] | |
rebase = false |
test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish | |
set -gx NODE_EXTRA_CA_CERTS '/usr/local/etc/openssl/cert.pem' | |
set -U EDITOR subl -w | |
set -U VISUAL subl -w | |
source "$HOME/.config/fish/secrets.fish" | |
set -gx ENGAGE_IMGATCH_SERVICE false |
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] |
;; (add-hook 'prelude-prog-mode-hook (lambda () (smartparens-mode -1)) t) | |
(set-face-attribute 'default nil :height 150) |
Add this to ~/.emacs.d/personal/custom.el
(or some other file in ~/.emacs.d/personal/
):
(add-hook 'prelude-prog-mode-hook (lambda () (smartparens-mode -1)) t)
.input { | |
display: none; | |
} | |
.output { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
color: #000000; | |
font-family: monospace; |