「午前 12時」が「12 P.M.」とか

12

まさか、 「11AM」 の一時間後が 「12PM」 だなんて...

よく見かけるので調べてみたら...


<?php
date_default_timezone_set('UTC');
//date_default_timezone_set('Asia/Tokyo');

for ($h = 0; $h < 24; $h++) {
  $time = $h * 60 * 60;
  printf('%s - %s - %s %s' . "\n",
         date('H:i',   $time),
         date('h:i a', $time),
         date('h:i A', $time),
         $h % 12 === 0 ? '*' : '');
}

PHP: date - Manual


00:00 - 12:00 am - 12:00 AM *
01:00 - 01:00 am - 01:00 AM 
02:00 - 02:00 am - 02:00 AM 
03:00 - 03:00 am - 03:00 AM 
04:00 - 04:00 am - 04:00 AM 
05:00 - 05:00 am - 05:00 AM 
06:00 - 06:00 am - 06:00 AM 
07:00 - 07:00 am - 07:00 AM 
08:00 - 08:00 am - 08:00 AM 
09:00 - 09:00 am - 09:00 AM 
10:00 - 10:00 am - 10:00 AM 
11:00 - 11:00 am - 11:00 AM 
12:00 - 12:00 pm - 12:00 PM *
13:00 - 01:00 pm - 01:00 PM 
14:00 - 02:00 pm - 02:00 PM 
15:00 - 03:00 pm - 03:00 PM 
16:00 - 04:00 pm - 04:00 PM 
17:00 - 05:00 pm - 05:00 PM 
18:00 - 06:00 pm - 06:00 PM
19:00 - 07:00 pm - 07:00 PM 
20:00 - 08:00 pm - 08:00 PM 
21:00 - 09:00 pm - 09:00 PM 
22:00 - 10:00 pm - 10:00 PM 
23:00 - 11:00 pm - 11:00 PM

まじか...

Usage Note: By convention, 12 AM denotes midnight and 12 PM denotes noon. Because of the potential for confusion, it is advisable to use 12 noon and 12 midnight.

American Heritage Dictionary Entry: PM

そうなのですか...

覚えておきます。


LINE Notify をつかってターミナルから送信する

使ってみる.

line-notify

コマンドラインから LINE にメッセージを送れる LINE Notify « LINE Engineers' Blog

とりあえず.


#!/bin/sh -x                                                                                                                                   

token=zbOIf0lthC34fLGsXuilN2WBIkbomhtKj18M1MP0B1g

while true
do
  read message
  curl https://notify-api.line.me/api/notify \
  -H "Authorization: Bearer ${token}" \
  -F "message=${message} https://goo.gl/lU0Kx6" \
  -F "imageThumbnail=https://pbs.twimg.com/profile_images/745806811597406210/HO0KCGf2_400x400.jpg" \
  -F "imageFullsize=http://developers.linecorp.com/blog/wp-content/uploads/2016/10/moon.png"
  echo
done

これはグループ向けのメッセージ通知用になるのかな.


カンバンライクな「GitHub Projects」で 付箋のかたまりはクソとなり

いろいろな会社にお邪魔したとき,

「ウチではみんなでこのように検討して進捗を確認しています」

と言わんばかりのホワイトボードと付箋.

お客さんから見えるとこにわざと設置してない?

imgres

imgres-1

imgres-2

気持ち悪かったです.

けれど, 「カンバン」という言葉が世界で使われている程素晴らしい手法といえます.

分かりやすくて効率的です.

かんばん (ソフトウェア開発) - Wikipedia

Kanban board - Wikipedia, the free encyclopedia

それが, GitHub からリリースされています.

今すぐ使えます.

これまでどおり リポジトリを開くと「Projects」なるタブが追加されています.

googlesamples_android-architecture__a_collection_of_samples_to_discuss_and_showcase_different_architectural_tools_and_patterns_for_android_apps_

リポジトリ以下に以下の構成になっています.


  + repositories
    + projects
      + columns 
        + notes

たぶん, まずは以下の構成が基本的になると思います.
(動画から)


  + Project Board (project)
    + ToDo (column1)
    + In Progress (column2)
    + Done (column3)
    + Blocked (column4)

これで作成しておいて, 付箋の部分を「note」と呼ばれるカードで追加して, 移動させていきます.

githubu07

あとこれまでの「Issues」からも簡単に検索して「note」を追加していけますので, きっと必須なツールとなることは間違いありません.

GitHub gets built-in project management tools and support for formal reviews | TechCrunch