I hereby claim:
- I am jinroh on github.
- I am pierreg (https://keybase.io/pierreg) on keybase.
- I have a public key whose fingerprint is 1F8F 68E6 4101 8BBF 5B9B 7FFA A573 5589 4506 960E
To claim this, I am signing this object:
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"$id": "https://github.com/DataDog/datadog-agent/pkg/compliance/k8sconfig/k8s-node-config", | |
"properties": { | |
"version": { | |
"type": "string" | |
}, | |
"managedEnvironment": { | |
"$ref": "#/$defs/K8sManagedEnvConfig" | |
}, |
BenchmarkRandomStringA-4 2000000 702 ns/op | |
BenchmarkRandomStringB-4 10000000 120 ns/op | |
BenchmarkRandomStringC-4 20000000 115 ns/op | |
BenchmarkRandomStringD-4 10000000 121 ns/op |
I hereby claim:
To claim this, I am signing this object:
var _ = require('lodash'); | |
var Promise = require('bluebird'); | |
var sax = require('sax'); | |
var manifest = require("raw!./manifest.xml"); | |
function domParser() { | |
function parseStreamIndex(el) { | |
var index = []; | |
if (!el) { return; } | |
var cdren = el.children; |
eventsource | |
go-eventsource | |
client/client |
From Wikipedia:
In mathematics, a Fourier series decomposes periodic functions or periodic signals into the sum of a (possibly infinite) set of simple oscillating functions, namely sines and cosines (or complex exponentials).
Use the bottom right form to change the visualized serie.
// Let `doAjax`, `fadeIn`, `fadeOut`, and `delay` be promise-returning functions. | |
// In all the following examples, `example` is meant to return a promise that is fulfilled when | |
// all operations are completed, or rejected if any of the steps fail. | |
// ES5 | |
function example() { | |
return doAjax("data.json").then(function (data) { | |
document.getElementById("data").innerText = data; |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<style> | |
body { | |
font: 10px sans-serif; | |
} | |
#main { |
/** | |
* The sample usage of ECMA 5 Mozilla Features Implemented in V8 | |
* https://github.com/joyent/node/wiki/ECMA-5-Mozilla-Features-Implemented-in-V8 | |
* You can use thease new feature of ECMA5 on Node.js as you like. | |
* because there is no IE :) | |
* Order is deferent form original wiki. | |
* Sources are Checked on Node.js v0.5.0(unstable), v0.4.9(stable) | |
* | |
* you can execute this file. | |
* $ node ecma5_on_v8.js |
var lookup = function(target) { | |
var send = function() { /* ... */ }, | |
iterative = new IterativeFind(), | |
init = new XORSortedPeerArray().relativeNodeID(target), | |
staled = false; | |
function map(peer) { | |
var rpc = new FindNodeRPC(peer, this._target); | |
send(rpc); | |
return rpc; |