並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 128件

新着順 人気順

eventsの検索結果1 - 40 件 / 128件

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

eventsに関するエントリは128件あります。 awseventイベント などが関連タグです。 人気エントリには 『Explore DOM Events』などがあります。
  • Explore DOM Events

    There are many categories of events including user events such as 'click' and system events such as 'DOMContentLoaded'.

      Explore DOM Events
    • JavaScriptのイベントの仕組みが一発で理解できるウェブアプリ「Explore DOM Events」レビュー

      JavaScriptには、特定の動作が発生した際にそれに応じてコードを実行する「イベント」という仕組みが存在しています。そのイベントがDOM内でどのように伝わるのかについて、「Explore DOM Events」というウェブアプリがイベントのオプションに応じて視覚的に表示してくれるとのことなので、実際に使って分かりやすさを確かめてみました。 Explore DOM Events https://domevents.dev/ ページにアクセスすると、「親(PARENT)」「子(CHILD)」「孫(GRANDCHILD)」というDOMの親子関係が表示されており、そのうち1つめの孫(オレンジ)がイベントのターゲットに設定されていることが分かります。このまま「Dispatch」をクリックしてみると…… イベントが伝わっていく様子がアニメーションで表示されました。まだ何もイベントリスナーを追加して

        JavaScriptのイベントの仕組みが一発で理解できるウェブアプリ「Explore DOM Events」レビュー
      • 当社ペンタブレット製品によるデータ収集についてのお知らせ | News and Events | Wacom

        • ChatGPTをぬるぬるにする🐌Server-Sent Eventsの基礎知識

          単方向通信であるということと、HTTP/1.1上で動作しているのが大きな特徴です。 また、HTTP上で動作することから、通信の互換性が高く、セキュリティモデルも使いまわせるので安心です。 どんな用途と相性がいいの? 双方向通信がしたいわけでなければ、相性の幅がとても広いです。 今回の ChatGPT のような、GPT がトークンを生成するごとに送るケースはもちろん、通知の未読件数バッジの更新、ニュース速報の表示など、サーバからイベントを送りたい時ならなんでも使えます。 HTTP/1.1で動くカラクリ SSEはHTTPのレスポンスヘッダにContent-Type: text/event-streamを指定した上で動作します。 SSEが動く流れ クライアントがサーバーに HTTP/1.1 リクエストを送信し、イベントストリームに接続します。 サーバーは、Keep-Alive 接続を使用して、T

            ChatGPTをぬるぬるにする🐌Server-Sent Eventsの基礎知識
          • WebSockets vs Server-Sent-Events vs Long-Polling vs WebRTC vs WebTransport | RxDB - JavaScript Database

            For modern real-time web applications, the ability to send events from the server to the client is indispensable. This necessity has led to the development of several methods over the years, each with its own set of advantages and drawbacks. Initially, long-polling was the only option available. It was then succeeded by WebSockets, which offered a more robust solution for bidirectional communicati

              WebSockets vs Server-Sent-Events vs Long-Polling vs WebRTC vs WebTransport | RxDB - JavaScript Database
            • GitHub - vercel/virtual-event-starter-kit: Open source demo that Next.js developers can clone, deploy, and fully customize for events.

              This virtual event starter kit was used to run Next.js Conf 2020, which had almost 40,000 live attendees. It includes the following features: Multiple stages - with the ability to add multiple sessions on each stage Each stage can be configured as - An embedded YouTube stream OR A live interactive audio-video experience powered by 100ms Sponsor expo, including individual virtual booths Career Fair

                GitHub - vercel/virtual-event-starter-kit: Open source demo that Next.js developers can clone, deploy, and fully customize for events.
              • 歴史・年表でみるAWSサービス(Amazon EventBridge編) -機能一覧・概要・アップデートのまとめ・入門、Amazon CloudWatch Eventsとの違い- - NRIネットコムBlog

                小西秀和です。 「歴史・年表でみるAWS全サービス一覧 -アナウンス日、General Availability(GA)、AWSサービス概要のまとめ-」から始まったAWSサービスを歴史・年表から機能を洗い出してまとめるシリーズの第5弾です(過去、Amazon S3、AWS Systems Manager、Amazon Route 53について書きました)。 今回はAWSサービスのイベント検知、条件に応じた他のAWSサービスへのイベント連携、イベントの生成などをするAmazon EventBridge(旧Amazon CloudWatch Events)について歴史年表を作成してみました。 今回もAmazon EventBridgeの誕生から機能追加やアップデートを追いながら主要機能を現在のAmazon EventBridgeの機能一覧と概要としてまとめています。 これらが、各AWSサービス

                  歴史・年表でみるAWSサービス(Amazon EventBridge編) -機能一覧・概要・アップデートのまとめ・入門、Amazon CloudWatch Eventsとの違い- - NRIネットコムBlog
                • Host Immersive Online Events with Real Connections & Engagement

                  Remo is an all-in-one event soluton Host Events and Networking Online Where Every Interaction Feels RealAn Event management platform for virtual conferences webinars, poster sessions, and job fairs that drives real connections, deepens engagement and delights attendees.

                    Host Immersive Online Events with Real Connections & Engagement
                  • Server-Sent Events を複数パターンで実装して理解を試みる

                    Server-Sent Events (SSE) 目新しい技術というわけではありませんが、最近 Server-Sent Events (SSE) について言及する記事をよく見かけます。 何番煎じかはわかりませんが、個人的に興味があることと、正直触ってみたことがなかったので、コードを書きつつ調べてみました。 ※本記事で登場するサンプルコードは次のリポジトリで公開しています。 SSE とは SSE 自体を解説する記事は無数に存在するため詳細な説明は割愛しますが、簡単に言うと、サーバーからクライアントへ一方向の Push 通信を行うための仕組みです。 MDN にもページが存在するため、参考になります。 独自プロトコルを必要とせず、HTTP/1.1 でも動作するのも特徴です。 SSE の歴史 wikipedia に SSE に関するページが存在し、次のような記述があります。 SSE メカニズムは、

                      Server-Sent Events を複数パターンで実装して理解を試みる
                    • Server-Sent Events, WebSockets, and HTTP

                      Hi, I’m Mark Nottingham. I usually write here about the Web, protocol design, HTTP, and Internet governance. Find out more. Comments? Let's talk on Mastodon. @mnot@techpolicy.social other HTTP posts Yet More New HTTP Specs Wednesday, 8 June 2022 A New Definition of HTTP Monday, 6 June 2022 How Multiplexing Changes Your HTTP APIs Sunday, 13 October 2019 Designing Headers for HTTP Compression Tuesda

                        Server-Sent Events, WebSockets, and HTTP
                      • Slack Events APIの再送仕様と回避方法まとめ(Serverless on AWS) | DevelopersIO

                        SlackのEvents API(Event Subscription)で盛大にドハマりしてしまったので、Events APIの再送の仕様をまとめて、本来のベストプラクティスに沿った実装と妥当な落とし所をご紹介します。 どうも、もこ@札幌オフィスです。 最近Slackを利用したBotの開発をする機会がありまして、SlackのEvents API(Event Subscription)で盛大にドハマりしてしまったので、Events APIの再送の仕様をまとめて、本来のベストプラクティスに沿った実装と妥当な落とし所をご紹介します。 Slack Events APIとは? 従来のポーリング型のAPIとは違い、あらかじめ受信するURLとイベント(メッセージの送信、リアクションの追加など)を指定してあげる事で、ワークスペース上でイベントが発生した際にSlackがWebHookしてくれる物となります。

                          Slack Events APIの再送仕様と回避方法まとめ(Serverless on AWS) | DevelopersIO
                        • Zoomが新しい仮想イベントプラットフォーム「Zoom Events」を発表

                          Zoomが2021年5月19日に、ライブイベント開催用の有料サービス「OnZoom」を拡張し、複数日にわたる大規模イベントなどがより簡単に行えるようにした新しいサービス「Zoom Events」を発表しました。中小企業から大企業まで幅広いニーズを視野に入れたこのサービスは、2021年夏にローンチする予定とされています。 Zoom Events - Coming Soon | Zoom https://zoom.us/docs/en-us/zoom-events.html Coming Soon: The Zoom Events Platform for Virtual Experiences - Zoom Blog https://blog.zoom.us/coming-soon-zoom-events-virtual-experiences/ Zoom Events will try t

                            Zoomが新しい仮想イベントプラットフォーム「Zoom Events」を発表
                          • 【ECS管理者必見】ECSサービスがCloudWatch Eventsに対応しサービスの状態変化検知が非常に簡単になりました! | DevelopersIO

                            【ECS管理者必見】ECSサービスがCloudWatch Eventsに対応しサービスの状態変化検知が非常に簡単になりました! 「ECSサービスのイベントをもっと手軽に取得したい」 そんなあなたにピッタリの新機能が発表されました! Amazon ECS Service Events Now Available as CloudWatch Events ECSサービスの各種イベントをCloudWatch Eventsで取得可能となったことで、従来より遥かにECSクラスタの状態変化へのアプリケーション実装が簡単になっております。ECSを本番ワークロードで運用している方必見の機能なので、ぜひご一読ください。 ECS運用管理簡単機能きたか…!! ( ゚д゚) ガタッ /   ヾ __L| / ̄ ̄ ̄/_ \/   / ECSサービスがCloudWatch Eventsに対応してなにが良いのか? A

                              【ECS管理者必見】ECSサービスがCloudWatch Eventsに対応しサービスの状態変化検知が非常に簡単になりました! | DevelopersIO
                            • GitHub - adaptive-scale/dbchaos: Stress-test your database with pre-defined queries. Generate synthetic data and events statically or with GPT.

                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                GitHub - adaptive-scale/dbchaos: Stress-test your database with pre-defined queries. Generate synthetic data and events statically or with GPT.
                              • Amazon EventBridge(CloudWatch Events)で動かしているバッチをDatadogで監視する仕組みを構築した話 - Classi開発者ブログ

                                開発本部 認証連携チームでエンジニアをしている、id:ruru8net です。 これはClassi developers Advent Calendar 2021の9日目の記事です。 昨日の記事はこちらです。 Hardening 2021 Active Fault 参加レポート - 桐生あんずです 以前のClassi Advent Calender 2019では新卒が入社半年で社内サービスをリリースしてエンジニア楽しいってなったお話を書かせていただきましたが、あれから2年の間に業務の中で様々な経験をし、さらに知識やスキルを身につけていくことができました。 今日はその中でも自分が担当しているサービスの、バッチ監視の仕組みを考えたので紹介させてください。 背景 担当チームでは毎日深夜2時にDBからデータを削除するバッチを動かしています。 他にも社内では様々なバッチが動いていますが、これらを監視

                                  Amazon EventBridge(CloudWatch Events)で動かしているバッチをDatadogで監視する仕組みを構築した話 - Classi開発者ブログ
                                • Metrics, Events, Logs, Traces ってなんだ?

                                  はじめに オブザーバビリティは監視の世界を変えつつありますが、それには正当な理由があります。 多岐にわたるツールのおかげで、コードをデリバリするのがこれまでになく簡単になりましたが、それはソフトウェア環境がかつてないほど複雑化しはじめていることも意味します。ソフトウェア開発手法が進化するにつれて、システムも進化してます。ソフトウェアに「何か問題が発生しているか?」と尋ねるだけでは不十分です。その問題の理由も同時に尋ねられなければなりません。これは可観測性 (オブザーバビリティ) の基本的な性質です。 システムの可観測性を実現するにはすべてを計測し、すべてのテレメトリデータを1か所で表示できる必要があります。その方法については多くの議論が続いており、確実な定義は未だ現れていませんが、New Relic はメトリクス、イベント、ログ、およびトレース(MELT : Metrics, Events

                                    Metrics, Events, Logs, Traces ってなんだ?
                                  • City of Austin Cancels SXSW March Events

                                    MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARCH 7–15 MARC

                                      City of Austin Cancels SXSW March Events
                                    • 無料のトレーニング イベント Virtual Training Days | Microsoft Events and Seminars

                                      Microsoft Virtual Training Days は、各ソリューションを最大限にご活用いただくための無料オンライン トレーニングです。さまざまな技術トピックをご紹介し、皆様からのご質問にマイクロソフトのエキスパートがリアルタイムでお答えします。また、各種Microsoft認定資格受験へ向けての学習コンテンツとしてもご活用いただけます。

                                      • Amazon EventBridge now supports receiving events from GitHub, Stripe and Twilio using Webhooks

                                        Amazon EventBridge now supports integrations with GitHub, Stripe, and Twilio via webhooks using Quicks Starts. You can subscribe to events from these SaaS applications and receive them on an Amazon EventBridge event bus for further processing. With Quick Starts, you can use AWS CloudFormation templates to create HTTP endpoints for your event bus that are configured with security best practices for

                                          Amazon EventBridge now supports receiving events from GitHub, Stripe and Twilio using Webhooks
                                        • Luma · Delightful Events Start Here

                                          Set up an event page, invite friends and sell tickets. Host a memorable event today.

                                            Luma · Delightful Events Start Here
                                          • [Fastly] Server-Sent Events (SSE) を Fastly で最強にスケールさせる - Qiita

                                            evtSource.onmessage = function(e) { var newElement = document.createElement("li"); var eventList = document.getElementById('list'); newElement.innerHTML = "message: " + e.data; eventList.appendChild(newElement); } とりあえず SSE が動いてるか手早く確かめたい場合は、EventSource でインスタンスの作成だけ行い、例えば Chrome の developer tools で下記のように EventStream タブからデータ受信の様子を確認することができます (または当該の URL に直接アクセスすると、データがそのままブラウザに表示され、更新されていく様子が見ることがで

                                              [Fastly] Server-Sent Events (SSE) を Fastly で最強にスケールさせる - Qiita
                                            • Amazon Rekognition Streaming Video Eventsでリアルタイムに人検知を行う - Taste of Tech Topics

                                              この記事は AI/ML on AWS Advent Calendar 2022 12/23、および、アクロクエスト アドベントカレンダー 12/23 の記事です。 qiita.com こんにちは、Acroquest データサイエンスチーム YAMALEX メンバーの駿です。 早いもので2022年もあと一週間と少しになってしまいました。 皆さんは年を越す準備は万端でしょうか? 私が住む社員寮では慌てて年越しそばを買ったり、餅を買ったり、ぎりぎりになってバタバタしています。 さて、今回は 2022年4月に発表された Amazon Rekognition の Streaming Video Events を使って、リアルタイムの人検知を試してみました。 エッジデバイスには Raspberry Pi を使いました。 検出結果の例 1. はじめに (1) Amazon Rekognition とは

                                                Amazon Rekognition Streaming Video Eventsでリアルタイムに人検知を行う - Taste of Tech Topics
                                              • GitHub - mitchellh/libxev: libxev is a cross-platform, high-performance event loop that provides abstractions for non-blocking IO, timers, events, and more and works on Linux (io_uring or epoll), macOS (kqueue), and Wasm + WASI. Available as both a Zig an

                                                libxev is a cross-platform event loop. libxev provides a unified event loop abstraction for non-blocking IO, timers, signals, events, and more that works on macOS, Windows, Linux, and WebAssembly (browser and WASI). It is written in Zig but exports a C-compatible API (which further makes it compatible with any language out there that can communicate with C APIs). Project Status: 🐲 Unstable, alpha

                                                  GitHub - mitchellh/libxev: libxev is a cross-platform, high-performance event loop that provides abstractions for non-blocking IO, timers, events, and more and works on Linux (io_uring or epoll), macOS (kqueue), and Wasm + WASI. Available as both a Zig an
                                                • Gyms. Bars. The White House. See how superspreading events are driving the pandemic

                                                  THE SCIENCE OF SUPERSPREADING Why preventing hot spots of transmission is key to stopping the COVID-19 pandemic By Martin Enserink, Kai Kupferschmidt, and Nirja Desai 30 October 2020 In late February, drug company Biogen held its annual conference in Boston. The United States had fewer than 20 known COVID-19 cases at the time. But one of the roughly 200 attendees must have carried the virus. It tr

                                                    Gyms. Bars. The White House. See how superspreading events are driving the pandemic
                                                  • GitHub - Netflix/bpftop: bpftop provides a dynamic real-time view of running eBPF programs. It displays the average runtime, events per second, and estimated total CPU % for each program.

                                                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                      GitHub - Netflix/bpftop: bpftop provides a dynamic real-time view of running eBPF programs. It displays the average runtime, events per second, and estimated total CPU % for each program.
                                                    • 新型コロナウイルスにかかったうえでの経験談、私見 https://twitter.com/i/events/1257313325798404107

                                                      • Celebrate 15 Years of Amazon S3 with ‘Pi Week’ Livestream Events | Amazon Web Services

                                                        AWS News Blog Celebrate 15 Years of Amazon S3 with ‘Pi Week’ Livestream Events I wrote the blog post that announced Amazon Simple Storage Service (Amazon S3) fifteen years ago today. In that post, I made it clear that the service was accessed via APIs and that it was targeted at developers, outlined a few key features, and shared pricing information. Developers found that post, started to write co

                                                          Celebrate 15 Years of Amazon S3 with ‘Pi Week’ Livestream Events | Amazon Web Services
                                                        • Selected Adverse Events Reported after COVID-19 Vaccination

                                                          On June 27, 2024, the CDC Director adopted the ACIP’s recommendations for use of 2024–2025 COVID-19 vaccines in people ages 6 months and older as approved or authorized by FDA. The 2024–2025 vaccines are expected to be available in fall 2024. This page will be updated at that time to align with the new recommendations. Learn more: www.cdc.gov/media/releases/2024/s-t0627-vaccine-recommendations.htm

                                                            Selected Adverse Events Reported after COVID-19 Vaccination
                                                          • Auschwitz Memorial on X: "RESOLUTION OF THE INTERNATIONAL AUSCHWITZ COUNCIL ON THE TRAGIC EVENTS IN ISRAEL, APPROVED BY CIRCULATION ON 18 NOVEMBER 2023 The International Auschwitz Council by the Prime Minister of the Republic of Poland acknowledges with t

                                                            • What Every Software Engineer Should Know about Apache Kafka: Events, Streams, Tables, Storage, Processing, And More

                                                              To help fellow engineers wrap their head around Apache Kafka and event streaming, I wrote a 4-part series on the Confluent blog on Kafka’s core fundamentals. In the series, we explore Kafka’s storage and processing layers and how they interrelate, featuring Kafka Streams and ksqlDB. In the first part, I begin with an overview of events, streams, tables, and the stream-table duality to set the stag

                                                                What Every Software Engineer Should Know about Apache Kafka: Events, Streams, Tables, Storage, Processing, And More
                                                              • Lambda + CloudWatch Events で Slack に最新情報を通知する RSSリーダーを作ってみた | DevelopersIO

                                                                LambdaとCloudWatch Eventsで好きなRSSの最新情報をSlackに通知する仕組みをサクッと作ってみました こんにちは、大前です。 Lambda で RSS リーダー的な物を作ってみましたので、ブログを書いていきます。 ちなみに、Slack には RSS リーダーのアプリケーションがあるので、自己満足的な要素が大きいです。。 RSS を Lambda で取得して、AWS 側で何か処理をさせたい時の参考などにして頂ければ幸いです。 Slack に RSS フィードを追加する 構成 大まかな処理の流れは以下です。 CloudWatch Events で Lambda 関数を 1時間毎に実行 Lambda から RSS フィードを取得 1時間以内に更新があれば Slack に通知 今回は、厚生労働省が提供している RSS を取得してみる事にしてみます。 厚生労働省 - RSSに

                                                                  Lambda + CloudWatch Events で Slack に最新情報を通知する RSSリーダーを作ってみた | DevelopersIO
                                                                • AWS Events Content

                                                                  Experience our event content at your fingertips. Explore, view, and download presentation decks from your favorite sessions and discover what’s new. Learn from AWS experts, customers, and partners to continue your educational journey in the cloud.

                                                                    AWS Events Content
                                                                  • 薬物乱用頭痛になる社畜 - https://twitter.com/i/events/1261839813189070848

                                                                    • The AWS Lambda console now supports the option to share test events between developers

                                                                      Developers can now share test events with other developers in their AWS account. Test events provide developers the ability to define a sample event in the Lambda console, and then invoke a Lambda function using that event to test their code. Previously, test event were only available to the developers who created them. With this launch, developers can make test events available to other team memb

                                                                        The AWS Lambda console now supports the option to share test events between developers
                                                                      • New – Archive and Replay Events with Amazon EventBridge | Amazon Web Services

                                                                        AWS News Blog New – Archive and Replay Events with Amazon EventBridge Event-driven architectures use events to share information between the components of one or more applications. Events tell us that “something has happened,” maybe you received an API request, a file has been uploaded to a storage platform, or a database record has been updated. Business events describe something related to your

                                                                          New – Archive and Replay Events with Amazon EventBridge | Amazon Web Services
                                                                        • A New Era for Ruby Central Events

                                                                          A special announcement for the Ruby communityWe normally announce next year’s RailsConf location at the end of the conference, but this time we are going to do something a little different and share two pieces of news: We are delighted to announce that we want to involve you all in deciding where we will have RailsConf next year. Please use this Google Form to share your feedback. We have also dec

                                                                            A New Era for Ruby Central Events
                                                                          • National Holidays And Annual Events in Japan

                                                                            In Japan, there are 16 annual national holidays and other annual events which are widely celebrated. Each of them has its own special meaning, origin and customs. Many people have the day off on the national holidays and spend the holiday going out with their family, joining special events, or just relaxing at home. Learning about national holidays and the annual events in Japan helps you to under

                                                                              National Holidays And Annual Events in Japan
                                                                            • GitHub - DaveJarvis/KmCaster: Capture keyboard and mouse events for screencasting

                                                                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

                                                                                GitHub - DaveJarvis/KmCaster: Capture keyboard and mouse events for screencasting
                                                                              • How AWS protects customers from DDoS events | Amazon Web Services

                                                                                AWS Security Blog How AWS protects customers from DDoS events At Amazon Web Services (AWS), security is our top priority. Security is deeply embedded into our culture, processes, and systems; it permeates everything we do. What does this mean for you? We believe customers can benefit from learning more about what AWS is doing to prevent and mitigate customer-impacting security events. Since late A

                                                                                  How AWS protects customers from DDoS events | Amazon Web Services
                                                                                • Open Source Summit Japan | LF Events

                                                                                  Open Source Summit Japan is the leading conference in Japan connecting the open source ecosystem under one roof, providing a forum for technologists and open source industry leaders to collaborate and share information, learn about the latest in open source technologies and find out how to gain a competitive advantage by using innovative open solutions. Open Source Summit Japanは、日本で開催される大規模なカンファレン

                                                                                    Open Source Summit Japan | LF Events

                                                                                  新着記事