rfc | title | similarly(score) |
---|---|---|
rfc6901 | JavaScript Object Notation (JSON) Pointer | rfc6902(15.6) rfc4627(12.1) rfc7159(11.6) rfc7158(11.2) rfc7072(9.9) |
rfc6902 | JavaScript Object Notation (JSON) Patch | rfc7396(16.6) rfc7386(15.5) rfc7351(7.8) rfc7159(5.7) rfc5301(5.2) |
rfc6903 | Additional Link Relation Types | rfc6166(7.7)rfc6021(7.4)rfc5566(6.8)[r |
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
// USB Device Descriptor | |
0x12, // bLength | |
0x01, // bDescriptorType (Device) | |
0x00, 0x02, // bcdUSB 2.00 | |
0x00, // bDeviceClass (Use class information in the Interface Descriptors) | |
0x00, // bDeviceSubClass | |
0x00, // bDeviceProtocol | |
0x40, // bMaxPacketSize0 64 | |
0x7E, 0x05, // idVendor 0x057E |
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
// go on you labels pages | |
// eg https://github.com/cssnext/cssnext/labels | |
// paste this script in your console | |
// copy the output and now you can import it using https://github.com/popomore/github-labels ! | |
var labels = []; | |
[].slice.call(document.querySelectorAll(".label-link")) | |
.forEach(function(element) { | |
labels.push({ | |
name: element.textContent.trim(), |