Skip to content

Commit abbba27

Browse files
committed
org
1 parent 3f1d54b commit abbba27

38 files changed

Lines changed: 452 additions & 239 deletions

_CONTENT/eng/data/dist.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
---
3+
https://muratbuffalo.blogspot.com/2023/10/hints-for-distributed-systems-design.html
4+
35
## consistency
46
linearizable
57
single copy illusion
@@ -10,7 +12,7 @@ sync replication or quorum
1012
causal
1113
vector clocks + dependency tracking
1214

13-
eventual
15+
eventual$$
1416
async replication
1517
conflict resolution (LWW, CRDTs, version vectors)
1618

File renamed without changes.
File renamed without changes.

_CONTENT/eng/data/ml/ml.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
---
3+
https://developers.google.com/machine-learning/crash-course/
4+
5+
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ accurate vs interpretable
77
complexity vs generality: simpler models generalize better
88

99
precision vs recall:
10-
- precise has few false positives but misses some true ones
11-
- high recall: more true positives but also more false ones
10+
precise has few false positives but misses some true ones
11+
high recall: more true positives but also more false ones
1212

1313
F1-score: harmonic mean of both
1414

File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
---
3+
https://jalammar.github.io/illustrated-transformer/
Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
---
3+
https://thecopenhagenbook.com/sessions
4+
35
```
46
api/v1/people/123/ideas
57
@@ -12,15 +14,19 @@ page: offset/limit or cursor
1214
idempotency
1315
1416
http
15-
1.1: range, chunked stream. can pipeline multiple requests but responses must arrive in order
16-
http2: interleave streams on single TCP, packet loss blocks all streams
17+
1.1:
18+
range
19+
chunked stream
20+
can pipeline multiple requests but responses must arrive in order
21+
http2:
22+
interleave streams on single TCP
23+
packet loss blocks all streams
1724
https: 3 RTT: TCP + TLS + HTTP
1825
http3:
1926
quic on UDP
2027
rebuild tcp feats in L7, solves stream blocking
2128
TLS built-in, single RTT
2229
conn. survives IP changes
23-
2430
rest
2531
http
2632
webtech
@@ -56,7 +62,9 @@ webtech
5662
websocket: 2 way, single-tcp, upgrade: websocket
5763
sse: server to client, EventSource onmessage
5864
webhook: server to server, register n call
59-
webrtc: real-time comm, p2p, secure, direct. peers connect using signaling servers, then talk directly
65+
webrtc:
66+
real-time comm, p2p, secure, direct.
67+
peers connect using signaling servers, then talk directly
6068
6169
webaudio
6270
quic webtransport
@@ -102,8 +110,14 @@ sec
102110
auth
103111
CORS: allowed origins
104112
CSRF token
105-
cookies: you can restrict them to a domain, expire, require https, block js access, etc.
106-
XSS: Allow-list scripts and assets in `Content Security Policy` header. validate and encode inputs
113+
cookies:
114+
you can restrict them to a domain
115+
expire
116+
require https
117+
block js access, etc.
118+
XSS:
119+
Allow-list scripts and assets in `Content Security Policy` header
120+
validate and encode inputs
107121
certs: a CA signs that the site owns the private key for their public key
108122
rate limit
109123
l4 firewall
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)