Rens Groothuijsen
Rens Groothuijsen
This looks like a tricky one to solve. For the most part, scraping and metric validation -- including the error message above -- is abstracted into the `client_golang` module, which...
For the first site, at least, the issue is that the OG tags have been placed in the body. The HTML parser expects them to be present in the head.
> I'm not really sure if this is a problem with chai, chai-as-promised, dirty-chai or a combination of all three but presumably the order in which you chai.use things shouldn't...
From what I can see in the code, it doesn't even get to the "by" part, because it already fails on the "does not decrease" part.
By default, Gulp's `micromatch` matcher ignores dotfiles, and your path includes `/.bin`. Not sure if it's possible to disable that behavior from Gulp, though.
This is most likely a bug in one of the underlying libraries gulp uses for file watching. Interestingly, the `フォルダ/**` and `フォルダ/*` glob patterns do react as expected, as does...
@ClearlyClaire Ah, my bad, the field in question was indeed `statuses` rather than `status_ids`. I guess I coincidentally got the expected result through an attribute reader for `status_ids`. As for...
Mastodon relies on Paperclip for handling storage, which by itself only supports S3. Third-party Azure storage drivers are available, though I have no experience with them.
@dessalines Given that a lot of settings have been moved into database tables recently, would this new list of blocked e-mail domains likewise become a table?
Not sure what a good solution is to this one. deepEqual checks its arguments for matchers and concludes that "any" matches "1" (since the "any" matcher always returns true), and...