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
{ | |
"features":[ | |
{ | |
"id":"57971f42c203bc0ff", | |
"type":"feature-schedule", | |
"name":"Schedule", | |
"icon":"13", | |
"settings":{ | |
"type":"schedule-settings", | |
"timeFormat":"12", |
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
{ | |
"features": [ | |
{ | |
"id": "0dfd06bb85bb0c7c6", | |
"type": "feature-speakers", | |
"name": "Speakers", | |
"icon": "69", | |
"sorting": "lastName", | |
"speakers": [ | |
{ |
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 choices = ['1', '2', '3'], | |
combos = [], | |
_ = require('underscore'); | |
var addLetter = function(word) { | |
var combos = []; | |
if(word.length >= 3) { | |
combos.push(word); | |
} | |
choices.forEach(function(choice) { |
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
combos: [ '11123', | |
'11132', | |
'111123', | |
'111132', | |
'111213', | |
'111223', | |
'111231', | |
'111232', | |
'111233', | |
'111312', |
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 choices = ['1', '2', '3'], | |
combos = [], | |
_ = require('underscore'); | |
var addLetter = function(word) { | |
var combos = []; | |
choices.forEach(function(choice) { | |
combos.push(word + choice); | |
}); | |
return combos; |
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
combos: [ | |
'111123', | |
'111132', | |
'111213', | |
'111223', | |
'111231', | |
'111232', | |
'111233', | |
'111312', | |
'111321', |
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
if(!isset($_SERVER['QUERY_STRING']) || trim($_SERVER['QUERY_STRING']) === ''){ | |
header('Location: /badge-landing/'); | |
exit; | |
} |
NewerOlder