Adding Unity folders to git
Add the Assets, Packages, and ProjectSettings folders to your git repository at the same level as the .git, .gitattributes and .gitignore files.
Add the Assets, Packages, and ProjectSettings folders to your git repository at the same level as the .git, .gitattributes and .gitignore files.
Any url can be appended with the following: "?XDEBUG_SESSION_START=PHPSTORM" to initiate the debugger.
As an example: http://freida-admin.lndo.site/api/aci-post?XDEBUG_SESSION_START=PHPSTORM
lando drush user:login --name=username or lando drush user:login --uid=109671https://www.drush.org/11.x/commands/user_login/
gunzip < backup.mysql.gz | drush sqlc
or
drush sql-drop -y drush sql-cli < ~/path/to/db-file.sql
sass --watch _modernization.scss ../css/modernization-page.css
sed -i '' 's/utf8mb4_0900_ai_ci/utf8_general_ci/g' backup.sql sed -i '' 's/CHARSET=utf8mb4/CHARSET=utf8/g' backup.sql
https://tecadmin.net/resolved-unknown-collation-utf8mb4_0900_ai_ci/
or this worked https://meetanshi.com/blog/error-1273-unknown-collation-utf8mb4-0900-ai…
just open the file and do %s/utf8mb4_0900_ai_ci/utf8mb4_unicode_ci/g
* Install pipelines cli
* configure pipelines https://docs.acquia.com/pipelines/cli/install/
* connect to the github account https://docs.acquia.com/pipelines/cli/github/connect/
https://stackoverflow.com/questions/17931571/freeze-screen-in-chrome-de…
Get the hover state in play on the screen while debugger tools are open, then on a mac hit fn f8.
function waitForElm(selector) { return new Promise(resolve => { if (document.querySelector(selector)) { return resolve(document.querySelector(selector)); } const observer = new MutationObserver(mutations => { if (document.querySelector(selector)) { resolve(document.querySelector(selector)); observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); }); } waitForElm('.ief-entity-submit').then((elm) => { console.log('Element is ready'); console.log(elm.textContent); });