[go: up one dir, main page]

Today I Learned

tags


2022/04/30

That there’s an IETF spec for CSVs/TSVs, and it uses doubled double-quotes as quote-escapes, as SQL does https://datatracker.ietf.org/doc/html/rfc4180#section-2


2023/10/18

RFCs are labeled with different statuses:

  1. Internet Standard (e.g. HTTP/1.1)
  2. Proposed Standard (e.g. HTTP/3, HTTP/2)
  3. Best Current Practice
  4. Experimental
  5. Informational
  6. Historic

[…]

RFCs usually begin as Internet-Drafts (I-Ds) written by an individual or a small group. In the IETF, these are then usually adopted by a working group, and improved and revised.

https://www.ietf.org/standards/rfcs/


Class fields are public by default, but private class members can be created by using a hash # prefix. The privacy encapsulation of these class features is enforced by JavaScript itself.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_class_fields