I hereby claim:
- I am pascalprecht on github.
- I am pascalprecht (https://keybase.io/pascalprecht) on keybase.
- I have a public key ASDQ0OWA3wX08_2ABLEEL3wqvNZHwBWeoZFfxHH6Ymy3Awo
To claim this, I am signing this object:
Hey, I'm 0x-r4bbit-445106 and I have contributed to the RLN Trusted Setup Ceremony MPC Phase2 Trusted Setup ceremony. | |
The following are my contribution signatures: | |
Circuit # 1 (rln-withdraw) | |
Contributor # 25 | |
Contribution Hash: 3f538905 5c04b5c8 d1d8e73a e3de80a6 | |
10874e6b 627f7bff fd6c465f aaa62901 | |
5a200e32 5b9126c7 09a8b2e2 979e0cfb | |
d703c833 3f08f840 a74aadad 8f87298e |
; <<>> DiG 9.10.6 <<>> +trace raw.githubusercontent.com | |
;; global options: +cmd | |
. 487923 IN NS b.root-servers.net. | |
. 487923 IN NS c.root-servers.net. | |
. 487923 IN NS d.root-servers.net. | |
. 487923 IN NS e.root-servers.net. | |
. 487923 IN NS f.root-servers.net. | |
. 487923 IN NS g.root-servers.net. | |
. 487923 IN NS h.root-servers.net. |
solc --allow-paths /Users/pascalprecht/projects/status-im/status-teller-network --abi -- | |
bin --overwrite -o /Users/pascalprecht/projects/vibranium/cli/../../status-im/status-teller-network/artifacts /Users/pascalprecht/projects/vibranium/cli/../../status-im/status- | |
teller-network/.vibranium/contracts/ApproveAndCallFallBack.sol /Users/pascalprecht/projects/vibranium/cli/../../status-im/status-teller-network/.vibranium/contracts/Arbitrable. | |
sol /Users/pascalprecht/projects/vibranium/cli/../../status-im/status-teller-network/.vibranium/contracts/Controlled.sol /Users/pascalprecht/projects/vibranium/cli/../../status | |
-im/status-teller-network/.vibranium/contracts/EIP897.sol /Users/pascalprecht/projects/vibranium/cli/../../status-im/status-teller-network/.vibranium/contracts/ERC20Receiver.so | |
l /Users/pascalprecht/projects/vibranium/cli/../../status-im/status-teller-network/.vibranium/contracts/ERC20Token.sol /Users/pascalprecht/projects/vibranium/cli/../../status-i | |
m/status-teller-network/.vibranium/contracts/Escro |
class Node { | |
constructor(name) { | |
this.name = name; | |
this.edges = []; | |
} | |
addEdge(node) { | |
this.edges.push(node); | |
} |
Verifying my identity on Peepeth.com 0x6f490165ddd8d604b52db9d9bf9b63ae997dc11c |
I hereby claim:
To claim this, I am signing this object:
Verifying my Blockstack ID is secured with the address 18tAfJrheJEtWRKeDA5rbdgEShvYz77FKC https://explorer.blockstack.org/address/18tAfJrheJEtWRKeDA5rbdgEShvYz77FKC |
@NgModule({ | |
providers: [] | |
}) | |
export class ConfiguredAngularFireModule { | |
configure(config) { | |
return AngularFireModule.initializeApp(config, { | |
provider: AuthProviders.Password, | |
method: AuthMethods.Password | |
}); | |
} |
var sortedByVoteCount; | |
var oReq = new XMLHttpRequest(); | |
function reqListener () { | |
sortedByVoteCount = JSON.parse(JSON.stringify(oReq.response)) | |
.posts.sort(function (a, b) { | |
if(a.vote_count < b.vote_count) return -1; | |
if(a.vote_count > b.vote_count) return 1; | |
return 0; | |
}); |
import {JoinFilterModule} from '../../common/join_filter'; | |
import './country_info_table.tpl.html'; | |
export let CountryInfoTableModule = angular.module('CountryInfoTable', [JoinFilterModule.name, 'templates']) | |
.directive('countryInfoTable', () => { | |
return { | |
restrict: 'E', | |
templateUrl: 'country_info_table.tpl.html', | |
scope: {}, |