Chris Jones

Results 230 comments of Chris Jones

So, I did a bit of investigation of OpenCV and a 64bit build of their OSX framework, with minimal third party library support, rolls in at 20MB. I think we...

I'm going to close this because OpenCV is too heavy, and nobody seems likely to have the time to implement the relevant algorithms directly.

@phu54321 happy to re-open it, I'd also be happy to have an exact match image search. I think we should discuss the API it would have before anyone gets too...

Yeah it is possible to build OpenCV with just the required modules available. It's cmake based though, which potentially makes our "clean build from git" goal a bit trickier to...

@latenitefilms I'm not a fan of `:compare()` as a name because that suggests to me that it's going to somehow report the similarity of the images, but IME what people...

This was always intentionally hidden to keep things simple - we made the initial mistake of using `~/.hammerspoon/` instead of `~/.config/hammerspoon` and this config option was added for people who...

Possibly, although I haven’t noticed that same error message. I was looking at go-ircevent as the possible culprit and found this commit: https://github.com/cpatulea/foubot2/commit/49e7b9576b2cf0363f964a915670549cc591e258 which didn’t make me feel good about...

@russss if it helps, I run irccat on a home server and I reliably get the "it's running, but nothing is happening" issue every time my home internet connection drops...

@tylerszabo oh, I had no idea I could specify RGB values! (I'm not sure that's documented anywhere? Maybe I missed it). If it helps, these are the RGB values of...

I ended up with this incantation: ```yaml - name: Get previous tag name id: previous_tag run: echo "::set-output name=TAGNAME::$(git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1))" ``` which seems...