並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 12 件 / 12件

新着順 人気順

Rubyの検索結果1 - 12 件 / 12件

  • 「人とAIの“模倣”は本質的に同じ」Rubyの父・まつもとゆきひろに聞く、技術の進化と“模倣”の関係 レバテックラボ(レバテックLAB)

    「人とAIの“模倣”は本質的に同じ」Rubyの父・まつもとゆきひろに聞く、技術の進化と“模倣”の関係 2024年5月14日 一般財団法人Rubyアソシエーション 理事長/Ruby開発者 まつもと ゆきひろ(松本行弘) プログラミング言語Rubyの生みの親。株式会社ネットワーク応用通信研究所フェロー、一般財団法人Rubyアソシエーション理事長、NPO団体軽量Rubyフォーラム理事長などを務める。島根県松江市名誉市民。 近年、大量のデータから文章や画像を生み出す生成AIに注目が集まる中、改めて「模倣」が果たす役割を問い直そうという動きが広がっているように見受けられます。実際に、人間はこれまで、既存の技術を「模倣」しながら新しい技術をつくりだし、その繰り返しによって発展を遂げてきました。 世界中のプログラマーから支持を集める「Ruby」も、他のプログラミング言語のさまざまな要素を採り入れて誕生し

      「人とAIの“模倣”は本質的に同じ」Rubyの父・まつもとゆきひろに聞く、技術の進化と“模倣”の関係 レバテックラボ(レバテックLAB)
    • そろそろ理解する includes / Understanding includes

      RubyKaigi 2024 直前LT祭の発表スライドです。 https://timeedev.connpass.com/event/315946/ スライド内の includes クイズを手元で動かすためのスクリプト: https://gist.github.com/euglena1215/fb6cd1235278491dc206b9bd6feaf71e

        そろそろ理解する includes / Understanding includes
      • RubyKaigiに初めて参加する方へ届けたい、2回目参加者が送る Tips と心構え - MNTSQ Techブログ

        こんにちは。 すべての合意をフェアにしたいMNTSQ(もんてすきゅー)のJessie (@Jessica_nao_) です。 仕事では、Ruby on Rails を"利用"させていただき、法務業務に利用されるSaaS Webアプリの開発を行っています。 RubyKaigi2024が間も無く開催されますね! 土日から沖縄入りされている方の投稿がTwitterに流れてきており、既に私の気持ちもかなり高まってきています✈️ この記事では、「今回RubyKaigi に初めて参加するぞ!」という方に向けて、2023年に初めてRubyKaigiに参加した私が、知っておくと嬉しいと思うTipsやRubyKaigiのあれこれをいくつか紹介していきます📝 なお、公式アナウンスは非常に重要です。オンサイト参加の方で、Onsite Information - RubyKaigi 2024 をまだご覧になって

          RubyKaigiに初めて参加する方へ届けたい、2回目参加者が送る Tips と心構え - MNTSQ Techブログ
        • 登壇者と攻略するRubyKaigi 2024 開催レポート - inSmartBank

          こんにちは!スマートバンクのサーバーサイドエンジニア部です!! 5月8日にウォンテッドリー株式会社と株式会社スマートバンクで【初心者歓迎】登壇者と攻略するRubyKaigi 2024【プロも歓迎】を開催させていただきました。 いよいよ来週に迫ったRubyKaigi 2024に向けて、スマートバンク、ウォンテッドリーの登壇メンバーから「自分のトークのここを聞いて欲しい!」「トークを100倍楽しむ予備知識」を座談会形式で発表してもらったり、スポンサー企業と参加者の方に「RubyKaigiの楽しみかた」を発表していただきました 💎 このブログでは当日話された内容を紹介します! 登壇者トーク 司会兼RubyKaigi LT登壇者のFohteさん、RubyKaigi登壇者のqnighyさん、 gedorinkuさん、ohbaryeさん、osyoyuさんが座談会形式でRubyKaigiについてお話し

            登壇者と攻略するRubyKaigi 2024 開催レポート - inSmartBank
          • Yes, Ruby is fast, but…

            John Hawthorn wrote a nice post discussing a recent tool to incorporate Crystal into your Ruby app. While JH brings an important point, it overlooks certain aspects that are worth consideration. I'll discuss Crystal's real performance and benefits, highlighting why such Ruby/Crystal integration is an indispensable tool to have on the bench. This is also a structured presentation of some comments m

              Yes, Ruby is fast, but…
            • Rubyのメモ化(memoization)を理解する(翻訳)|TechRacho by BPS株式会社

              概要 原著者の許諾を得て翻訳・公開いたします。 英語記事: Understanding Ruby - Memoization - DEV Community 原文公開日: 2023/10/01 原文更新日: 2024/04/29 原著者: Brandon Weaver 🔗 はじめに メモ化はRubyで広く使われている手法ですが、残念ながら、メモ化を効果的に使いこなすためには、注意しなければならない落とし穴がいくつか潜んでいます。本記事では、メソッドで計算した値をメモ化する、つまり記憶するときに注意する必要のある事項について手短に紹介します。 🔗 本記事の難易度 基礎レベル 前提知識はほとんど必要ありません。本記事はRubyプログラマー向けの基本的な知識を中心としています。 🔗 メモ化とは そもそもメモ化とはどういう意味なのでしょうか? 要するに、そのメソッドの実行コストが高い(=実行

                Rubyのメモ化(memoization)を理解する(翻訳)|TechRacho by BPS株式会社
              • Revisiting the Hotwire Landscape after Turbo 8 @ RailsConf 2024, Detroit

                Hotwire has significantly altered the landscape of building interactive web applications with Ruby on Rails, marking a pivotal evolution toward seamless Full-Stack development. With the release of Turbo 8, the ecosystem has gained new momentum, influencing how developers approach application design and interaction. This session, led by Marco, a core maintainer of Stimulus, StimulusReflex, and Cabl

                  Revisiting the Hotwire Landscape after Turbo 8 @ RailsConf 2024, Detroit
                • Building a Twitter clone with Ruby on Rails|CoderDojo名護

                  This is a session conducted by Jeremie Gillet held at CoderDojo at OIST on Sunday, April 28, 2024 ◾️Installing Rails on windowsInstall Ruby on Rails following these instruction but you can skip the “Configuring Git”, “Setting Up PostgreSQL” and “Final Steps” sections. This can sometimes be complicated, especially on Windows. Install and open VSCode Open a terminal (Menu > Terminal > New Terminal)

                    Building a Twitter clone with Ruby on Rails|CoderDojo名護
                  • ふつうのWebサービス開発者がRubyKaigiを楽しむためのRubyの知識

                    https://smarthr.connpass.com/event/315394/

                      ふつうのWebサービス開発者がRubyKaigiを楽しむためのRubyの知識
                    • HTML Ruby Markup Extensions Working Draft Published

                      The HTML Working Group has published a Working Draft of HTML Ruby Markup Extensions. Ruby, a form of interlinear annotation, are short runs of text alongside the base text. They are typically used in East Asian documents to indicate pronunciation or to provide a short annotation. This specification revises and extends the markup model established by HTML to express ruby.

                        HTML Ruby Markup Extensions Working Draft Published
                      • Rails: マルチテナントでSidekiqジョブを公平に優先順位付けするsidekiq-fair-tenant gem(翻訳)|TechRacho by BPS株式会社

                        概要 元サイトの許諾を得て翻訳・公開いたします。 英語記事: “Fair” multi-tenant prioritization of Sidekiq jobs—and our gem for it!—Martian Chronicles, Evil Martians’ team blog 原文公開日: 2024/02/14 原著者: Andrey Novikov(バックエンドエンジニア)、Travis Turner(技術記事編集者) サイト: Evil Martians -- ニューヨークやロシアを中心に拠点を構えるRuby on Rails開発会社です。良質のブログ記事を多数公開し、多くのgemのスポンサーでもあります。 日本語ブログ: 合同会社イービルマーシャンズ - Qiita 日本語タイトルは内容に即したものにしました。 はじめに 多くのバックエンドアプリケーションのマルチテナ

                          Rails: マルチテナントでSidekiqジョブを公平に優先順位付けするsidekiq-fair-tenant gem(翻訳)|TechRacho by BPS株式会社
                        • Exploring Reline: Enhancing Command Line Usability

                          Reline is a command line editor A command line editor operates on terminal emulators, manipulating user input While not a common term, 'command line editor' is used here due to the lack of a generic term for software like GNU Readline. Examples: GNU Readline, libedit, Reline Reline has GNU Readline and editline compatibility 13

                            Exploring Reline: Enhancing Command Line Usability
                          1