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
[global] | |
region: us-east-1 | |
# Important: The combination of the below check interval and num-read-checks-before-scale-down | |
# or num-write-checks-before-scale-down should never cause more than 24 decreases | |
# in a given 24 hour period due to DynamoDB restriction of only 24 decreases per | |
# 24 hours. | |
check-interval: 60 | |
[logging] | |
log-level: info |
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
$projects = Get-Project -All | Select @{ Name="ProjectName";Expression={$_.ProjectName}}, @{Name="Has";Expression={Get-Package Microsoft.AspNet.Mvc -ProjectName $_.ProjectName}} | where { $_.Has -like '*Microsoft.AspNet.Mvc*' } | |
$projects | select { Install-Package -Id Microsoft.AspNet.WebHelpers -ProjectName $_.ProjectName } |
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
// URL: http://play.elevatorsaga.com/#challenge=5 | |
{ | |
init: function(elevators, floors) { | |
function initElevator(elevator) { | |
elevator.on("idle", function() {}); | |
elevator.on("floor_button_pressed", function(floorNum) { | |
elevator.goToFloor(floorNum); | |
}); | |
elevator.on("passing_floor", function(floorNum, direction) { |
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
// URL: http://play.elevatorsaga.com/#challenge=4 | |
{ | |
init: function(elevators, floors) { | |
function initElevator(elevator) { | |
elevator.on("idle", function() {}); | |
elevator.on("floor_button_pressed", function(floorNum) { | |
elevator.goToFloor(floorNum, true); | |
}); | |
elevator.on("passing_floor", function(floorNum, direction) { |
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
// URL: http://play.elevatorsaga.com/#challenge=3 | |
{ | |
init: function(elevators, floors) { | |
function initElevator(elevator) { | |
elevator.on("idle", function() {}); | |
elevator.on("floor_button_pressed", function(floorNum) { | |
elevator.goToFloor(floorNum, true); | |
}); | |
elevator.on("passing_floor", function(floorNum, direction) { |
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
{ | |
init: function(elevators, floors) { | |
var elevator = elevators[0]; // Let's use the first elevator | |
elevator.on("idle", function() { | |
// The elevator is idle, so let's go to all the floors (or did we forget one?) | |
elevator.goToFloor(2); | |
}); | |
elevator.on("floor_button_pressed", function(floorNum) { | |
elevator.goToFloor(floorNum, true); | |
}); |
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
{ | |
init: function(elevators, floors) { | |
var elevator = elevators[0]; // Let's use the first elevator | |
elevator.on("idle", function() { | |
// The elevator is idle, so let's go to all the floors (or did we forget one?) | |
elevator.goToFloor(0); | |
}); | |
elevator.on("floor_button_pressed", function(floorNum) { | |
elevator.goToFloor(floorNum, true); | |
}); |
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
SELECT dateadd(hour, datediff(hour, 0, GETDATE()), 0) NearestHour |
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
SELECT DATEADD(MINUTE, 1+DATEDIFF(MINUTE, 0, GETDATE()), 0) NearestMinute |
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
// Inline unordered list seperated by bullets | |
ul.list-inline-bullet-seperated | |
{ | |
list-style-type: none; | |
li | |
{ | |
display: inline-block; | |
} | |
li:before | |
{ |