Forgot your password?
typodupeerror

Comment Re:"Powerful" quantum computer (Score 1) 74

I've actually programmed quantum computers, and I have to admit this is correct. We have access to more qubits now than we can effectively use because of the rapid accumulation of noise and decoherence in quantum processing. No one seems to have achieved much with Quantum Error Correction, and schemes to get it to work better (like Cat qubits) remain theoretical.

There might be a breakthrough someday, and when it happens everyone will know quickly, but there is still a lot of work to do to get there. Or there may never be a breakthrough.

Comment Re:How do I quantum vide code? (Score 1) 74

I just asked Google in AI mode "qiskit bell state" and it gave me the code.

from qiskit import QuantumCircuit
from qiskit.quantum_info import Statevector
from qiskit.visualization import plot_histogram

# 1. Create a quantum circuit with 2 qubits and 2 classical bits
qc = QuantumCircuit(2, 2)

# 2. Apply a Hadamard gate to qubit 0 to create a superposition
qc.h(0)

# 3. Apply a CNOT gate with qubit 0 as control and qubit 1 as target
qc.cx(0, 1)

# 4. (Optional) View the ideal quantum statevector before measurement
state = Statevector.from_instruction(qc)
print("Statevector:\n", state)

# 5. Measure both qubits into the classical bits
qc.measure([0, 1], [0, 1])

# 6. Draw the circuit text representation
print("\nCircuit Diagram:")
print(qc.draw(output="text"))

You can go run it on IBM Quantum Platform or AWS Braket

Comment Re:Trump has expanded the high skill work visas (Score 2) 235

No, the H1-B program has not changed this year under Trump. The number of new visas issued annually remains capped at 65,000, plus an additional 20,000 for people with a masterâ(TM)s degree or higher.

Under Trump's first term, there was increased scrutiny and stricter enforcement on H1-B, leading to higher denial rates (24% vs. 6%) and more requests for evidence. Much of that was overturned in the courts, and the denial rate is back to normal.

Prior to 2004, H1-B numbers were legislatively higher (195,000).

Comment Re:Migrate (Score 2) 48

QEMU is a system emulator and can be a core component of (and often is) a virtualization offering like Proxmox, RHEV, OpenStack, OpenShift, etc. but by itself is not suitable for replacing an entire stack of technologies, which is what VMWare vSphere is.

Broadcom is a shitty company but vSphere probably is the the most mature and feature-filled player in virtualization right now.

The issue is KVM requires work / knowledge to do this. vmware dumbed it down to a windows admin level. And of course the execs all went oooh shiny. Combining network / storage / vm into a single place simplified the ownership of vmware, which broadcom is abusing the customer base for.

Comment Use multiple availability zones (Score 1) 45

If you have virtual infrastructure in AWS with high availability requirements, use multiple Availability Zones (AZs), which are distinct locations within an AWS Region that are distant enough from each other to provide isolation from common physical failures (fire, flood, tornado) but have inexpensive, low-latency network connectivity to other AZs in the same AWS Region (for reliable synchronous database replication, for example).

Slashdot Top Deals

A physicist is an atom's way of knowing about atoms. -- George Wald

Working...