Benjamin Hodgson

Results 25 issues of Benjamin Hodgson

[`Result`'s `Monad` instance](https://github.com/jaspervdj/digestive-functors/blob/master/digestive-functors/src/Text/Digestive/Types.hs#L53) violates the `() = ap` law. ```haskell ghci> Error "a" `ap` Error "b" Error "a" ghci> Error "a" Error "b" Error "ab" ``` This is a potential...

A common performance trick (eg [`List`](https://referencesource.microsoft.com/#mscorlib/system/collections/generic/list.cs,569)) is to define a specialised `Enumerator` value type and implement `IEnumerable.GetEnumerator` explicitly. Then when a client `foreach`es over an object typed concretely as a...

https://www.rabbitmq.com/amqp-0-9-1-errata.html#section_3 See discussion in #26

bug

Probably make it pass no arguments. https://github.com/benjamin-hodgson/Contexts/blob/master/src/contexts/plugin_discovery.py#L77

bug

I want to implement a custom `IViewLocationProvider` to put in a library. I want to set up some custom view locations for use with a custom view engine, and fall...

This PR fixes #10 and #185. This PR contains a: - [x] **bugfix** - [ ] new **feature** - [ ] **code refactor** - [x] **test update** - [ ]...

Given a column with a non-default collation: ``` sql create table MyTable (Name nvarchar(100) collate Latin1_General_CS_AS_KS_WS ASC) ``` SchemaZen outputs the table without the collation.

bug
up-for-grabs

Given the schema: ``` sql create table MyTable (Id int, IdPlusOne as [Id]+1 persisted not null) ``` SchemaZen outputs the computed column without the `persisted not null` specification: ``` sql...

enhancement
up-for-grabs

Given the schema: ``` sql create table MyTable (Id int) create statistics MyStatistics on MyTable (Id) ``` SchemaZen outputs only the `create table` statement.

enhancement
up-for-grabs