Skip to content
View RandomProjects-db's full-sized avatar
:electron:
var x
:electron:
var x

Highlights

  • Pro

Block or report RandomProjects-db

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
RandomProjects-db/README.md

Fahed Daibes

Typing SVG

Banner

πŸš€ About Me

Hi! I’m a passionate developer specializing in DevOps, Data Science, and Quantum Computing.
I love tackling complex problems and turning ideas into innovative solutions. Currently, I’m working on exciting projects through the MIT Emerging Talent Program and looking forward to more impactful work.

πŸ’‘ Core Skills & Interests

  • πŸ”§ DevOps: Building automated workflows and optimizing systems.
  • πŸ“Š Data Science: Transforming data into actionable insights.
  • βš›οΈ Quantum Computing: Exploring real-world applications and advancements in quantum technologies.
  • πŸ–₯️ IT Support: Years of experience in IT infrastructure and troubleshooting.

🎯 Goals

  • 🌱 Contribute to impactful open-source projects.
  • πŸŽ“ Contribute to quantum computing projects and explore real-world applications in the field.

πŸ”— Fun Section: Create a Bell State

Here’s a simple Quantum Circuit for creating a Bell state. Can you modify it to entangle more qubits? πŸ§‘β€πŸ’»

from qiskit import QuantumCircuit, Aer, execute

# Create a Quantum Circuit with 2 qubits and 2 classical bits
qc = QuantumCircuit(2, 2)

# Apply a Hadamard gate on the first qubit
qc.h(0)

# Apply a CNOT gate (control=0, target=1)
qc.cx(0, 1)

# Measure the qubits
qc.measure([0, 1], [0, 1])

# Run the circuit on a simulator
simulator = Aer.get_backend('qasm_simulator')
result = execute(qc, simulator, shots=1024).result()
counts = result.get_counts(qc)

print("Bell state measurement results:", counts)
βš›οΈ βš›οΈ
My GIF Another GIF

βš›οΈ βš›οΈ
My GIF2 GIF2

Popular repositories Loading

  1. QHack23-Quantum-Coding-Challenges QHack23-Quantum-Coding-Challenges Public

    Python 2

  2. YouTubePlaylist YouTubePlaylist Public

  3. ITA ITA Public

    Google IT Automations

    Python

  4. it-cert-automation-practice it-cert-automation-practice Public

    Forked from google/it-cert-automation-practice

    Google IT Automation with Python Professional Certificate - Practice files

    Python

  5. QCHack-2022 QCHack-2022 Public

    Forked from qBraid/QCHack-2022

    Jupyter Notebook

  6. ibm-quantum-spring-challenge-2022 ibm-quantum-spring-challenge-2022 Public

    Forked from qiskit-community/ibm-quantum-spring-challenge-2022

    Jupyter Notebook