From 3ddf118ce5dff9f5d230eaa1b184624e5c7c05a7 Mon Sep 17 00:00:00 2001 From: Ivan Bobev Date: Wed, 9 May 2018 12:48:10 +0300 Subject: [PATCH 01/17] Add tutorial about writing concurrent servers. * Add additional sub-section in C/C++ section about network programming. * Move "Let's Code a TCP/IP Stack" tutorial series in it. * Add series of tutorials about writing concurrent servers by [Eli Bendersky](https://github.com/eliben). --- README.md | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3bd11e9..172e98f 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,6 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [How to Write an Emulator (CHIP-8 interpreter)](http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/) * [Beginning Game Programming with C++ and SDL](http://lazyfoo.net/tutorials/SDL/) * [Implementing a Key-Value Store](http://codecapsule.com/2012/11/07/ikvs-implementing-a-key-value-store-table-of-contents/) -* Let's Code a TCP/IP Stack - * [Part 1: Ethernet & ARP](http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp/) - * [Part 2: IPv4 & ICMPv4](http://www.saminiir.com/lets-code-tcp-ip-stack-2-ipv4-icmpv4/) - * [Part 3: TCP Basics & Handshake](http://www.saminiir.com/lets-code-tcp-ip-stack-3-tcp-handshake/) - * [Part 4: TCP Data Flow & Socket API](http://www.saminiir.com/lets-code-tcp-ip-stack-4-tcp-data-flow-socket-api/) - * [Part 5: TCP Retransmission](http://www.saminiir.com/lets-code-tcp-ip-stack-5-tcp-retransmission/) * Writing a minimal x86-64 JIT compiler in C++ * [Part 1](https://solarianprogrammer.com/2018/01/10/writing-minimal-x86-64-jit-compiler-cpp/) * [Part 2](https://solarianprogrammer.com/2018/01/12/writing-minimal-x86-64-jit-compiler-cpp-part-2/) @@ -65,6 +59,23 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Part 8: Loops](https://norasandler.com/2018/04/10/Write-a-Compiler-8.html) * [Implementing a Language with LLVM](https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm) +### Network programming + +* Let's Code a TCP/IP Stack + * [Part 1: Ethernet & ARP](http://www.saminiir.com/lets-code-tcp-ip-stack-1-ethernet-arp/) + * [Part 2: IPv4 & ICMPv4](http://www.saminiir.com/lets-code-tcp-ip-stack-2-ipv4-icmpv4/) + * [Part 3: TCP Basics & Handshake](http://www.saminiir.com/lets-code-tcp-ip-stack-3-tcp-handshake/) + * [Part 4: TCP Data Flow & Socket API](http://www.saminiir.com/lets-code-tcp-ip-stack-4-tcp-data-flow-socket-api/) + * [Part 5: TCP Retransmission](http://www.saminiir.com/lets-code-tcp-ip-stack-5-tcp-retransmission/) + +* Programming concurrent servers + * [Part 1 - Introduction](https://eli.thegreenplace.net/2017/concurrent-servers-part-1-introduction/) + * [Part 2 - Threads](https://eli.thegreenplace.net/2017/concurrent-servers-part-2-threads/) + * [Part 3 - Event-driven](https://eli.thegreenplace.net/2017/concurrent-servers-part-3-event-driven/) + * [Part 4 - libuv](https://eli.thegreenplace.net/2017/concurrent-servers-part-4-libuv/) + * [Part 5 - Redis case study](https://eli.thegreenplace.net/2017/concurrent-servers-part-5-redis-case-study/) + * [Part 6 - Callbacks, Promises and async/await](https://eli.thegreenplace.net/2018/concurrent-servers-part-6-callbacks-promises-and-asyncawait/) + ### OpenGL: * Creating 2D Breakout game clone in C++ with OpenGL From ca91ef7376f5c7dbc9e9598286d3137e224e49ba Mon Sep 17 00:00:00 2001 From: Joseph Date: Fri, 25 May 2018 07:25:49 +0800 Subject: [PATCH 02/17] Update README.md I changed a typo: "BeautifulSoap" to "BeautifulSoup" in line 241. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 57fc858..7240196 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Mining Twitter Data with Python](https://marcobonzanini.com/2015/03/02/mining-twitter-data-with-python-part-1/) * [Scrape a Website with Scrapy and MongoDB](https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/) * [How To Scrape With Python and Selenium WebDriver](http://www.byperth.com/2018/04/25/guide-web-scraping-101-what-you-need-to-know-and-how-to-scrape-with-python-selenium-webdriver/) -* [Which Movie Should I Watch using BeautifulSoap](https://medium.com/@nishantsahoo.in/which-movie-should-i-watch-5c83a3c0f5b1) +* [Which Movie Should I Watch using BeautifulSoup](https://medium.com/@nishantsahoo.in/which-movie-should-i-watch-5c83a3c0f5b1) ### Web Applications: From 4b083ba5ae6e721745d3acbac5b22ec7ea13f9d9 Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 25 May 2018 10:36:58 +0300 Subject: [PATCH 03/17] Added APi tutorial with Hapi --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 57fc858..bda4957 100644 --- a/README.md +++ b/README.md @@ -179,6 +179,8 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Part 1](https://scotch.io/tutorials/build-a-support-ticket-application-with-adonisjs) * [Part 2](https://scotch.io/tutorials/build-a-support-ticket-application-with-adonisjs-part-2) * [Build A Native Desktop App with JS](https://medium.freecodecamp.org/build-native-desktop-apps-with-javascript-a49ede90d8e9) +* Build a Powerful API with NodeJs,GraphQL and Hapi + * [Part I](https://medium.com/@wesharehoodies/how-to-setup-a-powerful-api-with-nodejs-graphql-mongodb-hapi-and-swagger-e251ac189649) #### D3.js From d6ba98ee94c71d623b6911616c805b39fb112774 Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 25 May 2018 10:42:42 +0300 Subject: [PATCH 04/17] Added Webpack for React tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bda4957..e4e0695 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Build A ToDo App With React Native](https://blog.hasura.io/tutorial-fullstack-react-native-with-graphql-and-authentication-18183d13373a) * [Make a Chat Application](https://medium.freecodecamp.org/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a) * [Create a News App with React Native](https://medium.freecodecamp.org/create-a-news-app-using-react-native-ced249263627) +* [Learn Webpack For React](https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060) #### Angular: From 6da9a6a74404ca228605713494e1f4907916352b Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 25 May 2018 10:44:57 +0300 Subject: [PATCH 05/17] Added Testing React App tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e4e0695..89162d0 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Make a Chat Application](https://medium.freecodecamp.org/how-to-build-a-chat-application-using-react-redux-redux-saga-and-web-sockets-47423e4bc21a) * [Create a News App with React Native](https://medium.freecodecamp.org/create-a-news-app-using-react-native-ced249263627) * [Learn Webpack For React](https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060) +* [Testing React App With Pupepeteer and Jest](https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59) #### Angular: From e6f3fbd1b89f24b35c93285efeb3d1b7be798856 Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 25 May 2018 10:48:37 +0300 Subject: [PATCH 06/17] Added Associate Rule Mining in R tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 89162d0..8b82efb 100644 --- a/README.md +++ b/README.md @@ -373,6 +373,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Build Web Apps with Shiny](http://shiny.rstudio.com/tutorial/) * [Build A Cryptocurrency Bot](https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1) +* [Associate Rule Mining in R](https://towardsdatascience.com/association-rule-mining-in-r-ddf2d044ae50) ## Rust: From b55ba19f3c2016875296bd0d5cabcebabedd9f0f Mon Sep 17 00:00:00 2001 From: Ivan Bobev Date: Sun, 27 May 2018 20:47:52 +0300 Subject: [PATCH 07/17] Add a matrix multiplication tutorial Add tutorial about writing of a high performance matrix multiplication in C++ by Jean Guegant. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 57fc858..0c71af0 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Part 7: Compound Statements](https://norasandler.com/2018/03/14/Write-a-Compiler-7.html) * [Part 8: Loops](https://norasandler.com/2018/04/10/Write-a-Compiler-8.html) * [Implementing a Language with LLVM](https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm) +* [High-Performance Matrix Multiplication](https://gist.github.com/nadavrot/5b35d44e8ba3dd718e595e40184d03f0) ### OpenGL: From 2a1c74d2b0d5427a991a4ec982e9295aa29cac6d Mon Sep 17 00:00:00 2001 From: Ivan Bobev Date: Sun, 27 May 2018 20:59:09 +0300 Subject: [PATCH 08/17] Add Tetris tutorial MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add tutorial about writing a Tetris game by Javier López. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 57fc858..6c7570d 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Part 7: Compound Statements](https://norasandler.com/2018/03/14/Write-a-Compiler-7.html) * [Part 8: Loops](https://norasandler.com/2018/04/10/Write-a-Compiler-8.html) * [Implementing a Language with LLVM](https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm) +* [Tetris tutorial in C++ platform independent focused in game logic for beginners](http://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/) ### OpenGL: From 6955c3f8c0d55334630495a3d1e28e8e4f1772cf Mon Sep 17 00:00:00 2001 From: Ivan Bobev Date: Sun, 27 May 2018 21:03:43 +0300 Subject: [PATCH 09/17] Add tutorial about writing a Space Invaders game Add series of articles about writing a Space Invaders game clone by Nick Tasios. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 57fc858..868953b 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,11 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Part 7: Compound Statements](https://norasandler.com/2018/03/14/Write-a-Compiler-7.html) * [Part 8: Loops](https://norasandler.com/2018/04/10/Write-a-Compiler-8.html) * [Implementing a Language with LLVM](https://llvm.org/docs/tutorial/#kaleidoscope-implementing-a-language-with-llvm) +* Space Invaders from Scratch + * [Part 1](http://nicktasios.nl/posts/space-invaders-from-scratch-part-1.html) + * [Part 2](http://nicktasios.nl/posts/space-invaders-from-scratch-part-2.html) + * [Part 3](http://nicktasios.nl/posts/space-invaders-from-scratch-part-3.html) + * [Part 4](http://nicktasios.nl/posts/space-invaders-from-scratch-part-4.html) ### OpenGL: From 48a0c01b9f5b0bc93a45c12a72ad15b4f3e125de Mon Sep 17 00:00:00 2001 From: Jody LeCompte <38302762+jodylecompte@users.noreply.github.com> Date: Mon, 28 May 2018 14:43:18 -0500 Subject: [PATCH 10/17] =?UTF-8?q?Added=20Python=20"Build=20a=20RESTful=20A?= =?UTF-8?q?PI=20with=20Flask=20=E2=80=93=20The=20TDD=20Way"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 72545a7..5acec25 100644 --- a/README.md +++ b/README.md @@ -262,6 +262,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Build a RESTful Microservice in Python](http://www.skybert.net/python/developing-a-restful-micro-service-in-python/) * [Microservices with Docker, Flask, and React](https://testdriven.io/) * [Build A Simple Web App With Flask](https://pythonspot.com/flask-web-app-with-python/) +* [Build a RESTful API with Flask – The TDD Way](https://scotch.io/tutorials/build-a-restful-api-with-flask-the-tdd-way) ### Bots: From 1d2af90159810e40d2e8f7ad47bfdf9d25767cbb Mon Sep 17 00:00:00 2001 From: sayands Date: Tue, 29 May 2018 15:35:32 +0300 Subject: [PATCH 11/17] Fixed small issue --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b82efb..eff6e08 100644 --- a/README.md +++ b/README.md @@ -373,7 +373,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Build Web Apps with Shiny](http://shiny.rstudio.com/tutorial/) * [Build A Cryptocurrency Bot](https://towardsdatascience.com/build-a-cryptocurrency-trading-bot-with-r-1445c429e1b1) -* [Associate Rule Mining in R](https://towardsdatascience.com/association-rule-mining-in-r-ddf2d044ae50) +* [Learn Associate Rule Mining in R](https://towardsdatascience.com/association-rule-mining-in-r-ddf2d044ae50) ## Rust: From d2f361702da149f3294d6d96e419a783dff17813 Mon Sep 17 00:00:00 2001 From: sayands Date: Tue, 29 May 2018 15:37:32 +0300 Subject: [PATCH 12/17] Added react boilerplate tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 23f8646..e722b71 100644 --- a/README.md +++ b/README.md @@ -150,6 +150,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Create a News App with React Native](https://medium.freecodecamp.org/create-a-news-app-using-react-native-ced249263627) * [Learn Webpack For React](https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060) * [Testing React App With Pupepeteer and Jest](https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59) +* [Build Your Own React Boilerplate](https://medium.freecodecamp.org/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f) #### Angular: From 82b735a8821e40a492216049ce0cc824448a436b Mon Sep 17 00:00:00 2001 From: sayands Date: Tue, 29 May 2018 16:25:14 +0300 Subject: [PATCH 13/17] Added Angular and Bootstrap tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e722b71..996ff4c 100644 --- a/README.md +++ b/README.md @@ -161,6 +161,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Build a web application with Django and AngularJS](https://thinkster.io/django-angularjs-tutorial) * Build A Beautiful Real World App with Angular 6 : * [Part I](https://medium.com/@hamedbaatour/build-a-real-world-beautiful-web-app-with-angular-6-a-to-z-ultimate-guide-2018-part-i-e121dd1d55e) +* [Build Responsive layout with BootStrap 4 and Angular 6](https://medium.com/@tomastrajan/how-to-build-responsive-layouts-with-bootstrap-4-and-angular-6-cfbb108d797b) #### Node: From 6dbcc465ce8e7c54cea2f7506ccb74e7bb0b8211 Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 1 Jun 2018 10:01:29 +0300 Subject: [PATCH 14/17] Added React tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 996ff4c..8a6831b 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Learn Webpack For React](https://medium.freecodecamp.org/learn-webpack-for-react-a36d4cac5060) * [Testing React App With Pupepeteer and Jest](https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59) * [Build Your Own React Boilerplate](https://medium.freecodecamp.org/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f) +* [Code The Game Of Life With React](https://medium.freecodecamp.org/create-gameoflife-with-react-in-one-hour-8e686a410174) #### Angular: From 80021e1edc3ffbbb735c26f2f61f628408257f0b Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 1 Jun 2018 10:02:41 +0300 Subject: [PATCH 15/17] Added React+Redux tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8a6831b..b2b2944 100644 --- a/README.md +++ b/README.md @@ -152,6 +152,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Testing React App With Pupepeteer and Jest](https://blog.bitsrc.io/testing-your-react-app-with-puppeteer-and-jest-c72b3dfcde59) * [Build Your Own React Boilerplate](https://medium.freecodecamp.org/how-to-build-your-own-react-boilerplate-2f8cbbeb9b3f) * [Code The Game Of Life With React](https://medium.freecodecamp.org/create-gameoflife-with-react-in-one-hour-8e686a410174) +* [A Basic React+Redux Introductory Tutorial](https://hackernoon.com/a-basic-react-redux-introductory-tutorial-adcc681eeb5e) #### Angular: From f465725bb8b4cdf94da2f734814aa58b7089b87c Mon Sep 17 00:00:00 2001 From: Ivan Bobev Date: Fri, 8 Jun 2018 18:03:31 +0300 Subject: [PATCH 16/17] Add "Writing a Linux Debugger" tutorial series. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 3c31d64..0ba6fd2 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,17 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Part 3](http://nicktasios.nl/posts/space-invaders-from-scratch-part-3.html) * [Part 4](http://nicktasios.nl/posts/space-invaders-from-scratch-part-4.html) * [Tetris Tutorial in C++ Platform Independent](http://javilop.com/gamedev/tetris-tutorial-in-c-platform-independent-focused-in-game-logic-for-beginners/) +* Writing a Linux Debugger + * [Part 1: Setup](https://blog.tartanllama.xyz/writing-a-linux-debugger-setup/) + * [Part 2: Breakpoints](https://blog.tartanllama.xyz/writing-a-linux-debugger-breakpoints/) + * [Part 3: Registers and memory](https://blog.tartanllama.xyz/writing-a-linux-debugger-registers/) + * [Part 4: Elves and dwarves](https://blog.tartanllama.xyz/writing-a-linux-debugger-elf-dwarf/) + * [Part 5: Source and signals](https://blog.tartanllama.xyz/writing-a-linux-debugger-source-signal/) + * [Part 6: Source-level stepping](https://blog.tartanllama.xyz/writing-a-linux-debugger-dwarf-step/) + * [Part 7: Source-level breakpoints](https://blog.tartanllama.xyz/writing-a-linux-debugger-source-break/) + * [Part 8: Stack unwinding](https://blog.tartanllama.xyz/writing-a-linux-debugger-unwinding/) + * [Part 9: Handling variables](https://blog.tartanllama.xyz/writing-a-linux-debugger-variables/) + * [Part 10: Advanced topics](https://blog.tartanllama.xyz/writing-a-linux-debugger-advanced-topics/) ### OpenGL: From 5c769d5db6db0126c70732ae40edd33797816df9 Mon Sep 17 00:00:00 2001 From: Ashok Gelal Date: Sun, 10 Jun 2018 11:59:00 -0600 Subject: [PATCH 17/17] Add multi-tenant app with Laravel project --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 3c31d64..f45831d 100644 --- a/README.md +++ b/README.md @@ -356,6 +356,17 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Build A Real Estate Website Example with SilverStripe](https://www.silverstripe.org/learn/lessons/) * [Building Realtime Chat App with Laravel 5.4 and VueJS](https://www.youtube.com/playlist?list=PLXsbBbd36_uVjOFH_P25__XAyGsohXWlv) * [Build A Social Network: Laravel 5 - Youtube](https://www.youtube.com/playlist?list=PLfdtiltiRHWGGxaR6uFtwZnnbcXqyq8JD) +* Build a full-featured multi-tenant app with Laravel + * [Part 0: Introduction](https://medium.com/@ashokgelal/writing-a-full-featured-multi-tenant-laravel-app-from-scratch-a0e1a7350d9d) + * [Part 1: Setup](https://medium.com/@ashokgelal/a-full-featured-multi-tenant-app-with-laravel-part-1-4049a3cc229d) + * [Part 2: Roles and Permissinos](https://medium.com/@ashokgelal/a-full-featured-multi-tenant-app-with-laravel-part-2-roles-and-permissions-d9a5bfe5d525) + * [Part 3: Invitation](https://medium.com/@ashokgelal/a-full-featured-multi-tenant-app-with-laravel-part-3-invitation-c982dca55eb9) + * [Part 4: Authentication](https://medium.com/@ashokgelal/a-full-featured-multi-tenant-app-with-laravel-part-4-tenancy-aware-authentication-e0ee37270bc8) + * [Part 5: Testing](https://medium.com/@ashokgelal/a-full-featured-multi-tenant-app-with-laravel-part-2-unit-tests-96d6dfbf0617) + * [Part 6: User Profile](https://medium.com/@ashokgelal/a-full-featured-multi-tenant-app-with-laravel-part-5-user-profile-5c3d0c655f3a) + * [Part 7: Deployment](https://medium.com/@ashokgelal/a-full-featured-multi-tenant-app-with-laravel-part-7-deployment-40bb3c895627 +) + ## OCaml: