複数ホストに ssh しながら tail -F するときにはこうしたらどう? をほんのちょっといじった。
- パスの通ったところに保存する
- 実行権限を与える
複数ホストに ssh しながら tail -F するときにはこうしたらどう? をほんのちょっといじった。
| <?xml version="1.0"?> | |
| <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
| <configuration> | |
| <!-- Setting up queues --> | |
| <property> | |
| <name>yarn.scheduler.capacity.root.queues</name> | |
| <value>default,tree</value> |
この記事は古いです...。はてなブログの方に完全版を置いてあります。→ http://blue-ham-cake1024.hatenablog.com/entry/2012/09/07/Sublime_Text_2_のDefault設定ファイルを眺める
この記事ではDefault設定ファイルにどのような記述がされているか、その記述にどんな意味があるかを一つ一つ見ていきます。実際に設定をカスタマイズしてみたい方は、メニューのPreferencesタブの"Settings - User"からUser設定ファイルを開いてそこでいろいろ試してみましょう。
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * .git/hooks/pre-commit | |
| * | |
| * This pre-commit hooks will check for PHP error (lint), and make sure the code | |
| * is PSR compliant. | |
| * | |
| * Dependecy: PHP-CS-Fixer (https://github.com/fabpot/PHP-CS-Fixer) | |
| * |
| <?php | |
| use Silex\Application; | |
| use Silex\ServiceProviderInterface; | |
| use Illuminate\Database\Capsule\Manager as Capsule; | |
| use Illuminate\Events\Dispatcher; | |
| use Illuminate\Container\Container; | |
| use Illuminate\Cache\CacheManager; | |
| class CapsuleServiceProvider implements ServiceProviderInterface | |
| { |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import csv | |
| import codecs | |
| import numpy as np | |
| import MeCab | |
| from sklearn.feature_extraction.text import TfidfVectorizer | |
| from sklearn.cluster import KMeans, MiniBatchKMeans |