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:
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'open-uri' | |
require 'hpricot' | |
require 'active_record' | |
ActiveRecord::Base.establish_connection( | |
:adapter => "mysql", :host => "127.0.0.1", :database => "db", :username => "user", :password => "pass" | |
) |
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 |
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 |
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 |
(var| ) ([a-zA-Z_]+) *= *require\('([^']+)'\)(;|,) | |
import $2 from '$3'; |
I hereby claim:
To claim this, I am signing this object:
pragma solidity ^0.4.24; | |
import "./ERC20Basic.sol"; | |
/** | |
* @title ERC20 interface | |
* @dev see https://github.com/ethereum/EIPs/issues/20 | |
*/ | |
contract ERC20 is ERC20Basic { |
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; | |
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; |