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

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

アプリで開く

はてなブックマーク

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

はてなブックマーク

トップへ戻る

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

    WWDC25

『infinum.com』

  • 人気
  • 新着
  • すべて
  • Panda CSS – CSS-in-JS without Runtime Overhead

    4 users

    infinum.com

    CSS-in-JS concept has a bad reputation because of its bad runtime performance. This is about to change. With Panda CSS, you can have the best of both worlds, performance and nice syntax – and we have the code examples and runnable projects to prove it. Update note, 20 June 2023: This article has been updated based on the official documentation. For the latest information, please visit https://pand

    • テクノロジー
    • 2023/04/27 06:46
    • あとで読む
    • Combine’s What Makes SwiftUI Really Shine

      3 users

      infinum.com

      It’s time to start catching up with Combine! If you’ve been with me and remember the initial breakdown using SwiftUI, here’s what I wanted to do: Make a ListMake a Row for that ListCreate a view model We still haven’t decided on what’s the best approach to SwiftUI’s declarative way of building UI architecture-wise, but it seems to be leaning heavily towards MVVM, or at least some variant of it. Si

      • テクノロジー
      • 2019/12/15 20:49
      • iOS
      • あとで読む
      • Humming Along Analyzing RubyGems Stats for 2017

        3 users

        infinum.com

        2017 was a stable year for the Ruby ecosystem. There weren’t any new libraries that exploded in popularity, but work on existing gems hummed along. As for the language itself, we got Ruby 2.5 which continued with performance optimizations and incremental changes which make our lives easier. These changes are in line with Ruby 3×3 goals which were announced back in 2016, and there are future enhanc

        • テクノロジー
        • 2018/02/16 16:02
        • ruby
        • Things I Wish ActiveRecord Had After Using Ecto

          3 users

          infinum.com

          A few years ago, I wrote an article about moving from Django to Rails. As I said there, I don’t find it too hard moving from one programming language to another, as long as you have good knowledge on concepts they all share. Each language, of course, brings something on its own. Last year, I decided to try something new. As a Ruby developer, Elixir proved to be a logical choice, and I have to admi

          • テクノロジー
          • 2018/01/17 16:43
          • Superfast CSV Imports Using PostgreSQL's COPY Command

            3 users

            infinum.com

            Dealing with various sources of data in web applications requires us to create services that will extract information from CSV, Excel, and other file types. In that case, it’s best to use some existing libraries, or if your backend is on Rails, use gems. There are many gems with very cool features like CSVImporter and Roo. But you can also use plain Ruby CSV. Either way, if those are small CSV fil

            • テクノロジー
            • 2017/09/09 15:36
            • Multiline Strings in Ruby 2.3 the Squiggly Heredoc

              3 users

              infinum.com

              Have you ever had to write a nicely indented multiline string in Ruby? If you have, you already know that Ruby doesn’t have a nice out-of-the-box solution for this problem. At least it hadn’t until a week ago when the squiggly heredoc was introduced… To be honest, I actually rarely need to use multiline strings, but when I do, it really gets on my nerves that Ruby lacks an upfront way to do them.

              • テクノロジー
              • 2017/03/06 11:32
              • Is Ruby Dead? Hell No! Analyzing RubyGems Stats for 2016

                10 users

                infinum.com

                Another year is behind us and many things have changed in the web development world – the number of JavaScript frameworks continues to grow, new programming languages are being developed faster than ever and people are still talking about the death of Ruby and Rails. We did a little research on the use of Ruby gems and created some stats for 2016 which prove otherwise. Sources At the beginning of

                • テクノロジー
                • 2017/01/18 09:53
                • gem
                • ruby
                • rails
                • あとで読む
                • Trends in Ruby Analyzing Rubygems Stats for 2015

                  15 users

                  infinum.com

                  2015 is behind us and the market is flooded with new languages and frameworks. A lot of them seem promising, and in the same time a lot of developers are talking about the death of Ruby and Rails. Rubygems is the official package manager for Ruby and we decided to crunch up some stats for 2015 and see what’s what. The approach For analyzing the Rubygems database we got ahold of the database dumps.

                  • テクノロジー
                  • 2016/01/20 18:40
                  • Rails
                  • Ruby
                  • あとで読む
                  • Top 10 iOS Swift Libraries Every iOS Developer Should Know About

                    6 users

                    infinum.com

                    Swift is gaining popularity each day. If you’re starting a new project, chances are that you’ll decide to write it in Swift. To make the transition easier for you and save you the time you would spend writing certain components for your app, here are 10 libraries that we think every iOS developer should know about! Just like we mentioned in our Top 5 iOS libraries every iOS developer should know a

                    • テクノロジー
                    • 2016/01/06 23:13
                    • swift
                    • iOS
                    • library
                    • Best Rails Image Uploader Paperclip vs. Carrierwave vs. Refile

                      20 users

                      infinum.com

                      Everybody that has ever implemented file upload by hand in a Rails app knows that it’s no cakewalk, not to mention a major security risk. That’s why we use gems to handle file upload for us! But often it’s hard to decide which one to choose for your project. There are three major file uploader gems in the Rails ecosystem, namely, Paperclip, CarrierWave and Refile. These gems upload and catalog fil

                      • テクノロジー
                      • 2015/09/10 00:52
                      • rails
                      • ruby
                      • image
                      • Best Ruby On Rails Refactoring Talks

                        4 users

                        infinum.com

                        Refactoring is the craft of improving the design of an existing code without changing its external behavior. Just like with everything else, you get better at it with practice and continuous learning. Check out a couple of talks given by some of the best Ruby developers that point out common mistakes and how to deal with them. I’ve curated five of my favorite talks on code refactoring taking into

                        • テクノロジー
                        • 2015/07/28 08:45
                        • Rails
                        • Progress bar in Rails — Infinum

                          6 users

                          infinum.com

                          Ever needed a progress bar for some long-running task in your Rails application? You searched Google and couldn’t find anything that easily integrates with Rails? Well, we created a progress_job gem that helps with that problem. Progress_job is a gem that builds upon delayed_job to give you a simple progress bar you can use in your views. Create a class with your long-running task inside, update t

                          • テクノロジー
                          • 2015/04/22 19:35
                          • rails
                          • Run Faster Ruby on Rails Tests

                            20 users

                            infinum.com

                            Doing software development with a Continuous Integration process involves a lot of automated testing. Doing tests consumes precious time so we decided to do some tinkering to make our test suite load and execute faster. As your test suite grows, it takes longer to run the tests, and soon you have a problem because your test suite is running for over 10 minutes. Now you have two options: reduce the

                            • テクノロジー
                            • 2015/03/31 22:47
                            • Rails
                            • rspec
                            • Ruby on Rails
                            • Ruby
                            • test
                            • あとで読む
                            • Top 8 Tools for Ruby on Rails Code Optimization and Cleanup

                              68 users

                              infinum.com

                              Keeping your code clean and organized while developing a large Rails application can be quite a challenge, even for an experienced developer. Fortunately, there is a whole category of gems that make this job much easier. For most people, dead/inefficient code will build up over time. Others will find themselves in a similar predicament when they take over someone else’s project. Actually, my own e

                              • テクノロジー
                              • 2014/10/07 10:23
                              • rails
                              • ruby
                              • refactoring
                              • tools
                              • Top 5 Android Libraries Every Android Developer Should Know About [2014]

                                8 users

                                infinum.com

                                There’s an updated post about this, check out top 10 Android libraries every Android developer should know about. In the last year or so, Android development has really come of age. Android Studio with Gradle at its core is a dash of light after Eclipse. Besides that, there are quite a few open source libraries that we use on a daily basis. Here is a selection of five of our favorite ones and a li

                                • テクノロジー
                                • 2014/06/12 21:09
                                • Retrofit
                                • android
                                • Java
                                • Faster Web Application Deployments Using Mina Instead of Capistrano

                                  3 users

                                  infinum.com

                                  Every web application needs to be deployed to a server at one point, and there are several ways to do that. If you are running Rails, a VPS/dedicated server, what’s the best way to do that? If you’ve never operated a VPS or dedicated server and have used a PaaS solution like Heroku or AppFog, you probably never had to bother with deploying your application. This is because the PaaS did all the hea

                                  • テクノロジー
                                  • 2014/03/28 23:36
                                  • Is Your Android Emulator Just Too Slow?

                                    16 users

                                    infinum.com

                                    Testing on multiple mobile devices is costly, time consuming and the default Android emulator is notoriously slow. So, what should we do? That’s easy – start using a properly fast Android emulator. When developing Android applications, you have to keep in mind all the different Android OS versions and various screen sizes and resolutions. The main objective before releasing an application is to fi

                                    • テクノロジー
                                    • 2013/08/06 01:47
                                    • android
                                    • プログラミング
                                    • *あとで

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

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

                                    『infinum.com』の新着エントリーを見る

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

                                    j次のブックマーク

                                    k前のブックマーク

                                    lあとで読む

                                    eコメント一覧を開く

                                    oページを開く

                                    はてなブックマーク

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

                                    公式Twitter

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

                                    はてなのサービス

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