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

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

アプリで開く

はてなブックマーク

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

はてなブックマーク

トップへ戻る

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

    プライムデーセール

『IT Hare on Soft.ware』

  • 人気
  • 新着
  • すべて
  • Testing Memory Allocators: ptmalloc2 vs tcmalloc vs hoard vs jemalloc While Trying to Simulate Real-World Loads - IT Hare on Soft.ware

    7 users

    ithare.com

    Accessing Allocated Memory As noted above, we DID want to access allocated memory; for our test, we did it as writing the whole block right after the allocation (using memset()) – and reading it right before deallocation. It is a bare minimum of the accesses we could imagine for the real-world (hey, if we did want to allocate, probably we did want to write something there?). Compensation Mechanism

    • テクノロジー
    • 2018/07/05 13:35
    • Infographics: Operation Costs in CPU Clock Cycles - IT Hare on Soft.ware

      35 users

      ithare.com

      Another way of approaching the same question is to say that “hey, I’m calling virtual function once per piece of code which is like 10000 cycles, so virtualisation won’t eat more than 1% of the program time” – but you still need some kind of way to see an order of magnitude for the related costs – and the diagram above will still come in handy 🙁 . Preliminaries aside, let’s take a closer look at

      • テクノロジー
      • 2016/09/14 22:33
      • cpu
      • hardware
      • performance
      • あとで読む
      • c++
      • Game Graphics 101: Rendering 2D on GPU. Shaders - IT Hare on Soft.ware

        4 users

        ithare.com

        This Chapter is more oriented towards those developers who are coming from radically different fields such as, for example, webdev or business app development (and yes, the switch from webdev into gamedev does happen). Rendering 2D Using 3D Engine Why 3D Rendering is Important for 2D? “Why do things using a 3D engine, when we can do the same using simpler - and more cross-platform - methods?After

        • テクノロジー
        • 2016/08/30 21:48
        • GameProgramming
        • GPU
        • Shader
        • development
        • book
        • C++ Performance: Common Wisdoms and Common “Wisdoms” - IT Hare on Soft.ware

          4 users

          ithare.com

          There are quite a few common wisdoms when it comes to C++ and games. As it always the case when facing a bunch of common wisdoms, some of them have their merits, some are obsolete-beyond-belief, and some are just taken from a very different context and are not really applicable. Let’s take a look at the most popular ones. “No C++, just plain C” – not for app-level programming There is a school whi

          • テクノロジー
          • 2016/05/31 15:10
          • C++
          • performance
          • development
          • C++ for Games: Performance. Allocations and Data Locality - IT Hare on Soft.ware

            9 users

            ithare.com

            [[This is Chapter 16(a) from “beta” Volume V of the upcoming book “Development&Deployment of Multiplayer Online Games”, which is currently being beta-tested. Beta-testing is intended to improve the quality of the book, and provides free e-copy of the “release” book to those who help with improving; for further details see “Book Beta Testing“. All the content published during Beta Testing, is subje

            • アニメとゲーム
            • 2016/05/30 14:44
            • C++
            • game
            • performance
            • UDP for games – security (encryption and DDoS protection) - IT Hare on Soft.ware

              4 users

              ithare.com

              [[This is Chapter 13(c) from “beta” Volume IV of the upcoming book “Development&Deployment of Multiplayer Online Games”, which is currently being beta-tested. Beta-testing is intended to improve the quality of the book, and provides free e-copy of the “release” book to those who help with improving; for further details see “Book Beta Testing“. All the content published during Beta Testing, is subj

              • テクノロジー
              • 2016/04/28 12:21
              • Network
              • security
              • Server-Side MMO Architecture. Naïve, Web-Based, and Classical Deployment Architectures - IT Hare on Soft.ware

                3 users

                ithare.com

                [rabbit_ddmog vol=”3″ chap=”Chapter 9(a) from “beta” Volume III”] After drawing all that nice client-side QnFSM-based diagrams, we need to describe our server architecture. The very first thing we need to do is to start thinking in terms of “how we’re going to deploy our servers, when our game is ready?” Yes, I really mean it – architecture starts not in terms of classes, and for the server-side –

                • テクノロジー
                • 2016/02/15 17:01
                • Contents of “Development and Deployment of Multiplayer Online Games: from social games to MMOFPS, with stock exchanges in between” - IT Hare on Soft.ware

                  6 users

                  ithare.com

                  [[This is a Table of Contents (and also “About” and “Scope” sections) from the upcoming book, which is currently being beta-tested. For details of this Beta Testing, please refer to the post on it. All the content published during Beta Testing, is subject to change before the book is published.]] UPDATE: the book has grew soooo large that we decided to split it into 9 volumes (about 300 pages each

                  • テクノロジー
                  • 2016/01/05 21:58
                  • network
                  • game
                  • ゲーム
                  • Part I: Client Side of 64 Network DO's and DON'Ts for Game Engine Developers - IT Hare on Soft.ware

                    5 users

                    ithare.com

                    Over the course of the last 10 years there is a strong trend for more and more games becoming substantially network ones. While adding network support to a game opens a whole world of challenges, my recent experience (both as a player and as a consultant) has shown that way too many game developers out there violate the very basic principles of reasonably good network application. It can usually b

                    • テクノロジー
                    • 2015/07/16 08:08
                    • Network
                    • ネットワーク
                    • game
                    • ゲーム

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

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

                    『IT Hare on Soft.ware』の新着エントリーを見る

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

                    j次のブックマーク

                    k前のブックマーク

                    lあとで読む

                    eコメント一覧を開く

                    oページを開く

                    はてなブックマーク

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

                    公式Twitter

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

                    はてなのサービス

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