眠気.jl

投稿=不定期

2022-11-01から1ヶ月間の記事一覧

hyper-tlsでHTTPSリクエスト(not HTTP)する備忘録

経緯 DMM APIがHTTPSリクエストしか許してくれず、かと言ってhyperでhttpsリクエストしようとすると StringError("Invalid scheme for Http") なのでhyper-tlsいれてリクエスト飛ばして解決しました 手順 Cargo.toml追記 hyper = { version = "0.14.23", fea…

YewでHelloWorld: 備忘録

Yew動かすまでにやったことすべてのメモ cargo new yewexample cd yewexample touch index.html cargo install --locked trunk Cargo.toml追記 yew = { git = "https://github.com/yewstack/yew/", features = ["csr"]} src/main.rsの編集 use yew::prelude:…

Ubuntu22.04にRustインストール:備忘録

sudo apt update && sudo apt upgrade && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # 聞かれるので1を選んだ 1) Proceed with installation (default) 2) Customize installation 3) Cancel installation >1 source $HOME/.cargo/en…

sqlboilerでsupabaseから構造体生成した: 備忘録

models_psqlフォルダに構造体を生成する インストール go install github.com/volatiletech/sqlboiler/v4@v4.13.0 go install github.com/volatiletech/sqlboiler/v4/drivers/sqlboiler-psql@v4.13.0 sqlboiler.toml [psql] dbname = "postgres" host = "db.…