並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 21 件 / 21件

新着順 人気順

Annotationsの検索結果1 - 21 件 / 21件

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

Annotationsに関するエントリは21件あります。 libraryjavascriptTypeScript などが関連タグです。 人気エントリには 『GitHub - codemix/ts-sql: A SQL database implemented purely in TypeScript type annotations.』などがあります。
  • GitHub - codemix/ts-sql: A SQL database implemented purely in TypeScript type annotations.

    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 - codemix/ts-sql: A SQL database implemented purely in TypeScript type annotations.
    • JS に TS のような型注釈を書ける Type Annotations プロポーザル

      この記事では Type Annotations プロポーザルの概要とモチベーションについて説明する。 概要 Type Annotations プロポーザルは 2022 年の 3 月 9 日に Microsoft の TypeScript チームの Program Manager である Daniel Rosenwasser 氏のブログ記事 A Proposal For Type Syntax in JavaScript で発表され、2022 年 3 月の TC39 ミーティングで Stage 1 になった。 Type Annotations プロポーザルは JavaScript に TypeScript のような型注釈の構文を導入する。 たとえば、次のような型注釈を持つ関数宣言などが可能になる。 function hello(name: string): void { console.lo

        JS に TS のような型注釈を書ける Type Annotations プロポーザル
      • A few words on Ruby's type annotations state

        I don't build systems. I imagine them, then write them. …that were written in a military training camp and accidentally grew to 5k words. I am writing this on my phone, in a barrack that houses some 200+ of my brothers-in-arms in the Ukrainian army’s training camp; I use short periods of rest between training, mostly at night and on Sundays. TBH, since joining the army, I didn’t expect to have tim

        • GitHub - tc39/proposal-type-annotations: ECMAScript proposal for type syntax that is erased - Stage 1

          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 - tc39/proposal-type-annotations: ECMAScript proposal for type syntax that is erased - Stage 1
          • PHPのアノテーションの仕組みとメリット・デメリット / About PHP annotations

            PHPで任意精度演算を行って「正しい」金額計算をする方法 / Perform arbitrary precision arithmetic in PHP to achieve "accurate" monetary calculations

              PHPのアノテーションの仕組みとメリット・デメリット / About PHP annotations
            • GitHub - rough-stuff/rough-notation: Create and animate hand-drawn annotations on a web page

              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 - rough-stuff/rough-notation: Create and animate hand-drawn annotations on a web page
              • Figma 用のアクセシビリティ注釈キット「A11y Annotations」 | Accessible & Usable

                公開日 : 2022年12月19日 (2022年12月22日 更新) カテゴリー : アクセシビリティ / 情報設計 (IA) この記事は、アクセシビリティ Advent Calendar 2022 の19日目の記事です。 ウェブサイトやアプリケーションのプロトタイピングツールとして、Figma を使うプロジェクトも多いと思います。私自身は主にワイヤーフレーム作成に Figma を使うことがありますが、ワイヤーフレームを最終的に画面設計仕様書として仕上げるにあたり、要所要所にアクセシビリティに関する注釈を付けるようにしています。たとえば、以下のようなものです。 見出し (およびそのレベル) アクセシブルな名前 (画像の alt、アイコンの aria-label など) ランドマーク WAI-ARIA (ユーザーに動的な状況変化を伝達するためにどの aria 属性を用いるか、ユーザーの理解支

                  Figma 用のアクセシビリティ注釈キット「A11y Annotations」 | Accessible & Usable
                • TypeProf for IDE: Enrich Development Experience without Annotations

                  RubyKaigi Takeout 2021 https://rubykaigi.org/2021-takeout/presentations/mametter.htmlRead less

                    TypeProf for IDE: Enrich Development Experience without Annotations
                  • GitHub - matsumonkie/izuna: Show Haskell type annotations when doing code review on Github

                    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 - matsumonkie/izuna: Show Haskell type annotations when doing code review on Github
                    • MapKit - iOS 13 - How to show pin annotations on top on the user location annotation?

                      Currently, when I try to add an annotation to the map in the user's location the annotation is not showing up. When I set the annotation (using the same code) besides the user's location it does show up. The code: let annotation = MKPointAnnotation() annotation.coordinate = coordinate // set coordinate annotation.title = "Title" annotation.subtitle = "Subtitle" mapView.addAnnotation(annotation)

                        MapKit - iOS 13 - How to show pin annotations on top on the user location annotation?
                      • Document GA4 Events, Parameters & Annotations faster & easier - Savio.no

                        Documenting Google Analytics 4 (GA4) data collection is important, and especially because of the event based data model. You need to understand in an easy way what data GA4 Events are collecting, and which Parameters... The post Document GA4 Events, Parameters & Annotations faster & easier appeared first on Savio.no.

                          Document GA4 Events, Parameters & Annotations faster & easier - Savio.no
                        • `from __future__ import annotations` がPython 3.10でデフォルトにならなくなりました - methaneのブログ

                          PEP 563 は Python 3.10 でデフォルトになる予定で、実際に去年の10月から master ブランチでは有効になっていました。今までの Python 3.10 のアルファ版でも有効になっています。 www.python.org このPEPはアノテーションの実行時の利用に後方非互換性と大幅な制限を加えてしまいます。 >>> class C: ... a: int ... >>> C.__annotations__ {'a': <class 'int'>} この例では __annotations__ に int クラスのオブジェクトそのものが入っていますが、PEP 563が有効になると "int" という文字列が入るので、直接 __annotations__ を見ていたコードは動かなくなります。 PEP 563 が有効でなくてもPEP 484に従ったtype annotatio

                            `from __future__ import annotations` がPython 3.10でデフォルトにならなくなりました - methaneのブログ
                          • 【GitHub Actions】ログ内容をAnnotationsに表示する - Qiita

                            はじめに GitHub Actionsで実行したチェック(自動テスト・静的解析ツール等)が失敗した時、 Jobの実行ログを確認するのは地味に手間がかかります。 このときActionsのSummaryにあるAnnotationsに、 「Jobが失敗した」という通知に加えてエラー内容も表示されていると、 なぜ失敗したかをより簡単に把握できるようになります。 この記事ではProblem Matchersを使ってエラー内容を確認しやすくする方法についてまとめました。 Problem Matchersとは Problem MatchersはGitHub Actionsに備わったツールの1つです。 指定した正規表現をもとにJobのログ出力をスキャンし、 マッチした部分をAnnotationsに表示してくれます。 Problem Matchersの使い方 ここでは例として以下のように出力されたログをAn

                              【GitHub Actions】ログ内容をAnnotationsに表示する - Qiita
                            • GitHub - Machine-Learning-Tokyo/papers-with-annotations: Research papers with annotations, illustrations and explanations

                              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 - Machine-Learning-Tokyo/papers-with-annotations: Research papers with annotations, illustrations and explanations
                              • Hilt and Dagger annotations cheat sheet

                                Hilt defines a standard way to do dependency injection (DI) in your application by providing containers for every Android class in your project and managing their lifecycles automatically for you. Hilt is built on top of the popular DI library Dagger so benefits from the compile time correctness, runtime performance, scalability, and Android Studio support that Dagger provides. This cheat sheet al

                                  Hilt and Dagger annotations cheat sheet
                                • Optional variance annotations by ahejlsberg · Pull Request #48240 · microsoft/TypeScript

                                  With this PR we introduce optional declaration site variance annotations for type parameters of classes, interfaces and type aliases. Annotations take the form of an in and/or out keyword immediately preceding the type parameter name in a type parameter declaration. An out annotation indicates that a type parameter is covariant. An in annotation indicates that a type parameter is contravariant. An

                                    Optional variance annotations by ahejlsberg · Pull Request #48240 · microsoft/TypeScript
                                  • First look: adding type annotations to JavaScript

                                    Update 2022-03-10: I’m quoting a few insightful tweets at the end of this blog post. The ECMAScript proposal “Types as comments” (by Gil Tayar, Daniel Rosenwasser, Romulo Cintra, Rob Palmer, and others) is about adding type annotations to JavaScript (there is also an accompanying blog post). Such type annotations would look similar to TypeScript’s and Flow’s annotations and are completely ignored

                                    • Good Annotations

                                      When it comes to building or upgrading a PC, understanding the harmony between a CPU (Central Processing Unit) and a GPU (Graphics Processing Unit) is crucial. The question “Is my CPU bottlenecking my GPU?” resonates with many PC enthusiasts and gamers.  Today, I will explore this question in-depth, providing insights into how processors and graphics … Read more

                                        Good Annotations
                                      • GitHub - patrick-kidger/torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.

                                        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 - patrick-kidger/torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.
                                        • 3 Ways to add Annotations to Data Studio time series chart

                                          At the time of the writing Data Studio doesn’t offer out of the box Annotations on time series charts. You can however add your annotations as seen below in easy ways.

                                            3 Ways to add Annotations to Data Studio time series chart
                                          • IBMの「Cloud Annotations」に自動ラベリングツール

                                            印刷する メールで送る テキスト HTML 電子書籍 PDF ダウンロード テキスト 電子書籍 PDF クリップした記事をMyページから読むことができます IBMが、オブジェクト検出モデルを訓練する際に必要となる、動画内のオブジェクトのラベル付け作業を容易にする無料の自動ラベリングツールを公開している。この新機能は、人工知能(AI)を活用してラベル付け処理を支援する。 IBMはこの自動ラベリングツールによって、開発者が時間を短縮したり、労力を削減したりできるよう支援しようとしている。IBMによると、物体認識モデルが特定のオブジェクトを検出するようになるには、手作業でラベル付けされたイメージのサンプルが200〜500必要になるという。 自動ラベリングツールによって、この種のモデルを構築している開発者は、動画中のオブジェクトにラベル付けをする作業ではなく、より関心の高い、価値ある作業に時間を割

                                              IBMの「Cloud Annotations」に自動ラベリングツール
                                            1

                                            新着記事