├── 2016 ├── mobile-app │ ├── README.md │ ├── assets │ │ ├── counter-app │ │ │ ├── assistance-editor.png │ │ │ ├── connect.png │ │ │ ├── input-action.png │ │ │ ├── input-parts-name.png │ │ │ ├── new-swift-file.png │ │ │ └── place-ui-parts.png │ │ ├── custom-view │ │ │ ├── asset-image.png │ │ │ ├── connect-parts.png │ │ │ ├── create-my-table-view-cell.png │ │ │ ├── create-round-rect-button.png │ │ │ ├── custom-button-designable.png │ │ │ ├── place-views-on-xib.png │ │ │ ├── robots.png │ │ │ ├── set-custom-class.png │ │ │ └── three-labels.png │ │ ├── iphones.pdf │ │ ├── json-api │ │ │ ├── custom-class.png │ │ │ ├── new-swift-file.png │ │ │ └── table-cell.png │ │ ├── new-project │ │ │ ├── 30days-structure.png │ │ │ ├── after-moving-out.png │ │ │ ├── directories-to-groups.png │ │ │ ├── initial-structure.png │ │ │ ├── new-project.png │ │ │ └── source-control.png │ │ ├── testing-counter-app │ │ │ └── accessibility-identifier.png │ │ └── transition │ │ │ ├── embed-in.png │ │ │ ├── initial-view-controller.png │ │ │ ├── main-storyboard.png │ │ │ ├── new-storyboard.png │ │ │ ├── segue-from-view-controller.png │ │ │ ├── set-segue-id.png │ │ │ ├── set-storyboard-id.png │ │ │ ├── storyboard-reference.png │ │ │ ├── unwind-to-main.png │ │ │ └── view-controller-id.png │ └── chapters │ │ ├── actual-device.md │ │ ├── counter-app.md │ │ ├── custom-view.md │ │ ├── develop-our-product.md │ │ ├── json-api.md │ │ ├── new-project.md │ │ ├── paper-prototyping.md │ │ ├── prerequisite.md │ │ ├── testing-counter-app.md │ │ ├── transition.md │ │ └── user-test.md ├── web-dev │ └── README.md └── web-ops │ ├── README.md │ ├── assets │ ├── big_picture.png │ ├── overview.png │ ├── step1.png │ ├── step2.png │ ├── step3.png │ ├── step4.png │ └── vm_and_docker.png │ └── chapters │ ├── all_in_one.md │ ├── backlog.md │ ├── bastion.md │ ├── dividing_into_roles.md │ ├── docker_puppet.md │ ├── higher.md │ ├── monitoring.md │ ├── redundant.md │ ├── steps.md │ ├── system-overview.md │ └── tools.md ├── 2017 ├── mobile-app │ ├── README.md │ ├── assets │ │ ├── auto-layout │ │ │ ├── add_aligment.png │ │ │ ├── add_new_constraints.png │ │ │ ├── center.png │ │ │ ├── compass.png │ │ │ ├── device_conf.png │ │ │ └── right_left.png │ │ ├── counter-app │ │ │ ├── assistance-editor.png │ │ │ ├── connect.png │ │ │ ├── input-action.png │ │ │ ├── input-parts-name.png │ │ │ ├── new-swift-file.png │ │ │ └── place-ui-parts.png │ │ ├── custom-view │ │ │ ├── asset-image.png │ │ │ ├── connect-parts.png │ │ │ ├── create-my-table-view-cell.png │ │ │ ├── create-round-rect-button.png │ │ │ ├── custom-button-designable.png │ │ │ ├── place-views-on-xib.png │ │ │ ├── robots.png │ │ │ ├── set-custom-class.png │ │ │ └── three-labels.png │ │ ├── iphones.pdf │ │ ├── json-api │ │ │ ├── custom-class.png │ │ │ ├── new-swift-file.png │ │ │ └── table-cell.png │ │ ├── new-project │ │ │ ├── 30days-structure.png │ │ │ ├── add-items.png │ │ │ ├── after-moving-out.png │ │ │ ├── build-phases.png │ │ │ ├── directories-to-groups.png │ │ │ ├── initial-structure.png │ │ │ ├── new-project.png │ │ │ ├── relative-to-group.png │ │ │ └── source-control.png │ │ ├── testing-counter-app │ │ │ └── accessibility-identifier.png │ │ └── transition │ │ │ ├── embed-in.png │ │ │ ├── initial-view-controller.png │ │ │ ├── main-storyboard.png │ │ │ ├── new-storyboard.png │ │ │ ├── segue-from-view-controller.png │ │ │ ├── set-segue-id.png │ │ │ ├── set-storyboard-id.png │ │ │ ├── storyboard-reference.png │ │ │ ├── unwind-to-main.png │ │ │ └── view-controller-id.png │ └── chapters │ │ ├── actual-device.md │ │ ├── auto-layout.md │ │ ├── counter-app.md │ │ ├── custom-view.md │ │ ├── develop-our-product.md │ │ ├── json-api.md │ │ ├── new-project.md │ │ ├── paper-prototyping.md │ │ ├── prerequisite.md │ │ ├── testing-counter-app.md │ │ ├── transition.md │ │ └── user-test.md ├── web-dev │ └── README.md └── web-ops │ ├── README.md │ ├── assets │ ├── big_picture.png │ ├── overview.png │ ├── step1.png │ ├── step2.png │ ├── step3.png │ ├── step4.png │ ├── step5.png │ ├── step6.png │ └── vm_and_docker.png │ └── chapters │ ├── about.md │ ├── all_in_one.md │ ├── bastion_puppetserver.md │ ├── dividing_into_roles.md │ ├── docker.md │ ├── higher.md │ ├── puppet.md │ ├── redundant.md │ ├── system-overview.md │ ├── tools.md │ └── virtualhost.md └── README.md /2016/mobile-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/README.md -------------------------------------------------------------------------------- /2016/mobile-app/assets/counter-app/assistance-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/counter-app/assistance-editor.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/counter-app/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/counter-app/connect.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/counter-app/input-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/counter-app/input-action.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/counter-app/input-parts-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/counter-app/input-parts-name.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/counter-app/new-swift-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/counter-app/new-swift-file.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/counter-app/place-ui-parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/counter-app/place-ui-parts.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/asset-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/asset-image.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/connect-parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/connect-parts.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/create-my-table-view-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/create-my-table-view-cell.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/create-round-rect-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/create-round-rect-button.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/custom-button-designable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/custom-button-designable.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/place-views-on-xib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/place-views-on-xib.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/robots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/robots.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/set-custom-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/set-custom-class.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/custom-view/three-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/custom-view/three-labels.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/iphones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/iphones.pdf -------------------------------------------------------------------------------- /2016/mobile-app/assets/json-api/custom-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/json-api/custom-class.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/json-api/new-swift-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/json-api/new-swift-file.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/json-api/table-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/json-api/table-cell.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/new-project/30days-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/new-project/30days-structure.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/new-project/after-moving-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/new-project/after-moving-out.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/new-project/directories-to-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/new-project/directories-to-groups.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/new-project/initial-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/new-project/initial-structure.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/new-project/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/new-project/new-project.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/new-project/source-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/new-project/source-control.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/testing-counter-app/accessibility-identifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/testing-counter-app/accessibility-identifier.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/embed-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/embed-in.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/initial-view-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/initial-view-controller.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/main-storyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/main-storyboard.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/new-storyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/new-storyboard.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/segue-from-view-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/segue-from-view-controller.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/set-segue-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/set-segue-id.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/set-storyboard-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/set-storyboard-id.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/storyboard-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/storyboard-reference.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/unwind-to-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/unwind-to-main.png -------------------------------------------------------------------------------- /2016/mobile-app/assets/transition/view-controller-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/assets/transition/view-controller-id.png -------------------------------------------------------------------------------- /2016/mobile-app/chapters/actual-device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/actual-device.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/counter-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/counter-app.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/custom-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/custom-view.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/develop-our-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/develop-our-product.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/json-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/json-api.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/new-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/new-project.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/paper-prototyping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/paper-prototyping.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/prerequisite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/prerequisite.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/testing-counter-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/testing-counter-app.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/transition.md -------------------------------------------------------------------------------- /2016/mobile-app/chapters/user-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/mobile-app/chapters/user-test.md -------------------------------------------------------------------------------- /2016/web-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-dev/README.md -------------------------------------------------------------------------------- /2016/web-ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/README.md -------------------------------------------------------------------------------- /2016/web-ops/assets/big_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/assets/big_picture.png -------------------------------------------------------------------------------- /2016/web-ops/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/assets/overview.png -------------------------------------------------------------------------------- /2016/web-ops/assets/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/assets/step1.png -------------------------------------------------------------------------------- /2016/web-ops/assets/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/assets/step2.png -------------------------------------------------------------------------------- /2016/web-ops/assets/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/assets/step3.png -------------------------------------------------------------------------------- /2016/web-ops/assets/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/assets/step4.png -------------------------------------------------------------------------------- /2016/web-ops/assets/vm_and_docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/assets/vm_and_docker.png -------------------------------------------------------------------------------- /2016/web-ops/chapters/all_in_one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/all_in_one.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/backlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/backlog.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/bastion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/bastion.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/dividing_into_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/dividing_into_roles.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/docker_puppet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/docker_puppet.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/higher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/higher.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/monitoring.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/redundant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/redundant.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/steps.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/system-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/system-overview.md -------------------------------------------------------------------------------- /2016/web-ops/chapters/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2016/web-ops/chapters/tools.md -------------------------------------------------------------------------------- /2017/mobile-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/README.md -------------------------------------------------------------------------------- /2017/mobile-app/assets/auto-layout/add_aligment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/auto-layout/add_aligment.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/auto-layout/add_new_constraints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/auto-layout/add_new_constraints.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/auto-layout/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/auto-layout/center.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/auto-layout/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/auto-layout/compass.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/auto-layout/device_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/auto-layout/device_conf.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/auto-layout/right_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/auto-layout/right_left.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/counter-app/assistance-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/counter-app/assistance-editor.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/counter-app/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/counter-app/connect.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/counter-app/input-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/counter-app/input-action.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/counter-app/input-parts-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/counter-app/input-parts-name.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/counter-app/new-swift-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/counter-app/new-swift-file.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/counter-app/place-ui-parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/counter-app/place-ui-parts.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/asset-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/asset-image.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/connect-parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/connect-parts.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/create-my-table-view-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/create-my-table-view-cell.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/create-round-rect-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/create-round-rect-button.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/custom-button-designable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/custom-button-designable.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/place-views-on-xib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/place-views-on-xib.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/robots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/robots.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/set-custom-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/set-custom-class.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/custom-view/three-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/custom-view/three-labels.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/iphones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/iphones.pdf -------------------------------------------------------------------------------- /2017/mobile-app/assets/json-api/custom-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/json-api/custom-class.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/json-api/new-swift-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/json-api/new-swift-file.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/json-api/table-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/json-api/table-cell.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/30days-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/30days-structure.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/add-items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/add-items.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/after-moving-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/after-moving-out.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/build-phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/build-phases.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/directories-to-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/directories-to-groups.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/initial-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/initial-structure.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/new-project.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/relative-to-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/relative-to-group.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/new-project/source-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/new-project/source-control.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/testing-counter-app/accessibility-identifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/testing-counter-app/accessibility-identifier.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/embed-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/embed-in.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/initial-view-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/initial-view-controller.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/main-storyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/main-storyboard.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/new-storyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/new-storyboard.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/segue-from-view-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/segue-from-view-controller.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/set-segue-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/set-segue-id.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/set-storyboard-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/set-storyboard-id.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/storyboard-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/storyboard-reference.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/unwind-to-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/unwind-to-main.png -------------------------------------------------------------------------------- /2017/mobile-app/assets/transition/view-controller-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/assets/transition/view-controller-id.png -------------------------------------------------------------------------------- /2017/mobile-app/chapters/actual-device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/actual-device.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/auto-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/auto-layout.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/counter-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/counter-app.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/custom-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/custom-view.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/develop-our-product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/develop-our-product.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/json-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/json-api.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/new-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/new-project.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/paper-prototyping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/paper-prototyping.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/prerequisite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/prerequisite.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/testing-counter-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/testing-counter-app.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/transition.md -------------------------------------------------------------------------------- /2017/mobile-app/chapters/user-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/mobile-app/chapters/user-test.md -------------------------------------------------------------------------------- /2017/web-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-dev/README.md -------------------------------------------------------------------------------- /2017/web-ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/README.md -------------------------------------------------------------------------------- /2017/web-ops/assets/big_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/big_picture.png -------------------------------------------------------------------------------- /2017/web-ops/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/overview.png -------------------------------------------------------------------------------- /2017/web-ops/assets/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/step1.png -------------------------------------------------------------------------------- /2017/web-ops/assets/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/step2.png -------------------------------------------------------------------------------- /2017/web-ops/assets/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/step3.png -------------------------------------------------------------------------------- /2017/web-ops/assets/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/step4.png -------------------------------------------------------------------------------- /2017/web-ops/assets/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/step5.png -------------------------------------------------------------------------------- /2017/web-ops/assets/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/step6.png -------------------------------------------------------------------------------- /2017/web-ops/assets/vm_and_docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/assets/vm_and_docker.png -------------------------------------------------------------------------------- /2017/web-ops/chapters/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/about.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/all_in_one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/all_in_one.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/bastion_puppetserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/bastion_puppetserver.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/dividing_into_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/dividing_into_roles.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/docker.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/higher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/higher.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/puppet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/puppet.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/redundant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/redundant.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/system-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/system-overview.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/tools.md -------------------------------------------------------------------------------- /2017/web-ops/chapters/virtualhost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/textbook/HEAD/2017/web-ops/chapters/virtualhost.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # textbook 2 | 3 | ペパボの研修の教科書 4 | --------------------------------------------------------------------------------