Goal is to read at least 1 book a month and at max 24 books a year.
Take it slow, enjoy the read, keep the momentum, and learn something. See comments for updates.
▲▼▲
# | Month | Book Title | Skimmed? | Reading? | Read? | Recommended? |
---|
pub fn is_ai(text: &str) -> bool { | |
text.to_lowercase().starts_with("ah, i see") | |
} |
# Enable syntax highlighting. See: https://gist.github.com/BlakeGardner/5587269 – 2024-05-10 | |
include "/opt/homebrew/share/nanorc/*.nanorc" | |
# Display line numbers to the left of the text area – 2024-05-10 | |
set linenumbers | |
set constantshow |
L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns = 14x L1
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns = 20x L2
Compress 1K bytes with Zippy ............. 3,000 ns = 3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns = 20 µs
SSD random read ........................ 150,000 ns = 150 µs
Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs
type ErrorFunc<ErrorMap extends Record<string, string>> = <
Kind extends keyof ErrorMap,
Args extends [kind: Kind, ctx?: string]
>(...args: Args) => {
ok: false,
error: Args[1] extends string ? {
kind: Args[0],
message: ErrorMap[Args[0]],
ctx: Args[1]
flowchart TD
Notes -.-> Problem-based
Notes -.-> Observations
Notes --You are here--> Logs[<strong>Logs</strong>]
Notes -.-> Challenges
Notes -.-> Electronics
click Problem-based "https://gist.github.com/wzulfikar/ba2f58d7aeeb3cf53743316f96f91594"
click Observations "https://gist.github.com/wzulfikar/2cff9bcd64ba5f15296e0b57ff402f79"
▲▼▲
This gist is a part of my public notes. Here's the "sitemap" of the notes:
flowchart TD
Notes -.-> Problem-based
Notes --You are here--> Observations[<strong>Observations</strong>]
Notes -.-> Logs
Notes -.-> Challenges
I like to know the actual utilities that an electronic device actually give me. This gist documents my attempt to understand the utilities of such devices.
▲▼▲
This gist is a part of my public notes. Here's the "sitemap" of the notes:
flowchart TD