DEV Community

Cover image for I spent my first 24h in Quantum Computing. Here’s why my brain hurts.
Amin
Amin

Posted on

I spent my first 24h in Quantum Computing. Here’s why my brain hurts.

Let’s be honest: Quantum Computing usually sounds like pure marketing fluff or high-level physics. But as a developer, I decided to see what actually happens when you stop watching documentaries and start opening VS Code.

The Setup Hell

Before doing any "Quantum Magic," I had to deal with the most human problem ever: dependency hell. I spent way too much time fighting version mismatches between Python 3.12 and the latest Qiskit release. It’s a good reality check: even if you’re building the future, it still starts with a pip install that crashes your terminal.

My first "Hello World": The Hadamard Gate

I finally got a circuit running. Seeing the $H$ gate on my screen was a weird milestone. It’s a simple line of code: qc.h(0). But mentally, it’s a wall. My classical brain kept screaming "But is the qubit a 0 or a 1?". The answer is "Yes." It stays in both states until you measure it and the reality collapses. It’s the first time in my life where I can’t debug a variable without destroying the data it contains.

The Math Wall

I’m a coder, not a mathematician. When I saw the Bloch Sphere for the first time, I felt like I was back in high school failing geometry. But here’s what I learned today: you don’t need to be Einstein to start. You just need to accept that we are manipulating probabilities, not certainties.

What’s next?

Tomorrow, I’m diving into Entanglement. I’m going to try to link two qubits so they influence each other at a distance. If the universe explodes, you’ll know why.

Top comments (0)