並び順

ブックマーク数

期間指定

  • から
  • まで

121 - 160 件 / 6657件

新着順 人気順

triggeredの検索結果121 - 160 件 / 6657件

  • AnythingSlider

    Other Information Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla aliquet accumsan eros, et iaculis massa fringilla auctor. Proin a mi ante, ut lobortis risus. Sed fringilla augue sed enim faucibus eget aliquam tellus ultricies. Morbi a magna eu ligula scelerisque lobortis vel non nisi. Aliquam condimentum libero eget elit ultrices sit amet ullamcorper felis gravida. Queenie's Kille

    • god - process and task monitoring done right

      A Better Way to Monitor God is an easy to configure, easy to extend monitoring framework written in Ruby. Keeping your server processes and tasks running should be a simple part of your deployment process. God aims to be the simplest, most powerful monitoring application available. Tom Preston-Werner tom at rubyisawesome dot com Google Group: http://groups.google.com/group/god-rb Features Config f

      • DroidKaigi 2016 で 紹介された Android開発に役立つ ライブラリ 集 と スライドリンクまとめ - Qiita

        Overview 早期割引で申し込めなかったので、申し込みを諦めいていましたが、良さそうな情報は後で勉強のネタになるので、watch & pick & stock ! DroidKaigi 2017 まとめ は こちらです Language Lightweight-Stream-API Java 7やそれ以前向けに、iteratorsを書き直したStream APIです。 本家 https://github.com/aNNiMON/Lightweight-Stream-API 記事 Androidでリスト操作するなら、Lightweight-Stream-APIが便利 - Qiita Retrolambda Java 6, 7やAndroid向けにJavaのラムダをサポートするためのgradle plug-in. 本家 https://github.com/evant/gradle-ret

          DroidKaigi 2016 で 紹介された Android開発に役立つ ライブラリ 集 と スライドリンクまとめ - Qiita
        • 「音が見えるようになった!」バイク事故後に創造性が開花した音楽家の報告 - ナゾロジー

          ある音楽家の男性がバイク事故後に”音が見える”ようになったという珍しい症例報告がなされました。 米ヴァンダービルト大学医療センター(VUMC)の担当医によると、匿名の男性(66歳)は、事故による脳損傷が原因で「共感覚(シネステジア)」を発症したと考えられるという。 共感覚とは、音に味がするとか色に匂いがするなど、別々の感覚が混ざり合う現象です。 男性は事故後に、音を聴くだけで「音符が楽譜に書かれて見えるようになった」と話します。 さらに以前に増して、作曲への意欲や創造性が格段に高まったとのことです。 研究の詳細は、2023年5月7日付で医学雑誌『Neurocase』に掲載されています。 Musician’s head injury triggered rare synesthesia, causing him to ‘see’ music https://www.livescience.c

            「音が見えるようになった!」バイク事故後に創造性が開花した音楽家の報告 - ナゾロジー
          • Online beautifier for javascript

            Beautify Javascript /* paste in your own code and press Beautify button */ var latest_changes=new Object({'2008-02-22':'Javascript beautifier rewrite in javascript.','... boring history ...','2007-02-08':'Initial release'});var a=b?(c%d):e[f]; Beautify You can always fetch the latest version of the code from subversion repository at svn://edev.uk.to/beautify. If you're writing javascript, JSLint i

            • Mousetrap - Keyboard shortcuts in Javascript

              A simple library for handling keyboard shortcuts in Javascript. Try pressing some of the keys here: // single keys Mousetrap.bind('4', function() { highlight(2); }); Mousetrap.bind('x', function() { highlight(3); }, 'keyup'); // combinations Mousetrap.bind('command+shift+k', function(e) { highlight([6, 7, 8, 9]); return false; }); Mousetrap.bind(['command+k', 'ctrl+k'], function(e) { highlight([11

              • 1995年、セガサターンでのプログラミング | POSTD

                この記事は、1995年にNeversoft社で初となるゲーム「Skeleton Warriors」を開発した際に書いたドキュメントです。これは、私が68Kアセンブリ言語を使わずに作った初めてのゲームです。 こちらの写真から、当時の仕事環境を窺い知ることができます。右側にあるのがセガサターン用ソフト開発キット(”スモールボックス”とICEで構成されています)です。 ゲームの状態 以下のドキュメントで、セガサターン用ゲームソフト「Skeleton Warriors」用に書かれたコードを簡単に説明します。また、その中には現在でも使われている方法が多くありますので、そのいくつかをご紹介します。 このドキュメントの主な目的は、それぞれのモジュールの働きと、その対話方法を説明しながら、DanとKen、Jamesに現代のコードについて効率的に理解してもらうことです。またMick(筆者)が書いた残念なコー

                  1995年、セガサターンでのプログラミング | POSTD
                • How an AWS Aurora feature cut our DB costs by 90%

                  All of Graphite’s data lives on Amazon Aurora Postgres. Our database load is sizable — far larger than a typical startup of our size. This is because we sync bidirectionally with GitHub for everything a user does on Graphite, so Aurora plays a crucial role in helping us handle and scale massive amounts of data. If Uber were to sign up for Graphite tomorrow, we could handle the countless webhook ev

                    How an AWS Aurora feature cut our DB costs by 90%
                  • 自作オブジェクトのイベントのやりとりにはjQuery.triggerではなくjQuery.triggerHandlerを使うほうがよいと思った - hitode909の日記

                    DOMオブジェクトには昔からdispatchEventとか,addEventListenerとかあって,最近だと,node.jsのEventEmitterとか,jQueryのon, triggerを使って自作のオブジェクト間でアプリケーション的に定義されたイベントをやりとりできる. これまで,自作オブジェクトからイベントを発行するのに,jQueryのtriggerを使ってたけど,意図しない挙動をすることがあることが分かって,triggerHandlerを使うように変えた. jQuery.trigger()は,イベントタイプと一致する関数をレシーバが持ってるとき,その関数が呼ばれる. イベントのやりとりと,メソッドの呼び出しは独立しているというイメージがあったので,うっかり同名のメソッドを定義したときに,一見するとよく分からない挙動になって,難しい. なので,自作オブジェクトがイベントを発行

                      自作オブジェクトのイベントのやりとりにはjQuery.triggerではなくjQuery.triggerHandlerを使うほうがよいと思った - hitode909の日記
                    • Rails Performance - What You Need To Know

                      Alexander Dymo Alex is the co-author of the KDevelop IDE for Linux and Mac and was the founding engineer at Acunote. 1 Introduction I often hear that Rails is slow. This has become a common theme among the Ruby and Rails community. But it is actually a myth. It's easy to make your application up to 10x faster just by using Rails in the right way. Here's what you need to know to optimize your Rails

                        Rails Performance - What You Need To Know
                      • Technical Details: Falcon Update for Windows Hosts | CrowdStrike

                        What Happened? On July 19, 2024 at 04:09 UTC, as part of ongoing operations, CrowdStrike released a sensor configuration update to Windows systems. Sensor configuration updates are an ongoing part of the protection mechanisms of the Falcon platform. This configuration update triggered a logic error resulting in a system crash and blue screen (BSOD) on impacted systems. The sensor configuration upd

                          Technical Details: Falcon Update for Windows Hosts | CrowdStrike
                        • STAPで気になる6つのこと : ぶろぐ的さいえんす?

                          細胞をちょこっと酸性溶液で処理するだけで多能性細胞に初期化されるという摩訶不思議なニュースが入ってきました。   今回のポイントは、細胞に絶妙に弱いストレスをかけることでSTAP(刺激惹起性多能性獲得:Stimulus-Triggered Acquisition of Pluripotency)と名付けた現象が起き、どんな組織にもなれる多能性を持つ細胞に変化するということです。いろんな報道やブログ読んだけど、結局理研のプレスリリースが一番わかりやすいというか、これしか情報源がない。natureはアブストしか読めないし。

                          • Chiyoda WEB Library

                            What is CBD? CBD is the abbreviated form for cannabidiol. It has been utilized by individuals for quite a while and disposes of the indications of different customary illnesses. Beginning late it was discovered that usual distinctive issues, for example, nonappearance of academic cutoff points, mental effect, anxiety, and both inside and outer torment can be calmed by the utilization of CBD oil in

                            • Linux perf Examples

                              Recent posts: 24 Mar 2024 » Linux Crisis Tools 17 Mar 2024 » The Return of the Frame Pointers 10 Mar 2024 » eBPF Documentary 28 Apr 2023 » eBPF Observability Tools Are Not Security Tools 01 Mar 2023 » USENIX SREcon APAC 2022: Computing Performance: What's on the Horizon 17 Feb 2023 » USENIX SREcon APAC 2023: CFP 02 May 2022 » Brendan@Intel.com 15 Apr 2022 » Netflix End of Series 1 09 Apr 2022 » Te

                              • Node.jsと非同期I/Oと混乱した私 - shutdown -r now

                                最近、Node.jsに興味があります。Node.jsを調べていると、I/O関係で、非同期I/O、ノンブロッキング、コールバック等、いろいろとキーワードがでてきて混乱してきます。 そこで、ブログに書いて整理しよう思います。間違いがあれば是非、指摘してください。 言葉の定義 ◇非同期呼び出し(Asynchronous Call)と同期呼び出し(Synchronous Call)の違い 同期呼び出し(Synchronous Call) 通常メソッドを呼び出すとメソッド内の処理が完了するまで、呼び出し元には戻ってこない。このようなメソッド呼び出しのこと。 非同期呼び出し(Asynchronous Call) メソッドを呼び出した瞬間に呼び出し元に処理が戻ってくるような呼び出しのこと。非同期で呼び出されたメソッドは、環境によって処理されるタイミングが変わる。 ◇マルチスレッド(multithread

                                  Node.jsと非同期I/Oと混乱した私 - shutdown -r now
                                • Sticky-Kit | jQuery plugin for sticky elements

                                  Reference To install include jquery.sticky-kit.js after including jQuery. Usage: $("#sticky_item").stick_in_parent(); // or $("#sticky_item").stick_in_parent(options); You can pass a hash of options to configure how Sticky Kit works. The following options are accepted, each one is optional: parent — The element will be the parent of the sticky item. The dimensions of the parent control when the st

                                  • Rairi - Rairi

                                    The game of mesin slot is one of the most popular games in the world. It offers a high-quality graphical display and a range of features that appeal to players of all types. Gates of Olympus and bahasa keren Slot Zeus telah dibuat oleh provider pragmatic play seperti jp slot online. Sebuah satu gambar tersebut memiliki payline kombinasi untuk mencetak kemenangan jackpot jumlah maxwin. Symbols In m

                                      Rairi - Rairi
                                    • Backbone.js Tips And Patterns — Smashing Magazine

                                      Backbone.js provides structure to JavaScript applications, but it leaves a lot of design patterns and decisions up to developers who end up running into common problems when they first begin developing in Backbone.js. In this article, Phillip Whisenhunt will explore different design patterns that you can use in your Backbone.js applications, and he’ll look at many of the common gotchas that trip u

                                      • Sublime Text 2 のDefault設定ファイルについて

                                        sublimetext_default_settings.md 追記 この記事は古いです...。はてなブログの方に完全版を置いてあります。→ http://blue-ham-cake1024.hatenablog.com/entry/2012/09/07/Sublime_Text_2_のDefault設定ファイルを眺める はてなブログは調子が悪いようなので。 この記事ではDefault設定ファイルにどのような記述がされているか、その記述にどんな意味があるかを一つ一つ見ていきます。実際に設定をカスタマイズしてみたい方は、メニューのPreferencesタブの"Settings - User"からUser設定ファイルを開いてそこでいろいろ試してみましょう。 Sublime Text 2 のDefault設定ファイル 本文 Default設定ファイルとは、Sublime Text のデフォルトの

                                          Sublime Text 2 のDefault設定ファイルについて
                                        • André Staltz - Unidirectional User Interface Architectures

                                          This post is a non-exhaustive quick overview of the so-called “unidirectional data flow” architectures. Not meant to be taken as a beginner tutorial, but rather as an overview of their differences and peculiarities. At the end, I’ll introduce a new architecture which deviates significantly from the others. This post assumes client-side Web UI frameworks only. TERMINOLOGY It would be confusing to t

                                          • Emotion Markup Language (EmotionML) 1.0

                                            Emotion Markup Language (EmotionML) 1.0 W3C Recommendation 22 May 2014 This version: http://www.w3.org/TR/2014/REC-emotionml-20140522/ Latest version: http://www.w3.org/TR/emotionml/ Previous version: http://www.w3.org/TR/2013/PR-emotionml-20130416/ Editors: Felix Burkhardt (Deutsche Telekom AG) Marc Schröder (until July 2012, while with DFKI GmbH) Authors: (in alphabetic order) Paolo Baggia (whil

                                            • Stimulus-triggered fate conversion of somatic cells into pluripotency : Nature

                                              Thank you for visiting nature.com. You are using a browser version with limited support for CSS. To obtain the best experience, we recommend you use a more up to date browser (or turn off compatibility mode in Internet Explorer). In the meantime, to ensure continued support, we are displaying the site without styles and JavaScript.

                                                Stimulus-triggered fate conversion of somatic cells into pluripotency : Nature
                                              • 新たな万能細胞「STAP細胞」の開発の黒幕!?:ヴァカンティ4兄弟!? | Kazumoto Iguchi's blog

                                                まあ、頭を冷やしてもらうために、一種の「冷水」を浴びせて申し訳ないが、少しは日本の科学の現状を知ってもらいたいものだ。もうこれは構造的問題になっている。実は、これはもう10年前に私は拙著何が科学をつぶすのか? に書いたことである。今回はこれをメモしておこう。 国内のテレビニュースを見ていると、もう「すぐにもこの美人科学者がノーベル賞を取りそうだ」と考えているように見えた。もしこの方がこの研究プロジェクトの「言い出しっぺ」であったとすれば、その可能性は高い。が、はたしてそうかどうか? ここが問題なのである。 実はすでに(日本国内では知られていはいないが)、日本の理化学研究所は欧米の研究者にとってある意味「一種のクレジットカード」となっているのである。日本政府が、在日韓国人の「在日特権」のための「名義貸し」やら「クレジットカード」となっているように、日本の国立の科学研究所や日本の国立大学が、特

                                                  新たな万能細胞「STAP細胞」の開発の黒幕!?:ヴァカンティ4兄弟!? | Kazumoto Iguchi's blog
                                                • Tern

                                                  Tern is a stand-alone code-analysis engine for JavaScript. It is intended to be used with a code editor plugin to enhance the editor's support for intelligent JavaScript editing. Features provided are: Autocompletion on variables and properties Function argument hints Querying the type of an expression Finding the definition of something Automatic refactoring Tern is open-source (MIT license), wri

                                                  • Amazon S3 Tools: Command Line S3 Client and S3 Backup for Windows, Linux: s3cmd, s3express

                                                    Amazon S3 Tools: Command Line S3 Client Software and S3 Backup AWS S3 Command Line Clients for Windows, Linux, Mac. Backup to S3, upload, retrieve, query data on Amazon S3. S3cmd : Command Line S3 Client and Backup for Linux and Mac Amazon S3 is a reasonably priced data storage service. Ideal for off-site file backups, file archiving, web hosting and other data storage needs. It is generally more

                                                    • PCだとスルーしてしまう誤字に、書類だと気づくのはなぜ? 紙に出力したほうが作業がはかどる理由

                                                      PCだとスルーしてしまう誤字に、書類だと気づくのはなぜ? 紙に出力したほうが作業がはかどる理由2024.06.28 19:00Sponsored by 株式会社日本HP 三浦一紀 古来より、文字や絵などを記録するために使われてきた「紙」。 しかしデジタル化が進む現代では、“ペーパーレス”の傾向が強くなっています。 わざわざ紙の書類を読まなくても、PCやスマホ、タブレットなどでデジタルな書類を読むことができますし、小説やマンガ、雑誌なども電子書籍で楽しめます。また、キャッシュレス決済の普及で紙幣すら使う機会が激減。 一度デジタルな生活に馴染んでしまうと、もう戻れない感じがします。 しかし、あらゆるものがデジタル化されることで、脳が体に送る動作の精度が低くなって、脳に余計なエネルギーを使わせてしまい、結果として脳が疲れてしまう脳疲労という弊害が起きています。 そう語るのは、作業と脳の関係に詳し

                                                        PCだとスルーしてしまう誤字に、書類だと気づくのはなぜ? 紙に出力したほうが作業がはかどる理由
                                                      • Azureの北欧州データセンター、定期メンテナンス時の消火剤放出が原因で空調停止、温度が上昇し自動シャットダウンへ。7時間にわたり一部にサービス障害

                                                        Azureの北欧州データセンターで、定期メンテナンス時に予期せぬ消火剤放出が発生。空調停止を引き起こし、温度上昇でサーバ群が停止するという障害を引き起こした。 Microsoft Azureの北欧州データセンターで9月29日の13時27分から20時15分まで約7時間にわたり、一部の顧客において仮想マシンやAzure Backup、Azure Functionsなど多数のサービス障害が発生したとの事象が「Azure status history」で報告されています。 原因は、データセンターの定期メンテナンス時に予期せず消火剤の放出が発生し、それがきっかけとなって空調が停止。停止した区画の温度上昇により一部のサーバやストレージが停止するというものでした。 データセンター内のさまざまな部分で自動化が進んだ結果、ある問題が自動的に次の問題を引き起こす将棋倒しのような状況を見ると、データセンターの自

                                                          Azureの北欧州データセンター、定期メンテナンス時の消火剤放出が原因で空調停止、温度が上昇し自動シャットダウンへ。7時間にわたり一部にサービス障害
                                                        • Key Reinstallation Attacks

                                                          Key Reinstallation Attacks: Forcing Nonce Reuse in WPA2 Mathy Vanhoef imec-DistriNet, KU Leuven Mathy.Vanhoef@cs.kuleuven.be Frank Piessens imec-DistriNet, KU Leuven Frank.Piessens@cs.kuleuven.be ABSTRACT We introduce the key reinstallation attack. This attack abuses design or implementation flaws in cryptographic protocols to reinstall an already-in-use key. This resets the key’s associated param

                                                          • Work with GitHub Actions in your terminal with GitHub CLI

                                                            ProductWork with GitHub Actions in your terminal with GitHub CLIgh brings GitHub to the command line by helping developers manage pull requests, issues, gists, and much more. As of 1.9.0, even more of GitHub is available in your terminal:… gh brings GitHub to the command line by helping developers manage pull requests, issues, gists, and much more. As of 1.9.0, even more of GitHub is available in

                                                              Work with GitHub Actions in your terminal with GitHub CLI
                                                            • GrandPerspective

                                                              GrandPerspective is a small utility application for macOS that graphically shows the disk usage within a file system. It can help you to manage your disk, as you can easily spot which files and folders take up the most space. It uses a so called tree map for visualisation. Each file is shown as a rectangle with an area proportional to the file's size. Files in the same folder appear together, but

                                                              • 米国の研究費配分の考え方 : 一研究者・教育者の意見

                                                                前回の記載の通り、NIGMS(National Institute of General Medical Science)のディレクターであるJon R. Lorsch氏がMol. Biol. Cell誌に投稿した“Maximizing the return on taxpayers' investments in fundamental biomedical research”について紹介したい。まずLorsch氏の紹介から。 NIGMSによって公開されているLorsch氏の経歴によると(http://www.nigms.nih.gov/about/director/Pages/default.aspx)、氏は1990年にスワースモア大学を卒業し、その後、1995年にハーバード大学でノーベル賞を授賞したJack W. Szostak氏の下で博士号を取得後、スタンフォード大学でポスドクを経

                                                                  米国の研究費配分の考え方 : 一研究者・教育者の意見
                                                                • Effective Scala

                                                                  Effective Scala Marius Eriksen, Twitter Inc. marius@twitter.com (@marius) Table of Contents 序章 (Introduction) 整形: ホワイトスペース, 命名, Imports, Braces, Pattern matching, Comments Types and Generics: Return type annotations, Variance, Type aliases, Implicits Collections: Hierarchy, Use, Style, Performance, Java Collections Concurrency: Futures, Collections Control structures: Recursion, Returns, for loops

                                                                  • The Plan for React 18 – React

                                                                    The Plan for React 18The React team is excited to share a few updates. We’ve started work on the React 18 release, which will be our next major version. We’ve created a Working Group to prepare the community for gradual adoption of new features in React 18. We’ve published a React 18 Alpha so that library authors can try it and provide feedback... The React team is excited to share a few updates:

                                                                      The Plan for React 18 – React
                                                                    • Error Handling

                                                                      Share: Error Handling in Node.js Error handling is a pain, and it’s easy to get by for a long time in Node.js without dealing with errors correctly. However, building robust Node.js applications requires dealing with errors properly, and it’s not hard to learn how. If you’re really impatient, skip down to the “Summary” section for a tl;dr. This document will answer several questions that programme

                                                                      • GitHub Actions: Manual triggers with workflow_dispatch

                                                                        July 6, 2020 You can now create workflows that are manually triggered with the new workflow_dispatch event. You will then see a ‘Run workflow’ button on the Actions tab, enabling you to easily trigger a run. You can choose which branch the workflow is run on. In addition, you can optionally specify inputs, which GitHub will present as form elements in the UI. Workflow dispatch inputs are specified

                                                                          GitHub Actions: Manual triggers with workflow_dispatch
                                                                        • React 18 alpha版発表まとめ

                                                                          先日、The Plan for React 18という記事が React チームから発表されました。これは React の次期メジャーバージョンである React 18 で予定されている変更や新機能を紹介するとともに、React 18 の alpha 版の公開を知らせるものです。この記事自体に技術的なトピックは載っておらず、それらはReact 18 Working Groupという新設されたリポジトリに Discussion としてまとめられています。 本記事では、今回あった発表のポイントを厳選してお伝えします。ポイントを絞ってお伝えするため載せる情報は取捨選択しています。隅々まで理解したいという方は原文か他の記事を参照しましょう。 アップグレードの簡単さ React 17 の際もそうでしたが、最近の React は「簡単にアップデートできる」ことをたいへん重要視しており、React 18

                                                                            React 18 alpha版発表まとめ
                                                                          • Stylesheet Stylebook:CSS“カンニングペーパー”

                                                                            The Purposes of E-commerce Website and Web format Since the importance of eCommerce internet site is growing bizarre and fantastic, the importance of e-commerce internet format also is growing. Before going to talk about more or less E-commerce internet format, everybody ought to necessarily notice more or less e-commerce internet site, and its services and products. Here are a few compulsory diff

                                                                            • Genes to Cells 表紙ギャラリー - 日本分子生物学会

                                                                              日本の伝統絵画の中に生命科学の遊び心を加えたデザインを2011年から採用しています。 画像をクリックすると拡大します。 2つのミオシンの違いが生み出す体の左右軸 In establishing the left-right axis of the body in Drosophila, a torsion-like deformation of the cell occurs (cell chirality). Two myosin Is, Myo1D and Myo1C, are thought to be involved in this process, producing right-handed and left-handed cell chirality, respectively. A paper published in the May issue of this jour

                                                                              • Socket.IO — Socket.IO P2P

                                                                                What you see above is a multiplayer version of the classic Snake game with a twist: whenever possible, it will automatically establish a peer-to-peer connection with your opponent. Today we’re very happy to introduce Socket.IO P2P, the easiest way to establish a bidirectional events channel between two peers with a server fallback to provide maximum reliability. Let’s look at the API and build a l

                                                                                  Socket.IO — Socket.IO P2P
                                                                                • Snow Fall: The Avalanche at Tunnel Creek

                                                                                  The snow burst through the trees with no warning but a last-second whoosh of sound, a two-story wall of white and Chris Rudolph’s piercing cry: “Avalanche! Elyse!” The very thing the 16 skiers and snowboarders had sought — fresh, soft snow — instantly became the enemy. Somewhere above, a pristine meadow cracked in the shape of a lightning bolt, slicing a slab nearly 200 feet across and 3 feet deep

                                                                                    Snow Fall: The Avalanche at Tunnel Creek