I often find myself stuggle a lot while reading some documents regarding computer science and stuff. This is a project to document all the words that I had a hard time understanding.
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
- Arbitrary
- Based on chance rather than being planned or based on reason
- For more info, read this
- Ephemeral
- May not persist, opposite of immutable
- Idempotent
- Produces same result
- Taking REST API as example, Idempotency is demonstrated in
GET
,PUT
,DELETE
,HEAD
,OPTIONS
,TRACE
. However,POST
is not idempotent. - For more info, read this.