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

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

アプリで開く

はてなブックマーク

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

はてなブックマーク

トップへ戻る

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

    ノーベル賞

『Scala, Java, Unix, MacOS tutorials (page 1) | alvinalexander.com』

  • 人気
  • 新着
  • すべて
  • Scala best practice: How to use the Option/Some/None pattern | alvinalexander.com

    3 users

    alvinalexander.com

    This is an excerpt from the 1st Edition of the Scala Cookbook (partially modified for the internet). This is Recipe 20.6, “Scala best practice: How to use the Option/Some/None pattern.” Problem For a variety of reasons, including removing null values from your Scala code, you want to use what I call the Option/Some/None pattern. Or, if you’re interested in a problem (exception) that occurred while

    • テクノロジー
    • 2018/04/04 17:16
    • Scala
    • プログラミング
    • Programming
    • Scala class examples (constructors, case classes, parameters) | alvinalexander.com

      3 users

      alvinalexander.com

      Scala class examples (constructors, case classes, parameters) This post contains a collection of examples of Scala classes and class properties. I created most of these in the process of writing the Scala Cookbook. Unlike the Cookbook, I don’t describe them much here, I just show the examples, mostly as a reference for myself (and anyone else that can benefit from them). Basic Scala class examples

      • テクノロジー
      • 2015/12/01 16:39
      • Scala
      • Simple Scala recursion examples (recursive programming) | alvinalexander.com

        3 users

        alvinalexander.com

        As I’ve been learning more about Scala and functional programming, I’ve been looking at accomplishing more tasks with recursive programming techniques. As part of my studies, I put together a number of Scala recursion examples below, including: Sum Product Max Fibonacci Factorial Given that background, let’s get started. Thinking in recursion When I’m going to write a recursive method, I usually t

        • テクノロジー
        • 2015/06/19 12:18
        • Scala
        • Installing security updates only with CentOS yum | alvinalexander.com

          8 users

          alvinalexander.com

          UPDATE: I haven’t used CentOS in several years, and from the comment in the Comments section below, it appears that the approach I wrote about in this tutorial (several years ago) no longer works. I’m keeping the original contents here only to provide some context. Please see this CentOS forum link for current information. *** everything below here is out of date *** If you want to install only se

          • テクノロジー
          • 2015/04/01 15:32
          • development
          • Linux
          • *あとで
          • あとで読む
          • How to execute (exec) external system commands in Scala | alvinalexander.com

            4 users

            alvinalexander.com

            Scala exec FAQ: How do I execute external system commands in Scala? When it comes to executing external system commands, Scala is a dramatic improvement over Java. The operators that Scala makes available are much more like Perl or Ruby, and the operators themselves are consistent with traditional shell commands, and are therefore easy to remember. Let's take a look at a few examples. Executing sy

            • テクノロジー
            • 2015/01/17 19:35
            • A Python screensaver for xscreensaver (Linux) | alvinalexander.com

              3 users

              alvinalexander.com

              I know remarkably little about Python and GTK, but from the two URLs shown in the source code below I was able to piece together a working, “Hello, world” Linux screensaver. Well, calling it a screensaver is a stretch, because what it will really do is burn the characters “Hello, world” into your monitor; but at least I cracked the code on how to get this started. To try this on your own Linux sys

              • テクノロジー
              • 2014/08/17 15:23
              • python
              • vi/vim: How to control/configure editor colors (color settings) | alvinalexander.com

                4 users

                alvinalexander.com

                vi/vim: How to control/configure editor colors (color settings) vim colors FAQ: Can you provide details on how to control/configure colors in the vim editor (i.e., vim color settings)? Sure. When using vim syntax highlighting, a common complaint is that the default color scheme is a little too bold. In this article I'll try to demonstrate how you can change the colors in vim to be a little more pl

                • テクノロジー
                • 2012/09/02 14:28
                • vim
                • Scala cookbook recipes | alvinalexander.com

                  5 users

                  alvinalexander.com

                  By Alvin Alexander. Last updated: November 10, 2018 Wow, I began by writing a few Scala programming tutorials just because I like the language, and as I look here a couple of months later I now have more than sixty tutorials. As a result, I thought I'd start organizing them here in the form a Scala Programming Cookbook. Here's my current collection of Scala FAQs and recipes, in a "cookbook" format

                  • テクノロジー
                  • 2012/01/30 19:14
                  • Scala
                  • Tips
                  • java source code warehouse - free java source code, examples, software, java applets

                    3 users

                    alvinalexander.com

                    Free Java Source Code, Examples, Software, Applets (Java Source Code Warehouse) Search the Java source code warehouse To use the Java Source Code Warehouse, just type in the name of a class you're interested in learning about, like URLConnection or StringTokenizer. More Information UPDATE: Beginning in 2016, a portion of the revenue from the ads in the source code warehouse project will be used to

                    • テクノロジー
                    • 2005/11/28 19:05
                    • java
                    • programming

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

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

                    『Scala, Java, Unix, MacOS tutorials (page 1) | alvinalexander.com』の新着エントリーを見る

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

                    j次のブックマーク

                    k前のブックマーク

                    lあとで読む

                    eコメント一覧を開く

                    oページを開く

                    はてなブックマーク

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

                    公式Twitter

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

                    はてなのサービス

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