Josh Hornby
Josh Hornby
Hi, auto completion currently works for single level types, see `Foo` below. But autocomplete for `Baz` wouldn't work in the following example ``` type Foo = Bar Baz type Baz...
One of my favourite Jest features is [Snapshot testing](https://facebook.github.io/jest/docs/en/snapshot-testing.html). We can already test views using [elm-html-test](http://package.elm-lang.org/packages/eeue56/elm-html-test) but I believe snapshot tests are cleaner and easier to work with. I know...
After looking through the docs I was surprised to not find a fuzzer for dates. After asking on Slack @zwilias said: > You could potentially do something like fuzzing a...
I have a module called `TaskRouterTask`, with its corresponding `Msg` of `UpdateTask (Result String TaskRouterTask)`. `TaskRouterTask` is just a simple type alias: `type alias TaskRouterTask = { sid : String,...
This will tell the thermostat to use manual mode, useful as we want to allow Homebridge/Homekit to control the temperature This PR closes: https://github.com/maxnowack/homebridge-eq3ble/pull/16
Hi, I assume the answer is no, but is it possible to fetch a post in a collection via something other than the slug? For example each post in my...
Hi, Thanks for this package, it's great. Quick question is it possible to get a list of posts by tags? I don't know which collection or page the tag might...
Can we get this onto bower? Would make it easer for using in projects. Thanks
I have been looking into using React and Laravel together, do you have any docs for this package on how best to set it up in an example app? Or...