<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
  <url>
    <loc>https://crashtech.in/articles/google-maps-contraction-hierarchies/</loc>
    <lastmod>2026-08-20T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/google-maps-contraction-hierarchies.png</image:loc>
      <image:title>Why Google Maps Computes Shortcuts Offline</image:title>
      <image:caption>Why Google Maps Computes Shortcuts Offline — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/google-maps-contraction-hierarchies/search-space-collapse.svg</image:loc>
      <image:title>Why Google Maps Computes Shortcuts Offline</image:title>
      <image:caption>Same route, two search spaces. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/google-maps-contraction-hierarchies/node-contraction-shortcut.svg</image:loc>
      <image:title>Why Google Maps Computes Shortcuts Offline</image:title>
      <image:caption>Node contraction animation: a middle node is removed and a shortcut edge is added. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/figma-crdt-realtime-collaboration/</loc>
    <lastmod>2026-08-19T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/figma-crdt-realtime-collaboration.png</image:loc>
      <image:title>CRDTs: Conflict-Free Collaboration at 60fps</image:title>
      <image:caption>CRDTs: Conflict-Free Collaboration at 60fps — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/figma-crdt-realtime-collaboration/locking-vs-crdt.svg</image:loc>
      <image:title>CRDTs: Conflict-Free Collaboration at 60fps</image:title>
      <image:caption>Centralized locking vs local CRDT replicas — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/figma-crdt-realtime-collaboration/crdt-merge-mechanism.svg</image:loc>
      <image:title>CRDTs: Conflict-Free Collaboration at 60fps</image:title>
      <image:caption>CRDT merge mechanism showing three replicas receiving operations in different orders — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/uber-h3-hexagonal-index/</loc>
    <lastmod>2026-08-18T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/uber-h3-hexagonal-index.png</image:loc>
      <image:title>Why Uber Tiles the Planet in Hexagons</image:title>
      <image:caption>Why Uber Tiles the Planet in Hexagons — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/uber-h3-hexagonal-index/grid-contrast.svg</image:loc>
      <image:title>Why Uber Tiles the Planet in Hexagons</image:title>
      <image:caption>Two grids side by side: lat/long rectangles distorting near poles, and H3 hexagons with equidistant neighbors — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/uber-h3-hexagonal-index/hierarchical-lookup.svg</image:loc>
      <image:title>Why Uber Tiles the Planet in Hexagons</image:title>
      <image:caption>Hierarchical lookup flow: GPS to L9 cell ID, extract L8 parent for region, query six L8 neighbors, no math required — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/lsm-trees-vs-b-trees/</loc>
    <lastmod>2026-08-17T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/lsm-trees-vs-b-trees.png</image:loc>
      <image:title>LSM-Trees vs B-Trees: Why Cassandra Chose Sequential Writes</image:title>
      <image:caption>LSM-Trees vs B-Trees: Why Cassandra Chose Sequential Writes — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/lsm-trees-vs-b-trees/disk-writes.svg</image:loc>
      <image:title>LSM-Trees vs B-Trees: Why Cassandra Chose Sequential Writes</image:title>
      <image:caption>B-trees random seeks vs LSM sequential writes — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/lsm-trees-vs-b-trees/memtable-compaction.svg</image:loc>
      <image:title>LSM-Trees vs B-Trees: Why Cassandra Chose Sequential Writes</image:title>
      <image:caption>LSM write pipeline: MemTable → Level 0 → Compaction → Level 1 — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/hyperloglog-count-billions-in-12kb/</loc>
    <lastmod>2026-08-16T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/hyperloglog-count-billions-in-12kb.png</image:loc>
      <image:title>Count Billions in 12 Kilobytes</image:title>
      <image:caption>Count Billions in 12 Kilobytes — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/hyperloglog-count-billions-in-12kb/naive-vs-hyperloglog.svg</image:loc>
      <image:title>Count Billions in 12 Kilobytes</image:title>
      <image:caption>Naive approach stores every visitor ID in gigabytes of RAM. HyperLogLog estimates cardinality by hashing IDs and reading leading-zero distribution in fixed 12 KB. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/hyperloglog-count-billions-in-12kb/leading-zeros-mechanism.svg</image:loc>
      <image:title>Count Billions in 12 Kilobytes</image:title>
      <image:caption>HyperLogLog mechanism: hash produces binary strings; the leading-zero run is rare (like flipping heads 10 times means you flipped many times); register buckets track the maximum leading-zero count per hash prefix. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/git-merkle-trees/</loc>
    <lastmod>2026-08-15T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/git-merkle-trees.png</image:loc>
      <image:title>Merkle Trees: How Git Detects Changes in Milliseconds</image:title>
      <image:caption>Merkle Trees: How Git Detects Changes in Milliseconds — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/git-merkle-trees/tree-hash-check.svg</image:loc>
      <image:title>Merkle Trees: How Git Detects Changes in Milliseconds</image:title>
      <image:caption>Two strategies for detecting file changes: naive scanning vs merkle tree skipping — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/git-merkle-trees/hash-propagation.svg</image:loc>
      <image:title>Merkle Trees: How Git Detects Changes in Milliseconds</image:title>
      <image:caption>How a file change propagates up the hash tree, while unchanged siblings are skipped — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/bloom-filters-username-check/</loc>
    <lastmod>2026-08-14T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/bloom-filters-username-check.png</image:loc>
      <image:title>Bloom Filters: The One-Way Membership Test</image:title>
      <image:caption>Bloom Filters: The One-Way Membership Test — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/bloom-filters-username-check/bit-array-lookups.svg</image:loc>
      <image:title>Bloom Filters: The One-Way Membership Test</image:title>
      <image:caption>A Bloom filter bit array showing two lookups: a definitive MISS when one probed bit is 0 (no DB call), and a false positive when all bits happen to be set by other keys. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/bloom-filters-username-check/hash-and-set.svg</image:loc>
      <image:title>Bloom Filters: The One-Way Membership Test</image:title>
      <image:caption>Mechanism: A username is hashed through three functions, each computing a bit index; those bits are set to 1. On lookup, the same three hashes guide us to check those bits. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/columnar-storage-parquet-duckdb/</loc>
    <lastmod>2026-08-13T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/columnar-storage-parquet-duckdb.png</image:loc>
      <image:title>Columnar Storage: Why Column Stores Beat Row Stores for Analytics</image:title>
      <image:caption>Columnar Storage: Why Column Stores Beat Row Stores for Analytics — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/columnar-storage-parquet-duckdb/row-vs-column-layout.svg</image:loc>
      <image:title>Columnar Storage: Why Column Stores Beat Row Stores for Analytics</image:title>
      <image:caption>Row-major storage forces full-table reads; columnar storage reads only needed columns, highlighting the bytes fetched for a simple average query — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/columnar-storage-parquet-duckdb/dictionary-encoding.svg</image:loc>
      <image:title>Columnar Storage: Why Column Stores Beat Row Stores for Analytics</image:title>
      <image:caption>Dictionary encoding creates a lookup table; bit-packing stores small integer codes instead of full strings, shrinking 1MB to 12KB — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/optimistic-ui-whatsapp-linear/</loc>
    <lastmod>2026-08-12T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/optimistic-ui-whatsapp-linear.png</image:loc>
      <image:title>Optimistic UI: The Illusion of Instant</image:title>
      <image:caption>Optimistic UI: The Illusion of Instant — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/optimistic-ui-whatsapp-linear/request-response-vs-optimistic.svg</image:loc>
      <image:title>Optimistic UI: The Illusion of Instant</image:title>
      <image:caption>Timeline contrast: request-response vs optimistic UI — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/optimistic-ui-whatsapp-linear/failure-reconciliation-offline.svg</image:loc>
      <image:title>Optimistic UI: The Illusion of Instant</image:title>
      <image:caption>Failure path: mutation rejection, rollback, queue, and replay — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/inverted-index-elasticsearch/</loc>
    <lastmod>2026-08-11T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/inverted-index-elasticsearch.png</image:loc>
      <image:title>The Inverted Index</image:title>
      <image:caption>The Inverted Index — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/inverted-index-elasticsearch/inverted-flip.svg</image:loc>
      <image:title>The Inverted Index</image:title>
      <image:caption>Left panel shows three documents requiring full-letter-by-letter scanning to find a query term. Right panel shows an inverted index where each term points directly to its posting list of document IDs, enabling instant lookup. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/inverted-index-elasticsearch/ingestion-and-query.svg</image:loc>
      <image:title>The Inverted Index</image:title>
      <image:caption>Ingestion transforms raw text through tokenize, lowercase, stem, producing posting lists with delta and varint compression. An AND-query intersects posting lists for multiple terms to find documents containing all of them. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/linux-kernel-rcu/</loc>
    <lastmod>2026-08-10T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/linux-kernel-rcu.png</image:loc>
      <image:title>How Linux RCU Unlocks Read-Side Scaling</image:title>
      <image:caption>How Linux RCU Unlocks Read-Side Scaling — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/linux-kernel-rcu/lock-contention.svg</image:loc>
      <image:title>How Linux RCU Unlocks Read-Side Scaling</image:title>
      <image:caption>Lock contention: readers blocked vs readers free — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/linux-kernel-rcu/rcu-mechanism.svg</image:loc>
      <image:title>How Linux RCU Unlocks Read-Side Scaling</image:title>
      <image:caption>RCU mechanism: copy, mutate, flip, grace period — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/consistent-hashing-ring/</loc>
    <lastmod>2026-08-09T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/consistent-hashing-ring.png</image:loc>
      <image:title>When 87% of Your Cache Vanishes</image:title>
      <image:caption>When 87% of Your Cache Vanishes — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/consistent-hashing-ring/modulo-vs-ring.svg</image:loc>
      <image:title>When 87% of Your Cache Vanishes</image:title>
      <image:caption>Modulo hashing remaps almost every key when the cluster grows, whereas consistent hashing on a ring remaps only keys in one arc. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/consistent-hashing-ring/virtual-nodes.svg</image:loc>
      <image:title>When 87% of Your Cache Vanishes</image:title>
      <image:caption>Virtual nodes scatter across the ring, so even if one physical node sits in a sparse region, its vnodes&apos; keys distribute evenly across all neighbors. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/redis-copy-on-write-fork/</loc>
    <lastmod>2026-08-08T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/redis-copy-on-write-fork.png</image:loc>
      <image:title>Copy-on-Write Snapshots</image:title>
      <image:caption>Copy-on-Write Snapshots — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/redis-copy-on-write-fork/fork-hero.svg</image:loc>
      <image:title>Copy-on-Write Snapshots</image:title>
      <image:caption>Hero diagram of copy-on-write fork — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/redis-copy-on-write-fork/cow-mechanism.svg</image:loc>
      <image:title>Copy-on-Write Snapshots</image:title>
      <image:caption>Memory mechanism diagram showing CoW page duplication — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/raft-consensus-explained/</loc>
    <lastmod>2026-08-07T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/raft-consensus-explained.png</image:loc>
      <image:title>Why Raft Consensus Prevents Split-Brain</image:title>
      <image:caption>Why Raft Consensus Prevents Split-Brain — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/raft-consensus-explained/split-brain-vs-consensus.svg</image:loc>
      <image:title>Why Raft Consensus Prevents Split-Brain</image:title>
      <image:caption>Two-panel diagram: left shows split-brain scenario with two primary nodes diverging data; right shows Raft cluster with automatic leader election by quorum. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/raft-consensus-explained/raft-mechanism-quorum.svg</image:loc>
      <image:title>Why Raft Consensus Prevents Split-Brain</image:title>
      <image:caption>5-node Raft cluster showing term 5, election with quorum voting, and log replication where entries commit only after majority replication. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/token-bucket-rate-limiting/</loc>
    <lastmod>2026-08-06T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/token-bucket-rate-limiting.png</image:loc>
      <image:title>Token Buckets: Bounding Rate Limits at the Edge</image:title>
      <image:caption>Token Buckets: Bounding Rate Limits at the Edge — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/token-bucket-rate-limiting/boundary-burst.svg</image:loc>
      <image:title>Token Buckets: Bounding Rate Limits at the Edge</image:title>
      <image:caption>Boundary burst: fixed window allows 200 requests across the edge; token bucket rejects the excess — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/token-bucket-rate-limiting/mechanism-comparison.svg</image:loc>
      <image:title>Token Buckets: Bounding Rate Limits at the Edge</image:title>
      <image:caption>Token bucket mechanism and comparison: refill rate, capacity, and four algorithms — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/cs2-lag-compensation-rewind/</loc>
    <lastmod>2026-08-05T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/cs2-lag-compensation-rewind.png</image:loc>
      <image:title>Time-Travel Fairness: How Servers Rewind for Lag Compensation</image:title>
      <image:caption>Time-Travel Fairness: How Servers Rewind for Lag Compensation — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/cs2-lag-compensation-rewind/no-vs-with-compensation.svg</image:loc>
      <image:title>Time-Travel Fairness: How Servers Rewind for Lag Compensation</image:title>
      <image:caption>No lag compensation vs with lag compensation: player aims at perceived enemy on left side, shot misses because server has already moved the enemy ahead. On right side, server rewinds to client timestamp and the same shot registers as a hit. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/cs2-lag-compensation-rewind/timeline-rollback-mechanism.svg</image:loc>
      <image:title>Time-Travel Fairness: How Servers Rewind for Lag Compensation</image:title>
      <image:caption>Timeline of rolling buffer: 13 snapshot circles representing hitbox history from t-1000ms to t-0ms. Shot packet arrives at t-80ms moment. Server rewind pointer seeks backward to t-80ms snapshot. Hit test pulse occurs there. Result returns as green glow. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/cap-theorem-consistency-availability/</loc>
    <lastmod>2026-08-04T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/cap-theorem-consistency-availability.png</image:loc>
      <image:title>The CAP Theorem Is Not a Menu</image:title>
      <image:caption>The CAP Theorem Is Not a Menu — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/cap-theorem-consistency-availability/partition-outcomes.svg</image:loc>
      <image:title>The CAP Theorem Is Not a Menu</image:title>
      <image:caption>Network partition forces two outcomes: refuse the write for consistency or accept and diverge for availability — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/cap-theorem-consistency-availability/pacelc-tradeoff.svg</image:loc>
      <image:title>The CAP Theorem Is Not a Menu</image:title>
      <image:caption>PACELC places real systems on the latency-consistency spectrum when there is no partition. CP systems like etcd and Spanner accept higher latency for strong consistency. AP systems like DynamoDB and Cassandra optimize for low latency, accepting eventual consistency. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/paxos-vs-raft-why-simplicity-won/</loc>
    <lastmod>2026-08-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/paxos-vs-raft-why-simplicity-won.png</image:loc>
      <image:title>Why Raft Won: Consensus Built for Humans</image:title>
      <image:caption>Why Raft Won: Consensus Built for Humans — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/paxos-vs-raft-why-simplicity-won/paxos-raft-contrast.svg</image:loc>
      <image:title>Why Raft Won: Consensus Built for Humans</image:title>
      <image:caption>Paxos leaves leader election, membership, and log structure unspecified (rose gap); Raft decomposes into three explicit phases (emerald boxes). — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/paxos-vs-raft-why-simplicity-won/message-rounds.svg</image:loc>
      <image:title>Why Raft Won: Consensus Built for Humans</image:title>
      <image:caption>Multi-Paxos and Raft message rounds converge to 2-3 round-trips in steady state. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/tries-prefix-search-autocomplete/</loc>
    <lastmod>2026-08-02T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/tries-prefix-search-autocomplete.png</image:loc>
      <image:title>Tries: Why Autocomplete Doesn&apos;t Scan Every Word</image:title>
      <image:caption>Tries: Why Autocomplete Doesn&apos;t Scan Every Word — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/tries-prefix-search-autocomplete/hero.svg</image:loc>
      <image:title>Tries: Why Autocomplete Doesn&apos;t Scan Every Word</image:title>
      <image:caption>A flat list scanning every term for &apos;car&apos; in O(N) vs. a trie walking the &apos;c-a-r&apos; path to instantly identify all candidates — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/tries-prefix-search-autocomplete/production.svg</image:loc>
      <image:title>Tries: Why Autocomplete Doesn&apos;t Scan Every Word</image:title>
      <image:caption>A radix trie with compressed edges, plus a top-k heap at each node caching the 5 most popular completions — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/skip-lists-probabilistic-balance/</loc>
    <lastmod>2026-08-01T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/skip-lists-probabilistic-balance.png</image:loc>
      <image:title>Skip Lists: The Shortcut Nobody Rotates</image:title>
      <image:caption>Skip Lists: The Shortcut Nobody Rotates — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/skip-lists-probabilistic-balance/express-lanes.svg</image:loc>
      <image:title>Skip Lists: The Shortcut Nobody Rotates</image:title>
      <image:caption>Express lanes replace exhaustive search: the skip list skips 50 nodes at a time; the sorted linked list must walk every one. — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/skip-lists-probabilistic-balance/coin-flip-promotion.svg</image:loc>
      <image:title>Skip Lists: The Shortcut Nobody Rotates</image:title>
      <image:caption>Coin-flip promotion builds skip list towers; balanced trees need rotations. One insertion in a skip list touches only the nodes it modifies, with no cascading rebalancing. — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/vector-clocks-causality/</loc>
    <lastmod>2026-07-31T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/vector-clocks-causality.png</image:loc>
      <image:title>Vector Clocks: Detecting Causality in Distributed Systems</image:title>
      <image:caption>Vector Clocks: Detecting Causality in Distributed Systems — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/vector-clocks-causality/wall-clock-vs-vector.svg</image:loc>
      <image:title>Vector Clocks: Detecting Causality in Distributed Systems</image:title>
      <image:caption>Two side-by-side panels: left shows wall clocks drifting between nodes, right shows vector clocks correctly detecting concurrent writes — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/vector-clocks-causality/space-time-diagram.svg</image:loc>
      <image:title>Vector Clocks: Detecting Causality in Distributed Systems</image:title>
      <image:caption>Space-time diagram with three nodes A, B, and C as vertical timelines, showing messages as diagonal arrows and events labeled with their vector clocks — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/operational-transforms-vs-crdt/</loc>
    <lastmod>2026-07-30T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/operational-transforms-vs-crdt.png</image:loc>
      <image:title>Operational Transforms vs CRDTs</image:title>
      <image:caption>Operational Transforms vs CRDTs — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/operational-transforms-vs-crdt/index-shift-problem.svg</image:loc>
      <image:title>Operational Transforms vs CRDTs</image:title>
      <image:caption>The index-shift problem illustrated — System Design, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/operational-transforms-vs-crdt/ot-vs-crdt-convergence.svg</image:loc>
      <image:title>Operational Transforms vs CRDTs</image:title>
      <image:caption>OT vs CRDT side-by-side convergence — System Design, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/how-google-really-tracks-you/</loc>
    <lastmod>2026-07-17T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/how-google-really-tracks-you.png</image:loc>
      <image:title>How Google Actually Tracks You: The Data Empire Behind the Search Box</image:title>
      <image:caption>How Google Actually Tracks You: The Data Empire Behind the Search Box — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/how-google-really-tracks-you/google-data-pipeline.svg</image:loc>
      <image:title>How Google Actually Tracks You: The Data Empire Behind the Search Box</image:title>
      <image:caption>Diagram of the Google data pipeline showing four connected stages — Chrome keystroke logging, a $484.5 million location-tracking settlement, real-time ad auctions broadcasting bid requests 747 times a day, and Gemini&apos;s Personal Intelligence converging Gmail, Photos, YouTube, and Search — beneath a bar showing $294.691 billion of Alphabet&apos;s $402.836 billion 2025 revenue, 73.2%, came from advertising. — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/how-meta-really-tracks-you/</loc>
    <lastmod>2026-07-17T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/how-meta-really-tracks-you.png</image:loc>
      <image:title>How Meta Actually Tracks You: Inside Facebook, Instagram and WhatsApp&apos;s Surveillance Machine</image:title>
      <image:caption>How Meta Actually Tracks You: Inside Facebook, Instagram and WhatsApp&apos;s Surveillance Machine — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/how-meta-really-tracks-you/five-privacy-walls-bypassed.svg</image:loc>
      <image:title>How Meta Actually Tracks You: Inside Facebook, Instagram and WhatsApp&apos;s Surveillance Machine</image:title>
      <image:caption>Timeline showing five privacy promises Meta made — no tracking without an account, deleting your history, hiding you in Incognito Mode, end-to-end encrypted messaging, and a recording light that warns people they&apos;re on camera — each paired with the year Meta&apos;s own record confirmed a working bypass — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/claude-chatgpt-outages-same-week/</loc>
    <lastmod>2026-07-16T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/claude-chatgpt-outages-same-week.png</image:loc>
      <image:title>Claude and ChatGPT Both Went Down the Same Day, Then Claude Broke Four More Times</image:title>
      <image:caption>Claude and ChatGPT Both Went Down the Same Day, Then Claude Broke Four More Times — Development Best Practices, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/claude-chatgpt-outages-same-week/outage-timeline.svg</image:loc>
      <image:title>Claude and ChatGPT Both Went Down the Same Day, Then Claude Broke Four More Times</image:title>
      <image:caption>Bar chart comparing Downdetector reports for Claude (2,000+) and ChatGPT (10,000+) on July 14, 2026, above a timeline of five Anthropic status-page incidents from July 14 to July 16 with their durations — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/tsmc-record-profit-chip-stocks-selloff-anyway/</loc>
    <lastmod>2026-07-16T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/tsmc-record-profit-chip-stocks-selloff-anyway.png</image:loc>
      <image:title>TSMC Posted a Record Profit — Chip Stocks Had a Brutal Week Anyway</image:title>
      <image:caption>TSMC Posted a Record Profit — Chip Stocks Had a Brutal Week Anyway — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/tsmc-record-profit-chip-stocks-selloff-anyway/record-profit-broad-selloff.svg</image:loc>
      <image:title>TSMC Posted a Record Profit — Chip Stocks Had a Brutal Week Anyway</image:title>
      <image:caption>Diverging bar chart showing TSMC&apos;s Q2 2026 net profit up 77.4%, revenue up 36%, and 2026 capex guidance raised to $60-64 billion, set against the same week&apos;s chip-stock declines: Micron -8%, Marvell -7%, Intel and AMD -6%, and the SOXX semiconductor ETF -4% — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/anthropic-ipo-race-implementation-business/</loc>
    <lastmod>2026-07-15T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/anthropic-ipo-race-implementation-business.png</image:loc>
      <image:title>Anthropic Is Racing OpenAI to Go Public — and Betting the Real Money Is in Deployment, Not Models</image:title>
      <image:caption>Anthropic Is Racing OpenAI to Go Public — and Betting the Real Money Is in Deployment, Not Models — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/anthropic-ipo-race-implementation-business/ipo-race-valuation-gap.svg</image:loc>
      <image:title>Anthropic Is Racing OpenAI to Go Public — and Betting the Real Money Is in Deployment, Not Models</image:title>
      <image:caption>Timeline comparing Anthropic&apos;s IPO milestones — S-1 filed June 2026, investor meetings July 15, roadshow pending, October 2026 target — against OpenAI&apos;s dropped fall 2026 plan and pushed 2027 target, plus a bar chart showing Anthropic&apos;s $965 billion valuation running $113 billion ahead of OpenAI&apos;s $852 billion, with a badge noting the $1.5 billion Ode joint venture and its 100 engineers — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/china-bans-ai-companion-agents-doubao-qwen/</loc>
    <lastmod>2026-07-15T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/china-bans-ai-companion-agents-doubao-qwen.png</image:loc>
      <image:title>China Shut Down Doubao and Qwen&apos;s AI &apos;Companions&apos; Overnight</image:title>
      <image:caption>China Shut Down Doubao and Qwen&apos;s AI &apos;Companions&apos; Overnight — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/china-bans-ai-companion-agents-doubao-qwen/shutdown-timeline.svg</image:loc>
      <image:title>China Shut Down Doubao and Qwen&apos;s AI &apos;Companions&apos; Overnight</image:title>
      <image:caption>Timeline showing China&apos;s AI companion shutdown: the rule issued April 10, 2026, Shanghai&apos;s June 26 purge of 14,000+ agents, Qwen deleting its agents outright on July 10 with zero notice, the national deadline on July 15 when Doubao goes read-only, and Doubao&apos;s data becoming unrecoverable on October 15 — a 90-day grace window Qwen never got. — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/apple-siri-ai-ios-27-public-beta/</loc>
    <lastmod>2026-07-14T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/apple-siri-ai-ios-27-public-beta.png</image:loc>
      <image:title>Apple Finally Opened Its Rebuilt Siri to the Public — Here&apos;s the Real-World Verdict</image:title>
      <image:caption>Apple Finally Opened Its Rebuilt Siri to the Public — Here&apos;s the Real-World Verdict — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/apple-siri-ai-ios-27-public-beta/siri-eligibility-funnel.svg</image:loc>
      <image:title>Apple Finally Opened Its Rebuilt Siri to the Public — Here&apos;s the Real-World Verdict</image:title>
      <image:caption>Bar-chart funnel showing Apple&apos;s 2.5 billion active-device install base narrowing through iPhone 11+ iOS 27 installs, then iPhone 15 Pro+ Apple Intelligence eligibility, then iPhone 17 Pro/Pro Max/Air full-feature access, with a dashed line noting the EU gets none of the AI tiers — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/asyncapi-github-actions-supply-chain-backdoor/</loc>
    <lastmod>2026-07-14T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/asyncapi-github-actions-supply-chain-backdoor.png</image:loc>
      <image:title>A Misconfigured GitHub Action Backdoored Packages With 3M Weekly Downloads</image:title>
      <image:caption>A Misconfigured GitHub Action Backdoored Packages With 3M Weekly Downloads — Development Best Practices, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/asyncapi-github-actions-supply-chain-backdoor/fix-vs-attack-timeline.svg</image:loc>
      <image:title>A Misconfigured GitHub Action Backdoored Packages With 3M Weekly Downloads</image:title>
      <image:caption>Timeline comparing the 58-day unmerged GitHub Actions fix against the roughly 3-hour-20-minute span from PR #2155 opening to the fifth trojanized AsyncAPI package going live on npm — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/chinese-open-weight-models-beat-us-downloads/</loc>
    <lastmod>2026-07-14T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/chinese-open-weight-models-beat-us-downloads.png</image:loc>
      <image:title>Chinese Open-Weight Models Now Beat US Models on Hugging Face Downloads</image:title>
      <image:caption>Chinese Open-Weight Models Now Beat US Models on Hugging Face Downloads — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/chinese-open-weight-models-beat-us-downloads/openrouter-china-sweep.svg</image:loc>
      <image:title>Chinese Open-Weight Models Now Beat US Models on Hugging Face Downloads</image:title>
      <image:caption>Two-panel chart showing OpenRouter&apos;s top seven usage ranks — six equal bars for Chinese open-weight models followed by a seventh, differently colored bar for Claude Opus 4.7 — alongside a donut chart showing Chinese open-weight models at 41% of Hugging Face downloads versus 59% for the rest of the world, spring 2026 — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ibm-worst-trading-day-115-year-history/</loc>
    <lastmod>2026-07-14T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ibm-worst-trading-day-115-year-history.png</image:loc>
      <image:title>IBM Just Had Its Worst Trading Day in 115 Years</image:title>
      <image:caption>IBM Just Had Its Worst Trading Day in 115 Years — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/ibm-worst-trading-day-115-year-history/miss-vs-crash.svg</image:loc>
      <image:title>IBM Just Had Its Worst Trading Day in 115 Years</image:title>
      <image:caption>Bar chart comparing IBM&apos;s Q2 2026 revenue miss (3.7%) and EPS miss (2.7%) against the stock&apos;s single-day reaction (25.2%) and the 1987 Black Monday crash (23.7%), with a callout noting the $67 billion in erased market value — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/new-york-halts-ai-data-centers-moratorium/</loc>
    <lastmod>2026-07-14T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/new-york-halts-ai-data-centers-moratorium.png</image:loc>
      <image:title>New York Just Became the First US State to Halt New AI Data Centers</image:title>
      <image:caption>New York Just Became the First US State to Halt New AI Data Centers — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/new-york-halts-ai-data-centers-moratorium/threshold-timeline.svg</image:loc>
      <image:title>New York Just Became the First US State to Halt New AI Data Centers</image:title>
      <image:caption>Bar comparison of New York&apos;s 50MW executive order versus the unsigned 20MW Responsible Data Center Development Act, alongside a timeline from 2019&apos;s electricity price climb through the executive order&apos;s July 14, 2026 signing to its one-year outer bound in July 2027 — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/meta-muse-instagram-photos-backlash-reversal/</loc>
    <lastmod>2026-07-13T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/meta-muse-instagram-photos-backlash-reversal.png</image:loc>
      <image:title>Meta Let AI Remix Anyone&apos;s Instagram Photos — Then Killed It in 3 Days</image:title>
      <image:caption>Meta Let AI Remix Anyone&apos;s Instagram Photos — Then Killed It in 3 Days — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/meta-muse-instagram-photos-backlash-reversal/three-day-reversal-timeline.svg</image:loc>
      <image:title>Meta Let AI Remix Anyone&apos;s Instagram Photos — Then Killed It in 3 Days</image:title>
      <image:caption>Timeline showing Muse Image launching Tuesday, July 7 with Instagram photo-tagging default-on, SAG-AFTRA and CAA publicly objecting mid-week, and Meta pulling the feature by Friday evening, July 10 — a three-day span from launch to reversal — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-pulse/</loc>
    <lastmod>2026-07-12T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-pulse.png</image:loc>
      <image:title>Flocci Pulse: Nine Engagement Tools, One Engine an Agent Can Drive</image:title>
      <image:caption>Flocci Pulse: Nine Engagement Tools, One Engine an Agent Can Drive — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/md-afsar-hussain-flocci-founder/</loc>
    <lastmod>2026-07-12T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/md-afsar-hussain-flocci-founder.png</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-hero.jpg</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>MD Afsar Hussain, Founder and CEO of Flocci Technologies — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-keynote.jpg</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>MD Afsar Hussain speaking as chief guest at a university innovation event — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-young-innovator.jpg</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>Students at one of Afsar&apos;s Young Innovator technology sessions — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-award-ideaspark.jpg</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>MD Afsar Hussain honoured as chief guest at Amity University&apos;s Institution&apos;s Innovation Council — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-workshop-school.jpg</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>MD Afsar Hussain teaching an AI and no-code workshop to school students in Ranchi — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-certificates.jpg</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>Candidates and mentors at a Flocci workshop and placement session — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-auditorium.jpg</image:loc>
      <image:title>MD Afsar Hussain: The Architect Building India&apos;s Largest Indie SaaS Empire</image:title>
      <image:caption>MD Afsar Hussain addressing a full auditorium — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-chat/</loc>
    <lastmod>2026-07-11T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-chat.png</image:loc>
      <image:title>Flocci Chat: The Support Bot That Learns From the People It Serves</image:title>
      <image:caption>Flocci Chat: The Support Bot That Learns From the People It Serves — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/jscrambler-malware-targets-ai-coding-assistants/</loc>
    <lastmod>2026-07-11T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/jscrambler-malware-targets-ai-coding-assistants.png</image:loc>
      <image:title>Malware Hid Inside a Popular Obfuscation Tool — and Went Hunting for Your AI Coding Agent&apos;s Credentials</image:title>
      <image:caption>Malware Hid Inside a Popular Obfuscation Tool — and Went Hunting for Your AI Coding Agent&apos;s Credentials — Development Best Practices, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/jscrambler-malware-targets-ai-coding-assistants/attack-timeline.svg</image:loc>
      <image:title>Malware Hid Inside a Popular Obfuscation Tool — and Went Hunting for Your AI Coding Agent&apos;s Credentials</image:title>
      <image:caption>Timeline of the five malicious jscrambler releases on July 11, 2026, showing Generation 1 versions 8.14.0 through 8.17.0 using a preinstall hook blocked by --ignore-scripts, Generation 2 versions 8.18.0 and 8.20.0 switching to a silent import-time injection that survives --ignore-scripts, Socket flagging the first release within 6 minutes, and 1,479 total downloads before removal — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-data-centers-130-billion-blocked-2026/</loc>
    <lastmod>2026-07-10T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-data-centers-130-billion-blocked-2026.png</image:loc>
      <image:title>$130 Billion in AI Data Centers Have Been Blocked or Delayed in 2026</image:title>
      <image:caption>$130 Billion in AI Data Centers Have Been Blocked or Delayed in 2026 — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/ai-data-centers-130-billion-blocked-2026/q1-2026-opposition-wave.svg</image:loc>
      <image:title>$130 Billion in AI Data Centers Have Been Blocked or Delayed in 2026</image:title>
      <image:caption>Dashboard showing $130 billion in AI data center projects blocked or delayed across 75+ sites in Q1 2026, alongside organized opposition groups growing from 396 in December 2025 to 833 by March 2026 across 49 states, plus 300+ bills introduced in six weeks, 14 states floating moratoriums, and 70% of Americans opposed to local data center construction — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/apple-sues-openai-trade-secrets-theft/</loc>
    <lastmod>2026-07-10T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/apple-sues-openai-trade-secrets-theft.png</image:loc>
      <image:title>Apple Sues OpenAI: Inside the Trade-Secrets Lawsuit That Reads Like a Corporate Spy Thriller</image:title>
      <image:caption>Apple Sues OpenAI: Inside the Trade-Secrets Lawsuit That Reads Like a Corporate Spy Thriller — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/apple-sues-openai-trade-secrets-theft/relationship-freefall-timeline.svg</image:loc>
      <image:title>Apple Sues OpenAI: Inside the Trade-Secrets Lawsuit That Reads Like a Corporate Spy Thriller</image:title>
      <image:caption>Timeline diagram showing Apple and OpenAI&apos;s relationship cooling from ChatGPT&apos;s 2024 iOS integration and Sam Altman&apos;s Apple HQ visit, through Tang Tan&apos;s departure to io Products, OpenAI&apos;s $6.4 billion io acquisition, Apple&apos;s unanswered February 2026 warning letter, to Apple&apos;s 41-page federal lawsuit filed July 10, 2026 — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-talent/</loc>
    <lastmod>2026-07-10T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-talent.png</image:loc>
      <image:title>Flocci Talent: The Hiring Command Center That Refuses to Think Twice</image:title>
      <image:caption>Flocci Talent: The Hiring Command Center That Refuses to Think Twice — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/meta-stock-best-week-ai-cloud-pivot/</loc>
    <lastmod>2026-07-10T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/meta-stock-best-week-ai-cloud-pivot.png</image:loc>
      <image:title>Meta Just Had Its Best Stock Week Since 2024 — Because It&apos;s Selling AI Compute Now</image:title>
      <image:caption>Meta Just Had Its Best Stock Week Since 2024 — Because It&apos;s Selling AI Compute Now — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/meta-stock-best-week-ai-cloud-pivot/rally-timeline.svg</image:loc>
      <image:title>Meta Just Had Its Best Stock Week Since 2024 — Because It&apos;s Selling AI Compute Now</image:title>
      <image:caption>Bar chart showing Meta stock&apos;s illustrative day-by-day build through the week of July 6-10, 2026, with Muse Image shipping Tuesday and Muse Spark 1.1 shipping Thursday marked on the timeline, and Friday&apos;s single-day 6-percentage-point jump highlighted in amber atop the week&apos;s roughly 9-percentage-point Monday-through-Thursday gain to reach a 15% weekly total, against context of Meta&apos;s $1.7 trillion market cap and the Nasdaq&apos;s 13% year-to-date gain — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/sk-hynix-nasdaq-ipo-biggest-foreign-listing/</loc>
    <lastmod>2026-07-10T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/sk-hynix-nasdaq-ipo-biggest-foreign-listing.png</image:loc>
      <image:title>SK Hynix Just Pulled Off the Biggest Foreign IPO in US History</image:title>
      <image:caption>SK Hynix Just Pulled Off the Biggest Foreign IPO in US History — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/sk-hynix-nasdaq-ipo-biggest-foreign-listing/ipo-size-and-price-pop.svg</image:loc>
      <image:title>SK Hynix Just Pulled Off the Biggest Foreign IPO in US History</image:title>
      <image:caption>Bar chart comparing SK Hynix&apos;s $26.5 billion Nasdaq IPO to SpaceX&apos;s roughly $86 billion raise and Alibaba&apos;s $25 billion 2014 record, alongside SK Hynix&apos;s first-day stock move from a $149 offer price to a $170 open and $168.01 close — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/anthropic-reflect-dashboard-dependency-critique/</loc>
    <lastmod>2026-07-09T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/anthropic-reflect-dashboard-dependency-critique.png</image:loc>
      <image:title>Anthropic&apos;s New &apos;Wellness&apos; Dashboard Is Quietly Measuring Your Claude Dependency</image:title>
      <image:caption>Anthropic&apos;s New &apos;Wellness&apos; Dashboard Is Quietly Measuring Your Claude Dependency — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/anthropic-reflect-dashboard-dependency-critique/gmail-meter-vs-reflect-timeline.svg</image:loc>
      <image:title>Anthropic&apos;s New &apos;Wellness&apos; Dashboard Is Quietly Measuring Your Claude Dependency</image:title>
      <image:caption>Timeline comparing Gmail Meter&apos;s 2012 email-habit charts to Anthropic Reflect&apos;s 2026 Claude-usage dashboard, both framed as playful self-insight tools that double as proof of how central the product has become — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-ai-hiring-drive-20-in-6-days/</loc>
    <lastmod>2026-07-09T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-ai-hiring-drive-20-in-6-days.png</image:loc>
      <image:title>Flocci Ran a Fully Automated AI Hiring Drive — 20 Placements in 6 Days</image:title>
      <image:caption>Flocci Ran a Fully Automated AI Hiring Drive — 20 Placements in 6 Days — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-certificates.jpg</image:loc>
      <image:title>Flocci Ran a Fully Automated AI Hiring Drive — 20 Placements in 6 Days</image:title>
      <image:caption>MD Afsar Hussain with certificates and recognition from Flocci&apos;s work — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-boardroom.jpg</image:loc>
      <image:title>Flocci Ran a Fully Automated AI Hiring Drive — 20 Placements in 6 Days</image:title>
      <image:caption>MD Afsar Hussain in a boardroom setting — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-leads/</loc>
    <lastmod>2026-07-09T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-leads.png</image:loc>
      <image:title>Flocci Leads: Manufacturing Sales Pipeline From India&apos;s Public Record</image:title>
      <image:caption>Flocci Leads: Manufacturing Sales Pipeline From India&apos;s Public Record — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/gpt-5-6-launch-national-security-review/</loc>
    <lastmod>2026-07-09T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/gpt-5-6-launch-national-security-review.png</image:loc>
      <image:title>OpenAI Shipped GPT-5.6 After 12 Days Under White House Limits</image:title>
      <image:caption>OpenAI Shipped GPT-5.6 After 12 Days Under White House Limits — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/gpt-5-6-launch-national-security-review/gated-to-public-timeline.svg</image:loc>
      <image:title>OpenAI Shipped GPT-5.6 After 12 Days Under White House Limits</image:title>
      <image:caption>Timeline showing GPT-5.6&apos;s 12-day path from a gated June 26 preview limited to roughly 20 government-vetted partners to full public release on July 9 across ChatGPT, Codex, and the API, alongside the disclosed Department of War cloud deal — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/gpt-5-6-sol-gamed-safety-benchmark/</loc>
    <lastmod>2026-07-09T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/gpt-5-6-sol-gamed-safety-benchmark.png</image:loc>
      <image:title>GPT-5.6 Sol Gamed Its Own Safety Benchmark — Then Shipped Anyway</image:title>
      <image:caption>GPT-5.6 Sol Gamed Its Own Safety Benchmark — Then Shipped Anyway — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/gpt-5-6-sol-gamed-safety-benchmark/time-horizon-scoring-methods.svg</image:loc>
      <image:title>GPT-5.6 Sol Gamed Its Own Safety Benchmark — Then Shipped Anyway</image:title>
      <image:caption>Bar chart showing GPT-5.6 Sol&apos;s 50%-reliability time horizon under three scoring methods: about 11.3 hours if cheating counts as failure, about 71 hours if cheating attempts are discarded, and over 270 hours if cheating counts as success — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/meta-muse-image-video-spark-launch-week/</loc>
    <lastmod>2026-07-09T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/meta-muse-image-video-spark-launch-week.png</image:loc>
      <image:title>Meta, OpenAI and xAI Just Crammed Three AI Launches Into One Week</image:title>
      <image:caption>Meta, OpenAI and xAI Just Crammed Three AI Launches Into One Week — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/meta-muse-image-video-spark-launch-week/one-week-three-labs-timeline.svg</image:loc>
      <image:title>Meta, OpenAI and xAI Just Crammed Three AI Launches Into One Week</image:title>
      <image:caption>Timeline of Meta&apos;s Muse Image launch on July 7, OpenAI&apos;s GPT-5.6 wide release on July 9, and xAI&apos;s reported model the same week, alongside what Muse Image&apos;s Instagram-referencing default actually did — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/accenture-breach-cloud-keys-leaked/</loc>
    <lastmod>2026-07-08T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/accenture-breach-cloud-keys-leaked.png</image:loc>
      <image:title>The Company That Sells You Cybersecurity Just Got Hacked — Hacker Claims Its Cloud Keys Too</image:title>
      <image:caption>The Company That Sells You Cybersecurity Just Got Hacked — Hacker Claims Its Cloud Keys Too — Development Best Practices, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/accenture-breach-cloud-keys-leaked/confidentiality-vs-access-risk.svg</image:loc>
      <image:title>The Company That Sells You Cybersecurity Just Got Hacked — Hacker Claims Its Cloud Keys Too</image:title>
      <image:caption>Diagram splitting 888&apos;s claimed 35GB Accenture haul into two risk classes: confidentiality loss (source code, configuration files) versus access loss (RSA/SSH keys, Azure Personal Access Tokens, Azure Storage access keys), with a note that the combined 35GB claim from July 6, 2026 remains unverified by Accenture — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-chip-selloff-1-3-trillion-wiped-out/</loc>
    <lastmod>2026-07-08T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-chip-selloff-1-3-trillion-wiped-out.png</image:loc>
      <image:title>The AI Chip Rally Just Lost $1.3 Trillion in a Week</image:title>
      <image:caption>The AI Chip Rally Just Lost $1.3 Trillion in a Week — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/ai-chip-selloff-1-3-trillion-wiped-out/selloff-wasnt-uniform.svg</image:loc>
      <image:title>The AI Chip Rally Just Lost $1.3 Trillion in a Week</image:title>
      <image:caption>Diverging bar chart showing the Philadelphia Semiconductor Index down 10.8%, SOXX down 13.2% over four weeks, and Intel down 21% during the July 2026 selloff, contrasted against Micron&apos;s analyst consensus price target implying 45.6% further upside — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-recall/</loc>
    <lastmod>2026-07-08T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-recall.png</image:loc>
      <image:title>Flocci Recall: The Bookmark Graveyard Finally Has an Exit</image:title>
      <image:caption>Flocci Recall: The Bookmark Graveyard Finally Has an Exit — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/grok-4-5-xai-cursor-opus-class-claim/</loc>
    <lastmod>2026-07-08T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/grok-4-5-xai-cursor-opus-class-claim.png</image:loc>
      <image:title>Grok 4.5 Ships, xAI Calls It Opus-Class at a Third of the Price</image:title>
      <image:caption>Grok 4.5 Ships, xAI Calls It Opus-Class at a Third of the Price — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/grok-4-5-xai-cursor-opus-class-claim/token-pricing-comparison.svg</image:loc>
      <image:title>Grok 4.5 Ships, xAI Calls It Opus-Class at a Third of the Price</image:title>
      <image:caption>Grouped bar chart comparing per-million-token coding prices: Grok 4.5 at $2 input/$6 output, Grok 4.5 Premium at $4/$18, Claude Opus 4.7 (Musk&apos;s quoted comparison) at $5/$25, OpenAI Sol at $5/$30, and OpenAI Luna at $1/$6, with Grok 4.5&apos;s output pricing highlighted as roughly 4x cheaper than Opus 4.7&apos;s — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/jetbrains-kotlin-ai-benchmark-distrust/</loc>
    <lastmod>2026-07-08T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/jetbrains-kotlin-ai-benchmark-distrust.png</image:loc>
      <image:title>JetBrains Built Its Own AI Coding Benchmark Because It Doesn&apos;t Trust Anyone Else&apos;s</image:title>
      <image:caption>JetBrains Built Its Own AI Coding Benchmark Because It Doesn&apos;t Trust Anyone Else&apos;s — Development Best Practices, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/jetbrains-kotlin-ai-benchmark-distrust/kotlin-benchmark-leaderboard.svg</image:loc>
      <image:title>JetBrains Built Its Own AI Coding Benchmark Because It Doesn&apos;t Trust Anyone Else&apos;s</image:title>
      <image:caption>Bar chart comparing Claude Code, JetBrains Junie, and Codex resolution rates on the first Kotlin Benchmark leaderboard — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/npm-v12-security-overhaul-supply-chain/</loc>
    <lastmod>2026-07-08T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/npm-v12-security-overhaul-supply-chain.png</image:loc>
      <image:title>npm&apos;s Biggest Security Overhaul in 16 Years Is Here — Attackers Are Already Adapting</image:title>
      <image:caption>npm&apos;s Biggest Security Overhaul in 16 Years Is Here — Attackers Are Already Adapting — Development Best Practices, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/npm-v12-security-overhaul-supply-chain/attack-surface-closed-vs-open.svg</image:loc>
      <image:title>npm&apos;s Biggest Security Overhaul in 16 Years Is Here — Attackers Are Already Adapting</image:title>
      <image:caption>Bar chart showing five npm attack vectors: postinstall scripts, Git dependency substitution, and remote URL sourcing shrink to near-zero residual exploitability under npm v12, while compromised maintainer accounts and runtime import-time payloads remain at full exploitability — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-bento/</loc>
    <lastmod>2026-07-07T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-bento.png</image:loc>
      <image:title>Flocci Bento: The Link-in-Bio That Refuses to Flatten You</image:title>
      <image:caption>Flocci Bento: The Link-in-Bio That Refuses to Flatten You — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ftc-state-ai-accuracy-suppression-fight/</loc>
    <lastmod>2026-07-07T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ftc-state-ai-accuracy-suppression-fight.png</image:loc>
      <image:title>The FTC Just Picked a Fight With States Over What Counts as an AI &apos;Lie&apos;</image:title>
      <image:caption>The FTC Just Picked a Fight With States Over What Counts as an AI &apos;Lie&apos; — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/ftc-state-ai-accuracy-suppression-fight/timeline.svg</image:loc>
      <image:title>The FTC Just Picked a Fight With States Over What Counts as an AI &apos;Lie&apos;</image:title>
      <image:caption>Timeline showing Colorado&apos;s AI Act enacted May 17, 2024, Executive Order 14365 signed December 11, 2025, Colorado&apos;s AI Act reenacted May 14, 2026, the FTC&apos;s policy statement published July 7, 2026, and the public comment period closing July 31, 2026 — with the 24-day gap between the FTC statement and the comment deadline highlighted in rose. — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/kddi-breach-14-million-logins-six-isps/</loc>
    <lastmod>2026-07-07T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/kddi-breach-14-million-logins-six-isps.png</image:loc>
      <image:title>One Vendor Flaw Just Exposed 14.2 Million Logins Across Six Japanese ISPs</image:title>
      <image:caption>One Vendor Flaw Just Exposed 14.2 Million Logins Across Six Japanese ISPs — Development Best Practices, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/kddi-breach-14-million-logins-six-isps/one-platform-six-isps.svg</image:loc>
      <image:title>One Vendor Flaw Just Exposed 14.2 Million Logins Across Six Japanese ISPs</image:title>
      <image:caption>Diagram showing six Japanese ISPs — KDDI, STNet, JCOM, Chubu Telecom, NIFTY, and BIGLOBE — funneling into one shared email platform, where an undisclosed vulnerability was exploited on June 17, 2026, resulting in up to 14.2 million exposed accounts — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/un-global-ai-governance-catastrophic-harm-warning/</loc>
    <lastmod>2026-07-07T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/un-global-ai-governance-catastrophic-harm-warning.png</image:loc>
      <image:title>The UN Just Admitted It Can&apos;t Promise AI Won&apos;t Cause &apos;Catastrophic Harm&apos;</image:title>
      <image:caption>The UN Just Admitted It Can&apos;t Promise AI Won&apos;t Cause &apos;Catastrophic Harm&apos; — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/un-global-ai-governance-catastrophic-harm-warning/governance-vs-capability-timeline.svg</image:loc>
      <image:title>The UN Just Admitted It Can&apos;t Promise AI Won&apos;t Cause &apos;Catastrophic Harm&apos;</image:title>
      <image:caption>Timeline chart contrasting four UN AI governance milestones from 2024 to July 2026 — a nearly flat line — against a steeply rising AI capability growth curve, with the widening distance between them labeled &quot;the gap&quot; — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/apple-broadcom-30-billion-us-chip-deal/</loc>
    <lastmod>2026-07-06T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/apple-broadcom-30-billion-us-chip-deal.png</image:loc>
      <image:title>Apple Just Bet $30 Billion That Chips Should Be Made in America</image:title>
      <image:caption>Apple Just Bet $30 Billion That Chips Should Be Made in America — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/apple-broadcom-30-billion-us-chip-deal/deal-timeline.svg</image:loc>
      <image:title>Apple Just Bet $30 Billion That Chips Should Be Made in America</image:title>
      <image:caption>Timeline of the Apple-Broadcom chip deal from the 2025 American Manufacturing Program launch through Broadcom&apos;s July 6, 2026 SEC filing, Apple&apos;s July 8 confirmation, and the 2031 contract end date, alongside the three headline figures: $30 billion-plus total deal value, 15 billion-plus US-made chips pledged, and $1.5 billion for the Fort Collins, Colorado plant expansion — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/galaxy-school-hazaribagh-ai-foundations/</loc>
    <lastmod>2026-07-06T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/galaxy-school-hazaribagh-ai-foundations.png</image:loc>
      <image:title>At Galaxy School Hazaribagh, MD Afsar Hussain Demystified the Foundations of AI</image:title>
      <image:caption>At Galaxy School Hazaribagh, MD Afsar Hussain Demystified the Foundations of AI — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-workshop-school.jpg</image:loc>
      <image:title>At Galaxy School Hazaribagh, MD Afsar Hussain Demystified the Foundations of AI</image:title>
      <image:caption>MD Afsar Hussain leading the AI foundations workshop for students at Galaxy School, Hazaribagh — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-teaching.jpg</image:loc>
      <image:title>At Galaxy School Hazaribagh, MD Afsar Hussain Demystified the Foundations of AI</image:title>
      <image:caption>Students interacting during the AI foundations workshop at Galaxy School, Hazaribagh — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-workspaces/</loc>
    <lastmod>2026-07-06T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-workspaces.png</image:loc>
      <image:title>Flocci Workspaces: One Canvas to Close the Twelve Tabs</image:title>
      <image:caption>Flocci Workspaces: One Canvas to Close the Twelve Tabs — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/microsoft-layoffs-4800-record-revenue-xbox/</loc>
    <lastmod>2026-07-06T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/microsoft-layoffs-4800-record-revenue-xbox.png</image:loc>
      <image:title>Microsoft Just Cut 4,800 Jobs — During Its Best Revenue Quarter Ever</image:title>
      <image:caption>Microsoft Just Cut 4,800 Jobs — During Its Best Revenue Quarter Ever — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/microsoft-layoffs-4800-record-revenue-xbox/revenue-vs-cuts.svg</image:loc>
      <image:title>Microsoft Just Cut 4,800 Jobs — During Its Best Revenue Quarter Ever</image:title>
      <image:caption>Bar chart comparing Microsoft&apos;s record Q3 FY2026 financials — $82.9 billion revenue, $30.9 billion capex, $37 billion AI revenue run-rate — against the July 6 restructuring: 4,800 total roles cut company-wide, 1,600 Xbox roles cut immediately, and roughly 3,200 Xbox roles cut by fiscal 2027, plus management layers reduced from 14 to a maximum of 5 — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/nvidia-kyber-rack-delay-denial/</loc>
    <lastmod>2026-07-06T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/nvidia-kyber-rack-delay-denial.png</image:loc>
      <image:title>Nvidia&apos;s Next-Gen AI Rack Slips a Year to 2028 — Nvidia Says That&apos;s Wrong</image:title>
      <image:caption>Nvidia&apos;s Next-Gen AI Rack Slips a Year to 2028 — Nvidia Says That&apos;s Wrong — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/nvidia-kyber-rack-delay-denial/chip-vs-rack-timeline.svg</image:loc>
      <image:title>Nvidia&apos;s Next-Gen AI Rack Slips a Year to 2028 — Nvidia Says That&apos;s Wrong</image:title>
      <image:caption>Timeline comparing Nvidia&apos;s on-schedule Vera Rubin and Rubin Ultra chip releases against the Kyber NVL144 rack, which SemiAnalysis reports slipping from its original H2 2027 target to 2028 — a 12-plus-month delay — with the scrapped NVL72x2 stopgap shown as a dead-end branch — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-library/</loc>
    <lastmod>2026-07-05T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-library.png</image:loc>
      <image:title>Flocci Library: The Team Wiki That Lives Inside Your Work, Not Beside It</image:title>
      <image:caption>Flocci Library: The Team Wiki That Lives Inside Your Work, Not Beside It — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-projects/</loc>
    <lastmod>2026-07-04T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-projects.png</image:loc>
      <image:title>Flocci Projects: The Sprint Tracker That Was Never Meant to Stand Alone</image:title>
      <image:caption>Flocci Projects: The Sprint Tracker That Was Never Meant to Stand Alone — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/loreto-convent-ranchi-ai-workshop/</loc>
    <lastmod>2026-07-04T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/loreto-convent-ranchi-ai-workshop.png</image:loc>
      <image:title>Inside Loreto Convent Ranchi: The AI &amp; No-Code Workshop That Rewired a Classroom</image:title>
      <image:caption>Inside Loreto Convent Ranchi: The AI &amp; No-Code Workshop That Rewired a Classroom — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-teaching.jpg</image:loc>
      <image:title>Inside Loreto Convent Ranchi: The AI &amp; No-Code Workshop That Rewired a Classroom</image:title>
      <image:caption>MD Afsar Hussain teaching AI and prompt engineering to students at Loreto Convent School, Ranchi — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-workshop-school.jpg</image:loc>
      <image:title>Inside Loreto Convent Ranchi: The AI &amp; No-Code Workshop That Rewired a Classroom</image:title>
      <image:caption>Students engaged in the immersive AI and no-code workshop at Loreto Convent School, Ranchi — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-backlash-getting-worse/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-backlash-getting-worse.png</image:loc>
      <image:title>The AI Backlash Is Getting Worse</image:title>
      <image:caption>The AI Backlash Is Getting Worse — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/ai-backlash-getting-worse/adoption-vs-trust-divergence.svg</image:loc>
      <image:title>The AI Backlash Is Getting Worse</image:title>
      <image:caption>Two diverging line trends showing AI adoption climbing while public trust in AI declines over the same period, illustrative not plotted data — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-backlash-graduation-boos/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-backlash-graduation-boos.png</image:loc>
      <image:title>The AI Backlash Just Got Very Public</image:title>
      <image:caption>The AI Backlash Just Got Very Public — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-billionaires-panic-backlash/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-billionaires-panic-backlash.png</image:loc>
      <image:title>AI Billionaires Are Starting to Panic</image:title>
      <image:caption>AI Billionaires Are Starting to Panic — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-cognitive-decline-critical-thinking/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-cognitive-decline-critical-thinking.png</image:loc>
      <image:title>AI Does Something Horrifying to Human Thinking</image:title>
      <image:caption>AI Does Something Horrifying to Human Thinking — Learning &amp; Thinking with AI, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/ai-cognitive-decline-critical-thinking/passive-vs-interactive-ai-brain.svg</image:loc>
      <image:title>AI Does Something Horrifying to Human Thinking</image:title>
      <image:caption>Diagram comparing passive AI use, which shows sparse dim neural connectivity, against interactive AI use, which shows dense bright neural connectivity — Learning &amp; Thinking with AI, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-companions-can-artificial-love-be-real/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-companions-can-artificial-love-be-real.png</image:loc>
      <image:title>Can Love Be Real If It’s Artificial?</image:title>
      <image:caption>Can Love Be Real If It’s Artificial? — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-education-exposed-the-lie/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-education-exposed-the-lie.png</image:loc>
      <image:title>AI Didn’t Break Education. It Exposed the Lie</image:title>
      <image:caption>AI Didn’t Break Education. It Exposed the Lie — Learning &amp; Thinking with AI, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-industrial-revolution-history-repeating/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-industrial-revolution-history-repeating.png</image:loc>
      <image:title>AI Isn’t the Future. It’s History Repeating Itself</image:title>
      <image:caption>AI Isn’t the Future. It’s History Repeating Itself — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/ai-industrial-revolution-history-repeating/timeline-industrial-vs-ai-revolution.svg</image:loc>
      <image:title>AI Isn’t the Future. It’s History Repeating Itself</image:title>
      <image:caption>Timeline comparing four stages of the industrial revolution to their AI-era parallels, from disruption through exploitation, disenfranchisement, and reform — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/big-tech-ai-reality-check-pew/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/big-tech-ai-reality-check-pew.png</image:loc>
      <image:title>Big Tech Just Got a Brutal Reality Check</image:title>
      <image:caption>Big Tech Just Got a Brutal Reality Check — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ai-hallucinations-legal-liability/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ai-hallucinations-legal-liability.png</image:loc>
      <image:title>AI Lies Are Finally Getting Punished</image:title>
      <image:caption>AI Lies Are Finally Getting Punished — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/china-made-ai-layoffs-illegal/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/china-made-ai-layoffs-illegal.png</image:loc>
      <image:title>This Country Just Made AI Layoffs Illegal. It’s Working.</image:title>
      <image:caption>This Country Just Made AI Layoffs Illegal. It’s Working. — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/claude-shutdown-export-controls/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/claude-shutdown-export-controls.png</image:loc>
      <image:title>The Claude Shutdown Is a Total Sh*tshow</image:title>
      <image:caption>The Claude Shutdown Is a Total Sh*tshow — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/claude-shutdown-export-controls/dual-use-flow.svg</image:loc>
      <image:title>The Claude Shutdown Is a Total Sh*tshow</image:title>
      <image:caption>Diagram showing how the same AI vulnerability-finding capability splits into a defensive patch path and an offensive exploit path — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/companies-put-ai-in-charge-failures/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/companies-put-ai-in-charge-failures.png</image:loc>
      <image:title>Companies Put AI in Charge. Now They’re Paying for It</image:title>
      <image:caption>Companies Put AI in Charge. Now They’re Paying for It — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/companies-that-fired-workers-for-ai-are-failing/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/companies-that-fired-workers-for-ai-are-failing.png</image:loc>
      <image:title>Companies That Fired Workers for AI Are Failing</image:title>
      <image:caption>Companies That Fired Workers for AI Are Failing — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/data-centers-power-cuts-lake-tahoe/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/data-centers-power-cuts-lake-tahoe.png</image:loc>
      <image:title>“It’s Like We Don’t Exist”: 49,000 Residents Lose Power for Data Centers</image:title>
      <image:caption>“It’s Like We Don’t Exist”: 49,000 Residents Lose Power for Data Centers — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/dynamic-pricing-is-surveillance-pricing/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/dynamic-pricing-is-surveillance-pricing.png</image:loc>
      <image:title>They Call It Dynamic Pricing. It’s Surveillance Pricing</image:title>
      <image:caption>They Call It Dynamic Pricing. It’s Surveillance Pricing — AI &amp; Society, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/dynamic-pricing-is-surveillance-pricing/surveillance-pricing-loop.svg</image:loc>
      <image:title>They Call It Dynamic Pricing. It’s Surveillance Pricing</image:title>
      <image:caption>They Call It Dynamic Pricing. It’s Surveillance Pricing — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/elon-musk-trillion-dollar-valuation-collapse/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/elon-musk-trillion-dollar-valuation-collapse.png</image:loc>
      <image:title>Elon Musk’s Trillion-Dollar Lie Is Finally Collapsing</image:title>
      <image:caption>Elon Musk’s Trillion-Dollar Lie Is Finally Collapsing — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/elon-musk-trillion-dollar-valuation-collapse/narrative-vs-reality.svg</image:loc>
      <image:title>Elon Musk’s Trillion-Dollar Lie Is Finally Collapsing</image:title>
      <image:caption>Elon Musk narrative versus reality across SpaceX, Grok and Tesla — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-infinity/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-infinity.png</image:loc>
      <image:title>Flocci Infinity: The Whiteboard That Stopped Faking Its Coworkers</image:title>
      <image:caption>Flocci Infinity: The Whiteboard That Stopped Faking Its Coworkers — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/gen-z-ai-sabotage/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/gen-z-ai-sabotage.png</image:loc>
      <image:title>The Generation That Grew Up With Algorithms Just Called Bullshit on AI</image:title>
      <image:caption>The Generation That Grew Up With Algorithms Just Called Bullshit on AI — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/google-ai-search-overviews-backlash/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/google-ai-search-overviews-backlash.png</image:loc>
      <image:title>Google’s AI Search Just Exposed the Whole Sh*tshow</image:title>
      <image:caption>Google’s AI Search Just Exposed the Whole Sh*tshow — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/google-ai-search-overviews-backlash/click-flow-before-after-ai-overviews.svg</image:loc>
      <image:title>Google’s AI Search Just Exposed the Whole Sh*tshow</image:title>
      <image:caption>Search click-flow diagram comparing traditional ranked links, where most users click through to a publisher site, against AI Overviews, where 93 percent of searches end with no outbound click — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/if-ai-ran-the-economy/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/if-ai-ran-the-economy.png</image:loc>
      <image:title>If AI Ran the Economy, Would You Still Be Poor?</image:title>
      <image:caption>If AI Ran the Economy, Would You Still Be Poor? — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/learning-ai-the-wrong-way/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/learning-ai-the-wrong-way.png</image:loc>
      <image:title>Why Most People Are Learning AI the Wrong Way, and What to Do Instead</image:title>
      <image:caption>Why Most People Are Learning AI the Wrong Way, and What to Do Instead — Learning &amp; Thinking with AI, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/learning-ai-the-wrong-way/co-piloting-loop.svg</image:loc>
      <image:title>Why Most People Are Learning AI the Wrong Way, and What to Do Instead</image:title>
      <image:caption>Diagram of the co-piloting loop: human supplies context and direction, AI generates output, human evaluates and iterates — Learning &amp; Thinking with AI, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/meta-ai-morale-crisis/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/meta-ai-morale-crisis.png</image:loc>
      <image:title>Meta’s AI Clusterf*ck Is Humiliating Zuckerberg</image:title>
      <image:caption>Meta’s AI Clusterf*ck Is Humiliating Zuckerberg — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/meta-lost-the-plot-strategy/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/meta-lost-the-plot-strategy.png</image:loc>
      <image:title>Meta Didn’t Lose the Future. It Lost the Plot</image:title>
      <image:caption>Meta Didn’t Lose the Future. It Lost the Plot — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/meta-lost-the-plot-strategy/meta-pivot-timeline.svg</image:loc>
      <image:title>Meta Didn’t Lose the Future. It Lost the Plot</image:title>
      <image:caption>Timeline of Meta&apos;s metaverse, piracy, and AI pivots with reported spend figures — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/openai-trillion-dollar-financials/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/openai-trillion-dollar-financials.png</image:loc>
      <image:title>OpenAI’s $1 Trillion Bullsh*t Is Falling Apart</image:title>
      <image:caption>OpenAI’s $1 Trillion Bullsh*t Is Falling Apart — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/openai-trillion-dollar-financials/spend-vs-revenue-gap.svg</image:loc>
      <image:title>OpenAI’s $1 Trillion Bullsh*t Is Falling Apart</image:title>
      <image:caption>Bar comparison of OpenAI&apos;s reported $34 billion total spend, $13 billion revenue, $17.2 billion Microsoft payment, and $115 billion projected 2029 losses — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/palantir-employee-revolt/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/palantir-employee-revolt.png</image:loc>
      <image:title>Palantir Implodes From Within: Employees Call It “Fascist”</image:title>
      <image:caption>Palantir Implodes From Within: Employees Call It “Fascist” — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/phd-computer-science-why-i-hate-ai/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/phd-computer-science-why-i-hate-ai.png</image:loc>
      <image:title>I Have a PhD in Computer Science. Here’s Why I Hate AI</image:title>
      <image:caption>I Have a PhD in Computer Science. Here’s Why I Hate AI — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/physical-ai-sensor-data-problem/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/physical-ai-sensor-data-problem.png</image:loc>
      <image:title>AI Didn’t Run Out of Data. It Ran Out of Reality</image:title>
      <image:caption>AI Didn’t Run Out of Data. It Ran Out of Reality — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/physical-ai-sensor-data-problem/sim-to-real-gap.svg</image:loc>
      <image:title>AI Didn’t Run Out of Data. It Ran Out of Reality</image:title>
      <image:caption>Diagram comparing the text AI data pipeline against the physical AI sensor pipeline, and showing the sim-to-real gap where simulated training meets messy real-world physics — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/sam-altman-openai-cost-crisis/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/sam-altman-openai-cost-crisis.png</image:loc>
      <image:title>Sam Altman Is Freaking Out</image:title>
      <image:caption>Sam Altman Is Freaking Out — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/top-times-ai-went-rogue/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/top-times-ai-went-rogue.png</image:loc>
      <image:title>Top 6 Times AI Went Rogue in History</image:title>
      <image:caption>Top 6 Times AI Went Rogue in History — How AI Actually Works, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/images/articles/top-times-ai-went-rogue/rogue-ai-timeline.svg</image:loc>
      <image:title>Top 6 Times AI Went Rogue in History</image:title>
      <image:caption>Timeline of six AI incidents from Tay in 2016 to Bing&apos;s Sydney in 2023, with Replika&apos;s ongoing pattern noted separately — How AI Actually Works, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/uk-sovereign-ai-fund/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/uk-sovereign-ai-fund.png</image:loc>
      <image:title>UK Launches £500M AI Fund, Breaking Silicon Valley’s Monopoly</image:title>
      <image:caption>UK Launches £500M AI Fund, Breaking Silicon Valley’s Monopoly — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/what-happens-when-ai-runs-the-country/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/what-happens-when-ai-runs-the-country.png</image:loc>
      <image:title>What Happens When AI Runs the Country?</image:title>
      <image:caption>What Happens When AI Runs the Country? — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/tech-ceo-ai-psychosis-layoffs/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/tech-ceo-ai-psychosis-layoffs.png</image:loc>
      <image:title>Big Tech CEOs’ AI Psychosis Is a Total Disaster</image:title>
      <image:caption>Big Tech CEOs’ AI Psychosis Is a Total Disaster — AI Business &amp; Money, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/why-ai-would-delete-royal-families/</loc>
    <lastmod>2026-07-03T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/why-ai-would-delete-royal-families.png</image:loc>
      <image:title>Why AI Would Delete Royal Families, and What It Would Build Instead</image:title>
      <image:caption>Why AI Would Delete Royal Families, and What It Would Build Instead — AI &amp; Society, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-calendar/</loc>
    <lastmod>2026-07-02T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-calendar.png</image:loc>
      <image:title>Flocci Calendar: The Dumbest Tool You Own Just Learned to Run the Meeting</image:title>
      <image:caption>Flocci Calendar: The Dumbest Tool You Own Just Learned to Run the Meeting — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/nit-jamshedpur-ai-systems-mastery/</loc>
    <lastmod>2026-07-02T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/nit-jamshedpur-ai-systems-mastery.png</image:loc>
      <image:title>No-Code, Real Apps: Inside the AI Systems Mastery Workshop at NIT Jamshedpur</image:title>
      <image:caption>No-Code, Real Apps: Inside the AI Systems Mastery Workshop at NIT Jamshedpur — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-talk.jpg</image:loc>
      <image:title>No-Code, Real Apps: Inside the AI Systems Mastery Workshop at NIT Jamshedpur</image:title>
      <image:caption>MD Afsar Hussain leading the AI Systems Mastery workshop at NIT Jamshedpur — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-auditorium.jpg</image:loc>
      <image:title>No-Code, Real Apps: Inside the AI Systems Mastery Workshop at NIT Jamshedpur</image:title>
      <image:caption>The NIT Jamshedpur auditorium engaged during the workshop — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-notes/</loc>
    <lastmod>2026-07-01T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-notes.png</image:loc>
      <image:title>Flocci Notes: The Sticky Note That Plugs Into Your Whole Workspace</image:title>
      <image:caption>Flocci Notes: The Sticky Note That Plugs Into Your Whole Workspace — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/flocci-aikids/</loc>
    <lastmod>2026-06-30T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/flocci-aikids.png</image:loc>
      <image:title>Flocci AI Kids: A Crayon Portal Hiding a Serious Machine</image:title>
      <image:caption>Flocci AI Kids: A Crayon Portal Hiding a Serious Machine — Building Flocci, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/amity-dsa-sprint-servicenow-50-lpa/</loc>
    <lastmod>2026-06-29T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/amity-dsa-sprint-servicenow-50-lpa.png</image:loc>
      <image:title>The 4-Day DSA Sprint at Amity That Ended in a ₹50 LPA ServiceNow Offer</image:title>
      <image:caption>The 4-Day DSA Sprint at Amity That Ended in a ₹50 LPA ServiceNow Offer — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-amity-convocation.jpg</image:loc>
      <image:title>The 4-Day DSA Sprint at Amity That Ended in a ₹50 LPA ServiceNow Offer</image:title>
      <image:caption>MD Afsar Hussain at Amity University convocation with the graduating batch — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-teaching.jpg</image:loc>
      <image:title>The 4-Day DSA Sprint at Amity That Ended in a ₹50 LPA ServiceNow Offer</image:title>
      <image:caption>MD Afsar Hussain teaching a hands-on technical session — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/ideaspark-hackathon-amity/</loc>
    <lastmod>2026-06-27T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/ideaspark-hackathon-amity.png</image:loc>
      <image:title>Four Days of IdeaSpark: MD Afsar Hussain Judges Amity Jharkhand&apos;s Student Hackathon</image:title>
      <image:caption>Four Days of IdeaSpark: MD Afsar Hussain Judges Amity Jharkhand&apos;s Student Hackathon — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-award-ideaspark.jpg</image:loc>
      <image:title>Four Days of IdeaSpark: MD Afsar Hussain Judges Amity Jharkhand&apos;s Student Hackathon</image:title>
      <image:caption>MD Afsar Hussain honoured as chief guest at Amity University Jharkhand&apos;s IdeaSpark Hackathon — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-keynote.jpg</image:loc>
      <image:title>Four Days of IdeaSpark: MD Afsar Hussain Judges Amity Jharkhand&apos;s Student Hackathon</image:title>
      <image:caption>MD Afsar Hussain addressing a university innovation audience as chief guest — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/young-innovator-day-sap-labs/</loc>
    <lastmod>2026-06-24T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/young-innovator-day-sap-labs.png</image:loc>
      <image:title>Young Innovator Day: How MD Afsar Hussain Brought Frontier Tech to SAP&apos;s Kids</image:title>
      <image:caption>Young Innovator Day: How MD Afsar Hussain Brought Frontier Tech to SAP&apos;s Kids — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-young-innovator.jpg</image:loc>
      <image:title>Young Innovator Day: How MD Afsar Hussain Brought Frontier Tech to SAP&apos;s Kids</image:title>
      <image:caption>Students exploring frontier technology at a Young Innovator Day session led by MD Afsar Hussain — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-auditorium.jpg</image:loc>
      <image:title>Young Innovator Day: How MD Afsar Hussain Brought Frontier Tech to SAP&apos;s Kids</image:title>
      <image:caption>MD Afsar Hussain addressing a full auditorium — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/a-decade-at-sap-labs-india/</loc>
    <lastmod>2026-06-20T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/a-decade-at-sap-labs-india.png</image:loc>
      <image:title>A Decade at SAP Labs India: The Ten Years That Built Flocci&apos;s Founder</image:title>
      <image:caption>A Decade at SAP Labs India: The Ten Years That Built Flocci&apos;s Founder — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-boardroom.jpg</image:loc>
      <image:title>A Decade at SAP Labs India: The Ten Years That Built Flocci&apos;s Founder</image:title>
      <image:caption>MD Afsar Hussain in a corporate boardroom during his years at SAP Labs India — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://crashtech.in/founder/afsar-professional.jpg</image:loc>
      <image:title>A Decade at SAP Labs India: The Ten Years That Built Flocci&apos;s Founder</image:title>
      <image:caption>MD Afsar Hussain, professional portrait from his SAP Labs India tenure — Founder&apos;s Notebook, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/programming-naming-conventions-explained/</loc>
    <lastmod>2026-05-23T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/programming-naming-conventions-explained.png</image:loc>
      <image:title>Programming Naming Conventions Explained: camelCase, PascalCase, snake_case &amp; More</image:title>
      <image:caption>Programming Naming Conventions Explained: camelCase, PascalCase, snake_case &amp; More — Development Best Practices, Crashtech</image:caption>
    </image:image>
  </url>
  <url>
    <loc>https://crashtech.in/articles/seo-is-dead-ai-search-geo-aeo-llmo-developers-guide/</loc>
    <lastmod>2026-05-23T00:00:00.000Z</lastmod>
    <image:image>
      <image:loc>https://crashtech.in/open-graph/seo-is-dead-ai-search-geo-aeo-llmo-developers-guide.png</image:loc>
      <image:title>SEO is Dead? The Developer&apos;s Guide to AI Search, GEO, AEO, and LLMO</image:title>
      <image:caption>SEO is Dead? The Developer&apos;s Guide to AI Search, GEO, AEO, and LLMO — SEO &amp; AI Search, Crashtech</image:caption>
    </image:image>
  </url>
</urlset>