Skip to content

Instantly share code, notes, and snippets.

View gvvynplaine's full-sized avatar
🌐
/home

Roman gvvynplaine

🌐
/home
  • Moldova, Tiraspol
View GitHub Profile
@gvvynplaine
gvvynplaine / quantum.qasm
Created May 15, 2020 09:50
quantum superposition and entanglement
OPENQASM 2.0;
include "qelib1.inc";
gate nG0 ( param ) q {
h q;
}
gate nG1 ( param ) q {
h q;
}
@gvvynplaine
gvvynplaine / README.md
Created February 18, 2020 15:30 — forked from curran/README.md
The Iris Dataset

This is the "Iris" dataset. Originally published at UCI Machine Learning Repository: Iris Data Set, this small dataset from 1936 is often used for testing out machine learning algorithms and visualizations (for example, Scatter Plot). Each row of the table represents an iris flower, including its species and dimensions of its botanical parts, sepal and petal, in centimeters.

The HTML page provides the basic code required to load the data and display it on the page (as JSON) using D3.js.

@gvvynplaine
gvvynplaine / linux
Last active November 6, 2019 16:36
minergate-cli
#!/bin/bash
echo AEON, BCN, ETC, ETH, XMC, XMR, ZEC
read -p "Input email": email
read -p "Input coin": coin
read -p "Input threads": threads
read -p "Input gpu": gpu
if [ $gpu == "yes" ]
@gvvynplaine
gvvynplaine / blacklist-nouveau.conf
Created October 19, 2019 12:11
disabling nouveau kernel driver
blacklist nouveau
options nouveau modeset=0
@gvvynplaine
gvvynplaine / .gitignore
Last active January 25, 2022 19:58
jupyter notebook gitignore
# gitignore template for Jupyter Notebooks
# website: http://jupyter.org/
.ipynb_checkpoints
*/.ipynb_checkpoints/*
# IPython
profile_default/
ipython_config.py