BEM

B__E--M BEM stands for "Block Element Modifier". BEM Rules Only classes. No IDs or tags Nested HTML and Flat CSS BEM Advantages Inherently adopts OOCSS best practices Flexible and easy to extend/re-use/maintain/refactor Declarative classes and self-documented code Easy to change DOM structure without changing CSS Flat CSS what is easy to override if needed BEM ... Read more

Angular

Posts on Angular Debug observable in Angular Async pipe will automatically subscribe to observable. And json pipe will output all the data in json format. html: Resolve observable in Angular StackBlitz + Github + Angular For example you have any github repo with Angular in it https://github.com/angular-university/rxjs-course/ You can execute this repo by accessing it ... Read more

Privacy Policy

Who we are Our website address is: http://web-profile.net. What personal data we collect and why we collect it Comments When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection. An anonymized string created from ... Read more

Дофаномика

Дофаномика: как рынок обманывает наш мозг и как перестать проверять смартфон 80 раз в день Нейромаркетинг — прикладная нейронаучная дисциплина, использующая открытия, связанные с работой мозга, на нужды рынка. Расцвет науки построения манипулятивной среды только начинается вместе с развитием технологий и big data. Массовый интерес к идее нейроархитектуры в непрофессиональном сообществе возник совсем недавно. Бывший сотрудник Facebook, а ныне венчурный капиталист и миллиардер Чамат Палихапития в декабре на встрече ... Read more

Python Loops

For Loop While Loop 'break' statement in the loop 'continue' statement in the loop For Loop with 'else' clause We can use 'else' for loops. When the loop condition of 'for' or 'while' statement fails then code part in 'else' is executed. If break statement is executed inside for loop then the 'else' part is ... Read more

How to Tell if Your Theme and Plugins are Optimized

Optimization is a major buzzword for website owners both new and old. Every aspect of your website; from the design to the content, all has factors that need to be optimized for SEO. It can be a daunting task, which is why it’s best to look at one piece at a time. Today, we’re going ... Read more

Selenium

Click the link with the Selenium webdriver and Python Filling out and submitting forms with the Selenium webdriver and Python Run this script in command line to install Selenium: Selenium for Python documentation

Beautiful Soup

Run this code into command line to install Beautiful Soap: pip install beautifulsoup4 Run this code into command line to install lxml html-parser: pip install lxml Beautiful Soup documentation

Requests

Download file from internet and save it Installing Requests module: Python Requests module