Andrew Parsons
Andrew Parsons
If a programmer configures `django-filebrowser` in `settings.py` like so: ```python3 FILEBROWSER_EXTENSIONS = { ..., # other entries elided 'Archive': ['.zip', '.tar', '.tar.gz', '.tar.xz'] } ``` ...then a user will be...
Overall, great work! Removing annotations is easy enough _while attending the CLI session_: ```shell $ pdfcpu annotations list ``` > . . . take note of the object numbers ....
Great work, first of all. I've noticed that long sentences from legal text fail (nothing happens! the visualization simply displays the last successful query). ``` The Bonds are limited obligations...
I was going through some old forks of mine and realized I had made some changes on a branch. This may have also served as a fix for https://github.com/sm-Fifteen/asgi-server-timing-middleware/issues/3. I...
I'm excited to try and use `scream` to send audio from a Windows 10 laptop to a Linux server (and then over 3.5mm aux into an audio receiver). I believe...
`iter_files_distros(path=None, repeated_distro='first')` will fail if one of the elements in `sys.path` is not a string. For example, my `sys.path` contained a `PosixPath`: ``` ['/usr/local/bin', '/usr/local/lib/python38.zip', '/usr/local/lib/python3.8', '/usr/local/lib/python3.8/lib-dynload', '/usr/local/lib/python3.8/site-packages', PosixPath('/model_infrastructure')] ```...
I've found surprisingly little documentation concerning applet development. I'd be willing to put together some more comprehensive documentation, provided it doesn't exist somewhere already (I'm new to Budgie and might...
The [geopolitical_divisions.csv](https://github.com/LexPredict/lexpredict-legal-dictionary/blob/master/multi/geopolitical/geopolitical_divisions.csv) file makes some incorrect assumptions. For example, there are differences between `de_DE` and `de_CH`. - [Germany's list of recognized states](https://www.auswaertiges-amt.de/blob/199312/9ebddb339f025f8ce355b1aa253d453b/staatennamen-data.pdf) - [Switzerland's list of recognized states](https://www.eda.admin.ch/content/dam/eda/de/documents/aussenpolitik/voelkerrecht/liste-etats_DE.pdf) Switzerland uses...
## Use Case I wish to easily understand which parts of my Dagster solids and pipelines are CPU-, memory-, and time-intensive. [Flame graphs](https://www.brendangregg.com/flamegraphs.html), famously described by Brendan Gregg, are useful...
### Description Currently, the `setup.cfg` file uses hyphens in fields. [Setuptools 78.0.0](https://setuptools.pypa.io/en/latest/history.html#v78-0-0) requires all fields to be formatted as `lower_snake_case`. Given that this backwards-incompatible change broke many installations, [Setuptools 78.0.2](https://setuptools.pypa.io/en/latest/history.html#v78-0-2)...