├── LICENSE ├── Makefile ├── README.md ├── books ├── README.md ├── ci.md └── reworks.md ├── entries ├── README.md ├── artisans.md ├── different.md └── impact.md ├── grow.dot ├── images ├── grow.gif ├── js.gif ├── jsapp.gif ├── learn.gif ├── ml.gif └── tree.gif ├── js.dot ├── jsapp.dot ├── learn.dot ├── ml.dot └── tree.dot /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/README.md -------------------------------------------------------------------------------- /books/README.md: -------------------------------------------------------------------------------- 1 | #书单推荐 2 | 3 | [《REWORK》](reworks.md) 4 | [《持续交付:发布可靠软件的系统方法》](ci.md) -------------------------------------------------------------------------------- /books/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/books/ci.md -------------------------------------------------------------------------------- /books/reworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/books/reworks.md -------------------------------------------------------------------------------- /entries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/entries/README.md -------------------------------------------------------------------------------- /entries/artisans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/entries/artisans.md -------------------------------------------------------------------------------- /entries/different.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/entries/different.md -------------------------------------------------------------------------------- /entries/impact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/entries/impact.md -------------------------------------------------------------------------------- /grow.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/grow.dot -------------------------------------------------------------------------------- /images/grow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/images/grow.gif -------------------------------------------------------------------------------- /images/js.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/images/js.gif -------------------------------------------------------------------------------- /images/jsapp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/images/jsapp.gif -------------------------------------------------------------------------------- /images/learn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/images/learn.gif -------------------------------------------------------------------------------- /images/ml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/images/ml.gif -------------------------------------------------------------------------------- /images/tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/images/tree.gif -------------------------------------------------------------------------------- /js.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/js.dot -------------------------------------------------------------------------------- /jsapp.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/jsapp.dot -------------------------------------------------------------------------------- /learn.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/learn.dot -------------------------------------------------------------------------------- /ml.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/ml.dot -------------------------------------------------------------------------------- /tree.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phodal/developer/HEAD/tree.dot --------------------------------------------------------------------------------