├── .gitignore ├── README.markdown ├── book ├── DesignPatterns.rtf └── DesignPatterns.txt ├── design └── layout.psd └── site ├── WalkwayBold.ttf ├── bg.png ├── book.png ├── index.html └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/README.markdown -------------------------------------------------------------------------------- /book/DesignPatterns.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/book/DesignPatterns.rtf -------------------------------------------------------------------------------- /book/DesignPatterns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/book/DesignPatterns.txt -------------------------------------------------------------------------------- /design/layout.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/design/layout.psd -------------------------------------------------------------------------------- /site/WalkwayBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/site/WalkwayBold.ttf -------------------------------------------------------------------------------- /site/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/site/bg.png -------------------------------------------------------------------------------- /site/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/site/book.png -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/site/index.html -------------------------------------------------------------------------------- /site/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshipper/Startup-Design-Patterns/HEAD/site/style.css --------------------------------------------------------------------------------