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
# Original: https://github.com/atton/dockerfiles/blob/1566be5489c34ba743dd5735f6584d3ef213cdb5/.github/workflows/build-and-push.yml | |
name: Build and Push Docker Images | |
on: push | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: |
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
Error loading /root/.config/pry/pryrc: undefined method `file=' for #<Pry::History:0x00005624d9ce6298> | |
Did you mean? filter | |
/root/.config/pry/pryrc:1:in `__pry__' |
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
let s:keyword_patterns = {} | |
let s:keyword_patterns['_'] = '[a-zA-Z_]\k*' | |
let s:keyword_patterns['ruby'] = '[a-zA-Z_@]\w*[!?]?' | |
let s:keyword_patterns['text'] = '[0-9a-zA-Z][0-9a-zA-Z_.-]*' | |
let s:keyword_patterns['zsh'] = '[a-zA-Z_][a-zA-Z_-]*' | |
call deoplete#custom#option('keyword_patterns', s:keyword_patterns) |
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
~/.config/nvim/dein/repos/github.com $ egrep 'has\(.python.\)' -R . | |
./atton/gundo.vim/autoload/gundo.vim:elseif has('python')" | |
./Shougo/denite.nvim/test/.themisrc: call themis#log('has("python"): ' . has('python')) | |
./tyru/open-browser.vim/autoload/vital/_openbrowser/Web/HTTP.vim: if !has('python') | |
./gregsexton/VimCalc/plugin/vimcalc.vim:if has('python') | |
./gregsexton/VimCalc/plugin/vimcalc.vim: if has('python') != 1 | |
./gregsexton/VimCalc/plugin/vimcalc.vim:if has('python') | |
./haya14busa/dein-command.vim/autoload/vital/_dein_command/Web/HTTP.vim: if !has('python') |
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
function call-subshell () { | |
echo $BUFFER | /usr/bin/egrep '(\&\&|\|)' >& /dev/null | |
if [ $? -eq 0 ]; then | |
echo $BUFFER | /usr/bin/egrep "^[[:space:]]*\(" | /usr/bin/egrep "\)[[:space:]]*$" >& /dev/null | |
if [ $? -ne 0 ]; then | |
BUFFER="( ${BUFFER} )" | |
fi | |
fi | |
zle .accept-line | |
} |
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
/* copy to ~/Library/KeyBindings/DefaultKeyBinding.dict */ | |
{ | |
"^;" = ("insertText:", ""); /* disable beep */ | |
} |
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
id | name | class | rarity | |
---|---|---|---|---|
1 | Altria Pendragon | saver | 5 | |
2 | Altria Pendragon (alter) | saver | 4 | |
3 | Altria Pendragon | archer | 5 | |
4 | Altria Pendragon | lancer | 5 | |
5 | Altria Pendragon (alter) | lancer | 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
[root@9015bf44beee /]# dnf search askpass | |
Fedora Modular 30 - x86_64 1.5 MB/s | 1.9 MB 00:01 | |
Fedora Modular 30 - x86_64 - Updates 2.0 MB/s | 2.8 MB 00:01 | |
Fedora 30 - x86_64 - Updates 5.0 MB/s | 23 MB 00:04 | |
Fedora 30 - x86_64 5.2 MB/s | 61 MB 00:11 | |
Last metadata expiration check: 0:00:01 ago on Sat Aug 31 00:41:37 2019. | |
=============================== Name & Summary Matched: askpass ================================ | |
lxqt-openssh-askpass-l10n.x86_64 : Translations for lxqt-openssh-askpass | |
lxqt-openssh-askpass.x86_64 : Askpass openssh transition dialog for LXQt desktop suite | |
==================================== Name Matched: askpass ===================================== |
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
# $ nodenv init - bash | |
eval export PATH="/Users/atton/.nodenv/shims:${PATH}" | |
export NODENV_SHELL=bash | |
source '/usr/local/Cellar/nodenv/1.3.0/libexec/../completions/nodenv.bash' | |
command nodenv rehash 2>/dev/null | |
nodenv() { | |
local command | |
command="${1:-}" | |
if [ "$#" -gt 0 ]; then | |
shift |
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
[Unit] | |
Description=Docker Registry | |
Requires=docker.service | |
After=docker.service | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/docker restart registry | |
ExecStop=-/usr/bin/docker stop registry | |
RemainAfterExit=yes |
NewerOlder