並び順

ブックマーク数

期間指定

  • から
  • まで

161 - 200 件 / 776件

新着順 人気順

interfaceの検索結果161 - 200 件 / 776件

  • 300タイトル超のゲームUIを画像&ムービーでまとめた「Interface In Game」

    ビデオゲームのユーザーインターフェース(UI)をまとめた無料のプロジェクトが「Interface In Game」です。Interface In Gameは熱心なボランティアゲーマーによる専任チームにより開発されており、ゲーム開発者やデザイナーがデザインのインスピレーションを得られるようにと作成されています。 Interface In Game | Collection of video games UI | Screenshots and videos https://interfaceingame.com/ Interface In Gameのトップページはこんな感じ。記事作成時点では2020年11月10日に発売された「アサシン クリード ヴァルハラ」が推されています。 Interface In Gameでゲームタイトルを探す方法は複数用意されています。 「Genres(ジャンル)」に

      300タイトル超のゲームUIを画像&ムービーでまとめた「Interface In Game」
    • GitHub - Iceber/iouring-go: Provides easy-to-use async IO interface with io_uring

      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 - Iceber/iouring-go: Provides easy-to-use async IO interface with io_uring
      • Neumorphism (Soft UI) in User interface - Tutorial

        There was a time when Skeuomorphism was a big trend and it's back again with a New Approach Neumorphism (New+Skeuomorphism). Find me on 📸 Instagram→ Clients Projects & Case studies ✍🏻 Behance→ What is Neumorphism design?“Neumorphism” is a new visually pleasing cool trend in a design inspired by Skeuomorphism with a more minimal approach Neumorphism (New+Skeuomorphism). A new Trend that got a goo

          Neumorphism (Soft UI) in User interface - Tutorial
        • GitHub - sharat87/prestige: A text-based HTTP client in the browser. An interface-less Postman.

          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 - sharat87/prestige: A text-based HTTP client in the browser. An interface-less Postman.
          • GitHub - spiceai/spiceai: A self-hostable CDN for databases. Spice provides a unified SQL query interface and portable runtime to locally materialize, accelerate, and query datasets across databases, data warehouses, and data lakes.

            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 - spiceai/spiceai: A self-hostable CDN for databases. Spice provides a unified SQL query interface and portable runtime to locally materialize, accelerate, and query datasets across databases, data warehouses, and data lakes.
            • PHPのInterface -メリットと使い所- - Wiz テックブログ

              今回はPHPのInterfaceの使い所について、例を交えつつ紹介してみようと思います。 本題に入る前にこの記事内のサンプルコードについてです。 サンプルコードは全て、フレームワークにLaravelを使用しているという前提で記述しています。 LaravelでInterfaceを使う場合、サービスプロバイダーのregisterメソッド内でbindメソッドを使用し、実装クラスとInterfaceの紐付けを行ってください。 $this->app->bind(XxxInterface::class, ConcreteClass::class); これがないと"XxxInterface is not instantiable..."みたいなエラーが出てしまいますので、ご注意ください。 Interfaceの概要 PHPの公式ドキュメントを確認すると、以下のように説明されています。 オブジェクトインター

                PHPのInterface -メリットと使い所- - Wiz テックブログ
              • GitHub - popcar2/GodotOS: A Fake Operating System Interface made in Godot!

                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 - popcar2/GodotOS: A Fake Operating System Interface made in Godot!
                • KubernetesにおけるContainer Object Storage Interface (COSI)の概要 - Qiita

                  はじめに 本ドキュメントでは、Kubernetes v1.21 にAlphaとして登場予定のContainer Object Storage Interface(COSI)について紹介します。 なお、本内容は2020/10/20にマージされたKEPの内容をベースにしており、Kubernetes v1.21 or later向けには大きく変更される可能性があります。 KubernetesコミュニティのSIG-StorageのCo-Chairの発表ではCOSIを「コーズィー」と発音していました。 COSIの概要 これまでKubernetesではブロックストレージとファイルストレージをターゲットにCSIが提供されてきました。 これに加え Kubernetes v1.21 からはAlphaとしてオブジェクトストレージをターゲットにしたCOSIが登場する予定です。 ブロックストレージ・ファイルストレ

                    KubernetesにおけるContainer Object Storage Interface (COSI)の概要 - Qiita
                  • Public preview: AKS support for WebAssembly System Interface (WASI) workloads | Azure updates | Microsoft Azure

                    Explore Azure Get to know Azure Discover secure, future-ready cloud solutions—on-premises, hybrid, multicloud, or at the edge Global infrastructure Learn about sustainable, trusted cloud infrastructure with more regions than any other provider Cloud economics Build your business case for the cloud with key financial and technical guidance from Azure Customer enablement Plan a clear path forward fo

                    • 【Unity】SerializeReference、Inspectorウィンドウでinterfaceを使用する - テラシュールブログ

                      Unity 2019.3で利用可能になった SerializeReference Attributeについて紹介します。 SerializeReference interfaceをシリアライズ 複数のアクションがある場合にアクションを差し替えられるようにする アクションを複数登録する 感想 関連 SerializeReference SerializeReferenceで任意のInterfaceを継承したクラスや構造体をコンポーネントに格納し、SceneやPrefabにシリアライズしたり、Inspectorで編集したりします。 正しくは、値としてではなく参照型としてC#をシリアライズ出来るようになります。これによりinterfaceをスロットとして任意のクラスを格納することが可能になるみたいです。 interfaceをシリアライズ まずはinterfaceとクラスを定義します。interf

                        【Unity】SerializeReference、Inspectorウィンドウでinterfaceを使用する - テラシュールブログ
                      • The UX of LEGO Interface Panels

                        August 2020 Piloting an ocean exploration ship or Martian research shuttle is serious business. Let's hope the control panel is up to scratch. Two studs wide and angled at 45°, the ubiquitous "2x2 decorated slope" is a LEGO minifigure's interface to the world. These iconic, low-resolution designs are the perfect tool to learn the basics of physical interface design. Armed with 52 different bricks,

                          The UX of LEGO Interface Panels
                        • The Day of a new Command-Line Interface: Shell

                          This article continues the long-lost series on how to migrate away from terminal protocols as the main building block for command-line and text-dominant user interfaces. The previous ones (Chasing the dream of a terminal-free CLI (frustration/idea, 2016) and Dawn of a new Command-Line Interface (design, 2017)) might be worth an extra read afterwards, but they are not prerequisites to understanding

                            The Day of a new Command-Line Interface: Shell
                          • GitHub - chanzuckerberg/axe-storybook-testing: Command line interface for testing Storybook stories for accessibility.

                            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 - chanzuckerberg/axe-storybook-testing: Command line interface for testing Storybook stories for accessibility.
                            • Oculus Quest 2 Recall for Facial Interface Issues

                              IMPORTANT SAFETY NOTICE: ACTIONS REGARDING QUEST 2 REMOVABLE FOAM FACIAL INTERFACE Oculus has recently taken actions in response to a very small percentage of users reporting a generally mild skin irritation where the foam portion of the Quest 2 facial interface rests on the skin. The safety and comfort of every customer is our top priority. As part of this commitment we are now offering a free si

                              • CQ出版、「Interface 2020年 2月号」で「組み込みコンピュータ技術512」を特集|fabcross

                                CQ出版は、「Interface 2020年 2月号」を2019年12月25日に発売する。通算512号となることにちなみ、特集は「組み込みコンピュータ技術512」だ。 同特集では、これからのAI技術や量子コンピューター技術、開発環境、未来エンジニア育成、通信技術、センサー、基本パーツ、カメラ/モジュール、生体計測技術に関する組み込みコンピューター技術合計512の事例を紹介する。 具体的には、AIや量子コンピューターにおけるアルゴリズムや統合開発環境、IoT向け通信技術、高精度衛星測位サービスなどを取り上げている。 B5判200ページで定価は1100円(税込)だ。

                                  CQ出版、「Interface 2020年 2月号」で「組み込みコンピュータ技術512」を特集|fabcross
                                • Why We're Rebuilding The Thunderbird Interface From Scratch

                                  Thunderbird is quickly approaching its 20th anniversary as a standalone email client. And as we get closer to this year’s release of Thunderbird 115 “Supernova” we’re hearing a certain question more and more often: “Why does Thunderbird look so old, and why does it take so long to change?” ~ A notable percentage of Thunderbird users It’s certainly a valid one, so let’s spend some time answering it

                                    Why We're Rebuilding The Thunderbird Interface From Scratch
                                  • GitHub - tenderlove/uart: Simple serial / UART interface for Ruby

                                    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 - tenderlove/uart: Simple serial / UART interface for Ruby
                                    • C#8.0 Default Interface Methods でstructがBoxingされる,されない話 - Qiita

                                      C#8.0 Default Interface Methods でstructがBoxingされる,されない話C#C#8.0 この記事はC# Advent Calendar 2019の15日目です。 初投稿です。 TL;DR C#8.0でInterfaceにも実装できるようになった しかしstructとの相性が悪い仕様でBoxingされる 条件によってはされないこともある? Default Interface Methods とは Default Interface Methods (以下DIMs) とは、C#8.0の新機能の一つで、今まで宣言しかできなかったinterfaceでメソッドを実装できるようになりました。JavaのDefault Methodsのようなものです。 https://github.com/dotnet/csharplang/blob/master/proposals

                                        C#8.0 Default Interface Methods でstructがBoxingされる,されない話 - Qiita
                                      • DenoのForeign function interface(FFI)でMySQLに接続する - 虎の穴開発室ブログ

                                        ※この記事は予約投稿です。 こんにちは。虎の穴ラボのY.Fです。 この記事は、虎の穴ラボ Advent Calendar 2021- Qiita4日目の記事になります。 3日目は 【Tailwind CSS 3.0 alpha1〜2の注目の新機能をご紹介! 】です。ぜひ読んでみてください。 5日目はY.Iさんの【 anime.js + SVG を使用して画像をヌルヌル動かす!】です。お楽しみに! 本記事ではDeno1.13あたりから導入されたForeign function interface(以下FFI)機能を使ってMySQLに接続するまでに行ったことや、どのように実装してみたかを紹介していきたいと思います。 はじめに Denoには1.13リリース前から Deno.openPlugin という、Rustのライブラリを呼び出せるAPIがありました。ただ、技術的な課題がいくつかあったとのこと

                                          DenoのForeign function interface(FFI)でMySQLに接続する - 虎の穴開発室ブログ
                                        • Migrate from AWS CLI version 1 to AWS CLI version 2 - AWS Command Line Interface

                                          This section contains instructions for updating the AWS CLI version 1 to AWS CLI version 2. The AWS CLI version 2 builds on AWS CLI version 1 and includes features and enhancements based on community feedback. The AWS CLI version 2 is the most recent major version of the AWS CLI and supports all of the latest features. Some features introduced in version 2 are not backported to version 1 and you m

                                          • Pix2Seq: A New Language Interface for Object Detection

                                            Philosophy We strive to create an environment conducive to many different types of research across many different time scales and levels of risk. Learn more about our Philosophy Learn more

                                              Pix2Seq: A New Language Interface for Object Detection
                                            • What are GPT Agents? A deep dive into the AI interface of the future

                                              Image by AuthorLast week, I tweeted and asked who were people building cool products around the idea of GPT agents and was totally blown away by the response. I was also surprised that many seemed to not grasp what agents are nor why they will end up being so popular. This post is designed to take you from “I have no idea what an Autonomous GPT agent is please stop using made up words” to being in

                                                What are GPT Agents? A deep dive into the AI interface of the future
                                              • GitHub - rupor-github/wsl-ssh-agent: Helper to interface with Windows ssh-agent.exe service from Windows Subsystem for Linux (WSL)

                                                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 - rupor-github/wsl-ssh-agent: Helper to interface with Windows ssh-agent.exe service from Windows Subsystem for Linux (WSL)
                                                • 最新WASI 0.2に対応! Goエンジニア向けのWASI入門書籍が発売/『WebAssembly System Interface入門』【Book Watch/ニュース】

                                                    最新WASI 0.2に対応! Goエンジニア向けのWASI入門書籍が発売/『WebAssembly System Interface入門』【Book Watch/ニュース】
                                                  • ChatGPTを使ったプログラミングを解説——CQ出版「Interface」2023年11月号発売|fabcross

                                                    特集「ChatGPTとプログラミング」では、OpenAIが提供する対話型生成AI「ChatGPT」のコード生成やプログラミング支援機能について解説する。 第1部「押さえておきたいメカニズム」では、トークンや強化学習といった技術ワードから読み解くChatGPTのメカニズムや、大規模言語モデルのベースとなっているTransformerの動作について解説。 第2部「活用テクニック」では、プロンプトの上手な書き方や指示の定型文、コード生成やレビュー/デバッグなどに応用できる活用テクニックを紹介する。 第3部「徹底実験!ChatGPTのプログラミングの実力を確かめる」では、温度センサーとRaspberry Pi Pico、ESP32を使用してクラウドサーバーに接続し、測定値を送信するプログラムや、STM32マイコンでDCブラシレスモーターを制御するプログラムなど、ChatGPTでプログラミングした事

                                                      ChatGPTを使ったプログラミングを解説——CQ出版「Interface」2023年11月号発売|fabcross
                                                    • Goのinterfaceをデータ構造から理解する

                                                      この記事は 2021 Go Advent Calendar 3日目 の記事です。 はじめに Goにはinterfaceと呼ばれるデータ構造が存在します。 interface typeは良くも悪くもGoのランタイムの中で柔軟な振る舞いを持ちます。 今回は改めてGoのinterfaceを学習することで、今日からのGopher lifeをより良くすることを目的とします。 note この記事はGo1.17の時点での記事です。 Go1.18から導入予定のGenericが導入されることで、一部よりいい書き方が生まれる可能性があります。 interfaceの使い方 1つは他言語の文脈で用いられるような抽象化のためのinterfaceです。 以下がサンプルコードです。 package main import "fmt" type Go interface { Hello() } var _ Go = (*

                                                        Goのinterfaceをデータ構造から理解する
                                                      • Goでテストを書くために、まずinterfaceを設計するということ - Qiita

                                                        Goでテストコードを書くことになった場合に あなたが、勤務先で上長から「テストコードを書いてください」と指示されたとき、 テストが書ける設計になっているでしょうか。 この記事では、S3からファイルを取得して読み取るというユースケースに対して テストを書くことについて考えていきます。 テストが書きづらいケース var awssess = newSession() var s3Client = newS3Client() const defaultRegion = "ap-northeast-1" func newSession() *session.Session { return session.Must(session.NewSessionWithOptions(session.Options{ SharedConfigState: session.SharedConfigEnable,

                                                          Goでテストを書くために、まずinterfaceを設計するということ - Qiita
                                                        • GitHub - triton-inference-server/pytriton: PyTriton is a Flask/FastAPI-like interface that simplifies Triton's deployment in Python environments.

                                                          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 - triton-inference-server/pytriton: PyTriton is a Flask/FastAPI-like interface that simplifies Triton's deployment in Python environments.
                                                          • Configuration and credential file settings - AWS Command Line Interface

                                                            You can save your frequently used configuration settings and credentials in files that are maintained by the AWS CLI. The files are divided into profiles. By default, the AWS CLI uses the settings found in the profile named default. To use alternate settings, you can create and reference additional profiles. You can override an individual setting by either setting one of the supported environment

                                                            • Apple、iOS 18でサポートされるダークと淡色アイコンのテンプレートとHuman Interface Guidelinesを公開。

                                                              AppleがiOS 18でサポートされるDarkとTintedアイコン用のテンプレートとHuman Interface Guidelinesを公開しています。詳細は以下から。 Appleは現地時間2024年06月10日に開催した世界開発者会議WWDC24の基調講演の中で、次期「iOS 18」や「iPadOS 18」を発表し、その新機能の1つとしてホーム画面のアイコンでダーク(Dark)と淡色(Tinted)にカスタマイズする機能を発表しましたが、 Appleは開発者向けに提供している「Human Interface Guidelines (HIG)」をアップデートし、このダークと淡色のアイコンをデザインする上で、システムに美しくなじませるためのヒントを追記しています。 暗いアイコンと淡色のアイコンはシステムアプリのアイコンやウィジェットと並べてもなじむようなデザインにする。デフォルトのアイ

                                                                Apple、iOS 18でサポートされるダークと淡色アイコンのテンプレートとHuman Interface Guidelinesを公開。
                                                              • Uniswap Interface

                                                                Swap or provide liquidity on the Uniswap Protocol

                                                                  Uniswap Interface
                                                                • (C#) interface/core パターンによるポリモーフィズム - ネコのために鐘は鳴る

                                                                  継承の濫用による設計の矛盾 コード共通化のためだけの継承の濫用が設計の矛盾を生むというのを分かっている方は、下の問題設定だけ見て、次の項まで読み飛ばしてください。 問題設定 人間・犬・猫には「歩く」という共通の振る舞いがあり、現在の「位置」を持っている。 全ての生き物はデフォルトでは速度1で歩くが、犬と猫は速度2で歩く。 猫は昼寝をし、昼寝を始めると歩かない。 C#er 的には自然な考えとして、まずは継承で実装してみましょう。 public abstract class Walkable { public int X { get; protected set; } public virtual void Walk() => X += 1; } public class Human : Walkable{ } public class Dog : Walkable { public over

                                                                    (C#) interface/core パターンによるポリモーフィズム - ネコのために鐘は鳴る
                                                                  • AWS CLI のページ分割オプションを使用する - AWS Command Line Interface

                                                                    翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。 AWS CLI のページ分割オプションを使用する このトピックでは、AWS CLI からの出力をページネーションするためのさまざまな方法を示します。 AWS CLI からページネーションを制御する方法は主に 2 つあります。 サーバー側のページ分割パラメータが最初に処理され、出力がクライアント側のページ分割に送信されます。 サーバー側のページ分割 項目の大きなリストを返すことができるコマンドの場合、AWS Command Line Interface (AWS CLI) がサービスの API を呼び出してリストを生成するときに出力に含める項目の数を制御できる複数のオプションが AWS CLI にあります。 デフォルトでは、AWS CLI は、個々のサービスによって決

                                                                    • Web Interface Guidelines

                                                                      IntroductionWeb Interface Guidelines This document outlines a non-exhaustive list of details that make a good (web) interface. It is a living document, periodically updated based on learnings. Some of these may be subjective, but most apply to all websites. The WAI-ARIA spec is deliberately not duplicated in this document. However, some accessibility guidelines may be pointed out. Contributions ar

                                                                        Web Interface Guidelines
                                                                      • Goのdatabase周りのテストではinterfaceを最大限に活用しようという話 - nakamura244 blog

                                                                        はじめに Goで色々とアプリケーションを書いていてストレージ(主にRDB)との結合部分のテストを書く事があると思います だいたいは実際のストレージにアクセスするテストを実行して、テストをするかと思います 最近、自分はこのストレージ部分とのテストをより良くするにはどうすべきかと考える時があります そこでdatabaseの結合部分のテスト周りで最近改善してみた事をまとめたいと思います 今までどうしてたか localの場合 まず、実際のテスト用のHOST,DB,USER,PASSWORDをconfigなり、環境変数化しておいて、起動時に切り替えれるようにしておく unit test用のDBを用意しておく テーブルスキーマのmigrationを流しておく test用のconfigで起動してgo testを流す。 実際にテスト用のDBに対して、select,update,deleteのテストを行う

                                                                          Goのdatabase周りのテストではinterfaceを最大限に活用しようという話 - nakamura244 blog
                                                                        • GitHub - nhorman/dropwatch: user space utility to interface to kernel dropwatch facility

                                                                          Dropwatch is a project I started in an effort to improve the ability for developers and system administrators to diagnose problems in the Linux Networking stack, specifically in our ability to diagnose where packets are getting dropped. From my probing, I've come to the conclusion that there are four main shortcomings in our current environment: Consolidation, or lack thereof. Currently, if you wo

                                                                            GitHub - nhorman/dropwatch: user space utility to interface to kernel dropwatch facility
                                                                          • JavaのInterface(インターフェース)について。implementsって何? - 104blog

                                                                            この記事は移転しました。約2秒後に新記事へ移動します。移動しない場合はココをクリックしてください。

                                                                              JavaのInterface(インターフェース)について。implementsって何? - 104blog
                                                                            • ぬこぬこ on X: "https://t.co/mhmdVAc5VK Artificial Intelligence Controller Interface (AICI) 大規模言語モデルの出力制御をカンタンにするオープンソースのインターフェース。Microsoft 製。開発者はコントローラーと呼ばれるカスタムロジックを用いて、LLM の生成プロセスをリアルタイムで制御可能。…"

                                                                              • Strategyパターンから理解するGo言語のinterface - Qiita

                                                                                この記事は Go Advent Calendar 2022 23日目の記事です。 はじめに Go言語はJavaなどのオブジェクト指向のように明示的な継承関係がない分、interfaceをうまく使いこなせるかがカギになってくるように個人的に感じます。 そのinterfaceの使い方は、オブジェクト指向におけるStrategyパターンが参考になるよ、という話をしようと思います。 読者としてはGoに入門したばかりの初学者を想定しています。 Strategyパターン Strategyパターンは「GoFのデザインパターン」のなかで紹介されている、クラスやインタフェースの使い方に関する設計パターンです。 図式 Strategyパターンの説明については、結城浩『Java言語で学ぶデザインパターン入門 第3版』に詳しいのでそのまま引用します。 strategyというのは、「戦略」という意味です。敵をやっつ

                                                                                  Strategyパターンから理解するGo言語のinterface - Qiita
                                                                                • Move over, Zoom. This magic interface is the future of videoconferencing

                                                                                  Tens of millions of people are working from home. Zoom use has exploded as we’ve turned to video chats—even though they’re exhausting. And whenever we do go back to our offices, we probably won’t all go back. To enable social distancing, more people will work in shifts, and remotely. So, do we need to settle for the Zoom-from-the-couch home office we have today? Not necessarily! The design firm Ar

                                                                                    Move over, Zoom. This magic interface is the future of videoconferencing