Skip to content

Instantly share code, notes, and snippets.

View DenshellDenejour's full-sized avatar

Denshell Denejour DenshellDenejour

  • University of the People
View GitHub Profile
import sys
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import numpy as np
ypoints = np.array([5, 8, 1, 17])
plt.plot(ypoints, linestyle = 'solid')
<!DOCTYPE html>
<html>
<body>
<?php
$color = "orange";
echo "My car is " . $color . "<br>";
echo "My planet is " . $COLOR . "<br>";
echo "My house is " . $coLOR . "<br>";
?>
<!DOCTYPE html>
<html>
<body>
<?php
ECHO "Hello World!<br>";
echo "Hi World!<br>";
EcHo "Hello Mars!<br>";
?>
<!DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP code!";
?>
</body>
</html>