I hereby claim:
- I am lakamsani on github.
- I am lakamsani (https://keybase.io/lakamsani) on keybase.
- I have a public key ASBqBp7WRip6P7R8gNMHZxH1kfOQQ3EefgwmC4yXK1S-jwo
To claim this, I am signing this object:
static_resources: | |
listeners: | |
- name: mylistener | |
address: | |
socket_address: | |
protocol: TCP | |
address: 0.0.0.0 | |
port_value: 20443 | |
listener_filters: | |
- name: tls_inspector |
opentelemetry-collector: | |
nameOverride: otelcol | |
mode: deployment | |
extraEnvs: | |
- name: LS_TOKEN | |
valueFrom: | |
secretKeyRef: | |
key: LS_TOKEN | |
name: otel-collector-secret | |
resources: |
public class HashMap<Key,Value> { | |
private int numPairs = 100000; | |
private Value[] vals = (Value[]) new Object[numPairs]; | |
private Key[] keys = (Value[]) new Object[numPairs]; | |
private int hash(Key key) { | |
return (key.hashCode() & 0x7fffffff) % M; | |
} | |
public Value put(Key key, Value val) { |
I hereby claim:
To claim this, I am signing this object:
{
"category": {
"id": "5b28a05430d24c62d7e51be8",
"name": "Blockchain Service Providers",
"subCategory": {
"name": "ICO Marketing",
"questions": [
{
"text": "What Type of Marketing Services Are You Looking For? Select All That Apply.",
Hi, my project Pulse has been accepted to the Consensys SF accelerator.
We are looking for an initial short-term gig/help as we add enhancements for our demo day in mid-November.
Depending on how things go in mid-November may lead to a longer-term association.
The frontend is React/Next.js, the backend is ES2017/ES6 Node.js based ethereum/web3/consensys stack like Truffle,
Infura, Metamask, OZ etc. You can try the demo on Ronkeby testnet via https://dapp.pulseagent.co.
My twitter DMs are open: https://twitter.com/lakamsani
A few more background links/tweets.
Dear Joyent,
On this excellent content page, https://www.joyent.com/node-js/production/design/errors
There are a lot of ways this that continuing on can lead to serious bugs that are extremely difficult to track down
Hi, looks like this code fragment from your blog at: https://rclayton.silvrback.com/custom-errors-in-node-js
// I do something like this to wrap errors from other frameworks.
class InternalError extends DomainError {
super(error.message);
this.data = { error };
}
should be modified to have a constructor that takes that error
from other frameworks like this?
{ | |
"contractName": "PulseToken", | |
"abi": [ | |
{ | |
"constant": true, | |
"inputs": [], | |
"name": "mintingFinished", | |
"outputs": [ | |
{ | |
"name": "", |
// deployer script | |
let SampleCrowdsale = artifacts.require('./SampleCrowdsale.sol') | |
let SampleToken = artifacts.require('./SampleToken.sol') | |
let moment = require('moment') | |
const multiplier = 10 ** 18 | |
module.exports = function (deployer) { | |
const startTime = Math.round(moment().subtract(1, 'd').valueOf() / 1000) // Yesterday | |
const endTime = Math.round(moment().add(20, 'd').valueOf() / 1000) // Today + 20 days | |
deployer.deploy(SampleToken).then(function () { |