flowchart
direction TB
ガルーラ([共命の翼ガルーラ])
ドロゴン([沼地のドロゴン])
フレイムウィングマン([F・HERO フレイム・ウィングマン])
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2026-03-18T01:42:02.9100979Z Current runner version: '2.332.0' | |
| 2026-03-18T01:42:02.9124132Z ##[group]Runner Image Provisioner | |
| 2026-03-18T01:42:02.9125002Z Hosted Compute Agent | |
| 2026-03-18T01:42:02.9125554Z Version: 20260213.493 | |
| 2026-03-18T01:42:02.9126230Z Commit: 5c115507f6dd24b8de37d8bbe0bb4509d0cc0fa3 | |
| 2026-03-18T01:42:02.9126893Z Build Date: 2026-02-13T00:28:41Z | |
| 2026-03-18T01:42:02.9127741Z Worker ID: {440b388e-00e1-47c9-962b-53a8200e0135} | |
| 2026-03-18T01:42:02.9128485Z Azure Region: westcentralus | |
| 2026-03-18T01:42:02.9129024Z ##[endgroup] | |
| 2026-03-18T01:42:02.9130446Z ##[group]Operating System |
flowchart
subgraph 自分メインフェイズ
direction TB
重騎士プリメラ[【初動】重騎士プリメラ] -- 【召喚】サーチ --> スタンドアップ[スタンドアップ・センチュリオン!]
スタンドアップ -- デッキから永続罠扱いで置く --> 永続罠:従騎士トゥルーデア
永続罠:従騎士トゥルーデア -- 特殊召喚&Lv+4 --> Lv8:従騎士トゥルーデア
Lv8:従騎士トゥルーデア -- 自身を永続罠扱いで置く --> トゥルーデアD[永続罠:従騎士トゥルーデア]
Lv8:従騎士トゥルーデア -- デッキから永続罠扱いで置く --> 永続罠:竜騎兵ガーゴイルII
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "bundler/inline" | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem "benchmark-ips" | |
| end | |
| I = "Rubyist" | |
| PHPER = "PHPer" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "title": "ISUCON", | |
| "description": "https://app.datadoghq.com/dash/integration/30268/ruby-runtime-metrics?tpl_var_service=isucon\nhttps://app.datadoghq.com/dashboard/dzb-2ps-nyf?tpl_var_service=isucon\n\n* [Continuos Profiler](https://app.datadoghq.com/profiling/aggregation?query=service%3Aisucon)\n* [Database Monitoring](https://app.datadoghq.com/databases/queries?query=service%3Aisucon%20-query_signature%3A%2829e4c5d3e6caa593%20OR%20f8ae1cfee57d2d0b%20OR%20946d3a847b4979d5%20OR%203d26034e89167423%20OR%20dfa53796cd30e3e7%29&dbType=MySQL)\n", | |
| "widgets": [ | |
| { | |
| "id": 3153889567518422, | |
| "definition": { | |
| "title": "sinatra", | |
| "type": "group", | |
| "background_color": "vivid_green", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resource "aws_vpc" "isucon" { | |
| cidr_block = "172.31.0.0/16" | |
| tags = { | |
| Name = "isucon VPC" | |
| } | |
| } | |
| resource "aws_subnet" "isucon_public_a" { | |
| vpc_id = aws_vpc.isucon.id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A monkey patch to switch the connection destination from pgbouncer to PostgreSQL only when `rake db:migrate` | |
| # | |
| # Usage: Put this file to `lib/tasks/db_migrate_monkey_patch.rake` | |
| # | |
| # https://gist.github.com/sue445/e82bbc8b626e4681f87182aa5981b68d | |
| require "tmpdir" | |
| require "fileutils" | |
| module DbMigrateMonkeyPatch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Service account for datadog | |
| # c.f. https://docs.datadoghq.com/ja/integrations/google_cloud_platform/?tab=datadogussite#setup | |
| resource "google_service_account" "datadog" { | |
| account_id = "datadog" | |
| display_name = "datadog" | |
| } | |
| # Compute Viewer | |
| resource "google_project_iam_binding" "datadog_compute_viewer" { |
NewerOlder