Bookmarks

Bookmarks

46225 bookmarks
Custom sorting
tfdiff: Terraformのモジュール間の差分を調べるためのツールを作った
tfdiff: Terraformのモジュール間の差分を調べるためのツールを作った
Terraformでモジュール間の差分を比較するツールtfdiffを作りました。 tfdiffとは tfdiffはTerraformのモジュール同士を比較・表示するコマンドラインツールです。 単純なファイル比較ではなく、HCLを解析して以下の要素ごとに差分を表示します: モジュール呼び出し(module calls) 出力(outputs) リソース(resources) データソース(data sources) 変数(variables) Terraformを使っていると、モジュール間でどんな違いがあるか比較したくなる時があります。 特に、ルートモジュールでproductionやstagingを分けて管理している時、呼び出しているモジュールが足りていなくて環境毎の差分が発生していたり、引数の差分が適切ではなかったりすることがあります。 こういうルートモジュール間の差分を確認するために素朴にdiffコマンドで比較するのもいいですが、モジュールの構造を考慮した差分が見たいケースもあります。 tfdiffはそういった用途で使えるツールです。 サンプル 以下のように、example/leftとexample/rightの2つのルートモジュールがあるとします。 example/ ├── left/ │ ├── main.tf │ ├── outputs.tf │ └── variables.tf └── right/ ├── main.tf ├── outputs.tf └── variables.tf left/main.tfにのみリソースが定義されている場合 片方でのみ定義して、もう片方で定義し忘れている場合を考えます。 # Web application infrastructure resource "aws_instance" "web" { ami = "ami-0c02fb55956c7d316" instance_type = "t2.micro" tags = { Name = "WebServer" Environment = "production" } } このとき、tfdiffは以下のように差分として検出します。 % ./dist/tfdiff ./examples/basic/{left,right} --- ./examples/basic/left +++ .
·repl.info·
tfdiff: Terraformのモジュール間の差分を調べるためのツールを作った
GitHub Actionsの価格改定について
GitHub Actionsの価格改定について
GitHubでは、セルフホスト型GitHub Actions向けに発表していた課金内容の変更を延期し、アプローチを再検討するための時間を設けることにしました。
·github.blog·
GitHub Actionsの価格改定について
Fresh - The Terminal Text Editor
Fresh - The Terminal Text Editor
Fresh is a fast, modern terminal text editor with intuitive keybindings, syntax highlighting, and instant startup.
·sinelaw.github.io·
Fresh - The Terminal Text Editor
Vibe coding is boring
Vibe coding is boring
Vibe coding gets the job done, but there's no thrill in the build.
·cassidoo.co·
Vibe coding is boring
Please Just Fucking Try HTMX
Please Just Fucking Try HTMX
A measured-yet-opinionated plea to try HTMX. Skip the React complexity, skip the raw HTML limitations. There's a third option.
·pleasejusttryhtmx.com·
Please Just Fucking Try HTMX
Announcing the JavaScript/TypeScript Modernizer for VS Code - Microsoft for Developers
Announcing the JavaScript/TypeScript Modernizer for VS Code - Microsoft for Developers
Keeping JavaScript/TypeScript projects up-to-date can be a challenge, especially when it’s time to upgrade a bunch of npm packages or adopt the latest frameworks. We’ve heard from many JS/TS developers that modernizing an older app (upgrading dependencies, fixing breaking changes, etc.) is often tedious and time-consuming. To help with this, we’re excited to introduce the […]
·developer.microsoft.com·
Announcing the JavaScript/TypeScript Modernizer for VS Code - Microsoft for Developers
fcavallarin/wirebrowser
fcavallarin/wirebrowser
Contribute to fcavallarin/wirebrowser development by creating an account on GitHub.
·github.com·
fcavallarin/wirebrowser
タイミーで蓄積された Aurora MySQL 運用ナレッジ─ 障害・チューニング・実践知を特別公開 - Timee Product Team Blog
タイミーで蓄積された Aurora MySQL 運用ナレッジ─ 障害・チューニング・実践知を特別公開 - Timee Product Team Blog
はじめに タイミーで SRE 業務を担当している徳富(@yannKazu1)です。 日々、数千万件のデータと向き合う中で、Aurora MySQL の運用をより良くするための改善を積み重ねています。 本記事では、その中で経験してきた “机上ではわからないリアルな気づきや学び” を、できるだけ具体的にまとめました。 これ…
·tech.timee.co.jp·
タイミーで蓄積された Aurora MySQL 運用ナレッジ─ 障害・チューニング・実践知を特別公開 - Timee Product Team Blog
君は禅・ファイヤー・ガーデンを知っているか|xcloche
君は禅・ファイヤー・ガーデンを知っているか|xcloche
奇妙な動画 先日、いつものように漫然とインターネットを眺めていると(漫然とインターネットを眺めるのはよくない)、奇妙な動画が流れてきた。 Gas has been seeping from the Haripur field for 70 years since the explosion, creating a flame that has never stopped burning pic.twitter.com/rY4NtZtpYh — Potato (@MrLaalpotato) December 2, 2025 男がライターの火を地面に近づけると、地面が発火して
·note.com·
君は禅・ファイヤー・ガーデンを知っているか|xcloche
ブラウザから要素を選択してエージェントにコンテキストを提供する React Grab を試してみた
ブラウザから要素を選択してエージェントにコンテキストを提供する React Grab を試してみた
React Grab はブラウザ上で要素を選択し、その要素に対応するコードコンテキストをコーディングエージェントに提供するライブラリです。この記事では React Grab のセットアップ方法と使用方法を紹介します。
·azukiazusa.dev·
ブラウザから要素を選択してエージェントにコンテキストを提供する React Grab を試してみた