in ~/.config/fish/config.fish
set -x RUBY_CONFIGURE_OPTS --with-openssl-dir=(brew --prefix openssl@1.1)
and reload by
$ source ~/.config/fish/config.fish
[diff] | |
tool = nvimdiff | |
[difftool] | |
prompt = true | |
[difftool "nvimdiff"] | |
cmd = nvim -d $LOCAL $REMOTE | |
[merge] | |
tool = nvimdiff | |
[mergetool] | |
keepBackup = false |
in ~/.config/fish/config.fish
set -x RUBY_CONFIGURE_OPTS --with-openssl-dir=(brew --prefix openssl@1.1)
and reload by
$ source ~/.config/fish/config.fish
{ | |
"req_body":{ | |
"cart":{ | |
"total_weight":254, | |
"item_count":1, | |
"requires_shipping":null, | |
"bold_cart_id":9643389, | |
"cart_token":"ca5c598902d2828a6d1405a6bd41d5ee", | |
"public_token":"1769fb7c418b104c75b73f955bcda565f7a939c7", | |
"attributes":null, |
{ | |
"req_body":{ | |
"cart":{ | |
"total_weight":254, | |
"item_count":1, | |
"requires_shipping":null, | |
"bold_cart_id":9643389, | |
"cart_token":"ca5c598902d2828a6d1405a6bd41d5ee", | |
"public_token":"1769fb7c418b104c75b73f955bcda565f7a939c7", | |
"attributes":null, |
# delete column | |
ActiveRecord::Migration.remove_column :table_name, :column_name | |
# drop table | |
ActiveRecord::Migration.drop_table :table_name |
while linking to auth http link it usually input username and password by hand, there is some way to jump this step:
https://[username]:[password]@url:port/uri
For example, I wanna link "http://example.com/index.html" which server side with autherize, its username and password, convert it to
https://admin:password@example.com:80