並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 69件

新着順 人気順

OPTIONSの検索結果1 - 40 件 / 69件

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

OPTIONSに関するエントリは69件あります。 githubプログラミングweb などが関連タグです。 人気エントリには 『Setting「設定です」 Configuration「設定です」 Preference「設定です」/Options、Flags、Properties「俺が、俺達が設定だっ!」【やじうまの杜】』などがあります。
  • Setting「設定です」 Configuration「設定です」 Preference「設定です」/Options、Flags、Properties「俺が、俺達が設定だっ!」【やじうまの杜】

      Setting「設定です」 Configuration「設定です」 Preference「設定です」/Options、Flags、Properties「俺が、俺達が設定だっ!」【やじうまの杜】
    • Popular git config options

      Hello! I always wish that command line tools came with data about how popular their various options are, like: “basically nobody uses this one” “80% of people use this, probably take a look” “this one has 6 possible values but people only really use these 2 in practice” So I asked about people’s favourite git config options on Mastodon: what are your favourite git config options to set? Right now

      • Vue.js 状態管理の選択肢 - そのVuex本当に必要ですか - / Vue.js State Management Options

        iCARE Dev Meetup #19 2021/03/17

          Vue.js 状態管理の選択肢 - そのVuex本当に必要ですか - / Vue.js State Management Options
        • Vue 2.xのOptions APIからVue 3.0のComposition APIへの移行で知っておくと便利なTips - ZOZO TECH BLOG

          こんにちは。ECプラットフォーム部のMA(マーケティングオートメーション)アプリケーションチームで、社内向けのマーケティング運用ツールを開発している長澤(@snagasawa_)です。 先日、日本時間の2020年7月18日にVue 3.0のRelease Candidate(v3.0.0-rc.1)がリリースされ、今後は最終リリースまで主要なAPIのbreaking changeは想定していないとのアナウンスがされました。アナウンスを受け、現在社内ツールで進めているOptions APIからComposition APIへの移行で得られたTipsについて紹介します。 この記事では公開時点でのVue 3.0 betaへのアップグレードの方法と、Vue + TypeScriptでのOptions APIからComposition APIへの移行のTipsについてまとめました。Vue 3.0への

            Vue 2.xのOptions APIからVue 3.0のComposition APIへの移行で知っておくと便利なTips - ZOZO TECH BLOG
          • GitHub - FiloSottile/age: A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability.

            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 - FiloSottile/age: A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability.
            • CORS: OPTIONSリクエスト(preflight request)を避ける - Qiita

              ajaxなど、ブラウザ経由でGET, POST, DELETEリクエストを投げると、実際のリクエストが走る前にOPTIONSリクエストが送信されることがあります。 一度しかリクエストを送信していなくても、実際はOPTIONSとGETなど、2回リクエストが走っています。 APIによっては、OPTIONSリクエストを受け付けないため、Response to preflight request doesn't pass access control checkのようなエラーが返ってくる場合があります。このOPTIONSリクエストはCORSプリフライト(preflight requests)と呼ばれていて、これが通らないと、実際のGET, POST, DELETEなどのリクエストは送信されません。 このプリフライト・リクエストとは何なのか、OPTIONSリクエストを回避する方法はあるのか調べてみま

                CORS: OPTIONSリクエスト(preflight request)を避ける - Qiita
              • Vue 3 で Options API を無効化するという選択肢

                概要 本記事は、Vue 3 で Options API を使用するためのフラグである __VUE_OPTIONS_API__ を無効化した場合の挙動やバンドルサイズの違いについてまとめになります。 TL;DR Options API を一切使わないプロジェクトなら、Vue アプリケーションの バンドルサイズを 5.49kB 削減 できました (gzip なら 2.14 kB) バージョン情報 vue 3.2.45 vite 4.0.2 @vitejs/plugin-vue 4.0.0 rollup 3.8.0 Options API と Composition API Vue 3 のコンポーネントスタイルには、 Options API と Composition API の2種類があります。 前者は Vue 2 時点での基本スタイルで、オブジェクトにコンポーネントの挙動を示す各フィールドを

                  Vue 3 で Options API を無効化するという選択肢
                • GitHub - a13xp0p0v/kernel-hardening-checker: A tool for checking the security hardening options of the Linux kernel

                  $ ./bin/kernel-hardening-checker -c kernel_hardening_checker/config_files/distros/ubuntu-22.04.config -l /proc/cmdline -s kernel_hardening_checker/config_files/distros/example_sysctls.txt [+] Kconfig file to check: kernel_hardening_checker/config_files/distros/ubuntu-22.04.config [+] Kernel cmdline file to check: /proc/cmdline [+] Sysctl output file to check: kernel_hardening_checker/config_files/

                    GitHub - a13xp0p0v/kernel-hardening-checker: A tool for checking the security hardening options of the Linux kernel
                  • New options for Polyfill.io users

                    Polyfill is a popular tool for enhancing browser capabilities. Many users access it by linking to the polyfill.io service, which has recently changed ownership to a new party. In order to ensure that everyone can maintain reliable and trusted access to Polyfill features, we have identified a few alternatives: First, Fastly is offering polyfill-fastly.net and polyfill-fastly.io as a free, drop-in r

                      New options for Polyfill.io users
                    • You’ve Got Options for Removing Event Listeners

                      You’ve Got Options for Removing Event Listeners Reviewing some of the most common approaches available to remove event listeners in JavaScript. Cleaning up your code in runtime is a non-negotiable part of building efficient, predictable applications. One of the ways that’s done in JavaScript is by stewarding event listeners well — specifically, removing them when they’re no longer needed. There ar

                        You’ve Got Options for Removing Event Listeners
                      • Looming Twitter interest payment leaves Elon Musk with unpalatable options | Financial Times

                        What is included in my trial? During your trial you will have complete digital access to FT.com with everything in both of our Standard Digital and Premium Digital packages. Standard Digital includes access to a wealth of global news, analysis and expert opinion. Premium Digital includes access to our premier business column, Lex, as well as 15 curated newsletters covering key business themes with

                        • are available options payment What | ならべかえ 英語 リスニング

                          単語をならべかえて英文を完成させよう(レベル5)「are available options payment What」「どのような支払方法がありますか。」#英語学習 | ならべかえ 英語 リスニング

                            are available options payment What | ならべかえ 英語 リスニング
                          • Announcing pricing updates and more flexible payment options for Google Workspace | Google Workspace Blog

                            * All pricing is per user, per month. Third, we are increasing the price of Google Workspace Enterprise Standard to reflect the value we’ve added to the edition, including industry-leading security controls and administrative features designed for large enterprises. There are no list price changes to the other Enterprise editions, including education upgrades. Customers should connect with their a

                              Announcing pricing updates and more flexible payment options for Google Workspace | Google Workspace Blog
                            • More options, more Trello: revamped pricing and power-ups for all - Work Life by Atlassian

                              More options, more Trello: revamped pricing and power-ups for all It’s now easier than ever before to get the most out of Trello and bring more power to your team. With revamped pricing and more features available to all users, manage all your projects at a price point that meets your team’s unique needs. Here are some of our latest changes: Introducing Standard, a new lower priced plan All users

                                More options, more Trello: revamped pricing and power-ups for all - Work Life by Atlassian
                              • Logi Options+Plusロジクールデバイス用カスタマイズアプリ

                                より使いやすく、より生産的に より使いやすく生産的にすることが目標です。これをどのように行うかは、ユーザー次第です。Logi Options+アプリは、ロジクール マウス、キーボード、ライト、ウェブカメラ、およびタッチパッドを含む対応パーソナルワークスペース デバイスすべてをさらにカスタマイズすることを可能にする、次世代のLogicool Optionsアプリです。よりよいインターフェイスインターフェイスと最新機能がアップグレードされ、よりスマートに動作する、Logicool Optionsを最大限にご活用ください。

                                  Logi Options+Plusロジクールデバイス用カスタマイズアプリ
                                • 2020年に「すごいHaskellたのしく学ぼう」を { -# OPTIONS -Wall -Werror #- } を付けて読む - Qiita

                                  2020年に「すごいHaskellたのしく学ぼう」を { -# OPTIONS -Wall -Werror #- } を付けて読むHaskell はじめに 現在、書籍「すごいHaskellたのしく学ぼう」(第1版第4刷)を読んでHaskellを勉強しています。 Haskell入門の良書として有名なようなのですが2012年発行で多少情報が古くなっているので、今からこの書籍を読もうという方はこちらの記事などを参考にすると良いと思います。 2017年に「すごいHaskellたのしく学ぼう」を読む この書籍の p. 37 の訳注で、{-# OPTIONS -Wall -Werror #-} という記述を .hsファイル(Haskellのコードを記述するファイル)の先頭行に付け、通常より厳密な警告を有効にすることが提案されています。こうすると:l hogehoge(ファイル名)で.hsファイルをコン

                                    2020年に「すごいHaskellたのしく学ぼう」を { -# OPTIONS -Wall -Werror #- } を付けて読む - Qiita
                                  • GitHub - lowlighter/metrics: 📊 An infographics generator with 30+ plugins and 300+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!

                                    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 - lowlighter/metrics: 📊 An infographics generator with 30+ plugins and 300+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!
                                    • Elon Musk on Twitter: "Sorry, too many options. Will redo poll."

                                      Sorry, too many options. Will redo poll.

                                        Elon Musk on Twitter: "Sorry, too many options. Will redo poll."
                                      • Trump Sought Options for Attacking Iran to Stop Its Growing Nuclear Program (Published 2020)

                                        WASHINGTON — President Trump asked senior advisers in an Oval Office meeting on Thursday whether he had options to take action against Iran’s main nuclear site in the coming weeks. The meeting occurred a day after international inspectors reported a significant increase in the country’s stockpile of nuclear material, four current and former U.S. officials said on Monday. A range of senior advisers

                                          Trump Sought Options for Attacking Iran to Stop Its Growing Nuclear Program (Published 2020)
                                        • Storage options  |  Compute Engine Documentation  |  Google Cloud

                                          Send feedback Storage options Stay organized with collections Save and categorize content based on your preferences. Compute Engine offers several storage options for your VMs. Each of the following storage options has unique price and performance characteristics: Hyperdisk Storage Pools enable you to purchase storage capacity and performance in aggregate then create disks for your VMs from this p

                                            Storage options  |  Compute Engine Documentation  |  Google Cloud
                                          • More options to help websites preview their content on Google Search

                                            accessibility 10 advanced 195 AMP 13 Android 2 API 7 apps 7 autocomplete 2 beginner 173 CAPTCHA 1 Chrome 2 cms 1 crawling and indexing 158 encryption 3 events 51 feedback and communication 83 forums 5 general tips 90 geotargeting 1 Google Assistant 3 Google I/O 3 Google Images 3 Google News 2 hacked sites 12 hangout 2 hreflang 3 https 5 images 12 intermediate 205 interstitials 1 javascript 8 job s

                                              More options to help websites preview their content on Google Search
                                            • GitHub - suzuki-shunsuke/tfcmt: Fork of mercari/tfnotify. tfcmt enhances tfnotify in many ways, including Terraform >= v0.15 support and advanced formatting options

                                              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 - suzuki-shunsuke/tfcmt: Fork of mercari/tfnotify. tfcmt enhances tfnotify in many ways, including Terraform >= v0.15 support and advanced formatting options
                                              • Logi Options+をフル活用!「ジェスチャー機能」で効率化を実現した方法【今日のワークハック】 | ライフハッカー・ジャパン

                                                1TBでこの価格。PCやテレビ、ゲームの容量不足を解消するシリコンパワーのmicroSD【楽天セール】

                                                  Logi Options+をフル活用!「ジェスチャー機能」で効率化を実現した方法【今日のワークハック】 | ライフハッカー・ジャパン
                                                • Go の 構造体定義から Functional Options Pattern のコードを自動生成する CLI ツールを作った

                                                  Go でオプション引数を実現したいときによく Functional Options Pattern が使われるかと思います。このデザインパターンは便利な一方、構造体の中でオプション引数を用意したい全てのフィールドに対して、オプション引数用の関数を実装する必要があり、記述すべきコードが多くなりがちです。 この問題を解決すべく、Functional Options Pattern を実現するためのコードを自動生成する CLI ツール 「foggo」を作りました。 Functional Options Pattern とは Go はそのシンプルな言語仕様から、オプション引数を提供していません。 オプション引数はデフォルト引数やオプションパラメータとも呼ばれ、Python だと可変長引数である *args や *kargs のことを指します。 通常の関数であれば特に問題ないのですが、構造体の初期化

                                                    Go の 構造体定義から Functional Options Pattern のコードを自動生成する CLI ツールを作った
                                                  • Opciones Binarias Recetor: 100 Accurate Binary Options Indicator

                                                    Visiteurs depuis le 25/01/2019 : 6381 Connectés : 1 Record de connectés : 15 5 dollar 100 accurate binary option indicator for mt4 Posted on Mar 18, 2015 by in Page turtle trading is not repaint mt4 2014 much better. Minimum deposit basics 101 open an eight year. Tallahassee up domain help in simple. Elective methods ny: minute binary. Clients can decide to regular moment beat the banking options

                                                      Opciones Binarias Recetor: 100 Accurate Binary Options Indicator
                                                    • The growth of command line options, 1979-Present

                                                      This table has the number of command line options for various commands for v7 Unix (1979), slackware 3.1 (1996), ubuntu 12 (2015), and ubuntu 17 (2017). Cells are darker and blue-er when they have more options (log scale) and are greyed out if no command was found. We can see that the number of command line options has dramatically increased over time; entries tend to get darker going to the right

                                                      • セブのヴィーガン、ベジタリアン、ケト、健康食品の専門店Healthy Optionsに行ってみたら日本でおなじみのアレが肉代わりに! - happykanapyのCebuライフ

                                                        みなさん、おはようございます! 休みも仕事も関係ない生活をしていますが、一応土日は休みにしています。 で、休みの日の時間が早く感じるのは私だけでしょうか?💦 もう土曜日が終わっちゃったよ~!って感じで昨日が終わっちゃってました。 さて、ヘルシーライフを心がけている毎日です。 先日、ヴィーガン、ベジタリアン、ケト、健康食品の専門店Healthy Optionsに行ってきました。 明るくてきれいなお店 結構な売り場面積のある明るくてきれいなお店です。 ディスプレイもこじゃれてます 商品の品ぞろえは幅広く、大きく分けるとサプリメント、お菓子、調味料、食品、化粧品が売っています。 バス用品 化粧品コーナーには、コスメ用品、バス用品、歯磨き粉、毛染め、アロマ、ボディケア用品などがかなりな数で並んでいました。 箱入りのお茶 何のお茶だか良く見えない写真ですが、シンプルな紅茶とか緑茶というよりも、そこ

                                                          セブのヴィーガン、ベジタリアン、ケト、健康食品の専門店Healthy Optionsに行ってみたら日本でおなじみのアレが肉代わりに! - happykanapyのCebuライフ
                                                        • CORS Policy 違反と,Preflight request (OPTIONS) について

                                                          CORS Policy 違反と,Preflight request (OPTIONS) について 2020年9月6日 engineering http options preflight_request cors こんにちは、 @kz_morita です。 今回は,現在実装しているサービスで遭遇したエラーとそれについて調べる過程で調査した,HTTP の Preflight request についてまとめていきます. 発生したエラー 前提として,いま開発しているサービスは,Web Server と,API Server が別れています. (つまり https://example.com と https://api.example.com のようにドメインが別になっています) そして,普通に API に対して GET リクエストを送っていたときは問題なかったのですが,POSTリクエストを送ろう

                                                            CORS Policy 違反と,Preflight request (OPTIONS) について
                                                          • Database Options For Mac

                                                            Visiteurs depuis le 27/01/2019 : 5451 Connectés : 1 Record de connectés : 20 Because of these changes, the ability to manually start a database rebuild is not available in Outlook for Mac for Office 365. This will help reduce time spent on rebuilding the database for issues that truly are not caused by database problems, thus a database rebuild is not necessary. Access Database For MacLast Updated

                                                              Database Options For Mac
                                                            • Configuration options for the dependabot.yml file - GitHub Docs

                                                              About the dependabot.yml file The Dependabot configuration file, dependabot.yml, uses YAML syntax. If you're new to YAML and want to learn more, see "Learn YAML in five minutes." You must store this file in the .github directory of your repository in the default branch. When you add or update the dependabot.yml file, this triggers an immediate check for version updates. For more information and an

                                                                Configuration options for the dependabot.yml file - GitHub Docs
                                                              • Assessing MySQL Performance Amongst AWS Options - Part Two

                                                                See part one of this series here. This post is part two of my series “Assessing MySQL Performance Amongst AWS Options”, taking a look at how current Amazon RDS services – Amazon Aurora and Amazon RDS for MySQL – compare with Percona Server with InnoDB and RocksDB engines on EC2 instances. This time around, I am reviewing the total cost of one test run for each database as well as seeing which data

                                                                  Assessing MySQL Performance Amongst AWS Options - Part Two
                                                                • VM Options Explorer - OpenJDK11 HotSpot

                                                                  NameSinceDeprecatedTypeOSCPUComponentDefaultAvailabilityDescriptionDefined in SinceDeprecatedTypeOSCPUComponentAvailability

                                                                  • Options APIを使用してNuxt.js + TypeScriptでVuexに型指定する方法(nuxt-typed-vuex) | スマートショッピング

                                                                    2020-07-13Options APIを使用してNuxt.js + TypeScriptでVuexに型指定する方法(nuxt-typed-vuex) はじめにこんにちは。エンジニアリング事業本部の@gc_tech70です。 今回自社内で新規のWebサービスの開発プロジェクトがあり、その際の開発技術としてNuxt.js + TypeScriptを採用しました。 本記事ではその開発時のナレッジとして、Nuxt.js + TypeScript環境におけるVuexの型指定の方法についてご紹介させていただきたいと思います。 ※TypeScriptを使用する理由は多くの記事で語られていると思いますので、この記事ではあえて言及はしません。 Nuxt.js + TypeScriptでの技術選定まず最初にNuxt.js + TypeScriptと言っても現状(2020年7月12日時点)では技術選定として

                                                                      Options APIを使用してNuxt.js + TypeScriptでVuexに型指定する方法(nuxt-typed-vuex) | スマートショッピング
                                                                    • Documenting Your TypeScript Projects: There Are Options

                                                                      Whether you’re a TypeScript developer, a JavaScript developer or any type of developer really, you most likely hate writing documentation. We all tend to hate it, even those of us who like to write. Can you imagine having to go through thousands of lines of code, review their logic, and document what it does in a format that is then easy to browse and understand? This second part is key however be

                                                                        Documenting Your TypeScript Projects: There Are Options
                                                                      • Deep dive of Microsoft.Extensions.Options in Japanese

                                                                        MicrosoftExtensionsOptionsDeepDive.md Microsoft.Extensions.Options Deep Dive 最近は .NET Core の仕事をしています。 さて、ASP.NET Core を使っていると、とりあえず構成情報みたいなものは IOptions<TOptions> で受け取っておけみたいな雑な話を目にします。 一応 公式のドキュメント はあるのですが、正直読んでもよくわからない。柔軟なんだねー、なるほどねーみたいな感じになりました。なので、ここではできる限り(?)網羅的に解説してみようと思います。 IOptions<TOptions> って何?(TOptions を直接注入すればいいじゃん) IOptionsSnapshot<TOptions> とかたくさんあってよくわかんない オプションの動的更新に必要なものは? IConfigu

                                                                          Deep dive of Microsoft.Extensions.Options in Japanese
                                                                        • Host the Whisper Model on Amazon SageMaker: exploring inference options | Amazon Web Services

                                                                          AWS Machine Learning Blog Host the Whisper Model on Amazon SageMaker: exploring inference options OpenAI Whisper is an advanced automatic speech recognition (ASR) model with an MIT license. ASR technology finds utility in transcription services, voice assistants, and enhancing accessibility for individuals with hearing impairments. This state-of-the-art model is trained on a vast and diverse datas

                                                                            Host the Whisper Model on Amazon SageMaker: exploring inference options | Amazon Web Services
                                                                          • Demystifying the “SVCHOST.EXE” Process and Its Command Line Options

                                                                            Family Group PhotoThe Service Host process or “svchost.exe” is one the most notorious processes out there. It got a bad reputation for being “malicious” due to mostly two factors, one is malware impersonating it and the other is good old “Task Manager”. Because of the way task manager was designed in the old days (and to some extent today), it never gave much details into processes on the system a

                                                                              Demystifying the “SVCHOST.EXE” Process and Its Command Line Options
                                                                            • Userdel Command Options For Mac

                                                                              Visiteurs depuis le 26/01/2019 : 5076 Connectés : 1 Record de connectés : 12 A command line prompt is a way of interacting with your computer without a graphical interface. While your modern Mac uses a graphical user interface, (GUI) older computers used only command prompts. The command line usually gives you more options than the GUI. The Command (cmd) key works in a similar way to the Control k

                                                                                Userdel Command Options For Mac
                                                                              • Logitech、マウス&キーボード用ユーティリティ「Logitech Options」がmacOS 12 Montereyをサポートしたと発表し、macOS 12でBluetoothデバイスの接続や遅延が発生する場合の対処法を公開。

                                                                                Logitechが最新のマウス&キーボード用ユーティリティ「Logitech Options」がmacOS 12 Montereyをサポートしたと発表し、macOS 12でBluetoothデバイスの接続や遅延が発生する場合の対処法を公開しています。詳細は以下から。 スイスLogitech(日本ではLogicool)は現地時間2021年12月21日、同社のマウスやキーボードの機能をカスタマイズできるユーティリティ「Logitech Options」のサポートページをアップデートし、今年09月に公開した「Logitech Options v9.40.75」がmacOS 12 Montereyをサポートしたと発表しています。 ただし、既にLogitechが発表している通り、Logitech Optionsは現在のところApple Siliconをサポートしておらず、Rosetta 2エミュレー

                                                                                  Logitech、マウス&キーボード用ユーティリティ「Logitech Options」がmacOS 12 Montereyをサポートしたと発表し、macOS 12でBluetoothデバイスの接続や遅延が発生する場合の対処法を公開。
                                                                                • next.config.js Options: headers | Next.js

                                                                                  headers Headers allow you to set custom HTTP headers on the response to an incoming request on a given path. To set custom HTTP headers you can use the headers key in next.config.js: module.exports = { async headers() { return [ { source: '/about', headers: [ { key: 'x-custom-header', value: 'my custom header value', }, { key: 'x-another-custom-header', value: 'my other custom header value', }, ],

                                                                                    next.config.js Options: headers | Next.js

                                                                                  新着記事