This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
| #ES6 | |
| 1. [https://www.udemy.com/course/next-level-javascript-in-bangla-from-es5-to-esnext] | |
| 2.[https://medium.com/%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%E0%A6%BF%E0%A6%82-%E0%A6%AA%E0%A6%BE%E0%A6%A4%E0%A6%BE/tagged/javascript] | |
| 3.[JavaScript OOP Crash Course (ES5 & ES6](https://www.youtube.com/watch?v=vDJpGenyHaA) | |
| # React JS | |
| 1. [Bangla Crash Course](https://www.youtube.com/watch?v=xVrqPcNX0Bk) | |
| 2. [Todo App Bangla](https://www.youtube.com/watch?v=YMi8SjTzjkQ) | |
| 3. [React JS Crash Course - 2019 By Traversy Media](https://www.youtube.com/watch?v=sBws8MSXN7A) | |
| 4.[React Documentation](https://reactjs.org/tutorial/tutorial.html) | 
| &::before { | |
| content: " "; | |
| height: 0; | |
| position: absolute; | |
| top: 47px; | |
| width: 0; | |
| z-index: 1; | |
| right: 30px; | |
| border: medium solid white; | |
| border-width: 0px 10px 10px 10px; | 
| //Set data to local storage. 1st parameter for token name which will used to catch data from local storage. | |
| //JSON.stringify(), Convert a JavaScript object into a string. | |
| localStorage.setItem( | |
| 'tokanNameOfData', | |
| JSON.stringify(this.props.tokanNameOfData) | |
| ) | |
| // Catch data from local storage. | |
| //JSON.parse() convert server data string to JavaScript object | 
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Box Shadow</title> | |
| <style> | |
| .box { | |
| height: 150px; | |
| width: 300px; | |
| margin: 20px; | 
| // check version | |
| node -v || node --version | |
| // list installed versions of node (via nvm) | |
| nvm ls | |
| // install specific version of node | |
| nvm install 6.9.2 | |
| // set default version of node | 
In addition to the charts that follow, you might want to consider the Frequently Asked Questions section for a selection of common questions about MongoDB.
The following table presents the MySQL/Oracle executables and the corresponding MongoDB executables.
| const imageIndexRandom = (min, max) => | |
| Math.floor(Math.random() * (max - min + 1)) + min; | 
| https://codepen.io/stephanrusu/pen/VPRQqK | |
| https://codepen.io/designosis/pen/LbMgya | |
| http://react.semantic-ui.com/layouts/sticky/ |