pythoninthegrass

Results 43 comments of pythoninthegrass

I managed to get it working with setting `nltk==3.4.5` — the last version to [support Python 2.7](https://pypi.org/project/nltk/3.4.5/) — in requirements.txt then ran `docker-compose up -d`. Probably a glass house and...

@trollkarlen I ran a diff on 3.16 vs. your fork (3.14?) and manually patched the [current rev](https://gist.github.com/pythoninthegrass/43c93c556d1ae3cc1a92db15e4e73ba1). This is the output for EndeavourOS on an M1 Pro running macOS 12.4:...

This is working for me: ``` curl -fs https://www.sublimetext.com/download_thanks?target=mac | grep -io -m 1 "https://download.*_mac.zip" | head -1 ``` the `| head -1` bit is technically optional, but in the...

Working through local testing with `assemble.sh`. Will have a PR by EOD.

Didn't have time to fully debug the error output while downloading: ``` 2022-07-14 19:34:19 : REQ : sublimetext : ################## Start Installomator v. 9.2, date 2022-05-16 2022-07-14 19:34:19 : INFO...

Good call @jdemaio. In my environment, the script never escrowed with the deprecated config profile scoped. Had to unscope, double checked our `Security and Privacy` payload, and it worked with...

Came here to say the same. Excellent add-on regardless. Saves me a few clicks for a problem child website that I'm constantly running in private mode due to expired session...

> Go to System Preferences > Security Privacy > Screen Recording and completely remove the existing Kap app using the minus simbol. Did this, then: ```bash # Remove all files...

Based on #888, I hardcoded DNS to `8.8.8.8`, `8.8.4.4`, and my internal DNS. Now able to access Fortinet devices and start multipass VMs as expected. Probably not as feasible for...

@skovhus Ran [docker history](https://stackoverflow.com/questions/55737199/how-do-we-see-full-commands-in-the-output-of-docker-history-command) ``` docker history --format "{{.CreatedBy}}" spaceinvaderone/explainshell --no-trunc > ~/Downloads/explainshell_docker_history_20230109.txt ``` to get the raw Dockerfile commands executed by the image. Can clean it up and open...