David Reaver

Results 20 comments of David Reaver

Judging by those error messages, it looks like this might work: ``` custom-setup setup-depends: base >= 4.2 && < 5, Cabal >= 1.23, cabal-macosx >= 0.1 && < 0.3 ```...

I went down this path a few months ago and decided not to modify the definition of `Aggregate`. The reason is because there are way too many subtle variations with...

Hey thanks for the PR! Hmm, I hesitate to add an exact copy of the current `bank` example just copy/pasted. I wonder if there is an easy way to abstract...

Indeed, time travel is important, but that is done by traversing a stream of ordered events, not necessarily by using timestamps. In `eventful`, you get stream ordering with `EventVersion` and...

> I don't see how this is possible without extending StoredEvent and QueryRange or creating new ones entirely. Unless I'm missing something? My point is you don't need `eventful` to...

Hmm, stack policies seem very similar to IAM policies. I wonder if it would make sense to make an entirely separate package from `stratosphere` to generate IAM policies in general,...

I've seen various scripts in the past to upload Haddock docs to Hackage directly, but I'm not sure I want to spend time re-learning how to do that and automating...

Oh wow that looks annoying. I'm assuming it is because there are so many modules?

Hey @dmateusp, good catch! The current AWS spec document has tons of errors that I have to manually fixed. I must have messed up fixing this one.

The definition of filter groups in the spec file from AWS looks like this: ```json "AWS::CodeBuild::Project.FilterGroup": { "Type": "List", "Required": false, "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-filtergroup.html", "ItemType": "WebhookFilter", "UpdateType": "Mutable" } ``` Unfortunately,...