Reid Draper

Results 37 comments of Reid Draper

#30 needs to be reverted, after playing with some repos that have more than 30 pull-requests, I see now that is _is_ paginated too.

@honza Ordeal is still in a pretty rough state, but I think the following should get you going: Change your `.ordeal` file to contain the following: ``` haskell import Main...

Happy to look into it at some point, though at the moment I'm considering trying to deprecate Ordeal in favor of just getting the functionality merged into ndmitchell/ghcid#29.

@kseo maybe a newer version of GHC added a field to a record?

I also use vim, and don't have this issue. That being said, I was having those problems until adding the [debounce settings here](https://github.com/reiddraper/ordeal/blob/master/src/Ordeal.hs#L92), you can try increasing that number and...

> Thinking of something like this in sumo.client/put: +1

We are hitting this issue, too. Adding some information about our situation: - We always use `withTransaction` (we use [postgresql-transactional](https://github.com/helium/postgresql-transactional)) - A cursory investigation into our exception-tracking database shows no...

I'm running into this issue as well. I'm trying to insert data while also doing a join, using a Common Table Expression. Here's a simplified example: ``` sql WITH received_data(a,...

I might imagine something from `Data.Fixed` or `Data.Scientific` might be more appropriate. I'd avoid using `Double` for currency calculations.