๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>GPT Test Page</title> | |
</head> | |
<body> | |
<div id="01dff7272bfc464224240bc6f1f8d25b"></div> | |
<button id="refresh">Clear and Refresh</button> | |
<span>Times refreshed: </span><span id="times">0</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.small div { | |
width:200px; | |
height:75px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: sh -*- | |
# ~/.bash_prompt: executed by bashrc for interactive shells. | |
DULL=0 | |
BRIGHT=1 | |
_bold=$(tput bold) | |
_normal=$(tput sgr0) | |
FG_BLACK=30 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exampleInputs = [ | |
"http://example.com/", | |
"http://example.com/#hash", | |
"http://example.com/#hash?something=hello", | |
"http://example.com/#hash?something=hello&else=hi" | |
]; | |
function getHashValueFrom(url, hashIndex, queryStringIndex) { | |
if (hashIndex === -1) { | |
return ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var five = require("johnny-five"); | |
var board = new five.Board(); | |
function outputBinary(number, leds) { | |
var states = [ | |
number & 1, | |
number & 2, | |
number & 4 | |
]; |
NewerOlder