並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 17 件 / 17件

新着順 人気順

Compositeの検索結果1 - 17 件 / 17件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

Compositeに関するエントリは17件あります。 GitHubgithubtechfeed などが関連タグです。 人気エントリには 『Web Animations APIのcompositeが凄過ぎてすごいからみんな見てくれ - Qiita』などがあります。
  • Web Animations APIのcompositeが凄過ぎてすごいからみんな見てくれ - Qiita

    この記事はようやくSafariでもフルサポートされそうなWeb Animations APIのcomposite(効果の組成)って機能がすごいよ!!って、ただそれだけを伝えたい記事です。平たくいうと複数のアニメーションを簡単キレイに合成できる機能なのですが、通常のWebのコーディングでもよく出てくる辛さを解決してくれる結構すごいヤツなのです。 ▼ こういうアニメーション作るのもだいぶん楽になります Web Animations APIで星空パーティクル 単にCSSのアニメーションをJSで描けるよってだけではあるんだけど、ライブラリなしでそこそこ簡単にインタラクティブなもの作れるって意味ではうれしい。主要ブラウザ全部で使える。https://t.co/8H8zXfc5NL pic.twitter.com/bfTERJPxIX — ゆき@ティアF47a (@yuneco) October 11

      Web Animations APIのcompositeが凄過ぎてすごいからみんな見てくれ - Qiita
    • Composite Action実践ガイド:GitHub Actionsのメンテナンス性を高める技法

      『Composite Action実践ガイド』はGitHub Actionsに関心のあるソフトウェアエンジニア向けのZenn Bookです。 本Bookでは「Composite Action」の実運用で役立つプラクティスを紹介します。テスト・静的解析・セキュリティ・ドキュメンテーション・依存関係管理・リリースマネジメント・Reusable Workflowsによる開発体験の向上など盛りだくさんです。 Composite Actionはシンプルなので、ただ実装するだけなら難しくありません。しかしメンテナンス性を高め、一貫性を維持するのは難しい仕事です。さらに利用者に優しく使いやすいものを提供するには、高いホスピタリティも求められます。 そこで本BookではComposite Actionの利便性を高め、持続的に進化させるためのアイデアをたくさん散りばめました。Composite Action

        Composite Action実践ガイド:GitHub Actionsのメンテナンス性を高める技法
      • GitHub Actions の Composite Run Steps で ecspresso / lambroll をインストールする action を作った - 酒日記 はてな支店

        要約 GitHub Actions に Amazon ECS デプロイツール ecspresso と AWS Lambda デプロイツール lambroll を簡単にインストール action を用意しました。 steps で以下の指定をするだけです。(Linux 環境専用です) - uses: kayac/ecspresso@v0 - uses: fujiwara/lambroll@v0 もうちょっと詳しく これまで GitHub Actions の action は基本的に Node で書く必要があったのですが、やりたいことはバイナリをダウンロードして展開してコピーするだけなのになんで Node を書かないといけないのか……(Linux以外の環境を考えると仕方ないとはいえ)、と面倒くささが先に立って、これまで action を作らないままでした。 が、先日 Composite Run

          GitHub Actions の Composite Run Steps で ecspresso / lambroll をインストールする action を作った - 酒日記 はてな支店
        • GitHub Reusable Workflows と Composite Actions の使い分けについて考えた - stefafafan の fa は3つです

          Composite Actions を触っていたところ、 Reusable Workflows との違いが分かりづらいと感じたので自分の中で考えた使い分けについて整理してまとめてみました。 使い分けイメージ Composite Actions Reusable Workflows 使い分けイメージの根拠 みなさんの使い分けや Tips も教えてください 参考 使い分けイメージ Composite Actions リポジトリ内の「この一連の steps をよくやってるな」というのを部品として切り出したいときに使うと良い Custom Actions を自作する際に、 JavaScript Action や Docker Container Action を1から作る前に Composite Actions でできないか検討すると良い (yamlを1つ用意するだけでハードルが低いため) Reu

            GitHub Reusable Workflows と Composite Actions の使い分けについて考えた - stefafafan の fa は3つです
          • mask-compositeでつくるCSSの新しい表現方法 - ICS MEDIA

            CSSで特定の形に切り抜く(マスキングする)にはmask-imageプロパティが便利です。マスク用の画像をmask-imageプロパティを使って要素に適用すれば、その画像の不透過部分のみにマスキングできます。mask-imageプロパティに関連して2024年から使用可能になったmask-compositeプロパティを使うと、マスクの合成方法を指定でき、より幅広いマスク表現ができるようになりました。この記事ではmask-compositeプロパティについて解説します。 サンプルを別ウインドウで開く コードを確認する mask-compositeプロパティの値とそのマスク結果の違い mask-compositeプロパティは、複数のマスク画像をどのように合成するかの方法を指定するためのプロパティです。実はmask-imageプロパティは複数画像の指定にも対応しています。複数画像からマスク領域を生

              mask-compositeでつくるCSSの新しい表現方法 - ICS MEDIA
            • Composite Action Template を作りました [GitHub Actions]

              テンプレートリポジトリ 作成した Composite action のテンプレートです。 概要 GitHub Actions でアクションを自作する際に作成できるアクションには3種類あります。 JavaScript (TypeScript) Docker container Composite JavaScript, TypeScript, Docker container にはそれぞれ公式のテンプレートがあるのですが、なぜか Composite だけありません。 action.yml に直接コードを書くのでテストやビルド、デプロイ等の周辺コードが不要という判断なのかもしれませんが、さっと作るときに action.yml に何を書けばよかったっけ?と調べるところから始めるのは不便です。 そこでマーケットプレースに公開するのに必要な項目を網羅した action.yml と LICENSE や

                Composite Action Template を作りました [GitHub Actions]
              • Reusable Workflows と Composite Actions の使い分け - Object.create(null)

                個人の見解です. GitHub Actions 内の実行単位 GitHub Actions で基本となる実行単位は workflow ですが, その中に job, さらにその中に step という階層構造があるということをまずは理解しておきましょう. workflow トップレベルの実行単位 job workflow の中で並列に実行される (直列に実行したい場合は needs で依存関係を持たせる) runner (VM) は job ごとに用意される step job の中で直列に実行される Reusable workflows と composite actions GitHub から公開されている記事 (ref) で比較がされているのでそれも参考にしつつ, 簡単にまとめると, reusable workflows 複数の job をまとめて 1 つの job のように扱えるようにし

                  Reusable Workflows と Composite Actions の使い分け - Object.create(null)
                • GitHub Actions: Composite Run Steps · GitHub Changelog

                  AI & MLLearn about artificial intelligence and machine learning across the GitHub ecosystem and the wider industry. Generative AILearn how to build with generative AI. GitHub CopilotChange how you work with GitHub Copilot. LLMsEverything developers need to know about LLMs. Machine learningMachine learning tips, tricks, and best practices. How AI code generation worksExplore the capabilities and be

                    GitHub Actions: Composite Run Steps · GitHub Changelog
                  • How to Introduce Composite Primary Keys in Rails - Shopify

                    How to Introduce Composite Primary Keys in RailsOne line of code can 5x your Rails application performance. What if you could make a small change to your database design that would unlock massively more efficient data access? At Shopify, we dusted off some old database principles and did exactly that with the primary Rails application. Databases are a key scalability bottleneck for many web applic

                      How to Introduce Composite Primary Keys in Rails - Shopify
                    • Creating a composite action - GitHub Docs

                      Introduction In this guide, you'll learn about the basic components needed to create and use a packaged composite action. To focus this guide on the components needed to package the action, the functionality of the action's code is minimal. The action prints "Hello World" and then "Goodbye", or if you provide a custom name, it prints "Hello [who-to-greet]" and then "Goodbye". The action also maps

                        Creating a composite action - GitHub Docs
                      • GitHub Actionsのcomposite actionを使ってinternalリポジトリのファイルを配布する - Cybozu Inside Out | サイボウズエンジニアのブログ

                        クラウド基盤本部Cloud Platform部の pddg です。この前までチームだったんですが部になったらしいです。 引き続き精力的に cybozu.com のインフラ基盤の移行に取り組んでいます。 今回はKubernetesマニフェストのバリデーションのための仕組みを検討していたときに発見した、GitHub Actionsのちょっとハックっぽい、もしかしたら便利かもしれない手法について紹介したいと思います。 TL; DR 背景 テナントごとに分散しているマニフェスト kubeconformによるバリデーション テナントもNecoが使っているスキーマ定義ファイルを使いたい! internalリポジトリのclone トークンの作り方 GitHub Actionsのカスタムアクション GITHUB_ACTION_PATH には何が入っている? ファイルを配布するアクションを作る パラメータで

                          GitHub Actionsのcomposite actionを使ってinternalリポジトリのファイルを配布する - Cybozu Inside Out | サイボウズエンジニアのブログ
                        • Stop using Gradle buildSrc. Use composite builds instead

                          Pic by Tania MT with ❤What is buildSrcbuildSrc is a directory at the Gradle project root, which can contain our build logic. This allows us to use the Kotlin DSL to write our custom build code with very little configuration and share this logic across the whole project. This has become very popular in recent years and it is a common practice to define project-specific tasks or storing dependencies

                            Stop using Gradle buildSrc. Use composite builds instead
                          • GitHub Actions用アクションのDocker to Compositeの変更

                            B! 5 0 0 0 GitHub Actionsで自作のアクションを作っているものの中で、 Dockerを使ってその中でシェルスクリプトを走らせているようなものがありました。 それをCompositeというスタイルに変更して使うようにしました。 GitHub Actionsの自作方法 octopress-actionで起こった問題 Docker to Composite Composite便利 GitHub Actionsの自作方法 GitHub Actionsを自作するには、最初はDockerを使ってその中で何かを走らせるか、 JavaScriptを使って走らせるという2択でした。 GitHub Actions用のアクションを自作する Dockerを使うと好きなimageの中で走らせることは出来ますが、 基本的にはそのアクションの中で閉じた作業になります。 したがって、actions/

                              GitHub Actions用アクションのDocker to Compositeの変更
                            • [GitHub Actions] Composite Actionを使って再利用可能なActionを作ろう

                              GitHub Actionsで複数のWorkflowを追加していくと、Workflow間で同一のStepが増えてくることはないでしょうか? 開発用、ステージング用、本番用と似たような処理が集まっているにも関わらず同じ記述を何度もしていることはないでしょうか? 本記事では、Composite Actionを使って再利用可能なActionを作成し、上記の課題を解決したいと思います。 Composite Actionについて まず、Composite Actionについて簡単に解説します。 ここでは、再利用可能なActionを定義しています。 ファイル名は、action.yaml or action.ymlが使用できます。 name: "Composite Action" description: "[Test] Composite Action" runs: using: "composite

                                [GitHub Actions] Composite Actionを使って再利用可能なActionを作ろう
                              • Improve monitoring efficiency using Amazon CloudWatch Composite Alarms | Amazon Web Services

                                AWS Cloud Operations Blog Improve monitoring efficiency using Amazon CloudWatch Composite Alarms OVERVIEW Amazon CloudWatch alarms help customers improve infrastructure monitoring efficiency by reducing the time to detect, triage, and diagnose issues that impact workload performance. CloudWatch alarms can be used extensively as a means to alert customers when application and infrastructure metrics

                                  Improve monitoring efficiency using Amazon CloudWatch Composite Alarms | Amazon Web Services
                                • Image Composite Editorの入手先 - 星のつぶやき

                                  前回、月面写真へのSharpen AIの適用可否についてあれこれ検証しましたが、この時に使った月面写真は、月面全体をモザイク合成で捉えるために撮影したものでした。 ちなみに、最終的に仕上げたものはこちら。 Sharpen AIの検証やって疲れたので、検証に使った過去の月面写真を縮小なしで放流。4800×6400pxとそこそこデカいので、見ごたえは十分あるはず。EdgeHD800+ASI120MM & EOS KissX5, モノクロ:30ms, 約15秒, OPTLONG Night Sky H-Alphaフィルター使用, カラー:ISO100, 1/100秒, 2017年5月4日撮影 pic.twitter.com/Tb3He9Ghz7— HIROPON (@hiropon_hp2) February 16, 2022 このモザイク合成にはマイクロソフト謹製の「Image Composi

                                    Image Composite Editorの入手先 - 星のつぶやき
                                  • Github Actions の複合ステップアクションを利用してアクションを分離・再利用する(Composite run steps actions)

                                    HomeGithubGithub Actions の複合ステップアクションを利用してアクションを分離・再利用する(Composite run steps actions)

                                      Github Actions の複合ステップアクションを利用してアクションを分離・再利用する(Composite run steps actions)
                                    1

                                    新着記事