Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /** | |
| * ECMA2015 | |
| */ | |
| function convertHex(hexCode, opacity = 1){ | |
| var hex = hexCode.replace('#', ''); | |
| if (hex.length === 3) { | |
| hex = hex[0] + hex[0] + hex[1] + hex[1] + hex[2] + hex[2]; | |
| } |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| This examples shows the sales funnel in an organisation i.e. | |
| 1. Number of leads created. | |
| 2. Number of leads to whom phone calls were made. | |
| 3. Number of leads pitched to whom phone calls were made. | |
| 4. Number of leads whom were pitched, negotiated. | |
| 5. Number of final closure. |
| Maslow's hierarchy of needs is often portrayed in the shape of a pyramid with the largest, | |
| most fundamental levels of needs at the bottom and the need for self-actualization at the top. | |
| While the pyramid has become the de facto way to represent the hierarchy, Maslow himself | |
| never used a pyramid to describe these levels in any of his writings on the subject. | |
| Reference: http://en.wikipedia.org/wiki/Maslow%27s_hierarchy_of_needs |