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

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

アプリで開く

はてなブックマーク

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

はてなブックマーク

トップへ戻る

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

    WWDC25

『advancedweb.hu』

  • 人気
  • 新着
  • すべて
  • A categorized list of all Java and JVM features since JDK 8 to 21

    20 users

    advancedweb.hu

    A categorized list of all Java and JVM features since JDK 8 to 21 Last updated on 2023/09/22 to include changes up to JDK 21. This article is also available in Chinese by Alex Tan. Since the release of version 8, up to version 21, Java is shaped by 232 JDK Enhancement Proposals (JEPs) and many more smaller updates, each of which brings some improvement to the platform. This page is a categorized a

    • テクノロジー
    • 2019/02/21 20:22
    • Java
    • performance
    • api
    • web
    • Generators and ImmutableJS

      3 users

      advancedweb.hu

      This article is part of a series on Iterators, iterables, and generators in Javascript Iterators in Javascript Iterables in Javascript Generators in Javascript Generators and ImmutableJS Motivation Iterables are great in theory, but there are only so many language constructs supporting them. For loops are great if you still live in the 90's, but map, filter, reduce and the like will be missed inst

      • テクノロジー
      • 2017/10/03 17:54
      • JavaScript
      • Profile-based optimization techniques in the JVM

        3 users

        advancedweb.hu

        This article is part of a series on JVM JIT optimization techniques JVM JIT optimization techniques JVM JIT optimization techniques - part 2 Profile-based optimization techniques in the JVM Tuning the performance of Java applications is not always trivial. Even a seemingly simple program can work differently under the hood than we might expect it when we just skim its code. While it's not necessar

        • テクノロジー
        • 2017/03/02 14:16
        • java
        • Why Webpack 2's Tree Shaking is not as effective as you think

          7 users

          advancedweb.hu

          As WebPack 2 barrels forward, Tree Shaking --- or more technically, the removal of unused exports using static analysis --- is finding its way to the mainstream. Developers are putting their hopes high, as it promises to solve the pressing problem of bloated packages. Usually, only a fraction of code is actually needed from each dependency but their entire codebase is bundled, increasing the size.

          • テクノロジー
          • 2017/02/07 22:13
          • webpack
          • JavaScript
          • Infinite collections with ES6 generators

            3 users

            advancedweb.hu

            Learn how to use generators, a new ES6 feature, to create infinite collections Motivation Infinite and lazy collections are commonplace in many languages, and they are beginning to find their ways to mainstream Javascript too. With the new iterators and generators spec getting widespread adoption, you can now use them in your projects. They have some very specific use cases which may not come up i

            • テクノロジー
            • 2016/06/05 23:47
            • JavaScript
            • JVM JIT optimization techniques

              4 users

              advancedweb.hu

              This article is part of a series on JVM JIT optimization techniques JVM JIT optimization techniques JVM JIT optimization techniques - part 2 Profile-based optimization techniques in the JVM There's a lot of buzz about JVM optimizations and how it makes production code perform better thanks to the Just-In-Time (JIT) compilation and various optimization techniques. A lots of excellent research mater

              • テクノロジー
              • 2016/05/27 23:06
              • jit
              • jvm
              • java
              • Fully automated dockerized Let's Encrypt reverse proxy

                3 users

                advancedweb.hu

                How to design, implement, and deploy GraphQL-based APIs on the AWS cloud How to use The easiest way is to use Docker Compose and define the bridged network there. version: '2' services: proxy: image: sashee/letsencrypt-proxy-docker ports: - "80:80" - "443:443" depends_on: - angular networks: - proxy environment: # Set your host #- HOST=<yourhost> - PORT=80 # Set your email #- EMAIL=<your email> #

                • テクノロジー
                • 2016/05/12 22:48
                • docker
                • Scala development in Vim

                  4 users

                  advancedweb.hu

                  In this post I'd like to share my findings about the Vim plugins that I found useful for coding in general, and a bit about my half-baked Scala development workflow from Vim perspective that I am trying to evolve. Truth to be told I always was quite an IDE guy. Mainly developing Java I praised the power of these tools that helped to get my job done. Sometimes I scratched my head when some indexing

                  • テクノロジー
                  • 2015/06/11 19:43
                  • vim
                  • あとで読む

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

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

                  『advancedweb.hu』の新着エントリーを見る

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

                  j次のブックマーク

                  k前のブックマーク

                  lあとで読む

                  eコメント一覧を開く

                  oページを開く

                  はてなブックマーク

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

                  公式Twitter

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

                  はてなのサービス

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