Big Sur: sudo lsof -i -P | grep LISTEN
ARCHIVE
Posted on July 25 2021
Here is a sample apache config with a additional VirtualHost # # This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information. # In particular, see # # for a discussion of each configuration directive. # # Do NOT

Posted on May 28 2021 / in Tutorial
run this in Terminal rm -rf node_modules/ && rm package-lock.json && npm cache clean --force && npm i --legacy-peer-deps you are using dropbox, and you do not want the files to sync rm -rf node_modules/ && mkdir node_modules/ && xattr -w com.dropbox.ignored 1 node_modules/ && rm package-lock.json && npm cache clean --force && npm i
Posted on May 21 2021
In your terminal type git fetch origin git rebase origin/master

Posted on May 11 2021
Run this command in terminal in the directory of your git: git branch | grep -v "develop" | grep -v "master" | xargs git branch -D

Posted on March 23 2021
when creating the user, you have the option to assign a policy group to him

Posted on March 18 2021
Your IDE like VSCode or Phpstorm IDEA Jetbrains should support seach by regex, you can use something like (/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+/|[ \t](?!:)*//(?! -).*) and replace with empty string
Recent Comments