Garrett Reynolds
Garrett Reynolds
For a site that has a `robots.txt` like: ```robots.txt User-agent: * Disallow: / User-agent: Googlebot Allow: / Disallow: /login ``` it would be nice if there was an option to...
For large sitemaps, it's tough to see what changed when you rebuild it. That's because the URLs are not written in alphabetical order, so the diff doesn't work to see...
I was hoping to allowlist the tables I want sync in `.pgsync.yml`, something like: ```sh tables: - table1 - table2 ``` ## Workarounds - I could do `pgsync table1,table2`, but...
It would be awesome if Ruff could catch an error (like PyCharm does) for code like this: ```python def func(x: bool) -> int: if x: y = 1 return y...
RTF already has an awesome feature to keep Revit open between tests (`--continuous`). It would be great to also keep the same Revit project open between tests that all rely...
There are [4 failing unit tests](https://github.com/Garrett-R/gender_bender/blob/master/gender_bender/test.py#L104-L130) involving flipping "her" to either "him" or "his". NLP experts welcome to chime in!
When translating an eBook, it will try to change the names of CSS rules or the insides of HTML tags. For example, it attempts to change the name of `Roman`...
Web apps that use React, Vue.js, Svelte, etc. and client-side rendering don't work, because this package does not execute the JS, and so doesn't see all the content, thereby missing...
Iframes are sometimes used to have parts of sites controlled by a CMS. It would nice to have the option of inspecting the iframe's content and for any links that...
Similar to how ESLint's [`sort-keys`](https://eslint.org/docs/latest/rules/sort-keys) has a configuration option of `minKeys`, it would be nice to have a `minProps` option.