並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 24 件 / 24件

新着順 人気順

Linkingの検索結果1 - 24 件 / 24件

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

Linkingに関するエントリは24件あります。 githubxcodeios などが関連タグです。 人気エントリには 『GitHub - xwmx/nb: CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.』などがあります。
  • GitHub - xwmx/nb: CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.

    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 - xwmx/nb: CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.
    • GitHub - coord-e/magicpak: :hammer: Build minimal docker images without static linking

      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 - coord-e/magicpak: :hammer: Build minimal docker images without static linking
      • Save time linking resources with autolink references

        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

          Save time linking resources with autolink references
        • How Swift Achieved Dynamic Linking Where Rust Couldn't - Faultlore

          How Swift Achieved Dynamic Linking Where Rust Couldn't For those who don’t follow Swift’s development, ABI stability has been one of its most ambitious projects and possibly it’s defining feature, and it finally shipped in Swift 5. The result is something I find endlessly fascinating, because I think Swift has pushed the notion of ABI stability farther than any language without much compromise. So

            How Swift Achieved Dynamic Linking Where Rust Couldn't - Faultlore
          • [Vol.2] “知らない”という自由を尊重できるか│哲学者 千葉雅也さんと読み解く社会システムとウェルビーイング - Linking Society

            技術進歩には程よいブレーキを柴田: 次は、データの活用について話していきたいと思います。 企業行動を記録し、改ざんできないようにしてトレーサビリティを上げられるようになって、「履歴が残る」世界になってきています。これによって、いままでは「安いから」とか「便利だから」という理由で選んでいたものが、自分の目の前にある選択肢の意味や、それを選ぶことの効果が分かった上で行動できるようになっていくのではないかという期待があります。 また、街づくりのように、効果が曖昧だったものの効果が分かるようになって予算が取りやすくなるなど、いままではあまり評価されていなかった活動をしていた人たちが認められるようになってくるのではないかと思っています。 一方で、情報化していくことで監視社会的な側面が強まったり、KPIを設定することで本当は素晴らしい活動だったものが少し歪んでいってしまったりすることもあるかと思います

              [Vol.2] “知らない”という自由を尊重できるか│哲学者 千葉雅也さんと読み解く社会システムとウェルビーイング - Linking Society
            • Faster linking times on nightly on Linux using `rust-lld` | Rust Blog

              TL;DR: rustc will use rust-lld by default on x86_64-unknown-linux-gnu on nightly to significantly reduce linking times. Some context Linking time is often a big part of compilation time. When rustc needs to build a binary or a shared library, it will usually call the default linker installed on the system to do that (this can be changed on the command-line or by the target for which the code is co

                Faster linking times on nightly on Linux using `rust-lld` | Rust Blog
              • A Linking Adventure - nsnotes

                Background It occurred to me recently that I never hear of anyone linking their programs manually - meaning, running ld directly rather than through a wrapper utility like the gcc or clang drivers. Given two simple translation units, I thought, one should be able to: invoke gcc with the -c flag, which skips the linking step and outputs the object files invoke ld with the object files, asking it po

                • Xcode building for iOS Simulator, but linking in an object file built for iOS, for architecture 'arm64'

                  I am trying to get a large (and working on Xcode 11!) project building in Xcode 12 (beta 5) to prepare for iOS 14. The codebase was previously in Objective-C, but now it contains both Objective-C and Swift, and uses pods that are Objective-C and/or Swift as well. I have pulled the new beta of CocoaPods with Xcode 12 support (currently 1.10.0.beta 2). Pod install is successful. When I do a build, I

                    Xcode building for iOS Simulator, but linking in an object file built for iOS, for architecture 'arm64'
                  • Cold case team says Zodiac Killer ID'd, linking him to another murder

                    Updated Terms of UseNew Privacy PolicyYour Privacy ChoicesClosed Caption PolicyHelpContact UsAccessibility Statement This material may not be published, broadcast, rewritten, or redistributed. ©2024 FOX News Network, LLC. All rights reserved. Quotes displayed in real-time or delayed by at least 15 minutes. Market data provided by Factset. Powered and implemented by FactSet Digital Solutions. Legal

                      Cold case team says Zodiac Killer ID'd, linking him to another murder
                    • SwiftコンパイラのAuto-linkingとそれを直した話 - kateinoigakukunのブログ

                      前回のエントリでAuto-linkingについて解説しました。今回はSwiftコンパイラにおけるAuto-linkingの使われ方と、最近それを直した話をします。 kateinoigakukun.hatenablog.com 用語定義 モジュール: Swiftのimportできる単位。 .swiftmodule、.swiftinterfaceまたは module.modulemap が実態。Cで言うヘッダ ライブラリ: libfoo.a とか libfoo.dylib。大抵モジュールと1対1になってる。 SwiftのAuto-linking C言語では以下のようなpragmaを書くことでリンクするライブラリを指定していました。 #include <math.h> #pragma comment(lib, "m") 一方で、Swiftでは import 文を書くだけで、インポートしたモジュー

                        SwiftコンパイラのAuto-linkingとそれを直した話 - kateinoigakukunのブログ
                      • [Vol.1] 現代思想から見る現代のサービス│哲学者 千葉雅也さんと読み解く社会システムとウェルビーイング - Linking Society

                        複雑な問題を複雑なままに扱う柴田: まずは、「現代思想」とはどんなものなのかというところから伺いたいと思います。 たとえば、私やインフォバーンのお二人が実践している「デザイン」は、基本的には複雑な問題をシンプルにすることでユーザーの行動を促す、ということをやってきました。ただ近年は、そのデザインがもたらした製品やサービスの分かりやすさが、人々が社会を理解しようとする活動を少し抑制してしまっているんじゃないかということも言われています。 一方、千葉さんの本の中には、現代思想とは「複雑なものを、より高い解像度で、複雑なまま理解することができるようになること」とあります。複雑なものを複雑なまま理解すると、日常生活にどんな違いをもたらしてくれるのでしょうか。 現代思想とは何か?対談は千葉さんの研究領域についての具体例からスタート 千葉さん: これは現代思想というよりも、ものを考えること一般の話だと

                          [Vol.1] 現代思想から見る現代のサービス│哲学者 千葉雅也さんと読み解く社会システムとウェルビーイング - Linking Society
                        • Corneal Cross linking Devices Market Size Worth USD 419.62 Million by 2030 at 13.86% CAGR - Report by Market Research Future (MRFR)

                          Corneal Cross linking Devices Market Size Worth USD 419.62 Million by 2030 at 13.86% CAGR - Report by Market Research Future (MRFR) Corneal Cross linking Devices Market Trends and Insights by Type (Standard Corneal Cross-Linking, Corneal Cross-Linking Plus, and Accelerated Cross-Linking), Method (Epithelium-off Method and Epithelium-on Method), Application (Keratoconus, Pellucid Marginal Degenerat

                            Corneal Cross linking Devices Market Size Worth USD 419.62 Million by 2030 at 13.86% CAGR - Report by Market Research Future (MRFR)
                          • [iOS] Xcode12.0で「building for iOS Simulator, but linking in object file ... for architecture arm64」エラーの対処法: ものづくりログ

                            Xcode12.0にバージョンアップして作業していたところ、ビルドが実機では通るのにシミュレーターに切り替えたらエラーになる事があったので解決方法をメモ。 FIrebaseのSDKがひっかかった。 -------------------------------------------- ld: in /Users/[ユーザー名]/[プロジェクト名)/Pods/FirebaseAnalytics/Frameworks/FIRAnalyticsConnector.framework/FIRAnalyticsConnector(FIRAnalyticsConnector_e321ed8e3db06efc9803f6c008e67a34.o), building for iOS Simulator, but linking in object file (/Users/[ユーザー名]/[プロジェク

                            • Report 42 - Transmission of SARS-CoV-2 Lineage B.1.1.7 in England: insights from linking epidemiological and genetic data

                              Key info Date: 31 December 2020 Authors: Erik Volz1, Swapnil Mishra, Meera Chand, Jeffrey C. Barrett, Robert Johnson, Lily Geidelberg, Wes R Hinsley, Daniel J Laydon, Gavin Dabrera, Áine O’Toole, Roberto Amato, Manon Ragonnet-Cronin, Ian Harrison, Ben Jackson, Cristina V. Ariani, Olivia Boyd, Nick Loman, John T McCrone, Sónia Gonçalves, David Jorgensen, Richard Myers, Verity Hill, David K. Jackson

                                Report 42 - Transmission of SARS-CoV-2 Lineage B.1.1.7 in England: insights from linking epidemiological and genetic data
                              • Internal Linking for SEO: best practices, strategies, axioms

                                Internal links are the most powerful SEO lever you control 100% after content. That's why I created a guide that explains every little aspect of it: best practices, strategies, and axioms. After finished, you'll be able to optimize your internal linking structure and drive more organic traffic as a result. This guide is split into two parts: a beginner part that explains internal linking basics an

                                  Internal Linking for SEO: best practices, strategies, axioms
                                • Releases support comments and reactions with Discussion linking

                                  Releases support comments and reactions with Discussion linking apidiscussionsmobilereleases April 6, 2021 You can now link discussions to new releases! When drafting a new release, check the Create a discussion for this release box, choose a category, and publish. Your community will be able to react and comment on the release notes, giving projects more opportunities to celebrate and receive fee

                                    Releases support comments and reactions with Discussion linking
                                  • [Vol.1]鮨屋では、なぜ客がテストされるのか│「闘争」としてのサービス―顧客インタラクションの研究 - Linking Society

                                    鮨屋を研究した理由私は現在、新しい創造性のプログラム「Kyoto Creative Assemblage」をやっていますが、今日は「闘争としてのサービス」についてお話したいと思います。 「サービスとは」と検索すると、一般的には「顧客の要求を満たす」「問題を解決する」「便益をもたらす」などと書かれており、顧客満足度が非常に重要な変数になっています。これ自体は間違ってはいないのですが、何かおかしい気がします。 またサービスドミナントロジックでは、サービスの定義は「他者、あるいは自身のベネフィットのためにナレッジとスキルを適用すること。顧客は常に価値の共創者である」とされています。これもベネフィットのため、というところが少し違うのではと感じます。 なぜ「サービスは顧客満足度」と単純に言えないのか。それを研究するために、お鮨屋さんの研究を始めまして、現在「サービスは闘いである」と提唱しています。

                                      [Vol.1]鮨屋では、なぜ客がテストされるのか│「闘争」としてのサービス―顧客インタラクションの研究 - Linking Society
                                    • [Vol.3] 管理しない「余地」のある社会システム│哲学者 千葉雅也さんと読み解く社会システムとウェルビーイング - Linking Society

                                      シンプルな道具が掻き立てる想像力柴田: ちょっと話題を変えて、人と人の繋がりに関する話を伺いたいと思います。web3.0※の世界での分散型自律組織(DAO:Decentralized Autonomous Organization)と呼ばれる、何らかの活動を管理運営していくようなコミュニティが生まれています。 ※Web3.0……分散型(非中央集権型)インターネットの総称。情報の改ざんを阻止するブロックチェーン技術などの活用により、人々はプラットフォーマーを介さずに、安心して情報をやりとりすることが可能となる。 千葉さん: 利益を出す企業体とは違う形の人の集まりということですね? 柴田: そうです。 一方で、地方で人口が減ってきてインフラの維持ができなくなり、市民がその運営に関わっていく、自律分散型の仕組みが求められているような動きもあります。 この2つの動きが呼応しあってつながって、新しい

                                        [Vol.3] 管理しない「余地」のある社会システム│哲学者 千葉雅也さんと読み解く社会システムとウェルビーイング - Linking Society
                                      • Linking Your Thinking

                                        By clicking “Accept All Cookies”, you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View our Privacy Policy for more information. When you visit websites, they may store or retrieve data in your browser. This storage is often necessary for the basic functionality of the website. The storage may be used for market

                                          Linking Your Thinking
                                        • User Account Linking

                                          Auth0 supports the linking of user accounts from various identity providers. This allows a user to authenticate from any of their accounts and still be recognized by your app and associated with the same user profile. Availability varies by Auth0 plan and login method Both your specific login implementation and your Auth0 plan or custom agreement affect whether this feature is available. To learn

                                            User Account Linking
                                          • Entity Linking チュートリアル 前編 ざっくりとした歴史編 - Qiita

                                            今回記事として書くのは,エンティティ・リンキングというタスクに対するチュートリアルです. 以下のシリーズになっています。 Entity Linking チュートリアル 前編 ざっくりとした歴史編 [本記事] 中編 前処理・実験準備編 後編 実験・評価編 発展編 知識ベース全体に対するBi-encoder探索の実装 本シリーズの Colab Pro上での実行について 目的 エンティティ・リンキング (Entity Linking) というタスクについて,より多くの人に知ってもらう.(当記事) 実際にBC5CDRデータセットに対して,動くデモを実装しタスクを理解する. エンティティ・リンキング とは エンティティ・リンキングとは,文書中に存在する,メンションと呼ばれるテキスト範囲を知識グラフ内に存在するエンティティへとマッピングするタスクであり,自然言語理解及び応用における重要なタスクの一つと

                                              Entity Linking チュートリアル 前編 ざっくりとした歴史編 - Qiita
                                            • Linking a Swift package only in debug builds

                                              One of the cases where we would like to build debug and release configurations differently is when we want to enable some extra features. A concrete example could be a debug view which has a list of commands or displays additional information. In this blog post, we are going to take a look at a Xcode project which only links a local Swift package in debug builds. The project setup In the example p

                                                Linking a Swift package only in debug builds
                                              • Google Chrome 80 Released With Controversial Deep Linking Upgrade

                                                This is a BETA experience. You may opt-out by clicking here

                                                  Google Chrome 80 Released With Controversial Deep Linking Upgrade
                                                • Get more information at a glance with issue and pull request linking

                                                  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

                                                    Get more information at a glance with issue and pull request linking
                                                  1

                                                  新着記事