3-3-12-3 tail ログ、設定の調べ方

estis2017/02/18 (土) 10:50 に投稿
# for i in $(seq 1 20); do echo $i; done | tail -5
16
17
18
19
20
# for i in $(seq 1 20); do echo $i; done | tail -n 5
16
17
18
19
20
# for i in $(seq 1 20); do echo $i; done | tail -n +5
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# for i in $(seq 1 20); do echo $i; done | tail -n -5
16
17
18
19
20
# tail --version
tail (GNU coreutils) 8.22
Copyright (C) 2013 Free Software Foundation, Inc.
ライセンス GPLv3+: GNU GPL version 3 or later .
This is free software: you are free to change and redistribute it.

3-3-12-2 head ログ、設定の調べ方

estis2017/02/18 (土) 10:49 に投稿
# for i in $(seq 1 20); do echo $i; done | head -5
1
2
3
4
5
# for i in $(seq 1 20); do echo $i; done | head -n 5
1
2
3
4
5
# for i in $(seq 1 20); do echo $i; done | head -n +5
1
2
3
4
5
# for i in $(seq 1 20); do echo $i; done | head -n -5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# head --version
head (GNU coreutils) 8.22
Copyright (C) 2013 Free Software Foundation, Inc.
ライセンス GPLv3+: GNU GPL version 3 or later .
This is free software: you are free to change and redistribute it.

ルーブル美術館特別展 ルーブル No.9 漫画、9番目の芸術

estis2017/01/05 (木) 23:53 に投稿

2016年7月22日〜9月25日 東京 森アーツセンターギャラリー
2016年12月1日〜2017年1月29日 大阪 グランフロント大阪 北館 ナレッジキャピタル イベントラボ
2017年4月〜5月 福岡会場
2017年夏 名古屋 松坂屋美術館

「漫画、9番目の芸術」とあるけれど、バンド・デシネによるルーブル美術館紹介という出で立ち。
漫画とバンド・デシネの違いを示している展示はあったが、バンド・デシネそのものを紹介しようという意図はないので、どんな作品があるのかはわからない。
特徴(空間デザイナーであることとモノクローム)を意識したマルク=アントワーヌ・マチュー の展示デザインと、エンキ・ビラルの描画方法のビデオ(一部、左手で描いているように見えたけれど思い違いか)がよかった。
荒木飛呂彦紹介ビデオのモニター設置場所は、違う場所にできなかったのだろうか。そこに人が溜まらないように、立ち止まると通行の邪魔になるような場所をわざと選んだようだ。

於大阪会場

3-3-08-2 sort ログ、設定の調べ方 Linux

確認したバージョン

$sort --version
sort (GNU coreutils) 8.4
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later .
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and Paul Eggert.

sort コマンドは、並べ替えをします。

$cat tmp01 
9
7
ab
1
b
2
5
a
5
0
7
01
6
00
14

オプション指定のない場合、文字として扱い、昇順に並び替える。

$sort tmp01 
0
00
01
1
14
2
5
5
6
7
7
9
a
ab
b

逆順にする。( r オプション)

Mac で C#

estis2016/10/22 (土) 20:40 に投稿

https://github.com/k--kato/osxcsharp/blob/master/README.md
を参考にしました。

$ brew install openssl
Error: Your Xcode (7.3) is outdated.
Please update to Xcode 8.0 (or delete it).
Xcode can be updated from the App Store.

と怒られるので、
App Store で、
Xcode インストール。

$ brew install openssl
Error: You have not agreed to the Xcode license. Please resolve this by running:
  sudo xcodebuild -license

インストールしただけではダメ。
Xcode 起動、ライセンス認証しますが、
iTunes の停止が必要です。

$ brew install openssl

brew help

estis2016/10/22 (土) 08:11 に投稿
$ brew help
Example usage:
  brew search [TEXT|/REGEX/]
  brew (info|home|options) [FORMULA...]
  brew install FORMULA...
  brew update
  brew upgrade [FORMULA...]
  brew uninstall FORMULA...
  brew list [FORMULA...]

Troubleshooting:
  brew config
  brew doctor
  brew install -vd FORMULA

Developers:
  brew create [URL [--no-fetch]]
  brew edit [FORMULA...]
  https://github.com/Homebrew/brew/blob/master/docs/Formula-Cookbook.md

Further help:
  man brew
  brew help [COMMAND]
  brew home

Homebrew インストール 再び

estis2016/10/22 (土) 08:06 に投稿
$ brew update
/usr/local/bin/brew: /usr/local/Library/brew.rb: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby: bad interpreter: No such file or directory
/usr/local/bin/brew: line 23: /usr/local/Library/brew.rb: Undefined error: 0

と言われたので、再インストールすることにした。
ちなみに、

$ ruby -v
ruby 2.0.0p195 (2013-05-14 revision 40734) [x86_64-darwin12.3.0]

http://brew.sh/index_ja.html
を参考に、

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
==> This script will install:
/usr/local/bin/brew

Django プロジェクト作成

estis2016/10/11 (火) 21:08 に投稿

プロジェクト:サービス全体
アプリケーション:サービスの一機能

django-admin startproject myproject
で、ディレクトリ、ファイルが作成される。

$tree myproject/
myproject/
├── manage.py
└── myproject
    ├── __init__.py
    ├── settings.py
    ├── urls.py
    └── wsgi.py

python3 myproject/manage.py runserver 0.0.0.0:8000
で、8000番ポートで待つサーバー起動。

----------------------------------------------------------------
myproject/myproject/settings.py を編集。

データベースを、SQLite からMySQL へ変更。

DATABASES = {
    'default': {
        #'ENGINE': 'django.db.backends.sqlite3',