- Support is when pause of downtrends is paused because of the demand concentration
- Resistance happens when there is a supply concentration which causes temporary pause of uptrend.
Sprint Date Items
1 15-21 Dec Stylesheet, C9, Documentation plan, accessibility checklist, code review process. QA process, Finalize templates.
2 22 Dec-6 Jan 20 modules (Design, development, documentation, QA, accessibility)
3 7-24 Jan 18 modules (Design, development, documentation, QA, accessibility)
4 25-31 Jan Final QA, Finetunes, consolidation, compliance with submission requirements.
| { | |
| "pro_score": 1, | |
| "score_details": { | |
| "capacity_rating": 1, | |
| "capacity_value": 0, | |
| "capacity_source": null, | |
| "affinity_rating": 1, | |
| "primary_affinity_rating": 1, | |
| "secondary_affinity_rating": null, | |
| "propensity_rating": 1 |
| function QueueItem(row, col, distance) { | |
| this.row = row; | |
| this.col = col; | |
| this.distance = distance; | |
| } | |
| const minDistance = (grid) => { | |
| let source = new QueueItem(0, 0, 0); |
| 1. Write a custom method to replace the string "The quick brown fox jumps | |
| over the lazy dog" with the string "The1 quick2 brown3 fox4 jumps5 | |
| over6 the7 lazy8 dog9" | |
| const transformStr = (str) => { | |
| console.log(this); | |
| let strArr = str.split(' '); | |
| let numArr = Array(strArr.length).fill().map((v, i) => i = i + 1); | |
| return strArr.map((v, i) => v + numArr[i]).join(' ') |
| { | |
| "data": [ | |
| { | |
| "type": "fulfillments", | |
| "id": "string", | |
| "attributes": { | |
| "status": "string", | |
| "service_level": "string", | |
| "ship_method": "string", | |
| "shipping_address": { |
| { | |
| "data": { | |
| "type": "shipments", | |
| "id": "string", | |
| "attributes": { | |
| "tracking": { | |
| "code": "string", | |
| "carrier": "string", | |
| "url": "string" | |
| }, |
| # HubSpot Integration | |
| The HubSpot integration consists of two components: | |
| - HubSpot Developer App | |
| - HubSpot library in the code base | |
| ## Installing the HubSpot Developer App |