- 3 Tomatillos
- 2 Jalepenos
- 1/2 cup Mayo (Dukes has that twang!)
- 1/2 cup Sour Cream
- 3 Cloves of Garlic
- 1/2 Avacado
- 1/2 Onion
- 1 Bunch of Cilantro
The Definition of Ready are items agreed to by the Product Owner (or representative), and the Team, that must be completed before work can begin.
The Definition of Ready is the shield that protects the team against work beginning before it is clearly understood.
A Work Item is ready to be worked by the Team when the following concerns have been understood:
- Business Value is Clearly Defined
- Design Mockups/Wireframes are Included, as needed
The Definition of Done are items agreed to by the Product Owner (or representative), and the Team, that must be completed before a Work Item can be considered Done.
The Definition of Done is the shield that prevents work from entering production that is not considered ready.
A Work Item is Done when the following criteria has been met:
- Pull Requests Merged
- Code Quality Addressed
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
- task: AzureCLI@2 | |
displayName: 'Get Deployment Token' | |
name: swaConfig | |
inputs: | |
azureSubscription: $(azureServiceConnection) | |
scriptType: 'bash' | |
scriptLocation: 'inlineScript' | |
inlineScript: | | |
apiKey=$(az staticwebapp secrets list --name $(websiteName) --query '[properties.apiKey][0]' --output tsv) |
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
CREATE FUNCTION NEW_TIMESTAMP() | |
RETURNS int | |
AS | |
BEGIN | |
DECLARE @epoch INT; | |
SELECT @epoch = DATEDIFF(SECOND, {d '1970-01-01'}, GETUTCDATE()) | |
RETURN @epoch; | |
END |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<# | |
Usage: | |
ApplyConfig "app.config" "DEV" | |
$configFile - the app/web.config we are 'transforming'. | |
$environment - the environment context we are transforming for. Maybe snarf this from <appSettings><add key="Environment" value="some value"/>? | |
#> | |
param($configFile, $environment="LOCAL") |
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
param($machineName = $(hostname)) | |
Configuration SuperAppWeb | |
{ | |
Node ($machineName) | |
{ | |
<# | |
nothing happens when trying to use this resource? | |
#> | |
Website DefaultSite |
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
<!-- snippet showing how referencing print.js --> | |
<script type="text/javascript" src="../WorkItemGlass.Metro.UI/js/viewModels.js"></script> | |
<script type="text/javascript" src="../WorkItemGlass.Metro.UI/js/print.js"></script> | |
<script type="text/javascript" src="../WorkItemGlass.Metro.UI\pages\login\loginViewModel.js"></script> |
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
write-host "machine $($env:computername)" | |
write-host "hello, $($env:computername) " | |
NewerOlder