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
cd interledger.github.io | |
bundle exec jekyll serve | |
# http://127.0.0.1:4000 |
This file has been truncated, but you can view the full file.
export POD_NAME=$(kubectl get pods --namespace default -l "app=ethereum-geth-tx,release=ethereum" -o jsonpath="{.items[0].metadata.name}")
The above doesn't work, at least at the current version.
It should be like this:
export POD_NAME=$(kubectl get pods --namespace default -l "app=ethereum,component=geth-tx" -o jsonpath="{.items[0].metadata.name}")
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
vuetify: { | |
customVariables: ['~/assets/styles/vuetifyVariables.scss'], | |
defaultAssets: { | |
font: { | |
family: ['Roboto', 'Noto+Sans+JP'], | |
}, | |
icons: 'mdi', | |
}, | |
theme: { | |
dark: false, |
def do_something(&block)
puts "(1)"
yield block
puts "(2)"
end
def do_this
puts "(3)"
do_something do
OlderNewer