I hereby claim:
- I am nick on github.
- I am nick_p (https://keybase.io/nick_p) on keybase.
- I have a public key ASBc5eqtAxgNOJ6SLOrgtL2jMMVIe1Di4iV4L70cVtbaMQo
To claim this, I am signing this object:
| // This program is free software: you can redistribute it and/or modify | |
| // it under the terms of the GNU General Public License as published by | |
| // the Free Software Foundation, either version 3 of the License, or | |
| // (at your option) any later version. | |
| // This program is distributed in the hope that it will be useful, | |
| // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| // GNU General Public License for more details. |
| pragma solidity ^0.4.24; | |
| pragma experimental ABIEncoderV2; | |
| contract ERC725 { | |
| uint256 constant MANAGEMENT_KEY = 1; | |
| uint256 constant ACTION_KEY = 2; | |
| uint256 constant CLAIM_SIGNER_KEY = 4; | |
| uint256 constant ENCRYPTION_KEY = 8; |
| pragma solidity ^0.4.24; | |
| pragma experimental ABIEncoderV2; | |
| contract ERC725 { | |
| uint256 constant MANAGEMENT_KEY = 1; | |
| uint256 constant ACTION_KEY = 2; | |
| uint256 constant CLAIM_SIGNER_KEY = 4; | |
| uint256 constant ENCRYPTION_KEY = 8; |
| pragma solidity ^0.4.24; | |
| import "./openzeppelin-solidity/ownership/Ownable.sol"; | |
| import "./openzeppelin-solidity/token/ERC20/StandardToken"; | |
| contract Token is StandardToken, Ownable { | |
| uint256 public constant decimals = 0; | |
| string public constant name = "ERC827 Token"; | |
| string public constant symbol = "TOK"; | |
| pragma solidity ^0.4.24; | |
| import "./ERC20Basic.sol"; | |
| /** | |
| * @title ERC20 interface | |
| * @dev see https://github.com/ethereum/EIPs/issues/20 | |
| */ | |
| contract ERC20 is ERC20Basic { |
I hereby claim:
To claim this, I am signing this object:
| (var| ) ([a-zA-Z_]+) *= *require\('([^']+)'\)(;|,) | |
| import $2 from '$3'; |
| webpack --display-modules > files.txt | |
| cut -d ' ' -f 3 files.txt | grep ^\.\/js | sort > used-js.txt | |
| find ./js -name '*.js' | sort > all-js.txt | |
| comm -3 all-js.txt used-js.txt |
| Feature set: | |
| Load a URL | |
| Drag and Drop | |
| Take Screenshots | |
| Check with reference image | |
| Monitor memory usage | |
| Monitor performance at certain points within code | |
| Report on any hard errors | |
| Report any console warnings |
| var colors = ['#555', '#666', '#777', '#888', '#999']; | |
| var baseColor = '#eee'; | |
| Ext.define('Ext.chart.theme.Fancy', { | |
| extend: 'Ext.chart.theme.Base', | |
| constructor: function(config) { | |
| this.callParent(Ext.apply({ | |
| axis: { | |
| fill: baseColor, | |
| stroke: baseColor |