本書は「はじめに」で述べた通り、不確実性を組織の推進に変えることこそがエンジニアリングの本質
と述べました。
そもそもエンジニアリングとは何か、というところに立ち戻りましょう。
エンジニアリング、「工学」とは。
工学とは数学と自然科学を基礎とし、ときには人文社会科学の知見を用いて、公共の安全、健康、福祉のために有用な事物や快適な環境を構築することを目的とする学問である(p10)
--- | |
version: '3.5' | |
networks: | |
default: | |
name: kafka-net | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:4.1.1 | |
hostname: zookeeper |
この記事は https://medium.com/@ryardley/react-hooks-not-magic-just-arrays-cd4f1857236e の日本語訳です。途中で力尽きて雑な翻訳になってる箇所がいくつかあります。
私は、新しい Hooks の API の "magic" な挙動に悩んでいる人が結構いると聞いています。なのでこの構文の提案が、少なくとも表面的なレベルではどう動いているか、解説してみようと思います。
Railsはおまかせ(Rails is omakase翻訳)
DHHによるおまかせ思想を解説したエッセイ。半分くらいは行儀の悪いユーザーに対する愚痴。
___様 | |
突然のご連絡失礼致します。テクノブレーン株式会社の______と申します。 | |
弊社は五反田に御座います、エンジニアの方に特化したスカウト会社です。 | |
◆弊社ホームページ>お声かけをさせて頂いた方へ | |
https://www.techno-brain.co.jp/scout/message/ | |
今回とある企業よりエンジニア組織を作っていきたいと依頼を受け、エンジニアの方をお探しする中で | |
___様のブログなど拝見し、ご連絡をさせて頂きました。 |
#!/usr/bin/env python | |
# vim: set fileencoding=utf-8 | |
# | |
# USAGE: | |
# Back up your tmux old config, run the script and redirect stdout to your conf | |
# file. Example: | |
# | |
# $ cp ~/.tmux.conf ~/.tmux.conf.orig | |
# $ python ./tmux-migrate-options.py ~/.tmux.conf.orig > ~/.tmux.conf | |
# |
// work on node v10.15.3 | |
const DIGIT = 6; | |
const TIME_STEP = 30; | |
/** | |
* Calculate TOTP value defined in [RFC6238](https://tools.ietf.org/html/rfc6238) | |
* | |
* @param {Buffer} key shared secret between client and server | |
* @param {Date} date date to calculate totp value. |
This explains how to set up Vim on Ubuntu 18.04 on Windows Subsystem for Linux 2 (WSL2) in order to share the clipboard between Windows and Ubuntu.