Polymorphic relationship in #laravel - simplified, with example 👇️
Igor Simic
@igor-simic
0
Views
0
Likes
0
Following
0
Followers
0
Posts
Comments
How do I view events fired on an element click in Chrome DevTools?
open console and execute this command, it will monitor every click
monitorEvents(document.body, 'click')
Comments
9 bad habits unsuccessful people!
Comments
#htaccess redirect www to non www
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Comments
How to install conda on your mac notebook?
1. check your python version:
python3 --version
2. download #conda package for your python version from this link
3. restart your terminal
4. check the installation, type in terminal:
conda --v
#output:
#conda 4.12.0
Comments
#python error The script is installed which is not on PATH
WARNING: The script xxx is installed in '/Users/username/Library/Python/3.8/bin' which is not on PATH.Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location<br>
How to solve this issue?
Add this to the path:
export PATH="/Users/username/Library/Python/3.8/bin:$PATH"
Comments