おもに製造業で使われている「4S」の概念は、ソフトウェア開発においてもほぼ適用できる: https://ja.wikipedia.org/wiki/4S%E9%81%8B%E5%8B%95
ソフトウェア開発においても、作業環境の質は作業の質に影響する。 よく整理整頓された環境は日々のストレスを減らし、ミスを減らし、思考を明晰にする助けとなる。
なお、調理の世界にも同様の規範がある: https://en.wikipedia.org/wiki/Mise_en_place
#!/usr/bin/env node | |
const http = require('http'); | |
const port = parseInt(process.env.PORT || '8080'); | |
const contentType = process.env.CONTENT_TYPE || 'text/html'; | |
const body = process.env.BODY ?? '<h1>Hello world!</h1>'; | |
const server = http.createServer((request, response) => { | |
console.info(request.socket?.remoteAddress, request.method, request.url, request.httpVersion); | |
console.info(request.headers); | |
response.writeHead(200, {'Content-Type': contentType, 'Access-Control-Allow-Origin': '*'}); | |
response.end(body); |
おもに製造業で使われている「4S」の概念は、ソフトウェア開発においてもほぼ適用できる: https://ja.wikipedia.org/wiki/4S%E9%81%8B%E5%8B%95
ソフトウェア開発においても、作業環境の質は作業の質に影響する。 よく整理整頓された環境は日々のストレスを減らし、ミスを減らし、思考を明晰にする助けとなる。
なお、調理の世界にも同様の規範がある: https://en.wikipedia.org/wiki/Mise_en_place
<!DOCTYPE html> | |
<head><meta charset="UTF-8"> | |
<title>Tweets by mootastic</title> | |
</head><body> | |
<h1>Tweets by mootastic</h1> | |
<ol> | |
<li id="1372720610531450884"><strong>2021-03-19 01:32 (Fri) +0900</strong> | |
<p>「なぜ宇宙飛行士はLinuxを使うのかって? そりゃ宇宙じゃウインドウを開けないからさ!」 <a href="http://pbs.twimg.com/media/EwziGW0VcAIyN2K.png">http://pbs.twimg.com/media/EwziGW0VcAIyN2K.png</a> | |
<li id="1372723374141501440"><strong>2021-03-19 01:31 (Fri) +0900</strong> |
https://www.cs.utexas.edu/~EWD/transcriptions/EWD05xx/EWD594.html
-- エドガー W. ダイクストラ (Edsger W. Dijkstra)
その昔、鉄道会社がありました。その (おそらくはやり手の) 経営者は、 トイレをすべての客車につけず、50% の客車にだけつけるようにすれば、会社の 初期投資をずっと少なくできることに気づき、そのように指示しました。
cf. https://tanzu.vmware.com/developer/practices/3-column-retro/
Summary: Transformer (a la "Attention is All You Need") is a complex model that is built upon several important ideas. In this article, we explain these ideas in terms of traditional programming concepts, without using math.
Prerequisites: basic understanding of NN and RNN, and Python.