├── .gitmodules ├── .vs └── slnx.sqlite ├── MyBlogSample-ModernUI ├── README.md ├── README_EN.md ├── react-redux │ ├── Features │ │ ├── ConnectBackend.md │ │ ├── PostAuthor.md │ │ ├── PostCategories.md │ │ ├── PostPagination.md │ │ └── PostTags.md │ └── LearningGoals │ │ ├── ConnectBackend.md │ │ ├── PostAuthor.md │ │ ├── PostCategories.md │ │ ├── PostPagination.md │ │ └── PostTags.md └── react │ ├── Features │ ├── ConnectBackend.md │ ├── PostAuthor.md │ ├── PostCategories.md │ ├── PostPagination.md │ └── PostTags.md │ └── LearningGoals │ ├── ConnectBackend.md │ ├── PostAuthor.md │ ├── PostCategories.md │ ├── PostPagination.md │ └── PostTags.md ├── MyBlogSample ├── README.md ├── README_IT.md ├── version0 │ ├── Features │ │ ├── PostAuthor.md │ │ ├── PostAuthor_IT.md │ │ ├── PostCategories.md │ │ ├── PostCategories_IT.md │ │ ├── PostPagination.md │ │ ├── PostPagination_IT.md │ │ ├── PostTags.md │ │ ├── PostTags_IT.md │ │ ├── TestingAndBugFixing.md │ │ └── TestingAndBugFixing_IT.md │ ├── LearningGoals │ │ ├── PostAuthor.md │ │ ├── PostAuthor_IT.md │ │ ├── PostCategories.md │ │ ├── PostCategories_IT.md │ │ ├── PostPagination.md │ │ ├── PostPagination_IT.md │ │ ├── PostTags.md │ │ ├── PostTags_IT.md │ │ ├── TestingAndBugFixing.md │ │ └── TestingAndBugFixing_IT.md │ ├── README.md │ └── README_IT.md └── version1 │ ├── 01_improve_ui │ ├── README.md │ └── README_IT.md │ ├── 02_admin_section │ ├── README.md │ └── README_IT.md │ └── 03_web_api │ ├── README.md │ └── README_IT.md ├── MySimpleSiteStatistics ├── Features │ ├── AddStoredProcedures.md │ ├── AddStoredProcedures_IT.md │ ├── AddViews.md │ └── AddViews_IT.md ├── LearningGoals │ ├── AddStoredProcedures.md │ ├── AddStoredProcedures_IT.md │ ├── AddViews.md │ └── AddViews_IT.md ├── README.md └── README_IT.md ├── README.md └── README_EN.md /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/README.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/README_EN.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/Features/ConnectBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/Features/ConnectBackend.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/Features/PostAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/Features/PostAuthor.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/Features/PostCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/Features/PostCategories.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/Features/PostPagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/Features/PostPagination.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/Features/PostTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/Features/PostTags.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/LearningGoals/ConnectBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/LearningGoals/ConnectBackend.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/LearningGoals/PostAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/LearningGoals/PostAuthor.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/LearningGoals/PostCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/LearningGoals/PostCategories.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/LearningGoals/PostPagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/LearningGoals/PostPagination.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react-redux/LearningGoals/PostTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react-redux/LearningGoals/PostTags.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/Features/ConnectBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/Features/ConnectBackend.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/Features/PostAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/Features/PostAuthor.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/Features/PostCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/Features/PostCategories.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/Features/PostPagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/Features/PostPagination.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/Features/PostTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/Features/PostTags.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/LearningGoals/ConnectBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/LearningGoals/ConnectBackend.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/LearningGoals/PostAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/LearningGoals/PostAuthor.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/LearningGoals/PostCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/LearningGoals/PostCategories.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/LearningGoals/PostPagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/LearningGoals/PostPagination.md -------------------------------------------------------------------------------- /MyBlogSample-ModernUI/react/LearningGoals/PostTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample-ModernUI/react/LearningGoals/PostTags.md -------------------------------------------------------------------------------- /MyBlogSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/README.md -------------------------------------------------------------------------------- /MyBlogSample/README_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/README_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostAuthor.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostAuthor_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostAuthor_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostCategories.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostCategories_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostCategories_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostPagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostPagination.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostPagination_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostPagination_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostTags.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/PostTags_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/PostTags_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/TestingAndBugFixing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/TestingAndBugFixing.md -------------------------------------------------------------------------------- /MyBlogSample/version0/Features/TestingAndBugFixing_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/Features/TestingAndBugFixing_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostAuthor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostAuthor.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostAuthor_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostAuthor_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostCategories.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostCategories_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostCategories_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostPagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostPagination.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostPagination_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostPagination_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostTags.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/PostTags_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/PostTags_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/TestingAndBugFixing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/TestingAndBugFixing.md -------------------------------------------------------------------------------- /MyBlogSample/version0/LearningGoals/TestingAndBugFixing_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/LearningGoals/TestingAndBugFixing_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/README.md -------------------------------------------------------------------------------- /MyBlogSample/version0/README_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MyBlogSample/version0/README_IT.md -------------------------------------------------------------------------------- /MyBlogSample/version1/01_improve_ui/README.md: -------------------------------------------------------------------------------- 1 | # My Blog Sample - Version 1 2 | ([Italian translate](README_IT.md)) 3 | 4 | [TO TRANSLATE] 5 | -------------------------------------------------------------------------------- /MyBlogSample/version1/01_improve_ui/README_IT.md: -------------------------------------------------------------------------------- 1 | # My Blog Sample - Versione 1 2 | ([English translate](README.md)) 3 | 4 | [TO DO] 5 | 6 | -------------------------------------------------------------------------------- /MyBlogSample/version1/02_admin_section/README.md: -------------------------------------------------------------------------------- 1 | # My Blog Sample - Version 1 2 | ([Italian translate](README_IT.md)) 3 | 4 | [TO TRANSLATE] 5 | -------------------------------------------------------------------------------- /MyBlogSample/version1/02_admin_section/README_IT.md: -------------------------------------------------------------------------------- 1 | # My Blog Sample - Versione 1 2 | ([English translate](README.md)) 3 | 4 | [TO DO] 5 | 6 | -------------------------------------------------------------------------------- /MyBlogSample/version1/03_web_api/README.md: -------------------------------------------------------------------------------- 1 | # My Blog Sample - Version 1 2 | ([Italian translate](README_IT.md)) 3 | 4 | [TO TRANSLATE] 5 | -------------------------------------------------------------------------------- /MyBlogSample/version1/03_web_api/README_IT.md: -------------------------------------------------------------------------------- 1 | # My Blog Sample - Versione 1 2 | ([English translate](README.md)) 3 | 4 | [TO DO] 5 | 6 | -------------------------------------------------------------------------------- /MySimpleSiteStatistics/Features/AddStoredProcedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/Features/AddStoredProcedures.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/Features/AddStoredProcedures_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/Features/AddStoredProcedures_IT.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/Features/AddViews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/Features/AddViews.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/Features/AddViews_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/Features/AddViews_IT.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/LearningGoals/AddStoredProcedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/LearningGoals/AddStoredProcedures.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/LearningGoals/AddStoredProcedures_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/LearningGoals/AddStoredProcedures_IT.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/LearningGoals/AddViews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/LearningGoals/AddViews.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/LearningGoals/AddViews_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/LearningGoals/AddViews_IT.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/README.md -------------------------------------------------------------------------------- /MySimpleSiteStatistics/README_IT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/MySimpleSiteStatistics/README_IT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-by-doing-organization/learn-by-doing-vNext/HEAD/README_EN.md --------------------------------------------------------------------------------