├── index.md ├── _posts └── 2018-09-13-Machine Learning Basics.md ├── _config.yml └── README.md /index.md: -------------------------------------------------------------------------------- 1 | # Welcome to my blog 2 | 3 | I'm glad you are here. I plan to talk about ...machine learing. It's a hot topic right now and I happy to be fascinated by it. 4 | -------------------------------------------------------------------------------- /_posts/2018-09-13-Machine Learning Basics.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Machine Learning Basics" 3 | date: 2018-09-13 4 | --- 5 | 6 | This post introduces basic machine learning ideas. 7 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Robert Hatem 2 | author: Robert Hatem 3 | email: robert.emile.hatem@gmail.com 4 | description: > # this means to ignore newlines until "baseurl:" 5 | Write an awesome description for your new site here. You can edit this 6 | line in _config.yml. It will appear in your document head meta (for 7 | Google search results) and in your feed.xml site description. This is a blog 8 | for machine learning and other topics. 9 | 10 | # social links 11 | twitter_username: your-twitter-handle 12 | github_username: your-github-handle 13 | 14 | show_excerpts: true # set to false to remove excerpts on the homepage 15 | 16 | theme: minima 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Your GitHub Learning Lab Repository for GitHub Pages 2 | 3 | Welcome to **your** repository for your GitHub Learning Lab course. This repository will be used during the different activities that I will be guiding you through. 4 | 5 | Oh! I haven't introduced myself... 6 | 7 | I'm the GitHub Learning Lab bot and I'm here to help guide you in your journey to learn and master the various topics covered in this course. I will be using Issue and Pull Request comments to communicate with you. In fact, I already added an issue for you to check out. 8 | 9 | ![issue tab](https://lab.github.com/public/images/issue_tab.png) 10 | 11 | I'll meet you over there, can't wait to get started! 12 | --------------------------------------------------------------------------------