- 今後コードレビュー時に「これってリーダブルコードの◯◯だよね?、こう直したほうがいいよね」と引用できレビューの時間の短縮化が実現できる。
- リーダブルコードに登場する特殊ワードをチームのコーディングの共通語とする。デザインパターンのカタログ的な考え。
- リーダブルコードを読んでない人も内容を短時間で把握できる。
- チーム全体のコードを読みやすくメンテナンスしやすくし品質をあげる。
- リーダブルコード教になりチーム以外にも広める。コードの品質が悪い人にはリーダブルコードの読書を進めてみる。ひどいコードのままコーディングしてもらうよりその時間を読書の時間に割り当てることも考える(結果的に時間が還元できるなら)。
- リーダブルコードに書いてあることが全てのプロジェクトに適用てきるわけではないけれでもコーディングルールを考える際の指針にすることはできる。
This file contains 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
## | |
# MySQL Workbench - Query to PHP Array Format Plugin | |
# | |
# author: nojimage | |
# | |
# original: http://wb.mysql.com/?p=677 verticalquery_grt.py by Alfredo Kojima | |
## | |
# import the wb module | |
from wb import * |
This file contains 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
#!/bin/sh | |
# Creating temp dirs | |
mkdir .compile_PHPUnit_$$ | |
cd .compile_PHPUnit_$$ | |
# Fetching the archives | |
wget -nv http://pear.phpunit.de/get/PHPUnit-3.5.15.tgz | |
wget -nv http://pear.phpunit.de/get/DbUnit-1.0.0.tgz | |
wget -nv http://pear.phpunit.de/get/File_Iterator-1.2.3.tgz |
This file contains 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
まずはここのDockerfileを参考にするだけだとxvfbが足りなくて動かないので16行目に追加し、 | |
https://github.com/LoicMahieu/alpine-wkhtmltopdf/blob/master/Dockerfile | |
以下のものも参考にdbusはdbusパッケージにあるdbus-genuuidを実行しておかないと、xvfb実行時にエラーになるので35行目に追加。 | |
http://kernhack.hatenablog.com/entry/2016/05/28/101626 | |
日本語ならIPAFontも入れると良いが、ググればすぐにでてくるので割愛。 | |
これだけだと、CSSが効かない状態でPDF出力されるので別途対応が必要。ヘッドレスブラウザが必要? | |
FROM alpine:3.3 | |
RUN apk add --no-cache \ |