Form of Capital | Sources |
---|---|
Financial Capital | - Savings and personal wealth - Bank loans and credit - Stock markets and investors - Venture capital and angel investors - Government grants and subsidies |
Physical Capital | - Manufacturing and construction - Research and development - Infrastructure investments - Technology adoption |
Human Capital | - Education and training - Work experience - Skills development - Health and wellness programs |
Intellectual Capital | - Research and development - Education and training - Innovation and creativity - Intellectual property rights |
Social Capital | - Community networks and relationships - Professional associations - Social norms and trust - Civic engagement |
Natural Capital | - Ecosystems and biodiversity - Renewable resources (e.g., forests, fisheries) - Non-renewable resources (e.g., minerals, fossil fuels) - Environmental services (e.g., clean air, water) |
This file contains 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
/** | |
* Fix wMode for embedded YouTube iFrames | |
**/ | |
function wmodeFix(){ | |
$('iframe[src*="youtube"]').each(function() { | |
var iframe_src = $(this).attr('src') + '?wmode=transparent'; | |
$(this).attr("src",iframe_src); | |
}); | |
This file contains 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
/** | |
* jquery.toggler.js | |
* - Allows checkboxes or radio input with class="{name}_toggle" to toggle elements with class="{name}" | |
* - Handles click event and pre-populated form fields | |
* | |
* Implementation Detail: | |
* 1. Include jquery & jquery.toggler.js | |
* 2. Call $('input[type="checkbox"][class$="_toggle"]').toggler(); | |
* 3. ???? | |
* 4. Profit! |
This file contains 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
Rank | Type | Prefix/Suffix | Length | |
---|---|---|---|---|
1 | Prefix | my+ | 2 | |
2 | Suffix | +online | 6 | |
3 | Prefix | the+ | 3 | |
4 | Suffix | +web | 3 | |
5 | Suffix | +media | 5 | |
6 | Prefix | web+ | 3 | |
7 | Suffix | +world | 5 | |
8 | Suffix | +net | 3 | |
9 | Prefix | go+ | 2 |
This file contains 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
/* | |
How to use: | |
1. Open Chrome | |
2. New Bookmark | |
3. Enter Name - https://emojipedia.org/search/?q=calendar | |
4. Paste code below into URL field | |
*/ | |
javascript: (function() { | |
var title = encodeURIComponent("Follow Up - " + document.title.replace("Account > ","")); |