An introduction to curl using GitHub's API
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
<?php | |
phpinfo(); | |
?> |
body {font-family:sans-serif} |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="css/main.css" /> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
</head> | |
<body> | |
</body> |
Verifying that +anzeljg is my blockchain ID. https://onename.com/anzeljg |
from gpiozero import LEDCollection, LEDBoard, OutputDeviceError, DigitalOutputDevice | |
from gpiozero.threads import GPIOThread | |
from gpiozero.exc import OutputDeviceError | |
from itertools import cycle | |
from time import sleep | |
class SevenSegmentDisplay(LEDBoard): | |
""" | |
Extends :class:`LEDBoard` for a 7 segment LED display | |
7 segment displays have either 7 or 8 pins, 7 pins for the digit display |
Ac | |
AcCePt | |
AcCePtS | |
AcCEsS | |
AcCEsSeS | |
AcCrUAl | |
AcCRuAl | |
AcCrUAlS | |
AcCRuAlS | |
AcCrUEs |
''' | |
EVERY WORD IN THE PERIODIC TABLE | |
Jeff Thompson | 2013 | www.jeffreythompson.org | |
Takes as its input the abbreviations of the elements in the | |
periodic table and returns all possible words that can be | |
generated from that input*. | |
Idea occurred while sitting through a boring meeting in a | |
lecture hall, staring at a periodic table on the wall. |
<?php | |
use IMSGlobal\LTI\ToolProvider; | |
require_once('vendor/autoload.php'); | |
date_default_timezone_set('UTC'); | |
$launch_url = "http://127.0.0.1:8090/enrol/lti/tool.php?id=1"; | |
$key = "blinc"; | |
$secret = "8qBqXEo5U04oSUqfulPUkBKSYG3CFoSe"; | |
$arguments = array( |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream