Igor Simic
@igor-simic
0
Views
0
Likes
0
Following
0
Followers
0
Posts
Igor Simic
1 year ago
Igor Simic
Edited 1 year ago

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')
                  
Igor Simic
1 year ago
Igor Simic
1 year ago
Igor Simic
1 year ago
Igor Simic
1 year ago

#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]
Igor Simic
Edited 1 year ago

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
                  
Igor Simic
Edited 1 year ago

#python error The script is installed which is not on PATH

How to solve this issue?

Add this to the path:

                    export PATH="/Users/username/Library/Python/3.8/bin:$PATH"
                  

About

.. free thinker, life lover... passionate about perfection and innovation... author of floyk.com

Member since: August, 2020

Not yet a member?