タグ

2013年3月13日のブックマーク (6件)

  • Shows

    This series showcases how Microsoft Copilot integrates with various Azure services to assist IT / Ops professionals in their daily hybrid management tasks. The videos will cover topics such as Access Management, Inline YAML Editing, Data Collection and Feedback, and more. Each episodes will provide practical examples and insights into leveraging Copilot for efficient and effective operations manag

    Shows
  • SOE 15.3 章 The Implementation - 言語ゲーム

    いよいよ反応プログラミングの核心に入って行きます。前回までの復習。 id:propella:20070304:p1 SOE 15 章 A Module of Reactive Animations id:propella:20070305:p1 SOE 15.2 章 Implementing FAL id:propella:20070306:p1 SOE 14 章ストリーム プログラムは振る舞い (Behavior) を組み合わせて作る。 Behavior は動作 (UserAction) と時間 (Time) の組を受け取りある値を返す関数 Behavior の引数も返り値もストリーム Behavior に イベント(Event) を設定した物は Behavior である。 Event は Behavior の返り値が Maybe 型の物。 Behavior と Event を組み合わせ

    SOE 15.3 章 The Implementation - 言語ゲーム
  • Reactive programming - Wikipedia

    This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages) This article may require copy editing for Some text is too verbose or poorly written. Further, the terminology in these cases is not defined for the reader.. You can assist by editing it. (December 2023) (Learn how and when to remove this message

  • Visual C++ コード モデル

    Visual Studio アドインは、Visual Studio 2013 では使用されなくなりました。 アドインを VSPackage 拡張機能にアップグレードしてください。 アップグレードの詳細については、「FAQ: アドインを VSPackage 拡張に変換する」を参照してください。 このコード モデルを使用すると、定義済みのクラスや関数など、Visual C++ プロジェクトの内部要素を操作できます。 Visual C++ コード モデルでは、次のオブジェクトが定義されています。 Object 説明

    Visual C++ コード モデル
  • ドヤ顔で「紙は不要、タブレットで十分」と主張する人間に一矢報いる痛快なムービー | Buzzap!

    書籍や仕事に使う書類などに紙資源を使わず、iPadなどのタブレット端末で電子化すればいいという流れは世界中で起きており、中には「紙を使うなんて」としたり顔で口にする人もいるわけですが、そんな人に一矢報いるムービーです。 まずは親子のお絵かきタイム。 父親が紙を取り上げ、おもむろにタブレットでのお絵かきを薦めます。 冷蔵庫に貼ったメモを見るや否や、にメモアプリを見せる夫。 非常にウンザリした顔です。 趣味の数独タイムにも「数独アプリがあるよ!」と薦めてくる夫。 もちろんプリントアウトするなんてことは許されません。 読書の風景もこんな感じ。 しかしここで状況は一変。トイレットペーパーが切れたため、を呼んだところ…… 親切ながタブレットに表示して差し出してくれました。 これは「紙には素晴らしい未来がある」という広告ムービー。どれだけ電子化が進んでも、決して置き換えることができない紙というも

    ドヤ顔で「紙は不要、タブレットで十分」と主張する人間に一矢報いる痛快なムービー | Buzzap!
    rydot
    rydot 2013/03/13
  • Boost.Math 円周率は何桁でもいけた - Faith and Brave - C++で遊ぼう

    Boost.Mathにある円周率を求める関数boost::math::constants::pi()ですが、単に定数を型Tにキャストして返すだけの実装だと思っていたら、実は違ったようです。定数で表現できる以上の桁数を要求された場合は、「ldexp(acos(T(0)), 1)」で計算するようになっていました(boost/math/constants/caluculate_constants.hpp)。 まず、組み込みの浮動小数点数型。これは単に定数が返されます。 #include <iostream> #include <boost/math/constants/constants.hpp> #include <boost/multiprecision/cpp_dec_float.hpp> namespace mp = boost::multiprecision; using boost:

    Boost.Math 円周率は何桁でもいけた - Faith and Brave - C++で遊ぼう