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

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

アプリで開く

はてなブックマーク

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

はてなブックマーク

トップへ戻る

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

    猛暑に注意を

『Error Monitoring, Error Tracking, and Notification for Ruby on Rails 2 and 3 ...』

  • 人気
  • 新着
  • すべて
  • Shipping Rails logs with Kamal and Vector

    5 users

    www.honeybadger.io

    Shipping Rails logs with Kamal and Vector By Roel Bondoc on Apr 23, 2024 The ability to record and see everything happening across your web applications is essential when building resilient and highly available systems. All of your events—from application performance metrics to errors to user analytics—contain data that could be useful to you and your team. When you have a central place to access

    • テクノロジー
    • 2024/04/23 12:04
    • Regular expressions in JavaScript

      12 users

      www.honeybadger.io

      Regular expressions in JavaScript By Adebayo Adams on May 11, 2023 The string is arguably the most essential data type in programming; every programming language and software in the world uses strings in one way or another. It enables humans to easily communicate with sophisticated programs and machines. One thing that would help you a lot as a programmer is understanding how to use and manipulate

      • テクノロジー
      • 2023/05/26 10:50
      • 正規表現
      • javascript
      • article
      • あとで読む
      • Everything You Need to Know About JavaScript Import Maps

        8 users

        www.honeybadger.io

        Everything You Need to Know About JavaScript Import Maps By Ayooluwa Isaiah on Jul 25, 2022 When ES modules was first introduced in ECMAScript 2015 as a way to standardize module systems in JavaScript, it was implemented by mandating the specification of a relative or absolute path in import statements. import dayjs from "https://cdn.skypack.dev/dayjs@1.10.7"; // ES modules console.log(dayjs("2019

        • テクノロジー
        • 2022/07/30 09:46
        • javascript
        • ブラウザ
        • browser
        • article
        • Minitest vs. RSpec in Rails

          3 users

          www.honeybadger.io

          Rails is a framework that comes with nearly everything included, focusing on conventions over configurations. Minitest is one of these conventions. Minitest is small and fast, and it provides many assertions to make tests readable and clean. However, many alternatives to Minitest are available. The most popular one is RSpec. RSpec has the same goals as Minitest but focuses on readable specificatio

          • テクノロジー
          • 2022/07/29 06:43
          • rails
          • How to Avoid Race Conditions in Rails

            3 users

            www.honeybadger.io

            Race conditions are hard to debug—especially when you don't know it's a race condition! This article looks at some common race conditions and the best solutions for handling each one. When two users read and update a database record at the same time, you might run into critical problems that are undesirable. Let's say that for some reason, a customer clicks the pay button on the checkout page of a

            • テクノロジー
            • 2022/05/06 01:25
            • rails
            • A Comprehensive Guide To Error Handling In Node.js

              22 users

              www.honeybadger.io

              A Comprehensive Guide To Error Handling In Node.js By Ayooluwa Isaiah on Nov 1, 2021 If you've been writing anything more than "Hello world" programs, you are probably familiar with the concept of errors in programming. They are mistakes in your code, often referred to as "bugs", that cause a program to fail or behave unexpectedly. Unlike some languages, such as Go and Rust, where you are forced t

              • テクノロジー
              • 2021/11/09 11:15
              • error
              • node.js
              • あとで読む
              • js
              • article
              • Which is fastest? ERB vs. HAML vs. Slim

                3 users

                www.honeybadger.io

                Which is fastest? ERB vs. HAML vs. Slim By Diogo Souza on Mar 29, 2021 In this article, we’ll test and analyze the performance of three most popular Ruby templating engines: ERB (the default one), HAML, and SLIM. Benchmarking is the practice of comparing business processes and performance metrics to industry bests and best practices from other companies. Meanwhile, load testing is the process of p

                • テクノロジー
                • 2021/04/03 02:41
                • erb
                • haml
                • performance
                • ruby
                • SOLID Design Principles in Ruby

                  3 users

                  www.honeybadger.io

                  SOLID Design Principles in Ruby By Milap Neupane on Mar 15, 2021 All software applications change over time. Changes made to software can cause cascading issues that are unexpected. However, change is unavoidable, as we cannot build software that does not change. The software requirements continue changing as the software grows. What we can do is design software in such a way that it is resilient

                  • テクノロジー
                  • 2021/03/22 11:59
                  • Currency Calculations in Ruby

                    3 users

                    www.honeybadger.io

                    Money, regardless of the currency it is in, seems like a floating-point number. But it's a mistake to use floats for currency. Float numbers (hence, float objects) are, by definition, inexact real numbers that make use of the double-precision floating-point representation characteristic of the native architecture. Inexact numbers make accountants unhappy. In this article, you’ll be guided through

                    • テクノロジー
                    • 2020/10/03 09:46
                    • ruby
                    • How We Migrated To Turbolinks Without Breaking Javascript

                      3 users

                      www.honeybadger.io

                      How We Migrated To Turbolinks Without Breaking Javascript By Starr Horne on Jul 17, 2019 It's 2019, so we decided it was time to take a more modern approach to the Honeybadger front end. We implemented Turbolinks! This is only the first step on an ambitious roadmap. In 2025 we plan to migrate to Angular 1, and we'll finish out the decade on React unless we run into any roadblocks! But let's get re

                      • テクノロジー
                      • 2019/07/20 04:16
                      • Getting Started with AngularJS and Rails 4

                        23 users

                        www.honeybadger.io

                        Getting Started with AngularJS and Rails 4 By Starr Horne on Dec 11, 2013 Getting started with AngularJS isn't hard. The documentation is some of the best out there and it's tutorials are simple enough. But things get tricky when you start combining technologies. If you're using CoffeeScript instead of straight JavaScript, you know have preprocessing concerns to take into account - as well as the

                        • テクノロジー
                        • 2013/12/13 07:17
                        • angular.js
                        • AngularJS
                        • rails
                        • Ruby on Rails
                        • tutorial
                        • development
                        • *あとで
                        • Zero downtime migrations: 500 million rows

                          3 users

                          www.honeybadger.io

                          Data makes things hard In this article I'm going to go over some of the tricks we use to handle large data migrations at Honeybadger. Check out the video for a quick overview. When you have a lot of data, your life gets harder. When you only have 1000 rows, you can make DB-wide changes in IRB. With millions of rows, it's not that easy. If you don't believe me, just try it. RAM will spike. Your a

                          • 学び
                          • 2013/08/16 16:04
                          • rails
                          • db
                          • database
                          • The case against using RubyGems.org in production

                            5 users

                            www.honeybadger.io

                            A screed + a screencast showing you how to host your own gems Let’s get this out of the way: gems are awesome, and RubyGems.org is a great service. ...But lately I’ve been feeling queasy every time I add a new gem to an app. The more I think about it, the more it seems that the way we use gems isn’t just flawed. It’s a disaster waiting to happen. Social engineering FTW A few days ago at RubyNati

                            • 世の中
                            • 2013/06/29 08:25
                            • gem
                            • security
                            • Error Monitoring, Error Tracking, and Notification for Ruby on Rails 2 and 3 - Honeybadger

                              55 users

                              www.honeybadger.io

                              Ship better software faster with full-stack application monitoring that works like you think it should.

                              • テクノロジー
                              • 2012/10/06 00:49
                              • monitoring
                              • 監視
                              • debug
                              • rails
                              • error
                              • notification
                              • service
                              • ログ
                              • Tools

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

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

                              『Error Monitoring, Error Tracking, and Notification for Ruby on Rails 2 and 3 ...』の新着エントリーを見る

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

                              j次のブックマーク

                              k前のブックマーク

                              lあとで読む

                              eコメント一覧を開く

                              oページを開く

                              はてなブックマーク

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

                              公式Twitter

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

                              はてなのサービス

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