Module ID Full Path Identity Path Size (bytes)
0 ./~/react/react.js ~/react/react.js 48
1 ./~/prop-types/index.js ~/prop-types/index.js 38
2 ./~/babel-polyfill/~/core-js/modules/_export.js ~/core-js/modules/_export.js 478
3 ./~/babel-runtime/helpers/extends.js ~/babel-runtime/helpers/extends.js 282
4 ./~/babel-runtime/helpers/classCallCheck.js ~/babel-runtime/helpers/classCallCheck.js 150
5 ./~/classnames/index.js ~/classnames/index.js 571
6 ./~/babel-runtime/helpers/inherits.js ~/babel-runtime/helpers/inherits.js 488
7 ./~/babel-runtime/helpers/possibleConstructorReturn.js ~/babel-runtime/helpers/possibleConstructorReturn.js 320
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <libgen.h> | |
#include <vector> | |
#include <string> | |
using namespace std; | |
int main(int argc, char **argv) |
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
internals.Request = function (connection, req, res, options) { | |
Podium.call(this, ['finish', { name: 'peek', spread: true }, 'disconnect']); | |
// Take measurement as soon as possible |
[JavaScript]:
ticks total nonlib name
291 1.9% 1.9% Stub: LoadICStub
162 1.1% 1.1% KeyedLoadIC: A keyed load IC from the snapshot
93 0.6% 0.6% LazyCompile: ~finish /home/NodeRestPerfTest2/node_modules/hapi/node_modules/joi/lib/any.js:442:24
90 0.6% 0.6% Builtin: CallFunction_ReceiverIsNotNullOrUndefined
82 0.5% 0.5% LazyCompile: *_base /home/NodeRestPerfTest2/node_modules/hapi/node_modules/joi/lib/object.js:30:10
75 0.5% 0.5% Builtin: ArgumentsAdaptorTrampoline
71 0.5% 0.5% Stub: FastArrayPushStub
- https://www.facebook.com/notes/facebook-engineering/scaling-memcached-at-facebook/39391378919/
- https://www.usenix.org/node/172909
- https://www.usenix.org/system/files/conference/nsdi13/nsdi13-final170_update.pdf
- https://www.usenix.org/sites/default/files/conference/protected-files/nishtala_nsdi13_slides.pdf
- https://research.fb.com/wp-content/uploads/2016/11/scaling-memcache-at-facebook.pdf?
- https://www.youtube.com/watch?v=6phA3IAcEJ8
- https://medium.com/@shagun/scaling-memcache-at-facebook-1ba77d71c082
- https://www.facebook.com/groups/mcrouter/
UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot read property 'default' of undefined
(node:80169) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot read property 'default' of undefined
Hash: ea738e100b7f7e2c7482
Version: webpack 2.3.2
Time: 156ms
Asset Size Chunks Chunk Names
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
function makeSimpleLogger() { | |
const levels = ["verbose", "info", "warn", "debug"]; | |
const tags = levels.reduce((a, l) => (a[l] = l.toUpperCase(), a), {}); | |
function log(tag, args) { | |
args = Array.prototype.concat.apply([`${tags[tag]}:`], args); | |
if (console[tag]) { | |
console[tag].apply(console, args); | |
} else { |
Update the tag below to the last Publish tag and run it to get a list of the changes
export tag="[email protected]"
git log ${tag}...${HEAD} --pretty=format:' - [commit](http://github.com/electrode-io/electrode/commit/%H) %s' --reverse | grep -v "Merge pull request"
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"; | |
var clsModule = require("continuation-local-storage"); | |
const superagent = require("superagent"); | |
const assert = require("assert"); | |
var http = require("http"); | |
var keepAlive = process.env.KEEP_ALIVE !== "0"; | |
var httpAgent = new http.Agent({ | |
keepAlive: keepAlive, |
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
# | |
# http://www.tldp.org/HOWTO/Bash-Prompt-HOWTO/x405.html | |
# | |
# | |
# usage: xtput <option1> <option2> ... | |
# | |
# <option>: | |
# fc:<color> = set foreground to <color> (ANSI escape) | |
# bc:<color> = set background to <color> (ANSI escape) |
NewerOlder