Update currency-timeline.html
· 1 year ago
a73ef7cefa567b61257facadcbedc0f77b94dbcc
Parent:
3c0c96956
1 file changed +207 −141
- currency-timeline.html +207 −141
Diff
--- a/currency-timeline.html +++ b/currency-timeline.html @@ -3,7 +3,25 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <title>A Visual History of Global Monetary Standards - Saifedean Perspective</title> + <title>A Visual History of Global Monetary Standards - The Quest for Sound Money</title> + <meta name="twitter:creator" content="@HeroicLife" /> + <link rel="canonical" href="https://cheatsheets.davidveksler.com/currency-timeline.html" /> + <meta name="description" content="A visual history of global monetary standards, from commodity money, classical coinage (Drachma, Denarius, Dinar), the Gold Standard (Pound Sterling, USD), to the Fiat Experiment and the rise of Bitcoin as digital sound money. Explore the evolution of currency, its properties like spatial salability, and its impact on society." /> + <meta name="keywords" content="money, currency, history, monetary standards, commodity money, classical coinage, drachma, denarius, solidus, dinar, dirham, florin, ducat, spanish silver dollar, gold standard, pound sterling, fiat standard, fiat money, Bitcoin, sound money, spatial salability, debt slavery, Saifedean Ammous" /> + <meta name="author" content="David Veksler" /> + <meta name="twitter:card" content="summary_large_image" /> + <meta name="twitter:title" content="A Visual History of Global Monetary Standards - The Quest for Sound Money" /> + <meta name="twitter:description" content="A visual history of global monetary standards, from commodity money, classical coinage (Drachma, Denarius, Dinar), the Gold Standard (Pound Sterling, USD), to the Fiat Experiment and the rise of Bitcoin as digital sound money. Explore the evolution of currency, its properties like spatial salability, and its impact on society." /> + <meta name="twitter:image" content="https://cheatsheets.davidveksler.com/currency-timeline.png" /> + <meta property="og:title" content="A Visual History of Global Monetary Standards - The Quest for Sound Money" /> + <meta property="og:description" content="A visual history of global monetary standards, from commodity money, classical coinage (Drachma, Denarius, Dinar), the Gold Standard (Pound Sterling, USD), to the Fiat Experiment and the rise of Bitcoin as digital sound money. Explore the evolution of currency, its properties like spatial salability, and its impact on society." /> + <meta property="og:image" content="https://cheatsheets.davidveksler.com/currency-timeline.png" /> + <meta property="og:url" content="https://cheatsheets.davidveksler.com/currency-timeline.html" /> + <meta property="og:type" content="website" /> + <meta property="og:site_name" content="David Veksler" /> + <meta property="og:locale" content="en_US" /> + + <!-- Google Fonts --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @@ -94,7 +112,7 @@ width: 3px; background-color: var(--timeline-line-color); transform: translateX(-50%); } - .standard-section { margin-bottom: 50px; padding-top: 70px; } + .standard-section { margin-bottom: 50px; padding-top: 70px; } /* padding-top to offset for potential fixed header */ .standard-title-wrapper { display: flex; align-items: center; justify-content: center; margin-bottom: 25px; } .standard-title { font-family: var(--font-era-heading); font-weight: 700; font-size: 2.8em; @@ -119,6 +137,8 @@ line-height: 1.6; } .era-intro p { margin-bottom: 0.5em; } + .era-intro strong { color: var(--color-text); font-weight: 500;} + .timeline-item { padding: 10px 0; position: relative; margin-bottom: 30px; } .timeline-item:nth-child(odd) .timeline-content-wrapper { float: left; padding-right: 50px; width: calc(50% - 25px); } @@ -182,9 +202,18 @@ padding: 7px 10px; border-radius: 3px; display: block; margin-top: 10px; border-left: 2px solid; } + .standard-classical-coinage .quantitative-detail, .standard-classical-coinage .currency-detail { border-left-color: var(--color-silver); } .standard-gold .quantitative-detail, .standard-gold .currency-detail { border-left-color: var(--color-gold); } + .standard-intermediate .quantitative-detail, .standard-intermediate .currency-detail { border-left-color: var(--color-intermediate); } .standard-fiat .quantitative-detail, .standard-fiat .currency-detail { border-left-color: var(--color-fiat-era); } .standard-digital-sound .quantitative-detail, .standard-digital-sound .currency-detail { border-left-color: var(--color-bitcoin); } + .timeline-content .ammous-insight { + font-style: normal; color: #38414a; font-size: 0.9em; background-color: #e9ecef; + padding: 8px 12px; border-radius: 3px; display: block; margin-top: 12px; + border-left: 3px solid #7952b3; /* A distinct color for Ammous's points */ + } + .timeline-content .ammous-insight strong { color: #495057;} + .main-header { text-align: center; padding: 45px 20px; background: var(--nav-bg); color: #fff; margin-bottom: 35px; } .main-header h1 { font-family: var(--font-main-heading); font-weight: 700; font-size: 3.2em; } @@ -192,25 +221,56 @@ .footer-note { text-align: center; margin-top: 50px; padding: 25px 0; font-size: 0.88em; color: #5a6268; border-top: 1px solid var(--timeline-line-color);} @media (max-width: 1024px) { - body { margin-left: 0; padding-top: 50px; } - .left-nav { height: 50px; flex-direction: row; align-items: center; justify-content: center; overflow-x: auto; overflow-y: hidden; } + body { margin-left: 0; padding-top: 50px; /* Space for fixed top nav */ } + .left-nav { + height: 50px; /* Fixed height for horizontal nav */ + width: 100%; + flex-direction: row; + align-items: center; + justify-content: center; + overflow-x: auto; + overflow-y: hidden; + padding-top: 0; + box-shadow: 0 3px 10px rgba(0,0,0,0.1); + } .left-nav-header { display: none; } - .left-nav ul { display: flex; flex-direction: row; width: 100%; justify-content: space-around; } - .left-nav li a { padding: 8px 12px; font-size: 0.8em; border-left: none; border-bottom: 3px solid transparent; white-space: nowrap;} + .left-nav ul { + display: flex; + flex-direction: row; + width: 100%; /* Allow it to expand if needed for scroll */ + justify-content: space-around; /* Distribute items nicely if they fit */ + } + .left-nav li a { + padding: 8px 12px; /* Reduced padding */ + font-size: 0.8em; + border-left: none; + border-bottom: 3px solid transparent; + white-space: nowrap; /* Keep items on one line */ + } .left-nav li a i { font-size: 1em; margin-right: 4px;} + .left-nav li a:hover, .left-nav li a.active { + border-left-color: transparent; /* Remove side border */ + border-bottom-color: var(--color-gold); /* Use bottom border for active/hover */ + } .main-header { margin-top: 0; padding: 25px 15px;} .main-header h1 { font-size: 2.2em;} .standard-title { font-size: 2.2em;} .era-intro { max-width: 100%; margin-left: 0; margin-right: 0;} } @media (max-width: 768px) { - .timeline-container::before { left: 18px; } + .timeline-container::before { left: 18px; } /* Move timeline line to the left */ .timeline-item:nth-child(odd) .timeline-content-wrapper, .timeline-item:nth-child(even) .timeline-content-wrapper { - width: calc(100% - 38px); float: right; padding-left: 30px; padding-right: 0; + width: calc(100% - 38px); /* Adjust width for single column */ + float: right; /* All items to one side */ + padding-left: 30px; /* Space from timeline line */ + padding-right: 0; + } + .timeline-icon { + left: 18px; /* Align icon with the new timeline line position */ + transform: translateX(-50%); /* Center icon on the line */ } - .timeline-icon { left: -2px; } /* Adjusted for thinner line */ - .left-nav ul { justify-content: flex-start; } + .left-nav ul { justify-content: flex-start; } /* Align items to start for scrolling */ .standard-title {font-size: 2.0em;} .timeline-content h3 {font-size: 1.25em;} } @@ -236,288 +296,277 @@ </header> <!-- ERA I --> - <div id="standard-commodity" class="standard-section standard-commodity"> + <section id="standard-commodity" class="standard-section standard-commodity" aria-labelledby="title-commodity"> <div class="standard-title-wrapper"> - <h2 class="standard-title">I. Commodity Money</h2> + <h2 id="title-commodity" class="standard-title">I. Commodity Money</h2> <button class="btn btn-sm btn-outline-secondary intro-toggle" type="button" data-bs-toggle="collapse" data-bs-target="#introCommodity" aria-expanded="false" aria-controls="introCommodity"> <i class="bi bi-info-circle"></i> Intro </button> </div> <div class="collapse era-intro" id="introCommodity"> - <p>Humanity's earliest monetary systems emerged from the direct utility of goods. Money <em>was</em> the commodity, valued for its use or established social convention. This represented a step beyond simple barter, providing a more common medium but still tied to physical utility and local availability, with varying degrees of "hardness" or difficulty to produce.</p> + <p>Humanity's earliest monetary systems emerged from the direct utility of goods. Money <em>was</em> the commodity, valued for its use or established social convention. This represented a step beyond simple barter, providing a more common medium but still tied to physical utility and local availability. The <strong>"hardness"</strong> (difficulty to produce additional units) varied, impacting their ability to hold value over time (temporal salability). Their <strong>spatial salability</strong> (ease of use across distance) was often poor due to bulk or spoilage.</p> </div> - <!-- Items for Commodity Money --> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-arrow-left-right-circle"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">Antiquity - ~700 BC</span><h3>Origins: From Barter to Common Commodities</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Square_Shoulder_Spade.jpg/300px-Square_Shoulder_Spade.jpg" alt="Ancient Chinese Spade Money"> - <p>Preceding formal money, direct barter (goods for goods) dominated. Gradually, certain widely desired commodities with inherent usefulness, divisibility, and portability emerged as early forms of money across different cultures (e.g., cattle in pastoral societies, salt in Africa & Europe, grain in agricultural centers like Mesopotamia).</p> - <p class="currency-detail"><strong>Challenge:</strong> Low salability across time and space; high storage and transport costs for bulk commodities.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Square_Shoulder_Spade.jpg/300px-Square_Shoulder_Spade.jpg" alt="Ancient Chinese Spade Money representing early commodity money" loading="lazy"> + <p>Preceding formal money, direct barter (goods for goods) dominated. Gradually, certain widely desired commodities like cattle (pastoral societies), salt (Africa & Europe), and grain (Mesopotamia) emerged as early forms of money. Their value was often limited by poor spatial salability (difficulty of transport) and temporal salability (spoilage or high production rates if price rose).</p> + <p class="currency-detail"><strong>Challenge:</strong> Low salability across time (perishability, ease of increased production) and space (transport costs).</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-shells"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">~3000 BC - Various Eras</span><h3>Shells, Beads, and Ornamental Monies</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cowry_shells_for_sale.jpg/600px-Cowry_shells_for_sale.jpg" alt="Cowrie Shells"> - <p>Cowrie shells (Indo-Pacific, Africa, China) became a widespread commodity money due to their uniformity, durability, and relative scarcity (difficulty to "produce" inland). Similar roles were played by Wampum beads (Native North America) and other ornamental items, their value often tied to labor in production or acquisition.</p> - <p class="quantitative-detail"><strong>Geographical Flavor:</strong> Cowries connected vast trade networks across the Indian Ocean basin.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Cowry_shells_for_sale.jpg/600px-Cowry_shells_for_sale.jpg" alt="Cowrie Shells used as commodity money" loading="lazy"> + <p>Cowrie shells (Indo-Pacific, Africa, China) and Wampum beads (Native North America) became widespread commodity monies. Their uniformity, durability, and relative difficulty to "produce" (especially inland) gave them better temporal salability than many other commodities. However, their spatial salability remained limited compared to metals.</p> + <p class="ammous-insight"><strong>Fiat Standard Insight:</strong> Even early commodity monies were chosen for properties resembling "hardness." However, vulnerability to new supply discoveries (like Rai stones with Captain O'Keefe) demonstrates the importance of robust scarcity. (Ammous, The Fiat Standard, Ch. 4)</p> </div></div> </div> - </div> + </section> <!-- ERA II --> - <div id="standard-classical-coinage" class="standard-section standard-classical-coinage"> + <section id="standard-classical-coinage" class="standard-section standard-classical-coinage" aria-labelledby="title-classical-coinage"> <div class="standard-title-wrapper"> - <h2 class="standard-title">II. Classical Coinage</h2> + <h2 id="title-classical-coinage" class="standard-title">II. Classical Coinage</h2> <button class="btn btn-sm btn-outline-secondary intro-toggle" type="button" data-bs-toggle="collapse" data-bs-target="#introClassical" aria-expanded="false" aria-controls="introClassical"> <i class="bi bi-info-circle"></i> Intro </button> </div> <div class="collapse era-intro" id="introClassical"> - <p>The invention of coinage marked a pivotal step: metals, already valued for their scarcity and properties, were now standardized by weight and purity, often under state authority. This improved the salability of money across space, making it more efficient for trade and tax collection. However, it also introduced the perpetual temptation for rulers to debase the currency for short-term gain.</p> + <p>The invention of coinage marked a pivotal step: metals, already valued for their <strong>hardness</strong> (scarcity and difficulty to produce) and desirable properties, were now standardized by weight and purity, often under state authority. This significantly improved the <strong>spatial salability</strong> of money, making it more efficient for trade and tax collection. However, state involvement also introduced the perpetual temptation for rulers to debase the currency (e.g., the Roman Denarius) for short-term fiscal gain, undermining its <strong>temporal salability</strong> and providing early lessons in inflation.</p> </div> - <!-- Items for Classical Coinage --> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-lightning"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">~650 BC (Lydia)</span><h3>The Lydian Innovation: Electrum Coins</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Lydian_Lion_Electrum_Coin.jpg/600px-Lydian_Lion_Electrum_Coin.jpg" alt="Lydian Lion Coin"> - <p>Kingdom of Lydia (Western Anatolia) pioneers the first true coins made from electrum (a natural gold-silver alloy), stamped with official insignia. This innovation spread rapidly to Greek city-states.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c8/Lydian_Lion_Electrum_Coin.jpg/600px-Lydian_Lion_Electrum_Coin.jpg" alt="Lydian Lion Electrum Coin - an early example of coinage" loading="lazy"> + <p>Kingdom of Lydia (Western Anatolia) pioneers the first true coins from electrum (a natural gold-silver alloy), stamped with official insignia. This innovation improved verifiability and acceptance, enhancing spatial salability. The metallic nature (gold/silver) ensured good temporal salability.</p> </div></div> </div> <div class="timeline-item"> - <div class="timeline-icon"><i class="bi bi-yin-yang"></i></div> <!-- Greek/Eastern Icon --> + <div class="timeline-icon"><i class="bi bi-yin-yang"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">~600 BC - ~300 BC</span><h3>Parallel Developments: Greece, India, China</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Indian_punch-marked_coins_from_Taxila%2C_4th_century_BC.jpg/600px-Indian_punch-marked_coins_from_Taxila%2C_4th_century_BC.jpg" alt="Indian Punch-Marked Coins"> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Indian_punch-marked_coins_from_Taxila%2C_4th_century_BC.jpg/600px-Indian_punch-marked_coins_from_Taxila%2C_4th_century_BC.jpg" alt="Indian Punch-Marked Coins representing coinage in India" loading="lazy"> <ul> - <li><strong>Greece:</strong> Silver coinage (e.g., Athenian Owl Drachma, ~4.3g silver) becomes dominant in Mediterranean trade.</li> - <li><strong>India:</strong> Punch-marked silver coins (Karshapana) emerge.</li> - <li><strong>China:</strong> Cast bronze spade and knife money, later round coins with holes (Ban Liang, Wu Zhu).</li> + <li><strong>Greek Drachma:</strong> Silver coinage, like the Athenian Owl Drachma (typically ~4.3g of high-purity silver), became dominant in Mediterranean trade, valued for its consistent quality and metallic soundness.</li> + <li><strong>Indian Karshapana:</strong> Punch-marked silver coins emerged, facilitating regional commerce.</li> + <li><strong>Chinese Coinage:</strong> Cast bronze spade and knife money, later evolving into round coins with holes (e.g., Ban Liang, Wu Zhu), served vast internal markets.</li> </ul> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><span>R</span></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">~269 BC - ~270 AD</span><h3>Roman Coinage: Rise and Debasement</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Denier_Auguste_Lugdunum_revers.jpg/600px-Denier_Auguste_Lugdunum_revers.jpg" alt="Roman Denarius of Augustus"> - <p>Rome's silver Denarius (initially ~4.5g, >95% pure) and gold Aureus facilitate imperial expansion. Systematic debasement begins with Nero and accelerates dramatically by the 3rd Century AD (Crisis of the Third Century).</p> - <p class="quantitative-detail"><strong>Debasement:</strong> Denarius silver content falls from ~98% under Augustus to <5% by Gallienus' reign (260s AD), leading to hyperinflation and severe economic disruption. Diocletian's Edict on Maximum Prices (301 AD) fails to curb it.</p> + <span class="year">~269 BC - ~270 AD</span><h3>Roman Coinage: Denarius & Aureus - Rise and Debasement</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Denier_Auguste_Lugdunum_revers.jpg/600px-Denier_Auguste_Lugdunum_revers.jpg" alt="Roman Denarius of Augustus, illustrating Roman coinage" loading="lazy"> + <p>Rome's silver Denarius (initially ~4.5g, >95% pure silver) and gold Aureus (initially ~8g gold) facilitated imperial expansion due to their relative soundness and wide acceptance. However, systematic state-led debasement (reducing silver/gold content to fund expenses) began with Nero and accelerated dramatically by the 3rd Century AD, destroying the currency's temporal salability and leading to hyperinflation.</p> + <p class="quantitative-detail"><strong>Debasement:</strong> Denarius silver content fell to <5% by Gallienus' reign, leading to severe economic disruption, a recurring theme with state-controlled money losing its hardness.</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-shield-fill-plus"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">~312 AD - ~1070s AD</span><h3>Byzantine Solidus: A Beacon of Stability</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Solidus_of_Constantine_the_Great.jpg/600px-Solidus_of_Constantine_the_Great.jpg" alt="Byzantine Solidus Coin"> - <p>Constantine I reforms Roman currency, introducing the gold Solidus (~4.5g, high purity). It maintained its weight and fineness for over 7 centuries, becoming the trusted international currency of the Mediterranean world, underpinning Byzantine economic power. Known as the "dollar of the Middle Ages."</p> - <p class="currency-detail"><strong>Global Impact:</strong> Its stability was a key factor in long-distance trade; widely imitated (e.g., early Islamic Dinar).</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Solidus_of_Constantine_the_Great.jpg/600px-Solidus_of_Constantine_the_Great.jpg" alt="Byzantine Solidus Coin, known for its stability" loading="lazy"> + <p>Constantine I introduced the gold Solidus (~4.5g, high purity gold). It maintained its weight and fineness for over 7 centuries, becoming the trusted international currency of the Mediterranean, underpinning Byzantine economic power. Its consistent quality and recognized authority gave it excellent temporal and spatial salability, becoming the "dollar of the Middle Ages."</p> + <p class="currency-detail"><strong>Global Impact:</strong> Its stability was key for long-distance trade; widely imitated (e.g., early Islamic Dinar).</p> </div></div> </div> - </div> + </section> <!-- ERA III --> - <div id="standard-intermediate" class="standard-section standard-intermediate"> + <section id="standard-intermediate" class="standard-section standard-intermediate" aria-labelledby="title-intermediate"> <div class="standard-title-wrapper"> - <h2 class="standard-title">III. Intermediate & Globalizing Standards</h2> + <h2 id="title-intermediate" class="standard-title">III. Intermediate & Globalizing Standards</h2> <button class="btn btn-sm btn-outline-secondary intro-toggle" type="button" data-bs-toggle="collapse" data-bs-target="#introIntermediate" aria-expanded="false" aria-controls="introIntermediate"> <i class="bi bi-info-circle"></i> Intro </button> </div> <div class="collapse era-intro" id="introIntermediate"> - <p>Following Rome's decline in the West, new centers of economic power emerged. Islamic Caliphates established sound coinage, while China experimented extensively with paper money. Italian city-states revived gold coinage in Europe, and later, the influx of New World silver created a truly global metallic standard for the first time, albeit one subject to the whims of empires and inflationary pressures from increased supply.</p> + <p>Following Rome's decline, new economic centers emerged. Islamic Caliphates established sound coinage like the <strong>Dinar</strong> (gold) and <strong>Dirham</strong> (silver), prized for their purity. China's paper money experiments demonstrated the perils of state over-issuance. Italian city-states revived gold coinage (<strong>Florin, Ducat</strong>), which gained international trust. Later, New World silver, minted as the <strong>Spanish Silver Dollar</strong>, created a global metallic standard with unprecedented <strong>spatial salability</strong>, though still subject to supply inflations and the debasement tendencies of empires.</p> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-moon-stars"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">~690s AD - Medieval Era</span><h3>Islamic Gold Dinar & Silver Dirham</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Dinar_cropped.jpg/600px-Dinar_cropped.jpg" alt="Islamic Gold Dinar"> - <p>Umayyad Caliphate introduces standardized Gold Dinar (~4.25g, inspired by Solidus) and Silver Dirham (~2.97g). These generally sound currencies fueled extensive trade networks from Al-Andalus (Spain) across North Africa, the Middle East, and Central Asia to India and China.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Dinar_cropped.jpg/600px-Dinar_cropped.jpg" alt="Islamic Gold Dinar, a significant currency in medieval trade" loading="lazy"> + <p>The Umayyad Caliphate introduced the standardized Gold Dinar (typically ~4.25g gold, inspired by the Solidus) and Silver Dirham (typically ~2.97g silver). These generally sound currencies, valued for their consistent weight and high purity, fueled extensive trade networks from Al-Andalus (Spain) to India and China due to their strong temporal and spatial salability.</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-receipt-cutoff"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">~10th - 15th Century (China)</span><h3>Chinese Paper Currency: Promise & Peril</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Ming_banknote_1_Kuan_1368-1399.jpg/500px-Ming_banknote_1_Kuan_1368-1399.jpg" alt="Ming Dynasty Banknote"> - <p>Song, Jin, and Yuan dynasties develop various forms of paper money (e.g., Jiaozi, Guanzi). While initially facilitating commerce, repeated episodes of over-issuance by the state, particularly under the Yuan and early Ming, led to hyperinflation and eventual abandonment of paper money for centuries in favor of silver.</p> - <p class="currency-detail"><strong>Lesson:</strong> State monopoly on unbacked paper money historically leads to its depreciation. (Gresham's Law also observed: bad money drives out good).</p> + <span class="year">~10th - 15th Century (China)</span><h3>Chinese Paper Currency: Promise & Peril of Early Fiat</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Ming_banknote_1_Kuan_1368-1399.jpg/500px-Ming_banknote_1_Kuan_1368-1399.jpg" alt="Ming Dynasty Banknote, an example of early Chinese paper currency" loading="lazy"> + <p>Various Chinese dynasties (Song, Jin, Yuan) developed paper money (e.g., Jiaozi). While offering superior spatial salability over coins for large transactions, repeated state over-issuance, particularly under the Yuan and early Ming, led to hyperinflation and loss of faith, destroying its temporal salability. This highlighted the core problem of money controlled by the state: the temptation to debase it for fiscal needs.</p> + <p class="ammous-insight"><strong>Fiat Standard Insight:</strong> Early paper money demonstrated that value dictated by authority, without a hard anchor, is prone to over-issuance and collapse. (Ammous, The Fiat Standard, Ch. 3)</p> </div></div> </div> <div class="timeline-item"> - <div class="timeline-icon"><i class="bi bi-flower1"></i></div> <!-- Florin/Flower Icon --> + <div class="timeline-icon"><i class="bi bi-flower1"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">~1252 AD (Florence/Venice)</span><h3>European Gold Revival: Florin & Ducat</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Gold_florin_of_Florence%2C_Italy%2C_1252-1303_AD%2C_RICAM_2008.0.242-001.jpg/600px-Gold_florin_of_Florence%2C_Italy%2C_1252-1303_AD%2C_RICAM_2008.0.242-001.jpg" alt="Florentine Florin"> - <p>Italian maritime republics, leading European trade, reintroduce gold coinage: Florentine Florin (~3.54g, 24-carat gold) and Venetian Ducat/Sequin (similar weight/purity). Their stability and recognizability made them the dominant currencies for high-value European commerce for centuries.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Gold_florin_of_Florence%2C_Italy%2C_1252-1303_AD%2C_RICAM_2008.0.242-001.jpg/600px-Gold_florin_of_Florence%2C_Italy%2C_1252-1303_AD%2C_RICAM_2008.0.242-001.jpg" alt="Florentine Florin, signifying the revival of gold coinage in Europe" loading="lazy"> + <p>Italian maritime republics reintroduced gold coinage: the Florentine Florin (~3.54g, 24-carat gold) and Venetian Ducat/Sequin (similar high weight/purity). Their stability, recognizability, and metallic soundness made them dominant, trusted currencies for high-value European commerce for centuries, showcasing strong temporal and spatial salability.</p> </div></div> </div> <div class="timeline-item"> - <div class="timeline-icon"><i class="bi bi-tsunami"></i></div> <!-- Wave for global silver flow --> + <div class="timeline-icon"><i class="bi bi-tsunami"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">~1500s - ~1800s</span><h3>The Spanish Silver Dollar: First True Global Currency</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Spaanse_mat_Ferdinand_VI_1757.jpg/600px-Spaanse_mat_Ferdinand_VI_1757.jpg" alt="Spanish Silver Dollar (Piece of Eight)"> - <p>Vast silver output from Spanish American mines (PotosÃ, Zacatecas) leads to the mass minting of the Spanish Silver Dollar (Real de a Ocho, ~25.5g fine silver). Uniformity and wide availability made it the dominant currency for international trade for over 200 years, accepted across Europe, the Americas, and Asia (especially China, where it became a de facto standard).</p> - <p class="quantitative-detail"><strong>Impact - Price Revolution:</strong> The massive influx of silver into Europe contributed to a prolonged period of general price inflation (16th-17th centuries), illustrating the quantity theory of money.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Spaanse_mat_Ferdinand_VI_1757.jpg/600px-Spaanse_mat_Ferdinand_VI_1757.jpg" alt="Spanish Silver Dollar (Piece of Eight), a global currency" loading="lazy"> + <p>Vast silver from Spanish American mines led to the mass minting of the Spanish Silver Dollar (Real de a Ocho, ~25.5g fine silver). Its uniformity and wide availability (high spatial salability) made it the dominant international trade currency for over 200 years, accepted across Europe, the Americas, and Asia (especially China, becoming a de facto standard there).</p> + <p class="quantitative-detail"><strong>Impact - Price Revolution:</strong> The massive silver influx into Europe led to prolonged general price inflation (16th-17th centuries), illustrating the quantity theory of money, even for a relatively hard commodity.</p> </div></div> </div> - </div> + </section> <!-- ERA IV --> - <div id="standard-gold" class="standard-section standard-gold"> + <section id="standard-gold" class="standard-section standard-gold" aria-labelledby="title-gold"> <div class="standard-title-wrapper"> - <h2 class="standard-title">IV. The Classical Gold Standard</h2> + <h2 id="title-gold" class="standard-title">IV. The Classical Gold Standard</h2> <button class="btn btn-sm btn-outline-secondary intro-toggle" type="button" data-bs-toggle="collapse" data-bs-target="#introGold" aria-expanded="false" aria-controls="introGold"> <i class="bi bi-info-circle"></i> Intro </button> </div> <div class="collapse era-intro" id="introGold"> - <p>The 19th and early 20th centuries witnessed the zenith of gold as the international monetary anchor. Nations formally defined their currency units as a specific weight of gold, creating a system of fixed exchange rates and imposing a degree of discipline on national monetary policies. This era fostered unprecedented global trade and capital flows but was ultimately undone by the fiscal demands of war and political pressures for monetary expansion.</p> + <p>The 19th and early 20th centuries witnessed gold as the international monetary anchor, representing peak sound money in practice. Nations formally defined their currency units (e.g., <strong>Pound Sterling, US Dollar</strong>) as specific gold weights, creating fixed exchange rates and monetary discipline. This fostered global trade but was ultimately undone by war's fiscal demands. Critically, gold's <strong>spatial salability</strong> relied on an increasingly centralized banking infrastructure (settling claims on gold rather than moving physical gold). This infrastructure was vulnerable to state capture and manipulation, paving the way for the fiat standard, as seen in Britain's "unofficial war on gold" starting in 1914-1915.</p> </div> <div class="timeline-item"> <div class="timeline-icon"><span>£</span></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">~1717 (de facto) / 1816 (official) - 1914</span><h3>Great Britain & The Gold Standard</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/GB_sovereign_Victoria_1887.jpg/600px-GB_sovereign_Victoria_1887.jpg" alt="British Gold Sovereign"> - <p>Britain, under Sir Isaac Newton as Master of the Mint, effectively moves to a gold standard by overvaluing gold relative to silver. Formally adopted in 1816, the Pound Sterling (£), redeemable for gold sovereigns (7.322g fine gold), becomes the world's premier reserve currency during Pax Britannica. Many nations follow suit.</p> - <p class="currency-detail"><strong>Characteristics:</strong> Promoted price stability (long-term), fixed exchange rates, facilitated international trade and investment, but limited government's ability to inflate.</p> + <span class="year">~1717 (de facto) / 1816 (official) - 1914 (effectively ended)</span><h3>Great Britain & The Gold Standard: The "Neverending Bank Holiday"</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/GB_sovereign_Victoria_1887.jpg/600px-GB_sovereign_Victoria_1887.jpg" alt="British Gold Sovereign coin, representing the Gold Standard" loading="lazy"> + <p>Britain formally adopted the gold standard in 1816, with the Pound Sterling (£) redeemable for gold sovereigns (7.322g fine gold). This system promoted long-term price stability and facilitated international trade during Pax Britannica. However, WWI led the Bank of England to suspend gold redeemability (the "Neverending Bank Holiday" started July 31, 1914) and promote notes via appeals like the August 6, 1915 directive. This was a critical step towards fiat, exploiting gold's reliance on bank-issued paper for practical spatial salability.</p> + <p class="ammous-insight"><strong>Fiat Standard Insight:</strong> The WWI suspension of gold convertibility and state promotion of paper notes in Britain was the genesis of the fiat standard. It demonstrated how states could detach currency from its metallic backing to finance activities like war, leveraging the public's reliance on bank-mediated gold claims. (Ammous, The Fiat Standard, Ch. 1 & 2)</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><span>$</span></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">1870s (de facto) / 1900 (official) - 1933</span><h3>United States Joins the Gold Standard</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/1907_Liberty_Head_double_eagle_gold_coin_obverse.jpg/600px-1907_Liberty_Head_double_eagle_gold_coin_obverse.jpg" alt="US Gold Double Eagle Coin"> - <p>After the Civil War, the US gradually returns to specie payments, formally adopting the gold standard with the Gold Standard Act of 1900 (1 USD = ~1.505g fine gold). This period saw significant US industrial growth and economic expansion. Domestic gold convertibility suspended in 1933 during the Great Depression; gold ownership by citizens criminalized.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/1907_Liberty_Head_double_eagle_gold_coin_obverse.jpg/600px-1907_Liberty_Head_double_eagle_gold_coin_obverse.jpg" alt="US Gold Double Eagle Coin, marking US adoption of Gold Standard" loading="lazy"> + <p>The US formally adopted the gold standard with the Gold Standard Act of 1900 (1 USD = ~1.505g fine gold). This period saw significant US industrial growth. Domestic gold convertibility was suspended in 1933 during the Great Depression, and gold ownership by citizens criminalized, further eroding the principles of sound money and paving the way for greater state control over the monetary system.</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-building-exclamation"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">1914 - 1944</span><h3>Interwar Period: Breakdown & Attempts to Restore</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Bundesarchiv_Bild_102-13304%2C_Berlin%2C_Inflationsgeld_wird_verbrannt.jpg/600px-Bundesarchiv_Bild_102-13304%2C_Berlin%2C_Inflationsgeld_wird_verbrannt.jpg" alt="Burning German Marks during Hyperinflation"> - <p>WWI leads to suspension of gold standard by most belligerents to finance war efforts via inflation. Attempts to restore it in the 1920s (e.g., Gold Exchange Standard) prove fragile. Competitive devaluations and economic nationalism contribute to the Great Depression.</p> - <p class="quantitative-detail"><strong>Case Study - Weimar Hyperinflation:</strong> Germany's suspension of gold convertibility and massive money printing to pay war reparations led to catastrophic hyperinflation (1921-1923), destroying savings and social order.</p> + <span class="year">1914 - 1944</span><h3>Interwar Period: Breakdown & Flawed Restoration Attempts</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Bundesarchiv_Bild_102-13304%2C_Berlin%2C_Inflationsgeld_wird_verbrannt.jpg/600px-Bundesarchiv_Bild_102-13304%2C_Berlin%2C_Inflationsgeld_wird_verbrannt.jpg" alt="Burning German Marks during Weimar Hyperinflation, showing breakdown of monetary standards" loading="lazy"> + <p>WWI led to widespread suspension of gold standards. Attempts to restore it (e.g., Gold Exchange Standard via Genoa Conference 1922) were fragile, often relying on major currencies like the Pound and Dollar as reserves, which themselves had diluted gold backing. This exported inflation and created systemic instability. Competitive devaluations and economic nationalism contributed to the Great Depression.</p> + <p class="quantitative-detail"><strong>Weimar Hyperinflation (Germany 1921-23):</strong> A catastrophic example of a state resorting to the printing press after abandoning gold backing, destroying savings and social order.</p> </div></div> </div> - </div> + </section> <!-- ERA V --> - <div id="standard-fiat" class="standard-section standard-fiat"> + <section id="standard-fiat" class="standard-section standard-fiat" aria-labelledby="title-fiat"> <div class="standard-title-wrapper"> - <h2 class="standard-title">V. The Global Fiat Experiment</h2> + <h2 id="title-fiat" class="standard-title">V. The Global Fiat Experiment</h2> <button class="btn btn-sm btn-outline-secondary intro-toggle" type="button" data-bs-toggle="collapse" data-bs-target="#introFiat" aria-expanded="false" aria-controls="introFiat"> <i class="bi bi-info-circle"></i> Intro </button> </div> <div class="collapse era-intro" id="introFiat"> - <p>The mid-20th century saw a move towards a system where national currencies were linked to a gold-convertible US dollar. Its collapse in 1971 ushered in the current era of purely fiat currencies—government-issued money unbacked by any physical commodity. This system grants states immense power over money supply, leading to persistent inflation, boom-bust cycles, and a distortion of economic calculation and time preference.</p> + <p>The Bretton Woods system (a gold-exchange standard centered on the <strong>US Dollar</strong>) collapsed in 1971, ushering in purely fiat currencies—government-issued money unbacked by any physical commodity, its value dictated by authority. This "Fiat Standard" is characterized by <strong>debt-based money creation ("fiat mining" via lending)</strong>, centralized control (the US Federal Reserve as a global "full node" with other central banks as regional nodes), persistent inflation, destruction of savings leading to "universal debt slavery," and boom-bust cycles. It "solved" gold's spatial salability problem by making money purely informational, but at the tremendous cost of its temporal salability (soundness) and subjecting it to political whim.</p> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-diagram-3-fill"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> <span class="year">1944 - 1971</span><h3>Bretton Woods: Dollar Hegemony, Fraying Gold Link</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Bretton_Woods_Conference_delegates_July_1944_Colorized.jpg/600px-Bretton_Woods_Conference_delegates_July_1944_Colorized.jpg" alt="Bretton Woods Conference Delegates"> - <p>Post-WWII, the Bretton Woods system established the USD as the world reserve currency, pegged to gold at $35/ounce (convertible only for foreign central banks). Other currencies pegged to the USD. This "gold-exchange standard" relied heavily on US commitment to maintain gold backing.</p> - <p class="quantitative-detail"><strong>Fatal Flaw (Triffin Dilemma):</strong> Increasing global demand for USD reserves required the US to run persistent balance of payments deficits, undermining confidence in the dollar's gold backing.</p> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Bretton_Woods_Conference_delegates_July_1944_Colorized.jpg/600px-Bretton_Woods_Conference_delegates_July_1944_Colorized.jpg" alt="Bretton Woods Conference Delegates, establishing USD hegemony" loading="lazy"> + <p>The USD, pegged to gold at $35/ounce (convertible only for foreign central banks), became the world reserve. Other currencies pegged to the USD. This "gold-exchange standard" relied on US commitment to maintain gold backing, which eroded due to domestic spending and war finance (Triffin Dilemma), as the US effectively exported inflation.</p> + <p class="ammous-insight"><strong>Fiat Standard Insight:</strong> Bretton Woods institutionalized the US dollar (and the Federal Reserve) as the central node in a global monetary network topology, where other national currencies became derivatives of the dollar, which itself was only tenuously linked to gold. (Ammous, The Fiat Standard, Ch. 2, 3 & 7)</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-door-closed-fill"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">August 15, 1971</span><h3>Nixon Closes the Gold Window</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Richard_Nixon_pardons_turkey_1971.jpg/600px-Richard_Nixon_pardons_turkey_1971.jpg" alt="Richard Nixon"> - <p>Facing dwindling gold reserves due to foreign redemptions, President Nixon "temporarily" suspends USD convertibility into gold. This act definitively ends any formal link between the global monetary system and gold, launching the era of pure fiat money worldwide.</p> - <p class="currency-detail"><strong>The Great Unraveling:</strong> Marks the final stage in the centuries-long process of states detaching money from physical scarcity.</p> + <span class="year">August 15, 1971</span><h3>Nixon Closes the Gold Window: The Fiat Standard Fully Operable</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Richard_Nixon_pardons_turkey_1971.jpg/600px-Richard_Nixon_pardons_turkey_1971.jpg" alt="Richard Nixon, associated with closing the gold window" loading="lazy"> + <p>President Nixon unilaterally suspended USD convertibility to gold, definitively ending the Bretton Woods system. This launched the era of pure fiat money worldwide, where currency value is unbacked by any physical commodity and is managed (manipulated) by central banks. The "Fiat Standard" became fully operational.</p> + <p class="currency-detail"><strong>The Fiat Standard Installed:</strong> This marked the final detachment of global money from physical scarcity, completing a process started decades earlier. (Ammous, The Fiat Standard, Ch. 1 & 2)</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-infinity"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">1971 - Present</span><h3>The Age of Pure Fiat & Its Manifestations</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Zimbabwe_%24100_trillion_2009_Obverse.jpg/600px-Zimbabwe_%24100_trillion_2009_Obverse.jpg" alt="Zimbabwe $100 Trillion Banknote"> - <p>National currencies (USD, EUR, JPY, etc.) operate without intrinsic backing. This era is characterized by:</p> + <span class="year">1971 - Present</span><h3>The Age of Pure Fiat: Debt, Inflation, and Distorted Time Preference</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Zimbabwe_%24100_trillion_2009_Obverse.jpg/600px-Zimbabwe_%24100_trillion_2009_Obverse.jpg" alt="Zimbabwe $100 Trillion Banknote, example of fiat hyperinflation" loading="lazy"> + <p>National currencies (USD, EUR, JPY, etc.) operate as unbacked fiat. This era is characterized by:</p> <ul> - <li><strong>Persistent Inflation:</strong> Continuous erosion of purchasing power as a feature, not a bug.</li> - <li><strong>Credit Expansion & Debt Cycles:</strong> Unconstrained money creation fuels unsustainable booms and inevitable busts.</li> - <li><strong>Hyperinflationary Episodes:</strong> Numerous countries (e.g., Zimbabwe, Venezuela, Argentina, Lebanon) demonstrate fiat's terminal trajectory when abused.</li> - <li><strong>Central Bank Dominance:</strong> Monetary policy becomes a primary tool for economic management, often with distorting effects.</li> + <li><strong>Persistent Inflation & Debasement:</strong> Continuous erosion of purchasing power.</li> + <li><strong>"Fiat Mining" (Credit Expansion):</strong> Money creation through lending fuels debt cycles and "universal debt slavery."</li> + <li><strong>Hyperinflationary Episodes:</strong> (e.g., Zimbabwe, Venezuela) demonstrate fiat's failure mode.</li> + <li><strong>Distortion of Time Preference:</strong> Easy money encourages consumption over saving, leading to malinvestment and societal short-termism (e.g., in architecture, food quality "Fiat Food").</li> </ul> - <p class="quantitative-detail"><strong>Purchasing Power Lost:</strong> By 2023, the US Dollar had lost approximately 97-98% of its 1913 (pre-Federal Reserve) purchasing power. A majority of this loss accelerated post-1971.</p> + <p class="ammous-insight"><strong>Fiat Standard Insight:</strong> Fiat money is debt-based, created via lending ("fiat mining"). This incentivizes indebtedness ("debt slavery") and high time preference, destroying savings and leading to widespread economic distortions, including in food ("Fiat Food") and science ("Fiat Science"). (Ammous, The Fiat Standard, Part I & II)</p> </div></div> </div> - </div> + </section> <!-- ERA VI --> - <div id="standard-digital-sound" class="standard-section standard-digital-sound"> + <section id="standard-digital-sound" class="standard-section standard-digital-sound" aria-labelledby="title-digital-sound"> <div class="standard-title-wrapper"> - <h2 class="standard-title">VI. Digital Sound Money: Bitcoin</h2> + <h2 id="title-digital-sound" class="standard-title">VI. Digital Sound Money: Bitcoin - The Fiat Liquidator?</h2> <button class="btn btn-sm btn-outline-secondary intro-toggle" type="button" data-bs-toggle="collapse" data-bs-target="#introDigital" aria-expanded="false" aria-controls="introDigital"> <i class="bi bi-info-circle"></i> Intro </button> </div> <div class="collapse era-intro" id="introDigital"> - <p>In response to the inherent instability and inflationary nature of fiat currencies, the digital age has produced a novel invention: Bitcoin. It represents a potential return to the principles of sound money—scarcity, difficulty of production, and resistance to censorship or debasement—but in a purely digital, globally accessible form, independent of state control.</p> + <p>Bitcoin emerged as a technological response to the fiat standard's inherent flaws. It's a digitally native, absolutely scarce (hard) asset, operating on a decentralized, censorship-resistant network. Unlike fiat, it is not debt-based, and its supply is programmatic and unchangeable (<strong>temporal salability</strong>). Bitcoin offers vastly superior <strong>spatial salability</strong> to gold without requiring centralized intermediaries, positioning it as a potential "fiat liquidator" and a return to sound money principles, potentially reversing fiat-induced high time preference.</p> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-puzzle-fill"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">2008-2009</span><h3>Bitcoin's Genesis: A Solution to Fiat's Flaws</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bitcoin.svg/400px-Bitcoin.svg.png" alt="Bitcoin Logo"> - <p>Satoshi Nakamoto publishes the Bitcoin whitepaper (2008) and launches the network (Jan 2009). The Genesis Block contains the message: "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks," a direct critique of the fiat system's instability.</p> - <p class="currency-detail"><strong>Core Innovation:</strong> A decentralized, peer-to-peer electronic cash system with a strictly limited supply of 21 million coins, enforced by a distributed consensus mechanism (Proof-of-Work).</p> - </div></div> - </div> - <div class="timeline-item"> - <div class="timeline-icon"><i class="bi bi-shield-check"></i></div> - <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">2010 - 2017</span><h3>Early Growth, Challenges & Protocol Resilience</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Bitcoin_Transaction_Visualisation.gif/600px-Bitcoin_Transaction_Visualisation.gif" alt="Bitcoin Transaction Visualization"> - <ul> - <li><strong>First Transactions:</strong> Pizza for 10,000 BTC establishes early exchange value.</li> - <li><strong>Exchange Hacks (e.g., Mt. Gox):</strong> Highlight risks of custodial solutions, reinforcing "not your keys, not your coins."</li> - <li><strong>Blocksize Wars & SegWit (2017):</strong> Demonstrates protocol's resistance to contentious changes and ability to upgrade via community consensus, preserving its core properties.</li> - </ul> + <span class="year">2008-2009</span><h3>Bitcoin's Genesis: An Engineered Solution to Fiat's Flaws</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/46/Bitcoin.svg/400px-Bitcoin.svg.png" alt="Bitcoin Logo, representing digital sound money" loading="lazy"> + <p>Satoshi Nakamoto's Bitcoin was launched during the 2008 financial crisis. The Genesis Block's message ("Chancellor on brink of second bailout for banks") critiques the fiat system's instability. Bitcoin is an engineered monetary technology based on proof-of-work and a fixed supply, contrasting with fiat's evolution from political expediency and its debt-based nature.</p> + <p class="ammous-insight"><strong>Fiat Standard Insight:</strong> Bitcoin is "anti-fiat technology." Its decentralized proof-of-work and difficulty adjustment create verifiable digital scarcity and hardness, offering a debt-free alternative to fiat's centralized, inflationary nature. (Ammous, The Fiat Standard, Ch. 12 & 15)</p> </div></div> </div> <div class="timeline-item"> <div class="timeline-icon"><i class="bi bi-graph-up-arrow"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">2012, 2016, 2020, 2024...</span><h3>The Halvings: Programmatic Scarcity in Action</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Bitcoin_Block_Reward_Halving_Schedule_Logarithmic.png/600px-Bitcoin_Block_Reward_Halving_Schedule_Logarithmic.png" alt="Bitcoin Halving Schedule Chart"> - <p>Approximately every four years, the rate of new bitcoin creation ("block reward") is halved. This programmatic reduction in supply issuance contrasts sharply with fiat currencies' potential for unlimited creation, reinforcing Bitcoin's "digital gold" narrative and store of value proposition.</p> + <span class="year">2012, 2016, 2020, 2024...</span><h3>The Halvings: Programmatic Scarcity & "Digital Gold"</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Bitcoin_Block_Reward_Halving_Schedule_Logarithmic.png/600px-Bitcoin_Block_Reward_Halving_Schedule_Logarithmic.png" alt="Bitcoin Halving Schedule Chart showing programmatic scarcity" loading="lazy"> + <p>Bitcoin's new supply issuance is halved approximately every four years ("halvings"), making its inflation rate predictably decline towards zero, with a final fixed supply of 21 million coins. This "Difficulty Adjustment: The Secret Sauce" ensures its hardness, contrasting with fiat's politically driven elastic supply, reinforcing Bitcoin's role as "digital gold" with superior temporal salability.</p> </div></div> </div> <div class="timeline-item"> - <div class="timeline-icon"><i class="bi bi-building"></i></div> + <div class="timeline-icon"><i class="bi bi-globe"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">2020 - Present</span><h3>Institutional & Nation-State Recognition</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Flag_of_El_Salvador.svg/600px-Flag_of_El_Salvador.svg.png" alt="Flag of El Salvador"> - <ul> - <li><strong>Corporate Treasuries:</strong> Public companies (e.g., MicroStrategy) begin allocating capital to Bitcoin as a reserve asset, citing inflation hedging and store of value properties.</li> - <li><strong>El Salvador (2021):</strong> Becomes the first nation-state to adopt Bitcoin as legal tender, a landmark event signaling its potential as a monetary alternative outside traditional systems.</li> - <li><strong>Spot Bitcoin ETFs (USA, 2024):</strong> Approval by the SEC allows mainstream investors easier access to Bitcoin exposure, further legitimizing it as an asset class.</li> - </ul> - <p class="currency-detail"><strong>Shift:</strong> Bitcoin moves from niche interest to consideration within mainstream finance and geopolitics.</p> + <span class="year">Ongoing</span><h3>Bitcoin's Potential: Neutral Global Currency & Superior Spatial Salability</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/Flag_of_El_Salvador.svg/600px-Flag_of_El_Salvador.svg.png" alt="Flag of El Salvador, first nation to adopt Bitcoin as legal tender" loading="lazy"> + <p>Bitcoin enables final settlement across borders in hours, permissionlessly. This superior spatial salability—compared to gold (costly/slow physical movement) and fiat (reliant on centralized, politicized banking networks)—positions it as a potential neutral global currency. Its debt-free nature offers an escape from the "universal debt slavery" of the fiat standard.</p> + <p class="ammous-insight"><strong>Fiat Standard Insight:</strong> Bitcoin's superior spatial salability over gold and its hardness over fiat could allow it to "fix" the problems of the fiat standard by demonetizing debt and offering a sound, neutral settlement layer. (Ammous, The Fiat Standard, Ch. 12 & 17)</p> </div></div> </div> <div class="timeline-item"> - <div class="timeline-icon"><i class="bi bi-shield-shaded"></i></div> + <div class="timeline-icon"><i class="bi bi-shield-check"></i></div> <div class="timeline-content-wrapper"><div class="timeline-content"> - <span class="year">Ongoing</span><h3>Bitcoin vs. CBDCs & Fiat System</h3> - <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Gavel_clip_art.svg/500px-Gavel_clip_art.svg.png" alt="Gavel - Representing Regulation/State"> - <p>As Bitcoin gains prominence, governments and central banks explore Central Bank Digital Currencies (CBDCs). CBDCs represent digitized fiat, retaining centralized control and inflationary potential, contrasting with Bitcoin's decentralized, scarce nature. The ongoing dialogue highlights the fundamental differences between state-controlled money and a non-sovereign, sound money alternative.</p> - <p class="currency-detail"><strong>Core Conflict:</strong> The battle between decentralized, hard money principles and centralized, elastic fiat systems in the digital age.</p> + <span class="year">Ongoing</span><h3>Bitcoin vs. CBDCs & The Fiat System: Digitized Control vs. Decentralized Soundness</h3> + <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Gavel_clip_art.svg/500px-Gavel_clip_art.svg.png" alt="Gavel representing regulation and the state's role in money" loading="lazy"> + <p>Central Bank Digital Currencies (CBDCs) are emerging state responses. However, CBDCs are essentially digitized fiat, retaining centralized control, programmability for surveillance/social engineering, and inflationary potential. They represent the fiat ideal of total control, contrasting sharply with Bitcoin's decentralized, permissionless, and scarce nature.</p> + <p class="currency-detail"><strong>Core Conflict:</strong> The battle between decentralized, hard money principles (Bitcoin) and centralized, elastic, surveillance-prone fiat systems (including CBDCs).</p> </div></div> </div> - </div> + </section> - <div class="footer-note"> - <p>A Saifedean Ammous-inspired interpretation of monetary history. Focus on scarcity, soundness, and the consequences of monetary manipulation. Images: Wikimedia Commons.</p> - </div> + <footer class="footer-note"> + <div> + <a href="https://www.linkedin.com/in/davidveksler/" title="David Veksler on LinkedIn" target="_blank" rel="noopener noreferrer" class="mx-2 link-secondary"> + <i class="bi bi-linkedin"></i> LinkedIn + </a> + <a href="https://cheatsheets.davidveksler.com/" title="Browse All Cheatsheets" class="mx-2 link-secondary"> + <i class="bi bi-collection"></i> All Cheatsheets + </a> + </div> + </footer> </div> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> @@ -525,54 +574,71 @@ document.addEventListener('DOMContentLoaded', function () { const navLinks = document.querySelectorAll('.left-nav a[href^="#"]'); const sections = document.querySelectorAll('.standard-section'); + const leftNav = document.querySelector('.left-nav'); + + function getNavHeight() { + return (window.innerWidth <= 1024 && leftNav.offsetHeight > 0) ? leftNav.offsetHeight : 0; + } - // Smooth scroll for nav links navLinks.forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const targetId = this.getAttribute('href'); const targetElement = document.querySelector(targetId); if (targetElement) { - const navHeight = (window.innerWidth <= 1024 && window.innerWidth > 0) ? document.querySelector('.left-nav').offsetHeight : 0; + const navHeight = getNavHeight(); const elementPosition = targetElement.getBoundingClientRect().top; - const offsetPosition = elementPosition + window.pageYOffset - navHeight - 15; // Adjusted offset + const offsetPosition = elementPosition + window.pageYOffset - navHeight - 15; // 15px buffer window.scrollTo({ top: offsetPosition, behavior: "smooth" }); } }); }); - // Active state for nav links on scroll function setActiveLink() { let current = ''; - const navHeight = (window.innerWidth <= 1024 && window.innerWidth > 0) ? document.querySelector('.left-nav').offsetHeight : 0; - // Adjust scrollOffset based on whether nav is top bar or side bar for more accurate active state + const navHeight = getNavHeight(); const scrollOffset = navHeight + (window.innerWidth > 1024 ? 80 : 30) ; sections.forEach(section => { - const sectionTop = section.offsetTop; + const sectionTop = section.offsetTop; if (window.pageYOffset >= sectionTop - scrollOffset) { current = section.getAttribute('id'); } }); + let activeLinkFound = false; navLinks.forEach((link) => { link.classList.remove('active'); if (link.getAttribute('href').substring(1) === current) { link.classList.add('active'); + activeLinkFound = true; + if (window.innerWidth <= 1024 && navHeight > 0) { + // Check if the active link is visible, if not, scroll it into view + const linkRect = link.getBoundingClientRect(); + const navRect = leftNav.getBoundingClientRect(); + if (linkRect.left < navRect.left || linkRect.right > navRect.right || linkRect.top < navRect.top || linkRect.bottom > navRect.bottom ) { + link.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'center' }); + } + } } }); + if (!activeLinkFound && navLinks.length > 0) { + if (window.pageYOffset < sections[0].offsetTop - scrollOffset) { + navLinks[0].classList.add('active'); + } + } } - // Initial call and event listeners setActiveLink(); window.addEventListener('scroll', setActiveLink); - window.addEventListener('resize', setActiveLink); // Recalculate on resize for nav height changes + window.addEventListener('resize', function() { + setActiveLink(); + }); - // Ensure Bootstrap collapse works var collapseElementList = [].slice.call(document.querySelectorAll('.collapse')) var collapseList = collapseElementList.map(function (collapseEl) { - return new bootstrap.Collapse(collapseEl, { toggle: false }) // Initialize with toggle false + return new bootstrap.Collapse(collapseEl, { toggle: false }) }); }); </script>