this readme will show how to deploy to AWS backend for web system
Create NX workspace - Monorepo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "IAB1": "Arts & Entertainment", | |
| "IAB1-1": "Books & Literature", | |
| "IAB1-2": "Celebrity Fan/Gossip", | |
| "IAB1-3": "Fine Art", | |
| "IAB1-4": "Humor", | |
| "IAB1-5": "Movies", | |
| "IAB1-6": "Music", | |
| "IAB1-7": "Television", | |
| "IAB2": "Automotive", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // getFullYear() - Returns the 4-digit year | |
| // getMonth() - Returns a zero-based integer (0-11) representing the month of the year. | |
| // getDate() - Returns the day of the month (1-31). | |
| // getDay() - Returns the day of the week (0-6). 0 is Sunday, 6 is Saturday. | |
| // getHours() - Returns the hour of the day (0-23). | |
| // getMinutes() - Returns the minute (0-59). | |
| // getSeconds() - Returns the second (0-59). | |
| // getMilliseconds() - Returns the milliseconds (0-999). | |
| // getTimezoneOffset() - Returns the number of minutes between the machine local time and |
you can to follow the link click here
1)
brew install protobuf
pip install grpcio grpcio-tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Menu: React.FC = () => { | |
| return ( | |
| <Router> | |
| <nav> | |
| <ul className='Menu-navbar'> | |
| <div className='Menu-Logo-place'> | |
| <Link to="/"><img className='Menu-logo-image' src={Menu_logo} alt="lt" /></Link> | |
| </div> | |
| <div className='Menu-list-place'> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function LoopOverObject(obj) | |
| { | |
| for (let prop in obj) { | |
| console.log(prop, obj[prop]); | |
| // Check if Arry of (numbers or strings) | |
| if(typeof obj[prop] === 'object' && Array.isArray(obj[prop]) === true) | |
| { | |
| for(let arr of obj[prop]) | |
| { | |
| console.log(">> "+arr); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Lists of countries with ISO 3166 codes, presented in various formats. | |
| // Last Updated: July 30, 2020 | |
| // If you're using PHP, I suggest checking out: | |
| // https://github.com/thephpleague/iso3166 | |
| // or Laravel: https://github.com/squirephp/squire | |
| // | |
| // JS developers can check out: | |
| // https://www.npmjs.com/package/iso3166-2-db | |
| // |