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
| image: node:6.11.2 | |
| pipelines: | |
| custom: # Pipelines that are triggered manually | |
| deployment-to-production-init: | |
| - step: | |
| caches: | |
| - node | |
| script: # Modify the commands below to build your repository. | |
| - npm install -g gulp |
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
| <snippet> | |
| <content><![CDATA[describe('${1:description}', () => { | |
| ${0:// body...} | |
| }) | |
| ]]></content> | |
| <tabTrigger>desc</tabTrigger> | |
| <scope>source.js,source.ts</scope> | |
| <description>BDD Describe</description> | |
| </snippet> |
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
| <snippet> | |
| <content><![CDATA[it('should ${1}', ${2:async }() => { | |
| ${0:// body...} | |
| }); | |
| ]]></content> | |
| <tabTrigger>it</tabTrigger> | |
| <scope>source.js,source.ts</scope> | |
| <description>BDD It</description> | |
| </snippet> |
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
| // Generate class helpers for size properties such as margin, padding, font-size | |
| // Usage : | |
| // @include marginer(5, 60, 5) | |
| // .mt5 will then add margin-top:5px to the element, | |
| // and so on for each side, from 5px to 60px with a 5px step. | |
| @mixin marginer($min, $max, $step) { | |
| .mt#{$min} {margin-top: $min*1px} | |
| .mb#{$min} {margin-bottom: $min*1px} | |
| .ml#{$min} {margin-left: $min*1px} |
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
| /** | |
| * Remove all specified keys from an object, no matter how deep they are. | |
| * The removal is done in place, so run it on a copy if you don't want to modify the original object. | |
| * This function has no limit so circular objects will probably crash the browser | |
| * | |
| * @param obj The object from where you want to remove the keys | |
| * @param keys An array of property names (strings) to remove | |
| */ | |
| function removeKeys(obj, keys){ | |
| var index; |
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
| { | |
| "Producers": [ | |
| { | |
| "addr": "relay1.hype-staking.com", | |
| "port": 3001, | |
| "valency": 1 | |
| }, | |
| { | |
| "addr": "relay2.hype-staking.com", | |
| "port": 3002, |
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
| {"valueParameterInfo":[],"timeParameterDescriptions":[],"roleDescriptions":[],"contractType":"Other","contractShortDescription":"Simple contract example","contractName":"Simple contract","contractLongDescription":"The giver pay to there account 100 Ada and the receiver get's all Ada from the giver account","choiceInfo":[]} |
