Aidan
Aidan
Current code only checks the Digest of a single reference. I think we should check all of them.
Adding support for XMLDSIG for files and going towards XAdES.
I'm not an expert, but I am pretty sure this is insecure. https://github.com/prest/prest/blob/f646e763875ac77068e9bdc493735e7f3017530f/controllers/auth.go#L133-L142 See https://stackoverflow.com/a/18687445 for details, but first two points are, * Don't use md5. Don't use a single...
This would be valuable if run in a Lambda and could take requests coming from API Gateway. I am interested in adding support for this. Has there been any thought...
I'm building some of the recently open sources resource providers, ``` [aidan@unknowne8d0fc9c5665 aws-codeartifact-domain]$ git config remote.origin.url [email protected]:aws-cloudformation/aws-cloudformation-resource-providers-codeartifact.git [aidan@unknowne8d0fc9c5665 aws-codeartifact-domain]$ git log | head -1 commit 161d785532c7f1d42d100989431efe437f411b17 [aidan@unknowne8d0fc9c5665 aws-codeartifact-domain]$ AWS_REGION=us-east-1 mvn...
Trying to support a docker container for Atlas to be deployed in cluster (currently docker-compose)
It would be of great use to have the option to merely output the template from `ecs-cli up` rather than have to create the stack. I personally would like to...
I want to add complex number support to MXNet. (see [my issue](https://github.com/apache/incubator-mxnet/issues/9109)), but it appears that all types are just thoses that come from mshadow. Does mshadow support complex numbers?...
Two changes, - Interface for ResponsiveCanvasObject so that custom types can be used - Resizing behavior is handled by the interface method - Add hiding behavior so object can be...
Example use case, ``` type Transaction struct { gorm.Model Timestamp time.Time `fyne:"field"` Amount float64 `fyne:"field"` Description string `fyne:"field"` } type FinancialData struct { db *gorm.DB } func (fd *FinancialData) AddTransaction(tr...