はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    WWDC25

『Homepage』

  • 人気
  • 新着
  • すべて
  • 7 Great Ruby Gems Most People Haven’t Heard About

    4 users

    www.rubyguides.com

    What are the best Ruby gems that you can use in your Rails projects? That’s what you’ll discover in this article! I’m going to give you 7 gems, but not the same old gems that you’ve seen a million times, I’m going to be sharing with you some gems that are very helpful, but little-known. But before we do that… A warning. I’ve seen developers that pull in a gem for just about everything. If it remot

    • テクノロジー
    • 2019/09/20 06:40
    • How to Use The VCR Gem to Improve Your Testing Suite

      3 users

      www.rubyguides.com

      If your Ruby application uses any kind of external API then you probably have faced the problem of slow tests & API rate limits. What is the solution? You could manually stub the HTTP methods from your client library, and return some pre-determined responses. But that’s a lot of work & ugly code! A better solution is to use a powerful combination of gems like Webmock + VCR. WebMock intercepts HTTP

      • テクノロジー
      • 2018/12/20 17:43
      • rails
      • 9 New Features in Ruby 2.6

        37 users

        www.rubyguides.com

        A new version of Ruby is coming with new features & performance improvements. Would you like to keep up with the changes? Let’s have a look! Endless Ranges Ruby 2.5 & older versions already support one form of endless range (with Float::INFINITY), but Ruby 2.6 takes this to the next level. The new endless range looks like this: (1..) This is different from a regular range because it doesn’t have a

        • テクノロジー
        • 2018/11/15 18:53
        • ruby
        • あとで読む
        • How To Delegate Methods in Ruby & Ruby on Rails

          3 users

          www.rubyguides.com

          This article is about method delegation in Ruby. You’re going to learn how to use the delegate method, the Forwardable module & the SimpleDelegator class. Why do we need delegation? In Object-Oriented Programming, there are two ways for classes to work together. They are: Inheritance Composition With inheritance, you create class hierarchies, where a parent class shares methods, constants & instan

          • テクノロジー
          • 2018/10/04 07:55
          • Performance Improvements in Ruby 2.5

            7 users

            www.rubyguides.com

            New Ruby versions keep improving & Ruby 2.5 is no different. Ruby 2.5 introduces these optimizations: String interpolation will be around 72% faster when a large string is created String#prepend will be around 42% faster if only one argument is given Enumerable#sort_by, Enumerable#min_by & Enumerable#max_by will be about 50% faster Let's see some benchmarks! String Interpolation Performance I took

            • テクノロジー
            • 2017/11/03 02:41
            • ruby
            • 7 Little-Known Ruby Methods To Help You Write Better Code

              10 users

              www.rubyguides.com

              Did you know that using the right Ruby method can save you a lot of work? The more methods you are familiar with the faster you can produce working code & the better this code will be, both in performance & quality. That’s why today I want to introduce 7 interesting methods to you that you may not have seen before. Integer#digits Method (Ruby 2.4) This is a new method introduced in Ruby 2.4 & it’s

              • テクノロジー
              • 2017/10/11 11:50
              • ruby
              • tips

              このページはまだ
              ブックマークされていません

              このページを最初にブックマークしてみませんか?

              『Homepage』の新着エントリーを見る

              キーボードショートカット一覧

              j次のブックマーク

              k前のブックマーク

              lあとで読む

              eコメント一覧を開く

              oページを開く

              はてなブックマーク

              • 総合
              • 一般
              • 世の中
              • 政治と経済
              • 暮らし
              • 学び
              • テクノロジー
              • エンタメ
              • アニメとゲーム
              • おもしろ
              • アプリ・拡張機能
              • 開発ブログ
              • ヘルプ
              • お問い合わせ
              • ガイドライン
              • 利用規約
              • プライバシーポリシー
              • 利用者情報の外部送信について
              • ガイドライン
              • 利用規約
              • プライバシーポリシー
              • 利用者情報の外部送信について

              公式Twitter

              • 公式アカウント
              • ホットエントリー

              はてなのサービス

              • はてなブログ
              • はてなブログPro
              • 人力検索はてな
              • はてなブログ タグ
              • はてなニュース
              • ソレドコ
              • App Storeからダウンロード
              • Google Playで手に入れよう
              Copyright © 2005-2025 Hatena. All Rights Reserved.
              設定を変更しましたx