My Resumé

I fucking hate small talk!
It’s a shallow, soul-sucking waste of breath.
I crave conversations that rip through the surface. Give me science, the mysteries of the cosmos, the inevitability of death.
Let’s dive into sex, raw and unfiltered, the meaning of life, or the lack thereof.
I want to hear about the lies you’ve spun, the masks you wear, the flaws you hide. Spill your childhood traumas, your deepest insecurities, the fears that claw at you in the dead of night.
I’m drawn to people with jagged edges, minds twisted by experience, who speak with fire and emotion, not rehearsed pleasantries.
Anything less is just noise!

Goldmark extras test

Inline formatting

The four extras are: highlighted, inserted, deleted, plus subscript and superscript.

You can highlight key terms like CVE-2024-1234 when explaining a vulnerability, or mark important log entries to draw attention. Try zero-day or privilege escalation.

For diff-style writing (showing config changes):

  • Old behavior: max_connections = 100
  • New behavior: max_connections = 500

Subscript and superscript

Chemistry: H2O, CO2, NaCl, C6H12O6.

Math notation: 210 = 1024, 232 = 4,294,967,296 (max IPv4 addresses), 2128 for IPv6.

Footnote-style refs: see equation^[1]^ or note^[a]^ — though Hugo has proper footnotes too.

Network math: a /24 subnet has 28 = 256 addresses, of which 28 - 2 = 254 are usable (subtract network and broadcast).

Cryptography: AES-256 has a keyspace of 2256, roughly 1077 — more than the number of atoms in the observable universe.

Combined with callouts

Brute force feasibility

At 109 guesses per second, brute-forcing a 2256 keyspace takes ~1060 years. Don’t worry about AES-256. Worry about key management, side channels, and implementation bugs.

Subnet quick reference
  • /24 → 28 = 256 addresses (254 usable)
  • /16 → 216 = 65,536 addresses
  • /8 → 224 = 16,777,216 addresses

When CIDR notation is unfamiliar, just remember: the smaller the number after the slash, the bigger the subnet.

Config diff

Old setting (insecure): tls_min_version = TLSv1.0

New setting: tls_min_version = TLSv1.3

Always verify in production after changing crypto settings.

Edge cases

Multiple highlights in one sentence: first, second, and third.

Subscript followed by superscript: xi2 (the i-th element squared).

Strikethrough across multiple words: this entire phrase is struck through.

Inserted code: the patch added if (user.is_admin) to the auth check.

Mixed: old approach → new approach — note the semantic difference. EOF