- 「技術書を読まなくていい」と言っているわけではない
- 「プログラマー・エンジニアだから技術書をたくさん読んで理解しなければならない」という価値観にとらわれる必要は無い
- 人によって物事の得意な認知の仕方は異なる
- 自分に合った学習スタイルを見つけられるといい
- もしくは、本の読み方にはコツがある
--update-service | platformVersionの指定 | before | after |
---|---|---|---|
無 | 1.4.0 | 1.4.0 | 1.4.0 |
有 | 1.3.0 | 1.4.0 | 1.3.0 |
無 | 1.4.0 | 1.3.0 | 1.3.0 |
有 | 1.4.0 | 1.3.0 | 1.4.0 |
無 | 1.4.0 | 1.4.0 | 1.4.0 |
無 | 1.3.0 | 1.4.0 | 1.4.0 |
有 | 1.3.0 | 1.4.0 | 1.3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bundle config --global build.mysql2 --with-opt-dir="$(brew --prefix openssl)" | |
bundle config --global build.nokogiri --use-system-libraries --with-xml2-include=$(brew --prefix libxml2)/include/libxml2 |
- The Marvelous Mrs. Maisel
- エミー賞総なめしただけあって演技も映像も音楽もシナリオも素晴らしい。今一番アツいと思う。
- The Good Fight
- かなり好み。The Good Wifeからさらにシニカルになった
- The Good Wife
- シニカルで時事ネタも面白い
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function gcp() { | |
local res | |
local branch=$(git branch -a | peco | tr -d ' ') | |
if [ -n "$branch" ]; then | |
if [[ "$branch" =~ "remotes/" ]]; then | |
local b=$(echo $branch | cut -d '/' -f 3-) | |
res="git checkout -b ${b} ${branch}" | |
else | |
res="git checkout ${branch}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws s3 ls \ | |
s3://bucket/artifacts \ | |
--recursive \ | |
--human-readable | \ | |
grep manifest.yml | \ | |
sort -r | \ | |
tail -n+20 | \ | |
awk -F ' ' '{ print $5 }' | \ | |
sed -e 's/\(artifacts\/.*\)\/namespace\/manifest\.yml/s3:\/\/bucket\/\1/g' | \ | |
xargs -I{} aws s3 rm --recursive "{}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const http = require("http"); | |
const util = require("util"); | |
function post(payload) { | |
return new Promise((resolve, reject) => { | |
const options = { | |
method: "POST", | |
hostname: "httpbin.org", | |
port: 80, | |
path: "/post" |