Skip to content

Instantly share code, notes, and snippets.

local json = require('json')
if not Balances then Balances = { [ao.id] = 690000000000000 } end
if Name ~= 'bitcaos' then Name = 'bitcaos' end
if Ticker ~= 'CAOS' then Ticker = 'CAOS' end
if Denomination ~= 100 then Denomination = 100 end

Keybase proof

I hereby claim:

  • I am vntrp on github.
  • I am vntrp (https://keybase.io/vntrp) on keybase.
  • I have a public key ASBsU5umRzhQ7u6DVmXCxj5nnRhZkRS9ZCGCC8bjt5UShgo

To claim this, I am signing this object:

did:3:bafyreidy6cgmifhjmqbricasvlqhknngpidwte2zftnu5lb5lmvm5jokee
@0xcyp
0xcyp / gist:446ecca80fefa5864dd030ea1b5e31fa
Created June 26, 2016 21:17
Verifying that +vntrp_ is my blockchain ID. https://onename.com/vntrp_
Verifying that +vntrp_ is my blockchain ID. https://onename.com/vntrp_
@0xcyp
0xcyp / async.md
Last active September 17, 2015 06:05 — forked from spasiu/async.md
writing async javascript

No more bullshit async code

This is async code written with ES6 generators (and a library like Co or Koa):

var item = yield get.db('id...');
item.key = yield get('http://...').body.value;
yield item.save();
console.log('done!');