Skip to content

Instantly share code, notes, and snippets.

View ccoxwell's full-sized avatar

Carrie Coxwell ccoxwell

  • Memphis, TN
View GitHub Profile
[
{
"_id": "63fb7794a745b07e9fa6a45b",
"index": 0,
"guid": "3582c214-cdfc-43c4-b2db-52b9a0c6d1d6",
"picture": "http://placehold.it/32x32",
"firstName": "Glenda",
"lastName": "Hensley",
"company": "MAROPTIC",
"email": "glendahensley@maroptic.com",
# Write your code here :-)
import board
import neopixel
import adafruit_dht
pixels = neopixel.NeoPixel(board.NEOPIXEL, 10, brightness=0.05, auto_write=False)
pixels.fill((0, 0, 0))
pixels.show()
dht = adafruit_dht.DHT22(board.A2)
var playerOne = true;
var playerTwo = false;
var playerOneScore = 0;
var playerTwoScore = 0;
var buttonIds = ["colorButton1", "colorButton2", "colorButton3", "colorButton4"];
var correctButtonId;
// kicks the game off
onEvent("startButton", "click", function() {
setScreen("screen1");
@ccoxwell
ccoxwell / SDT Progress Assessment 2 Practice.md
Last active May 9, 2018 19:34 — forked from SnoopSqueak/SDT Progress Assessment 2 Practice.md
These questions are meant to prepare students for the 2nd progress assessment.

SDT Progress Assessment 2 Practice

1. What is vim/nano?



2. List bash commands that perform the following: list the files and directories in the working directory; change directories; make a new file; make a new directory.



<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>