MethodID: 0xef343588 [0]: 0000000000000000000000000000000000000000000006a2147ceaa14651c4ed [1]: 00000000000000000000000000000000000000000000000007d322ff9719600a [2]: 000000000000000000000000000000000000000000000000000000000002e630 [3]: 000000000000000000000000000000000000000000000000000000000000002d [4]: 0000000000000000000000000000000000000000000006a2147ceaa14651c4ed
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
| Flat profile: | |
| Each sample counts as 0.01 seconds. | |
| no time accumulated | |
| % cumulative self self total | |
| time seconds seconds calls Ts/call Ts/call name | |
| 0.00 0.00 0.00 13686 0.00 0.00 swizzle | |
| 0.00 0.00 0.00 251 0.00 0.00 segment_ctor | |
| 0.00 0.00 0.00 250 0.00 0.00 vm_alloc_segment |
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
| class Max { | |
| public static int max(ArrayList<Integer> list) { | |
| int currentMax = Integer.MIN_VALUE; | |
| for (int i : list) { | |
| if (i > currentMax) currentMax = i; | |
| } | |
| return currentMax; | |
| } | |
| } |
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
| extern crate openssl_sys; | |
| extern crate openssl; | |
| use std::mem::{ transmute }; | |
| use openssl::hash::{ MessageDigest }; | |
| use openssl_sys::{ EVP_MD }; | |
| fn hash_something() { | |
| let mut vec: Vec<u8> = (0..255).collect(); | |
| let slice: &mut [u8] = vec.as_mut_slice(); |
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
| { | |
| "complete": false, | |
| "id": 9320665, | |
| "tokenBuy": "0xcdcfc0f66c522fd086a1b725ea3c0eeb9f9e8814", | |
| "amountBuy": "898328000000000000000", | |
| "tokenSell": "0x0000000000000000000000000000000000000000", | |
| "amountSell": "162249773946676736", | |
| "expires": 10000, | |
| "nonce": 1885125689, | |
| "user": "0x04493e280c152af24e9faad28da1c0b3134a430d", |
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
| [ | |
| { | |
| "timestamp": 1523265879, | |
| "orderHash": "0xf1ae732c76bd980609a79f44bf52119f946c19c1c50794b7225815b10625bbbb", | |
| "market": "ETH_TAY", | |
| "type": "sell", | |
| "orderNumber": 9071666, | |
| "params": { | |
| "tokenBuy": "0x0000000000000000000000000000000000000000", | |
| "buySymbol": "ETH", |
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
| 0x06499f8b0c0c218eb058b1bb15635aad9a40c9e4 |
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
| [{"constant":true,"inputs":[],"name":"MAX_SUPPLY_NBTOKEN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"paya |
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
| 'use strict'; | |
| const { | |
| readFile, | |
| appendFile, | |
| readdir, | |
| mkdirp | |
| } = require('fs-extra'); | |
| const { | |
| flow, |
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
| 'use strict'; | |
| const db = require('../lib/db'); | |
| let { | |
| argv: { | |
| _: [ symbol ], | |
| o: outputFilename | |
| } | |
| } = require('yargs'); | |
| const { |
NewerOlder