Skip to content

Instantly share code, notes, and snippets.

View ericardomuten's full-sized avatar
👨‍💻
Working from home

Eraraya Ricardo Muten ericardomuten

👨‍💻
Working from home
View GitHub Profile
@ericardomuten
ericardomuten / gsoc-badge.md
Last active April 18, 2022 15:08
Google Summer of Code GitHub & GitLab Badge

Google Summer of Code Badge

Star Badge License: CC0 1.0

If you are a Google Summer of Code (GSoC) student, feel free to attach this badge on your GSoC project repo!

This badge has been tested for Markdown on GitHub, GitLab, and Google Colab. Please let me know if you try the badge on other platforms and whether it works or not, I will add that info here so people will know whether it will works for them or not. Thanks!

@ericardomuten
ericardomuten / cern-summerstudent-badge.md
Last active August 23, 2021 06:42
CERN Summer Student GitHub & GitLab Badge

CERN Summer Student GitHub & GitLab Badge

This code is for CERN Summer Students or CERN openlab Summer Students that might want to use (please consult with your supervisor first) the badge provided here for their project repo's README. The code should work for both GitHub and GitLab (thanks to Julia Jansson for testing the code on GitLab!).

Wish you a memorable and productive summer! 🔬🌞🥳

Some information regarding the badge:

  • These badges are created with shields.io.
  • The blue color on the badge follows the CERN Design Guidelines.
  • The logo also follows the CERN Design Guidelines but with some edits (making the lines thicker) as CERN's logo is very complex. The logo is unrecognizable with the default line thickness (I tried and it didn't look good).
@ericardomuten
ericardomuten / circuit_tutorial.py
Last active August 16, 2020 14:56
For Medium article "Sekilas Tentang Komputasi Kuantum"
from qiskit import QuantumCircuit
# buat sirkuit kuantum
# maksud angka 1 sebagai argumen disini adalah
# sirkuit yang kita buat hanya membutuhkan 1 qubit
qc = QuantumCircuit(1)
# gambar sirkuitnya
qc.draw('mpl')