VSCode’s SSH agent is bananas 1 year ago
Yes, 20 years ago. Let go.
HN user
Yes, 20 years ago. Let go.
Photoshop used a custom UI toolkit which automatically generated the dialogs layout based on a description of their contents (string field, boolean, color picker, ...)
Do you by any chance have a friend named Wigner?
It's not true that computer randomness is predictable, all recent computers have entropy sources which are essentially quantum in nature - thermal noise.
They already exist
import numpy as np
from qiskit import QuantumCircuit
# 1. A quantum circuit for preparing the quantum state |000> + i |111> / √2
qc = QuantumCircuit(3)
# generate superposition
qc.h(0)
# add quantum phase
qc.p(np.pi / 2, 0)
# 0th-qubit-Controlled-NOT gate on 1st qubit
qc.cx(0, 1)
# 0th-qubit-Controlled-NOT gate on 2nd qubit
qc.cx(0, 2)