codebymikey

Results 52 comments of codebymikey

@dmp1ce The patch doesn't apply on the initial `composer install` because ` cweagans/composer-patches` isn't yet installed so it can't patch itself. Subsequent `composer install`s will apply the patch - this...

Following my comment, I did some research into it and I think it should be fine to merge that code in. The parameters of note are passed in perfectly as...

https://paste.ec happens to do something similar.

Additional implementation references: * https://gist.github.com/watife/b50100fac86cb64b0cc6ddf1d03421a8 * https://gist.github.com/manabuyasuda/b6d1776707675705061c69efdff9e4f5

One thing that did pop into mind whilst initially looking into this was: > Why aren't simple edge case sites like these already handled in the generic fallback extractor by...

Solvable with a custom importer such as this: ```js const path = require('path'); const { pathToFileURL } = require('url'); const nodeModulesDir = path.resolve(__dirname, '..', 'node_modules'); module.exports = { // An...

I think slugs should be immutable by default, however I do see the appeal of it, so if they are to be supported, it's something that needs to be disabled...

> maybe a solution would be to allow editing the json as yaml, if that's even possible I think that _should_ be easily possible, given the data is already valid...

I hadn't considered using a WebView for some reason, that's probably the easiest way to keep the app size small. I've previously worked with a [WebView based library](https://github.com/evgenyneu/js-evaluator-for-android) before, so...

>This already happens if you use On-device blocklists. Oh okay, thanks for the pointer! Wasn't aware of that distinction in behaviour, and seems like a good enough workaround to debug...