Skip to content

Instantly share code, notes, and snippets.

View dora-gt's full-sized avatar

Taiga Nakayama dora-gt

View GitHub Profile
@dora-gt
dora-gt / jekyll.sh
Created September 11, 2017 13:07
jekyll
cd interledger.github.io
bundle exec jekyll serve
# http://127.0.0.1:4000
@dora-gt
dora-gt / DrivingAgent.mov
Last active October 23, 2017 09:30
ml-agents
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}")
vuetify: {
customVariables: ['~/assets/styles/vuetifyVariables.scss'],
defaultAssets: {
font: {
family: ['Roboto', 'Noto+Sans+JP'],
},
icons: 'mdi',
},
theme: {
dark: false,
@dora-gt
dora-gt / README.md
Created January 27, 2022 02:08
returning from a block
def do_something(&block)
    puts "(1)"
    yield block
    puts "(2)"
end

def do_this
    puts "(3)"
 do_something do