Elliot Cameron
Elliot Cameron
`-fobject-code` is *necessary* if you want to use unboxed sums in your code.
https://github.com/obsidiansystems/obelisk/issues/348 pointed out that building mobile apps and using `renderBackendRoute` leads to really hard-to-diagnose issues because the URLs don't include the configured route.
It took us a good bit to figure out how to `orderBy_` the `primaryKey` of some arbitrary table. It would be much better if this were wrapped up in a...
I have a library that needs the consumer to give me a `Manager` (since that's out of scope for the library). However, I can either make requests over HTTP or...
If a user sets `NIX_PATH` in their `~/.bashrc` file (or similar) then running `./manage .shell` will get the `NIX_PATH` as defined/overridden by the `.bashrc` file. This could be dangerous if...
If your parameter has odd characters in the string, you can't use the `#` syntax for overloaded labels. Instead you need an explicit builder like `fn ! namedArg @"my-arg" 5`.
```haskell {-# LANGUAGE LiberalTypeSynonyms #-} test :: "arg" :! (forall a. f a -> g a) -> f b -> g b test x = x ``` complains with ```...
It looks like your Cartesian values are east, north but that's not documented. And the latitude, longitude values should be documented in terms of order (latitude, longitude) and also degrees...
I needed to validate passwords based on the user's information (username not included in password, password not reused from previous password). This motivated several changes: - Make any `user` entity...