自分の振り返り用。 リンクは youtube に飛びます。 機能名 コメント 一枚画像(https://www.youtube.com/watch?v=JSqUZFkRLr8&list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG) AboutDialog ダイアログを表示する AbsorbPointer ウィジェットへの入力を無効にする…
こう書いてたら失敗した。(なぜ) resource "google_compute_target_https_proxy" "default" { name = "pr-cloudrun-https-proxy" url_map = google_compute_url_map.default.id certificate_manager_certificates = ["//certificatemanager.googleapis.com…
Flutter/Dart学習中です。 Iterator の一つである where を見ていたところこの記載があったので咀嚼してみます。 Creates a new lazy Iterable with all elements that satisfy the predicate test. The matching elements have the same order in the retur…
この記事をみてその発想はなかったので学んでみる。 DeepL で翻訳するので意訳に注意。 blog.orhun.dev なぜその疑問に気づいたのか? もともと界隈でよくいわれていた。 実際紹介されているこの gif でみても、stdout/stderr では fps に差がある。 どのよ…
dart.dev The late modifier has two use cases: Declaring a non-nullable variable that’s initialized after its declaration. Lazily initializing a variable. Often Dart’s control flow analysis can detect when a non-nullable variable is set to …
作ったもの github.com Google Cloud の IAM role を期間限定でユーザに付与するためのワークフローアプリ。 技術スタック Backend / Front: Go (template) プロトコル:HTTP + OpenAPI v3(ogen) DB: Posgresql 他にも新しく使ったものをすべてかく tagpr / …
ogen | ogen Getting started | ogen を自前アプリで使ってみたので感想です。他には oapi-codegen の仕様経験があります。 実際にコードを生成したのはこちら。 github.com 結論 いい点 戸惑ったところ 結論 oapi-codegen よりシンプルで使いやすかった。 …
普段は Go を触ってるので Collection if / for が新鮮だったのでメモ。 Collections | Dart var nav = ['Home', 'Furniture', 'Plants', if (promoActive) 'Outlet']; これは promoActive が Outlet ならコレクションに追加。 var nav = [for (i = 0; i < 1…
実際のコードはこの辺り。 prel/.github/workflows/test.yaml at f42c6862fd4212e8b257b6205585e2c614d378d2 · lirlia/prel · GitHub やってるのは以下のこと。 証明書のダウンロード Ubuntu にCAとして登録 hoverctl のダウンロード 起動
What is Hoverfly? — Hoverfly v1.6.1 documentation go アプリ起動 export HTTP_PROXY=http://localhost:8500 export HTTPS_PROXY=http://localhost:8500 export NO_PROXY=localhost,127.0.0.1 した上で go run main.go 証明書 その裏で証明書をダウンロー…
プライベートリポジトリで GitHub Pages をプライベートで作った時にカスタムドメインを付与したらいつまでもHTTPSが有効になりませんでした。 公式ホームページを見ると public にしないといけないようなので以下を実施しました。 GitHub Pages サイトのカ…
結論 利用していた別の module が constraint でしぼってた。 ❯ terraform providers Providers required by configuration: . ├── module.project_services │ ├── provider[registry.terraform.io/hashicorp/google] >= 3.43.0, < 5.0.0 │ └── provider[reg…