This file contains 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
#header { background-color: silver; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; } | |
#header h1 { color: black; font-weight: bold; font-family: 'ChunkFive'; } | |
#header h1 a { text-decoration: none; } | |
#header h1 a:hover { text-decoration: underline; } |
This file contains 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
function pretty_number(num, opts) | |
{ | |
var defaultOpts = { | |
short: true, | |
lowerCase: false, | |
addCommas: true, | |
round: 2 | |
}; | |
if (typeof num != "number") |
This file contains 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
<script type="text/javascript"> | |
function findInArray(needle, haystack) | |
{ | |
function isMatch(needle, haystack) | |
{ | |
if (haystack == needle) | |
{ | |
return true; | |
} | |
else if (typeof needle == 'object' && typeof haystack == 'object') |
This file contains 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
destinations = [ | |
"Thirsty Fellow" | |
"Mellow Mushroom" | |
"Pawley's" | |
"Mucho Margarita" | |
"Harpers" | |
"Mr. Friendlys" | |
"M Vista" | |
"Wild Wing" | |
"Chipotle" |
This file contains 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
function makeConfirm(orig, confirm_callback, prompt, confirm_text, cancel_text) | |
{ | |
if (typeof prompt == "undefined") | |
{ | |
prompt = "Are you sure?"; | |
} | |
if (typeof confirm_text == "undefined") | |
{ | |
confirm_text = "Yes"; |
This file contains 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
test |
This file contains 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
.button3d() { | |
background-color: #69A74E; background-position: 0 -96px; color: white; box-shadow: 0 1px 0 rgba(0, 0, 0, .1); -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .1); cursor: pointer; padding: 3px 6px 4px; border: 1px solid #999; border-color: #3B6E22 #3B6E22 #2C5115; font-weight: bold; font-size: 13px; font-family: "Lucida Grande", Tahoma, Verdana, sans-serif; background: #98C286; background: -moz-linear-gradient(top, #98C286 0%, #73AC59 15%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#98C286), color-stop(15%,#73AC59)); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#98C286', endColorstr='#73AC59',GradientType=0 ); | |
&:active { background: #69A74E; } | |
} | |
.button3d_green() { | |
.button3d; | |
} |
This file contains 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
{"cities":[{"region":"Ontario","country":"ca","id":2674270,"value":"Maple"},{"country":"in","id":1016524,"value":"Aonla"},{"region":"England","country":"gb","id":806089,"value":"Corby"},{"country":"it","id":1184687,"value":"Monopoli"},{"country":"id","id":963293,"value":"Jatiroto"},{"country":"jp","id":1213374,"value":"Tateyama"},{"country":"dk","id":611673,"value":"Horsens"},{"country":"it","id":1174394,"value":"Ascoli Piceno"},{"country":"br","id":272094,"value":"Taquaritinga"},{"country":"in","id":1019754,"value":"Bhongir"},{"region":"California","country":"us","id":2422568,"value":"Tulare"},{"country":"mx","id":1560573,"value":"Zacapú"},{"region":"Minnesota","country":"us","id":2471434,"value":"Minnetonka"},{"region":"Ohio","country":"us","id":2499384,"value":"Euclid"},{"country":"es","id":692604,"value":"Paterna"},{"region":"Connecticut","country":"us","id":2424730,"value":"East Hartford"},{"country":"es","id":679229,"value":"Castelldefels"},{"region":"Ontario","country":"ca","id":295194,"value":"North B |
This file contains 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
<?php | |
// Example use | |
require('flag.php'); | |
Flag::boolFlag("all", "Whether or not to go back and get all 90 days worth of data", false); | |
Flag::stringArg("jobID", "ID of the job", ""); | |
Flag::stringArg("groupId", "ID of the group", ""); | |
$backprop = Flag::lookup("all"); | |
$job_name = Flag::lookupArg("job"); |
This file contains 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> | |
<title>Louddoor</title> | |
</head> | |
<body> | |
<div id="container"> | |
<div id="navbar"> | |
<ul> | |
<li>Link 1</li> |
OlderNewer