Severity Type | Description |
---|---|
Blocker |
|
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
const bb = require('bluebird'); | |
const AWS = require('aws-sdk'); | |
const s3 = new AWS.S3(); | |
const removeObject = (bucketName, obj) => { | |
const params = { | |
Bucket: bucketName, | |
Key: obj.Key, | |
}; |
Points | Complexity | The software developer’s perspective |
---|---|---|
1 | XS |
Risk | Mitigation |
---|---|
The inability to get stories “Ready” | The customer's product owner is responsible for ensuring that stories have proper acceptance criteria. The delivery team is responsible for other artifacts like wireframes and design comps.
The contract could include a stipulation that a dedicated delivery team will be maintained only if the product owner is able to fulfill their obligation to provide acceptance criteria in a timely manner. Otherwise, the supplier is responsible for ensuring any other supporting documentation is provided so that coders can build the application. |
- https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/best-practices.html
- https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-adjacency-graphs.html
- https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GSI.html
- https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Query.html#FilteringResults
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
package main | |
import "fmt" | |
// fibonacci is a function that returns | |
// a function that returns an int. | |
// this is my solve to https://tour.golang.org/moretypes/26 | |
func fibonacci() func() int { | |
next := -1 |
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
// my answer: https://tour.golang.org/methods/23 | |
// their answer: https://github.com/golang/tour/blob/master/solutions/rot13.go | |
package main | |
import ( | |
"io" | |
"os" | |
"strings" | |
"bytes" |
OlderNewer