SNSyam Nair

Technical Deep-Dive  ·  Quantum Cryptography

Quantum
Encryption

Post-quantum cryptographic systems and the physics of unconditional security — from entangled photon pairs to lattice-based key exchange.

SN

Syam Nair

Senior Principal Architect  ·  24 yrs

Explore the writing →
Latest Writing
FeaturedAzurePostgreSQLStorageOptimizationFlexible Server

Azure PostgreSQL Storage Reduction & Optimization — Technical Deep Dive

How to reduce storage on an Azure PostgreSQL database with a higher provisioned SKU

Read article →
SN

Syam Nair

Senior Principal Architect

24 years architecting mission-critical cloud infrastructure on Azure, Kubernetes, and beyond.

About me →

Topics

Azure1PostgreSQL1Storage1Optimization1Flexible Server1Next.js1Vercel1Hobby Plan1Deployment1

Circuit · QC-01

from qiskit import QuantumCircuit

qc = QuantumCircuit(3, 3)
qc.h(0)        # |0⟩ → |+⟩
qc.cx(0, 1)    # entangle q0→q1
qc.t(0)        # phase π/4
qc.cx(1, 2)    # entangle q1→q2
qc.s(0)        # phase π/2
qc.measure_all()

Host Your Next.js App on Vercel - Hobby Plan

How to deploy a Next.js app on Vercel Hobby plan.

Next.jsVercel
12 min