<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <title>Welcome</title>
    <subtitle>A modern blog with glassmorphism design and aurora animations</subtitle>
    <link rel="self" type="application/atom+xml" href="https://xpltt.vercel.app/atom.xml"/>
    <link rel="alternate" type="text/html" href="https://xpltt.vercel.app/"/>
    <generator uri="https://www.getzola.org/">Zola</generator>
    <updated>2025-01-24T00:00:00+00:00</updated>
    <id>https://xpltt.vercel.app/atom.xml</id>
    <entry xml:lang="en">
        <title>Getting Started with Prism Theme</title>
        <published>2025-01-24T00:00:00+00:00</published>
        <updated>2025-01-24T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://xpltt.vercel.app/posts/getting-started/"/>
        <id>https://xpltt.vercel.app/posts/getting-started/</id>
        
        <content type="html" xml:base="https://xpltt.vercel.app/posts/getting-started/">&lt;p&gt;Welcome to &lt;strong&gt;Prism&lt;&#x2F;strong&gt; — a modern Zola theme designed for developers who appreciate clean aesthetics and smooth animations.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;features-overview&quot;&gt;Features Overview&lt;&#x2F;h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Responsive Grid Layouts&lt;&#x2F;strong&gt; — Your content looks great on any device&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Syntax Highlighting&lt;&#x2F;strong&gt; — Beautiful code blocks for technical posts&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Tag System&lt;&#x2F;strong&gt; — Organize posts by topics&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Reading Time&lt;&#x2F;strong&gt; — Automatically calculated for each post&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Fast &amp;amp; Lightweight&lt;&#x2F;strong&gt; — Optimized for performance&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;typography-that-shines&quot;&gt;Typography That Shines&lt;&#x2F;h2&gt;
&lt;p&gt;The theme uses carefully selected typography with proper hierarchy and spacing. Headers stand out with volumetric effects, while body text remains highly readable.&lt;&#x2F;p&gt;
&lt;pre data-lang=&quot;rust&quot; class=&quot;language-rust &quot;&gt;&lt;code class=&quot;language-rust&quot; data-lang=&quot;rust&quot;&gt;&amp;#x2F;&amp;#x2F; Code looks beautiful too!
pub fn main() {
    println!(&amp;quot;Hello from Prism!&amp;quot;);
}
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;h2 id=&quot;getting-started&quot;&gt;Getting Started&lt;&#x2F;h2&gt;
&lt;p&gt;Installation is simple:&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;Clone the theme into your &lt;code&gt;themes&lt;&#x2F;code&gt; directory&lt;&#x2F;li&gt;
&lt;li&gt;Set &lt;code&gt;theme = &quot;prism&quot;&lt;&#x2F;code&gt; in your &lt;code&gt;config.toml&lt;&#x2F;code&gt;&lt;&#x2F;li&gt;
&lt;li&gt;Customize colors and settings as needed&lt;&#x2F;li&gt;
&lt;li&gt;Start writing!&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;Check out the &lt;a rel=&quot;noopener nofollow noreferrer&quot; target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;jahamars&#x2F;zola-prism&quot;&gt;GitHub repository&lt;&#x2F;a&gt; for detailed documentation.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;&lt;em&gt;Enjoy creating with Prism! ✨&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>Quantum Superposition: Being Everywhere at Once</title>
        <published>2025-01-20T00:00:00+00:00</published>
        <updated>2025-01-20T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://xpltt.vercel.app/posts/superposition/"/>
        <id>https://xpltt.vercel.app/posts/superposition/</id>
        
        <content type="html" xml:base="https://xpltt.vercel.app/posts/superposition/">&lt;h2 id=&quot;what-is-superposition&quot;&gt;What is Superposition?&lt;&#x2F;h2&gt;
&lt;p&gt;In quantum mechanics, particles can exist in multiple states at the same time. A quantum particle can be in two places, spin in two directions, or have two energies simultaneously—until we measure it.&lt;&#x2F;p&gt;
&lt;p&gt;This isn’t just theoretical. It’s experimentally verified and used in quantum computers today.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;schrodinger-s-cat&quot;&gt;Schrödinger’s Cat&lt;&#x2F;h2&gt;
&lt;p&gt;The famous thought experiment illustrates this: a cat in a box is both alive and dead until you open the box and observe it. While dramatic, it captures the essence of quantum superposition.&lt;&#x2F;p&gt;
&lt;pre data-lang=&quot;python&quot; class=&quot;language-python &quot;&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;# Quantum state before measurement
quantum_state = 0.5 * |alive⟩ + 0.5 * |dead⟩

# After measurement: collapse to one state
observed_state = |alive⟩  # or |dead⟩
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;h2 id=&quot;why-it-matters&quot;&gt;Why It Matters&lt;&#x2F;h2&gt;
&lt;p&gt;Superposition enables:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Quantum computing&lt;&#x2F;strong&gt; - processing multiple calculations simultaneously&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Quantum cryptography&lt;&#x2F;strong&gt; - unbreakable encryption&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Precision sensors&lt;&#x2F;strong&gt; - detecting gravitational waves&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;The quantum world is strange, but it’s real—and it’s changing technology forever.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;&lt;em&gt;Reality is far stranger than fiction when you look small enough.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>Quantum Entanglement: Spooky Action at a Distance</title>
        <published>2025-01-18T00:00:00+00:00</published>
        <updated>2025-01-18T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://xpltt.vercel.app/posts/section/entanglement/"/>
        <id>https://xpltt.vercel.app/posts/section/entanglement/</id>
        
        <content type="html" xml:base="https://xpltt.vercel.app/posts/section/entanglement/">&lt;h2 id=&quot;einstein-s-nightmare&quot;&gt;Einstein’s Nightmare&lt;&#x2F;h2&gt;
&lt;p&gt;Albert Einstein called quantum entanglement “spooky action at a distance” because he didn’t believe it could be real. He was wrong—it is real, and it’s one of the most verified phenomena in physics.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;what-is-entanglement&quot;&gt;What is Entanglement?&lt;&#x2F;h2&gt;
&lt;p&gt;When two particles become entangled, measuring one &lt;strong&gt;instantly&lt;&#x2F;strong&gt; affects the other, no matter how far apart they are. Change the spin of one photon in New York, and its entangled partner in Tokyo changes simultaneously.&lt;&#x2F;p&gt;
&lt;p&gt;This happens faster than light could travel between them.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;the-math&quot;&gt;The Math&lt;&#x2F;h2&gt;
&lt;pre&gt;&lt;code&gt;|Ψ⟩ = 1&amp;#x2F;√2 (|↑↓⟩ - |↓↑⟩)
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;Two particles in perfect anti-correlation: if one spins up, the other must spin down.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;real-applications&quot;&gt;Real Applications&lt;&#x2F;h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Quantum teleportation&lt;&#x2F;strong&gt; - transferring quantum states across space&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Quantum networks&lt;&#x2F;strong&gt; - the future internet&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Fundamental tests&lt;&#x2F;strong&gt; - proving quantum mechanics is real&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;the-mystery&quot;&gt;The Mystery&lt;&#x2F;h2&gt;
&lt;p&gt;No one truly understands &lt;em&gt;how&lt;&#x2F;em&gt; entanglement works. We can use it, measure it, and rely on it—but the mechanism remains one of physics’ deepest mysteries.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;&lt;em&gt;The universe is connected in ways we’re only beginning to understand.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>Heisenberg&#x27;s Uncertainty Principle: The Universe Has Limits</title>
        <published>2025-01-15T00:00:00+00:00</published>
        <updated>2025-01-15T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://xpltt.vercel.app/posts/section/uncertainty/"/>
        <id>https://xpltt.vercel.app/posts/section/uncertainty/</id>
        
        <content type="html" xml:base="https://xpltt.vercel.app/posts/section/uncertainty/">&lt;h2 id=&quot;the-fundamental-limit&quot;&gt;The Fundamental Limit&lt;&#x2F;h2&gt;
&lt;p&gt;Werner Heisenberg discovered that nature has built-in uncertainty. You cannot simultaneously know both the exact position and exact momentum of a particle. The more precisely you measure one, the less you know about the other.&lt;&#x2F;p&gt;
&lt;p&gt;This isn’t a limitation of our instruments—it’s a fundamental property of reality.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;the-formula&quot;&gt;The Formula&lt;&#x2F;h2&gt;
&lt;pre&gt;&lt;code&gt;Δx · Δp ≥ ℏ&amp;#x2F;2
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;Where:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Δx&lt;&#x2F;strong&gt; = uncertainty in position&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Δp&lt;&#x2F;strong&gt; = uncertainty in momentum&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;ℏ&lt;&#x2F;strong&gt; = reduced Planck constant (1.054 × 10⁻³⁴ J·s)&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;what-it-means&quot;&gt;What It Means&lt;&#x2F;h2&gt;
&lt;p&gt;Imagine trying to photograph a speeding bullet:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Long exposure&lt;&#x2F;strong&gt; → you see its path (momentum) but not exact position&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Fast shutter&lt;&#x2F;strong&gt; → you see its position but blur its motion&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;In quantum mechanics, this trade-off is absolute and unavoidable.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;why-it-matters&quot;&gt;Why It Matters&lt;&#x2F;h2&gt;
&lt;p&gt;The uncertainty principle:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;Prevents atoms from collapsing (electrons can’t fall into the nucleus)&lt;&#x2F;li&gt;
&lt;li&gt;Enables quantum tunneling (particles passing through barriers)&lt;&#x2F;li&gt;
&lt;li&gt;Powers nuclear fusion in stars (including our Sun)&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;Without uncertainty, the universe as we know it couldn’t exist.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;code-example&quot;&gt;Code Example&lt;&#x2F;h2&gt;
&lt;pre data-lang=&quot;python&quot; class=&quot;language-python &quot;&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;import numpy as np

# Heisenberg uncertainty relation
h_bar = 1.054e-34  # Joule-seconds
delta_x = 1e-10    # 1 Angstrom uncertainty in position

# Minimum momentum uncertainty
delta_p = h_bar &amp;#x2F; (2 * delta_x)

print(f&amp;quot;Minimum Δp: {delta_p:.3e} kg·m&amp;#x2F;s&amp;quot;)
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;&lt;em&gt;Nature doesn’t just hide secrets—some secrets are fundamentally unknowable.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
</content>
        
    </entry>
</feed>
