Mark Barbone

Results 26 comments of Mark Barbone

I'm not a systemd expert, but wouldn't it be better to specify it as `Type = forking` and `PIDFile = logkeys.pid`, rather than `Type = oneshot` ?

These fixes worked for me. The common Bash way to get the extension would make it `"$(basename "$f" "${f##*.}")"`. (There's probably a way to simplify it even further, removing the...

These changes aren't quite sufficient when the basename has a dot in it. For a file `this.pdf`, using a `placeholder_basename` of either `this` or `this.pdf` makes an entry called `this`....

Some dead ends: I expected that this was a laziness issue, but it doesn't seem to be. [Here's my branch with everything strict.](https://github.com/tweag/linear-base/compare/master...mb64:stricter-hashmap) It only shaves off about a second:...

Your intuition was correct -- resizing is most of the slowdown. Using `empty` and `insertAll` instead of `fromList` to set the initial capacity brings the time down from 7 seconds...

It's bad hash values for `Int`s! `hash` for `Int` is `id`, so the skewed input distribution resulted in a non-uniform distribution within the hashmap. Using a different hash, with ```haskell...

While trying to minimize the issue, I found a stack overflow: ``` # eq (F X) X ? Fatal error: exception Stack overflow ```

I'm glad the bug report is useful. That restriction would not prevent me from using Makam. I think all my non-pattern-fragment problems have just been from playing around in the...

Thanks! `%constraints+.` does what I want. Feel free to close this issue, unless you want to leave it open to track your other proposed UI improvements for inspecting constraints.

I definitely think that exposing the JNI would be a good thing. In terms of api, `android_glue`should probably provide the `JNIEnv *`. It could do this in a few ways:...