├── 404.html ├── README.md ├── about ├── index.html ├── index.xml └── page │ └── 1 │ └── index.html ├── categories ├── index.html └── index.xml ├── contact └── index.html ├── dist ├── css │ └── app.1cb140d8ba31d5b2f1114537dd04802a.css └── js │ └── app.3fc0f988d21662902933.js ├── images ├── Pope-Edouard-de-Beaumont-1844.jpg ├── Victor_Hugo-Hunchback.jpg ├── dennis-kummer-52gEprMkp7M-unsplash.jpg ├── esmeralda.jpg ├── gohugo-default-sample-hero-image.jpg ├── jeremy-thomas-rMmibFe4czY-unsplash.jpg ├── ken-jee.png ├── markus-spiske-qjnAnF0jIGk-unsplash.jpg ├── matrix_results.png ├── notebook.jpg └── positions_by_state.png ├── index.html ├── index.xml ├── post ├── images │ ├── matrix_results.png │ └── positions_by_state.png ├── index.html ├── index.xml ├── page │ └── 1 │ │ └── index.html ├── project-1 │ └── index.html └── project-2 │ └── index.html ├── robots.txt ├── sitemap.xml └── tags ├── index.html └── index.xml /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/404.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/README.md -------------------------------------------------------------------------------- /about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/about/index.html -------------------------------------------------------------------------------- /about/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/about/index.xml -------------------------------------------------------------------------------- /about/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/about/page/1/index.html -------------------------------------------------------------------------------- /categories/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/categories/index.html -------------------------------------------------------------------------------- /categories/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/categories/index.xml -------------------------------------------------------------------------------- /contact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/contact/index.html -------------------------------------------------------------------------------- /dist/css/app.1cb140d8ba31d5b2f1114537dd04802a.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/dist/css/app.1cb140d8ba31d5b2f1114537dd04802a.css -------------------------------------------------------------------------------- /dist/js/app.3fc0f988d21662902933.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/dist/js/app.3fc0f988d21662902933.js -------------------------------------------------------------------------------- /images/Pope-Edouard-de-Beaumont-1844.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/Pope-Edouard-de-Beaumont-1844.jpg -------------------------------------------------------------------------------- /images/Victor_Hugo-Hunchback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/Victor_Hugo-Hunchback.jpg -------------------------------------------------------------------------------- /images/dennis-kummer-52gEprMkp7M-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/dennis-kummer-52gEprMkp7M-unsplash.jpg -------------------------------------------------------------------------------- /images/esmeralda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/esmeralda.jpg -------------------------------------------------------------------------------- /images/gohugo-default-sample-hero-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/gohugo-default-sample-hero-image.jpg -------------------------------------------------------------------------------- /images/jeremy-thomas-rMmibFe4czY-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/jeremy-thomas-rMmibFe4czY-unsplash.jpg -------------------------------------------------------------------------------- /images/ken-jee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/ken-jee.png -------------------------------------------------------------------------------- /images/markus-spiske-qjnAnF0jIGk-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/markus-spiske-qjnAnF0jIGk-unsplash.jpg -------------------------------------------------------------------------------- /images/matrix_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/matrix_results.png -------------------------------------------------------------------------------- /images/notebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/notebook.jpg -------------------------------------------------------------------------------- /images/positions_by_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/images/positions_by_state.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/index.html -------------------------------------------------------------------------------- /index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/index.xml -------------------------------------------------------------------------------- /post/images/matrix_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/post/images/matrix_results.png -------------------------------------------------------------------------------- /post/images/positions_by_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/post/images/positions_by_state.png -------------------------------------------------------------------------------- /post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/post/index.html -------------------------------------------------------------------------------- /post/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/post/index.xml -------------------------------------------------------------------------------- /post/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/post/page/1/index.html -------------------------------------------------------------------------------- /post/project-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/post/project-1/index.html -------------------------------------------------------------------------------- /post/project-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/post/project-2/index.html -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/robots.txt -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/sitemap.xml -------------------------------------------------------------------------------- /tags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/tags/index.html -------------------------------------------------------------------------------- /tags/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataprofessor/Ken_Portfolio/HEAD/tags/index.xml --------------------------------------------------------------------------------