並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 124件

新着順 人気順

how-toの検索結果1 - 40 件 / 124件

  • 【教材まとめ】これ全部やったら流石に誰でもつよつよAIエンジニアになれる - Qiita

    はじめに 本記事ではAI知識ゼロから始めてAIエンジニアとして実務にチャレンジできるレベルを目指してロードマップ形式でコンテンツをまとめました。 生成AIの台頭、SakanaAIの大型資金調達やGoogleの研究者(ヒントン氏ら)のノーベル賞受賞も重なり、さらにAIへの注目が集まっている状態かと思います。 しかし初学者にとって、AIを学ぶハードルはまだまだ高いのが現状です。AIをツールとして活用するだけなら比較的障壁は高くないですが、理論的な部分まで含めると学ぶべき内容が広く、分野によっては難易度が高く、せっかく学び始めたのに挫折する人も多いです。 未経験だけどAIの知識を身につけたい 現在web開発の知識があり、AIも学びたい AIを学んでエンジニアインターンや実務で活躍したい といった方は是非読み進めていってください。 コンテンツは随時追記していきます。 構成 本記事は下記のような構成

      【教材まとめ】これ全部やったら流石に誰でもつよつよAIエンジニアになれる - Qiita
    • GPT-4やClaudeなどの大規模言語モデルが抱える「ストロベリー問題」とは?

      大規模言語モデル(LLM)をベースにしたAIは高い能力を発揮できる一方で、ウソにダマされやすいといった特徴があったり、算数の文章題への推論能力が小学生未満という研究結果があったりと、脆弱(ぜいじゃく)さについてもしばしば指摘されます。AIの能力の限界を示す「ストロベリー問題」という脆弱性について、機械学習エンジニアのチンメイ・ジョグ氏が解説しています。 The 'strawberrry' problem: How to overcome AI's limitations | VentureBeat https://venturebeat.com/ai/the-strawberrry-problem-how-to-overcome-ais-limitations/ ChatGPTやStable DiffusionなどのジェネレーティブAIは、高度な文章やコードを書けたり、イラストやリアルな画

        GPT-4やClaudeなどの大規模言語モデルが抱える「ストロベリー問題」とは?
      • いかにして問題をとくか

        この記事は、6月28日開催予定 PHPer Tea Night #18 - 技術書オススメバトル への参戦エントリです。 Gポリア著「いかにして問題をとくか」 およそ80年前、「数学」という分野より、この本は出版された。 そして今に至るまで、数学に留まらないあらゆる分野の課題解決本として参照され続けている。 ソフトウェアエンジニアリングの世界でも評価は高い。元よりエンジニアは、あらゆる問題や課題を、抽象化、汎化、定量化、そして言語化することも生業としている。それをポリアはこの本の中で、「数学」という例題を通じて汎用的にやってのけた。 ここで言う「問題」とは特定の数学問題を指しているわけではない。数学に限らない、私達が出会ったことのない「未知の問題」を指している。 従って、私達エンジニアは、この本の表題を次のように読み替える。 「いかにして課題を解決するか」 『いかにして問題をとくか』|丸善

        • ゆるめのフォロワーシップ実践方法 - Konifar's ZATSU

          誰かがリードしている時に、それを支え、あと押しするような振る舞いをフォロワーシップと呼ぶ。 フォロワーシップについては、Derek Sivers の TEDトーク How to start a movement や あんちぽさんのやっていき、のっていき が自分は好き。研究でいうとロバート・ケリー教授の The Power of Followership の5つの分類が有名。 難しそうに感じるかもしれないが、実はフォロワーシップの実践というのはもっとゆるいところにも現れるものだと思う。自分のまわりの人たちがおそらく無意識的に実践しているように見えることを雑に書きだしてみる。 1. 反応を返す 誰かが発言したり何かを書いたりしたことに対してわかりやすく"反応を返す"という振る舞いは、意外と皆ができていなかったりする ミーティングで最初の挨拶に対して挨拶を返したり、「何か質問や意見ありますか?」

            ゆるめのフォロワーシップ実践方法 - Konifar's ZATSU
          • ブラウザで動作する地理空間データ処理ライブラリとして DuckDB-wasm を使い、 SQL を TypeScript で管理する仕組みを作る - newmo 技術ブログ

            newmo では、地図データや地理情報を扱う場面が多くあります。 たとえば、タクシーやライドシェアでは、営業区域のような営業していいエリアといった地理的な定義があります。 また、乗り入れ禁止区域のようなタクシーが乗り入れてはいけないエリアといった定義も必要になります。 これらの地理に関する定義は GeoJSON のような地理情報を扱うデータ形式で管理されることが多いです。 しかし、GeoJSONなどの定義をテキストとして手書きするのは困難です。 そのため、地図上に区域を作図するエディタやその定義した区域が正しいかをチェックするような管理ツールが必要です。 管理ツールは、ウェブアプリケーションとして作った方が利用できる環境が広がります。 このような地理情報は一度に扱うデータが多かったり、空間的な計算処理が必要になるため、専用の仕組みを使うことが多いです。 このような技術を、地理情報システム(

              ブラウザで動作する地理空間データ処理ライブラリとして DuckDB-wasm を使い、 SQL を TypeScript で管理する仕組みを作る - newmo 技術ブログ
            • 渋柿の渋を抜きながら送る方法

              趣味は食材採取とそれを使った冒険スペクタクル料理。週に一度はなにかを捕まえて食べるようにしている。最近は製麺機を使った麺作りが趣味。(動画インタビュー) 前の記事:佐渡島にあるお大尽な大臣の別荘、山本邸から見る景色に驚いた > 個人サイト 私的標本 趣味の製麺 佐渡の秋は柿もぎで忙しい 佐渡島の秋の名物といえば、おけさ柿である。貝の牡蠣ではなく、果物の柿。 特に佐渡南部の羽茂(はもち)地区を旅していると、オレンジ色のかわいい実をつけた木をよく目にする。 佐渡島の柿。とてもおいしそうだが、このままだと渋いそうです。 私もよくわかっていなかったのだが、おけさ柿という品種がある訳ではなく、平核無(ひらたねなし)、刀根早生(とねわせ:平核無の突然変異で早く収穫できる)という品種の種無し渋柿が、おけさ柿というブランドとして新潟の農協から出荷されているそうだ。 佐渡島はおけさ柿の出荷量のうち、六割以上

                渋柿の渋を抜きながら送る方法
              • 私の心を揺さぶったプログラミング言語 - ABAの日誌

                'Programming Languages That Blew My Mind'というブログ記事で、8歳からプログラマーとして活動しているDavid Tellerさんが、人生で出会った革新的なプログラミング言語について紹介している。 BASIC A language designed to make programming simple. Mind blown: Programming my own games! Mind blown: Arrays (or DIM, as they were called)! Mind blown: GOTO! Mind blown: GOSUB! Original, line-based, Basic is dead, but its legacy lives on in VB.Net, VBA, but also in more subtle ma

                  私の心を揺さぶったプログラミング言語 - ABAの日誌
                • We're forking Flutter. This is why.

                  Over the years, Flutter has attracted millions of developers who built user interfaces across every platform. Flutter began as a UI toolkit for mobile - iOS and Android, only. Then Flutter added support for web. Finally, Flutter expanded to Mac, Windows, and Linux. Across this massive expansion of scope and responsibility, the Flutter team has only marginally increased its size. To help expand Flu

                    We're forking Flutter. This is why.
                  • Webフロントエンドの脆弱性つまみ食い 2024年版

                    What's in a price? How to price your products and services

                      Webフロントエンドの脆弱性つまみ食い 2024年版
                    • ついに来るのか!?拡散言語モデル|shi3z

                      我々が単に「言語モデル」といった場合、それはTransformerモデルを指す。Transformerモデルは、ChatGPTやGemini、Claude-3、Command-R+などで使われている。 最近はMambaのような状態ステートマシンの言語モデルも出てきた。そしてもしかしたら今後はここに、拡散ディフュージョンモデルが加わるのかもしれない。 拡散モデルで有名なのは、StableDiffusionで、主に画像生成に使う。 実は画像生成は最初はTransformerだった。OpenAIのDALL-Eは、Transformerとして画像生成を行なった。しかしTransformerには明らかな欠点があり、それはあまりにも膨大な計算量が必要なことだ。 Transformerの事前学習プリトレーニングには、今でも天文学的な計算資源が必要だし、微調整ファインチューニングにも今なお膨大な計算機が必

                        ついに来るのか!?拡散言語モデル|shi3z
                      • 読書ノートの勧め - 世界観警察

                        こんばんは、茅野です。 最近、ちょっと新しいことを始めてみたのですが、これがなかなか面白く、盛大に時間を溶かしています。いずれエッセイにするかも。お楽しみに(?)。 さて、今回は単発です。何故か続いてしまった「書き物の勧め」シリーズ。人類よ、文字を書くのだ。 ↑ 前回。 今回は「読書ノートの勧め」になります。読書の秋ですからね! 先日、読書ノートの3冊目を書き終えたので、折角ですしわたしの読書ノートの作り方をご紹介したいと思います。 それでは、お付き合いの程宜しくお願いします! ↑ 書き終えた3冊。左から、初代、二代目、三代目。 読書ノートを始めた経緯 ツール わたしの書き進め方 最後に 読書ノートを始めた経緯 わたしは読書は好きですが、そこまで読書家というわけでもなく、読むより書く方が好きな文字書きです。 しかし、書くには知識が必要で、知識は本から得るのが一番。従って、興味のある分野の本

                          読書ノートの勧め - 世界観警察
                        • JavaScript Best Practices | The WebStorm Blog

                          JavaScript is undoubtedly the most used programming language in the world and is hugely influential on one of the largest technologies we have all come to rely on – the internet. With this power comes great responsibility, and the JavaScript ecosystem has been rapidly evolving, making it incredibly hard to keep up with the latest JavaScript best practices. In this blog post, we will cover several

                            JavaScript Best Practices | The WebStorm Blog
                          • 下品な言葉が政治的な力を持つとき | p2ptk[.]org

                            以下の文章は、コリイ・ドクトロウの「Dirty words are politically potent」という記事を翻訳したものである。 Pluralistic 新しい言葉を作り出すのは、実にクロミュレントまっとうな遊びだ。造語の大半はその場限りで消えてしまうが、時として時代にケンタッキーなぴったりハマる言葉が生まれ、命が宿ることがある。 http://meaningofliff.free.fr/definition.php3?word=Kentucky 私は四半世紀にわたり、デジタルライツの重要性を大衆の意識に刻み込もうと奮闘してきた。インターネットが重要だと人々に理解してもらうキャンペーンがはじまりだった。以来、テックポリシーは哀れなオタクたちがスタートレックを議論する空間のガバナンスだけを意味するのではなく、人類の繁栄へとつながるものだと訴えてきた。 https://www.new

                              下品な言葉が政治的な力を持つとき | p2ptk[.]org
                            • 10,000リクエストを166msで送信する、Race Conditionの新手法のリサーチについて - Flatt Security Blog

                              ※本記事は筆者RyotaKが英語で執筆した記事を、弊社セキュリティエンジニアShion1305が日本語に翻訳したものになります。 はじめに こんにちは、Flatt SecurityでセキュリティエンジニアをしているRyotaK(@ryotkak)です。 2023年にPortSwigger社のJames Kettle氏は、同社の記事でSingle-packet attackという新しい攻撃手法を提案しました。これはネットワークのジッター値に関係なくレースコンディションを悪用できるというものです。 Smashing the state machine: the true potential of web race conditionsより引用 最近私は、同時に約10,000件のリクエストを送信することで安定して成立するレースコンディションを発見し、Single-packet attackを適用

                                10,000リクエストを166msで送信する、Race Conditionの新手法のリサーチについて - Flatt Security Blog
                              • 'Action Comics' Writer Mark Waid Considers Retirement Due To Re-Election Of Donald Trump: "I Don’t Believe In The Basic Goodness Of My Fellow Americans Anymore, And Without This, I Cannot Write Superheroes"

                                ‘Action Comics’ Writer Mark Waid Considers Retirement Due To Re-Election Of Donald Trump: “I Don’t Believe In The Basic Goodness Of My Fellow Americans Anymore, And Without This, I Cannot Write Superheroes” Superman struggles with the fact that Jon has been taken hostage by Amanda Waller in Absolute Power Vol. 1 #2 (2024), DC. Words by Mark Waid, art by Dan Mora, Alejandro Sánchez, and Ariana Mahe

                                  'Action Comics' Writer Mark Waid Considers Retirement Due To Re-Election Of Donald Trump: "I Don’t Believe In The Basic Goodness Of My Fellow Americans Anymore, And Without This, I Cannot Write Superheroes"
                                • RubyのWebアプリケーションを50倍速くする方法 / How to Make a Ruby Web Application 50 Times Faster

                                  RubyのWebアプリケーションを50倍速くする方法 / How to Make a Ruby Web Application 50 Times Faster

                                    RubyのWebアプリケーションを50倍速くする方法 / How to Make a Ruby Web Application 50 Times Faster
                                  • 作家カート・ヴォネガットが考案した幻のボードゲーム「GHQ」がついに出版される

                                    「タイタンの妖女」「スローターハウス5」などで知られる作家のカート・ヴォネガットが考案したボードゲーム「GHQ」が2024年8月に市販されました。海外メディアのPolygonが、「GHQ」がどういう経緯で開発されたのかを解説しています。 Kurt Vonnegut’s lost board game finally published | Polygon https://www.polygon.com/board-games/467103/kurt-vonnegut-ghq-lost-board-game-publisher-interview ヴォネガットは1922年にインディアナ州インディアナポリスで生まれました。1940年にコーネル大学に入学し、生化学を学んでいましたが、在学中にアメリカ陸軍に徴募され、1944年に第二次世界大戦の欧州戦線に参加。この時の経験が「スローターハウス5」に

                                      作家カート・ヴォネガットが考案した幻のボードゲーム「GHQ」がついに出版される
                                    • We’re leaving Kubernetes - Blog

                                      Kubernetes seems like the obvious choice for building out remote, standardized and automated development environments. We thought so too and have spent six years invested in making the most popular cloud development environment platform at internet scale. That’s 1.5 million users, where we regularly see thousands of development environments per day. In that time, we’ve found that Kubernetes is not

                                        We’re leaving Kubernetes - Blog
                                      • Actions Performance Metrics in public preview · GitHub Changelog

                                        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

                                          Actions Performance Metrics in public preview · GitHub Changelog
                                        • Googleマップのロケーション履歴が消えちゃうので対処法をご紹介

                                          Googleマップのロケーション履歴が消えちゃうので対処法をご紹介2024.11.15 21:0038,881 Dua Rashid - Gizmodo US [原文] ( satomi ) 消えちゃうぞー!と言われて初めて知った人も多そうですけどね。 米Gizmodo読者投票で今春見事「人類史上最強のアプリ」に選ばれたGoogleマップ。実にさまざまな便利機能が充実していますが、そのひとつが、自分の足しげく通う場所が地図上に表示される「タイムライン(ロケーション履歴)」です。 道順を忘れちゃったときにタイムラインの地図を開くと、ずらっと俯瞰できるので、とても助かるんですけど、3か月以上前のデータが削除される仕様へ改正に。Google(グーグル)から届いたメールの告知で明らかになりました。 告知を見たAndroid Authorityによると、2023年12月からロケーション履歴の保存先が

                                            Googleマップのロケーション履歴が消えちゃうので対処法をご紹介
                                          • Programming Languages That Blew My Mind

                                            I’ve been a programmer since the age of 8, and some kind of developer for most of my life. Throughout my life as a coder, both hobbyist and professional, I’ve learnt plenty of programming languages that felt like cookie-cutter clones of each other, but also a few programming languages that changed the way I looked at programming, sometimes even at thinking. Ranking by order in which I discovered t

                                              Programming Languages That Blew My Mind
                                            • GitHub Copilot code review in GitHub.com (public preview) · GitHub Changelog

                                              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

                                                GitHub Copilot code review in GitHub.com (public preview) · GitHub Changelog
                                              • Backblazeでクラウドバックアップを始めた

                                                もしも家が火事で焼けたり、あるいは水害で水没したらどうしよう…とかよく考えます。 (ちなみに企業がこういう災害とかが起きた時にどう対処するか考えておく事を、PCB→事業継続計画というらしいですね) https://ja.wikipedia.org/wiki/%E4%BA%8B%E6%A5%AD%E7%B6%99%E7%B6%9A%E8%A8%88%E7%94%BB まあ、家自体は賃貸で借りてるだけなので引っ越せば済みますし、家財は買い直せば済むでしょう。火災保険に加入させられてますから、保険が下りればお金は問題になりません。 そんな事よりも、何より恐ろしいのはパソコンのデータを失う事です。 こればっかりは失ってしまえば二度と取り戻す事はできません。 データについては災害リスクだけでなく、ランサムウェア感染でデータがロックされてしまうリスクも考えられます。 まあ、ローカルPCの中でバックアッ

                                                  Backblazeでクラウドバックアップを始めた
                                                • Weird Lexical Syntax

                                                  I just learned 42 programming languages this month to build a new syntax highlighter for llamafile. I feel like I'm up to my eyeballs in programming languages right now. Now that it's halloween, I thought I'd share some of the spookiest most surprising syntax I've seen. The languages I decided to support are Ada, Assembly, BASIC, C, C#, C++, COBOL, CSS, D, FORTH, FORTRAN, Go, Haskell, HTML, Java,

                                                    Weird Lexical Syntax
                                                  • How To Optimize Performance In Vue Apps | DebugBear

                                                    Vue is built to handle most typical use cases efficiently without requiring a lot of manual tweaking. But sometimes, you’ll hit situations that need a bit more fine-tuning. In this article, we’ll go over the key things to keep an eye on for optimizing performance in a Vue app. Page Load Performance vs. Update Performance​ When talking about optimizing performance in Vue apps, there are two main as

                                                      How To Optimize Performance In Vue Apps | DebugBear
                                                    • 鳥が立ったまま眠れるのはなぜか?

                                                      鳥類はヒトと同じく二足歩行の生物ですが、鳥類には人間と異なり「安定した姿勢で立ったまま眠る」という能力が備わっています。フランス国立科学研究センターの研究チームが鳥類の身体構造を分析した結果、鳥類の体は「テンセグリティ構造」を形成しており、エネルギーを使うことなく安定した姿勢を保てることが明らかになりました。 An upright life, the postural stability of birds: a tensegrity system | Journal of The Royal Society Interface https://royalsocietypublishing.org/doi/full/10.1098/rsif.2023.0433 Why birds do not fall while sleeping | CNRS News https://news.cnrs

                                                        鳥が立ったまま眠れるのはなぜか?
                                                      • I Swapped My To-Do List for This Method, and My Productivity Skyrocketed

                                                        To-do lists are a great way to stay on top of tasks, but sometimes, they can become overwhelming and cause more stress than productivity. Interstitial journaling is an effective productivity method that overcomes some of the limitations of traditional to-do lists while improving productivity. What Is Interstitial Journaling and Why Is it Effective? Interstitial journaling is a simple yet effective

                                                          I Swapped My To-Do List for This Method, and My Productivity Skyrocketed
                                                        • Kaigi on Rails 2024 - ruby-jp

                                                          https://kaigionrails.org/2024 オンラインとオフラインのハイブリッド 日程:2024.10.25 (Fri.) - 26 (Sat.) 会場:有明セントラルタワーホール https://kaigionrails.org/2024/events/ OGP用 直前イベント 10/10(木) 19:30〜21:45 【オフライン開催】Proposals on Rails 2024 - connpass 10/15(火) 19:00〜20:30 Kaigi on Rails 2024 タイムテーブル解説会 - connpass 10/17(木) 19:30〜21:30 Reject on Rails 2024 - connpass 10/18(金) 18:00〜21:00 【大阪オフライン開催】Kaigi on Rails 2024 非公式予習会 - connpass

                                                            Kaigi on Rails 2024 - ruby-jp
                                                          • gccrs: An alternative compiler for Rust | Rust Blog

                                                            This is a guest post from the gccrs project, at the invitation of the Rust Project, to clarify the relationship with the Rust Project and the opportunities for collaboration. gccrs is a work-in-progress alternative compiler for Rust being developed as part of the GCC project. GCC is a collection of compilers for various programming languages that all share a common compilation framework. You may h

                                                              gccrs: An alternative compiler for Rust | Rust Blog
                                                            • 今、始める、第一歩。 / Your first step

                                                              RubyのWebアプリケーションを50倍速くする方法 / How to Make a Ruby Web Application 50 Times Faster

                                                                今、始める、第一歩。 / Your first step
                                                              • Notice of breaking changes for GitHub Actions · GitHub Changelog

                                                                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

                                                                  Notice of breaking changes for GitHub Actions · GitHub Changelog
                                                                • The Open Source AI Definition – 1.0

                                                                  Endorse the Open Source AI Definition: have your organization appended to the list of supporters of version 1.0 version 1.0 See FAQs See list of endorsements Endorse the OSAID Preamble Why we need Open Source Artificial Intelligence (AI) Open Source has demonstrated that massive benefits accrue to everyone after removing the barriers to learning, using, sharing and improving software systems. Thes

                                                                  • Announcing Toasty, an async ORM for Rust | Tokio - An asynchronous Rust runtime

                                                                    Announcing Toasty, an async ORM for RustOctober 23, 2024 Toasty is an asynchronous ORM for the Rust programming language that prioritizes ease of use. Toasty supports SQL and NoSQL databases, including DynamoDB and Cassandra (soon). Toasty is currently in the early stages of development and should be considered a "preview" (not ready for real-world usage yet). It also isn't released on crates.io y

                                                                    • テクノロジー規制を正しくデザインするには | p2ptk[.]org

                                                                      以下の文章は、コリイ・ドクトロウの「How to design a tech regulation」という記事を翻訳したものである。 Pluralistic テクノロジー規制は不十分だと感じているだろうか? その感覚は正しい。テクノロジーが世界にもたらす害悪の多くは避けられたはずのものだ。もちろん過失に過ぎないものもあるが、株主の価値と引き換えに社会にもたらされた害悪もある。 良いテック規制の策定は、確かに難しい。しかし、それは「テクノロジーの進化が速すぎて規制が追いつかない」からでも、「政策立案者がテクノロジーについて無知だ」からでもない。実際、政策立案者は急速に変化する分野にも対応できることがある(2020年半ばのマスク着用やソーシャルディスタンスのルールが世界中で迅速に採用されたことを思い出してほしい)。また、高度に専門的な知識を要する分野でも、一般には適切な政策がとられている。例え

                                                                        テクノロジー規制を正しくデザインするには | p2ptk[.]org
                                                                      • The Abe Assassination, the Unification Church, and Local Media: A Case Study of Journalism in Toyama Prefecture - The Asia-Pacific Journal: Japan Focus

                                                                        Abstract: This article chronicles how two commercial TV stations in Toyama Prefecture exposed deep links between politicians and the Unification Church. It discusses how a local community of investigative journalists with close ties to adherents and politicians revealed ways the church and lawmakers cooperated on electioneering and policymaking, and it analyzes how their exposés were taken up in n

                                                                          The Abe Assassination, the Unification Church, and Local Media: A Case Study of Journalism in Toyama Prefecture - The Asia-Pacific Journal: Japan Focus
                                                                        • Go Turns 15 - The Go Programming Language

                                                                          The Go Blog Go Turns 15 Austin Clements, for the Go team 11 November 2024 Thanks to Renee French for drawing and animating the gopher doing the “15 puzzle”. Happy birthday, Go! On Sunday, we celebrated the 15th anniversary of the Go open source release! So much has changed since Go’s 10 year anniversary, both in Go and in the world. In other ways, so much has stayed the same: Go remains committed

                                                                            Go Turns 15 - The Go Programming Language
                                                                          • Database Remote-Copy Tool For SQLite

                                                                            1. Overview The following command causes REPLICA to become a copy of ORIGIN: Use the --help or -? flag to see the complete list of options. Option flags may appear before, after, or between the ORIGIN and REPLICA arguments. Add the -v option to see more output, in a format similar to "rsync". 2. Features One or the other of ORIGIN or REPLICA may be of the form "USER@HOST:PATH". The other is just a

                                                                            • Rails 8: strong parametersの新しいparams.expectの使い方(翻訳)|TechRacho by BPS株式会社

                                                                              概要 原著者の許諾を得て翻訳・公開いたします。 英語記事: How to: Rails params.expect - Martin Emde 原文公開日: 2024/10/22 原著者: Martin Emde -- RubyGems.orgとbundlerのメンテナーです。 日本語タイトルは内容に即したものにしました。 参考: 4.6 Strong Parameters -- Action Controller の概要 - Railsガイド 参考: Rails 8.0 API expect -- ActionController::Parameters -- APIドキュメントでも、従来のpermitとrequireよりexpectが望ましいと書かれています。 参考: 8.0 Changelogのexpect -- ここにも詳しく書かれています。 Cloud City Developm

                                                                                Rails 8: strong parametersの新しいparams.expectの使い方(翻訳)|TechRacho by BPS株式会社
                                                                              • Announcing v3 | Chakra UI

                                                                                Today, we're excited to announce the long-awaited release of Chakra UI v3. The feedback for Chakra v3 has been incredible and we appreciate those who took the time to test and catch bugs. Chakra v3 is a complete rewrite of Chakra to enhance it's performance, speed and consistency across components. We've also added over 25 new components, and that's just the beginning. Credits Before giving you a

                                                                                  Announcing v3 | Chakra UI
                                                                                • ポイント交換サイトのメリットとは?内容とお得な利用方法 | ポイ活、ポイントサイト経由、ウエル活、利用した方が

                                                                                  タグ キャンペーン美容金額不明ワインWAON POINT家電2011産ワイン2020年産ワインヴィンテージ不明ドコモ70点台ワインフランス産ワインブログセールアメリカ産ワインリクルート90点台ワインイタリア産ワインマンガ各種攻略産地不明ワインnanacoチリ産ワインマイル失敗したものネット回線Softbank2014産ワインショッピング買ったものアンケートクーポン2013産ワインオーストラリア産ワイン新規入会旅行お花2016年産ワイン2018年産ワイン動画サービス80点台ワインプレゼントスペイン産ワイン2010年産ワイン食事60点台ワイン楽天ポイント日本産ワインクレジットカード比較してみた59点以下ワインPontaポイント2017年産ワインファッション1000円以下ワイン59点未満dポイントNV(ノンヴィンテージワイン)2019年産ワイン5000~9999円金融Vポイント2009年産ワイン