I hereby claim:
- I am makoto on github.
- I am makoto_inoue (https://keybase.io/makoto_inoue) on keybase.
- I have a public key ASDWPH9EJ_8hE-iTvOw7KpeuKUOfh94dm098MMdJbqaEngo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var packet = require('dns-packet') | |
| var axios = require('axios') | |
| let buf = packet.encode({ | |
| type: 'query', | |
| id: 1, | |
| flags: packet.RECURSION_DESIRED, | |
| questions: [{ | |
| type: 'TXT', | |
| class: 'IN', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > sig.data.toString('hex') | |
| '00100803000151807601bbea59e36fdaa7f7066574686c61620378797a0016105923b2daacf1ce5ffd5c8e25a95f42058ac5808086a8e1510f7aa828609564a85ea5bfb2a5699700a769fd0041e4d729df7ebc6855b8a37425280e7eaaf0' | |
| > sigdata = foo.rrsig.decode(sig.data); | |
| { typeCovered: 'UNKNOWN_2051', | |
| algorithm: 0, | |
| labels: 1, | |
| originalTTL: 1367373313, | |
| expiration: 3152697827, | |
| ... } | |
| > JSON.stringify(sigdata) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var packet = require('dns-packet') | |
| var axios = require('axios') | |
| var buf = packet.encode({ | |
| type: 'query', | |
| id: 1, | |
| flags: packet.RECURSION_DESIRED, | |
| questions: [{ | |
| type: 'TXT', | |
| class: 'IN', |
- Book meeting room (cc: Mark the office manager) on google calendar
- Notify #meet-up slack channel
- Email london@simplybusiness.co.uk about the event (a day before)
- Make sure enough supply of beers
- Buy some crisps
- Email guest list (https://www.meetup.com/london-ethereum-codeup/events/250367786/attendees/) to g99 reception (ask Mark about email address)
- https://github.com/ensdomains/dnssec-oracle/tree/delete-rrset ( currently under PR)
- https://github.com/ensdomains/dnssec-oracle/tree/delete-rrset-2 (rewrite)
- https://github.com/ensdomains/dnssec-oracle/tree/delete-rrset-3 (this version does not copy tails)
NOTES: I commented out the following tests from all the three branches as it is currently failing on #1.
Assert.equal(a_b_c.compareNames(d) < 0, true, "one name has a difference of >1 label to the other");
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # game.rb | |
| require 'pry' | |
| class Compare | |
| def self.run(s, o) | |
| s_off = 0 | |
| o_off = 0 | |
| return 0 if compare(s, s_off, o, o_off) == 0 | |
| s_head = '' | |
| o_head = '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Last login: Tue May 1 22:15:04 on ttys002 | |
| makoto@Makotos-Air: [~/work/blockparty - (master)] $ git diff | |
| diff --git a/contracts/Conference.sol b/contracts/Conference.sol | |
| index 9dc9f08..193ec6d 100644 | |
| --- a/contracts/Conference.sol | |
| +++ b/contracts/Conference.sol | |
| @@ -98,7 +98,7 @@ contract Conference is Destructible, GroupAdmin { | |
| require(registered < limitOfParticipants); | |
| require(!isRegistered(msg.sender)); | |
- At Log L20, Why
_function_0x05f203d9is not converting function name from hex to ascii? (from the line number, I am guessing it wasrevoke()function). - At Log L51 is emitting the entire code (and function name is hex) so I cannot identify where the exact problem is.
- At Log l235, the report says that function
clear()has potential interger overflow at [contract code l58]( https://github.com/makoto/blockparty/blob/master/contracts/Conference.sol#L15