Andrew Martin

Results 128 comments of Andrew Martin

The [clock](http://hackage.haskell.org/package/clock-0.7.2/docs/System-Clock.html) package is probably a better fit for this than the `time` package.

Both good points. The caching problem seems like something [auto-update](http://hackage.haskell.org/package/auto-update-0.1.4/docs/Control-AutoUpdate.html) handles, but the way I've seen it used in yesod, it typically operates at the one-second resolution, not at the...

I need to quit using Elasticsearch's autogenerated IDs and I like flake IDs.

Yeah, that's about what I meant. I'll try to put together a PR soon.

I accepted the invite, but I hate to say that I'm no longer an active user either. I do still use elasticsearch at work, but elasticsearch's API is just too...

Just as a heads-up, stack currently does not work well with backpack in my experience: https://github.com/commercialhaskell/stack/issues/4013

I have temperature sensor data in kibana that I would love to suffix with `°F`. This change would make that possible.

Pondering this a little more last night, I began wondering what exactly are the things that a value in a compact region are allowed to point to that are outside...

Thinking about this even more, I wonder if it's possible to perform the additional translation step as a separate serialization with the introduction of a variant of `compactFixupPointers#`. The idea...

In `rts/sm/CNF.c`, the following restrictions are listed: > Invariants > > 1. A CNF is self-contained. The data within it does not have any external > pointers. EXCEPT: pointers to...