- Deciders: Daniel and Helen
- Date: 2022-mm-dd
- Obsoletes: WDR-nnn
Prose description of the decision and its context. What did we decide? What caused us to make the decision? What else was going on at the time?
name: Release website | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
{ | |
"name": "Charcoal Squash", | |
"style": "Dark", | |
"author": { | |
"name": "Daniel Terhorst-North", | |
"email": "[email protected]" | |
}, | |
"editor": { | |
"backgroundColor": "#2E3235", |
{ | |
"name": "Orange Squash", | |
"style": "Light", | |
"author": { | |
"name": "Daniel Terhorst-North", | |
"email": "[email protected]" | |
}, | |
"editor": { | |
"backgroundColor": "#ffffff", |
I hereby claim:
To claim this, I am signing this object:
Scrum is a best-practice software development methodology. | |
There are many advantages to using it in an enterprise development environment. | |
Unlike other methodologies, such as extreme programming, there is no need to change coding practices. | |
Project Managers will therefore find it easy to adopt and incorporate into their existing workflows. | |
Iterations with strict time-limited sprints greatly improve productivity. | |
Developer participation is enforced through the use of constant stand-up meetings. | |
Mostly people just robotically say what they did yesterday and what they are doing today, which is stupid. |
function decodeBody(content, encoding) { | |
switch (encoding.toLocaleLowerCase()) { | |
case "base64": | |
content = content.replace(/\r/g, ''); | |
return new Buffer(content, 'base64').toString('utf8'); | |
case "quoted-printable": | |
case "7bit": | |
case "8bit": | |
content = content.replace(/\r/g, ''); |
Choose a ticket class: <select id="tickets"></select> | |
<p id="ticketOutput"></p> | |
<script id="ticketTemplate" type="text/x-jquery-tmpl"> | |
{{if chosenTicket}} | |
You have chosen <b>${ chosenTicket().name }</b> | |
($${ chosenTicket().price }) | |
<button data-bind="click: resetTicket">Clear</button> | |
{{/if}} |
var urls = ['http://one.com', 'http://two.com'], | |
results = []; | |
async.forEach(urls, function(url, done) { | |
$.get(url, function(data) { | |
results.push(data); | |
done(); | |
}); | |
}, function(err) { | |
console.dir(results); // all results are back |