Skip to content

Instantly share code, notes, and snippets.

View OrangoMango's full-sized avatar
🖥️
Struggling with 3D

Orango Mango OrangoMango

🖥️
Struggling with 3D
View GitHub Profile
@OrangoMango
OrangoMango / coronavirus.py
Created April 15, 2020 16:10
#stayAtHome coronavirus plot with matplotlib module
import matplotlib.pyplot as plt
y = [1]
for x in range(10):
y.append(y[x]*2)
x = [x for x in range(len(y))]
plt.plot(x, y, "--ko", label="Coronavirus", color="red")
plt.plot([0,10], [560,0], label="Money", color="green")
@OrangoMango
OrangoMango / calculator.html
Created April 15, 2020 16:04
HTML calculator
<html>
<head>
<script type="text/javascript" src="script.js">
</script>
<link rel="stylesheet" href="styles.css">