Название | Описание | Ссылка | Пройден |
---|---|---|---|
Объектно-ориентированное программирование в JavaScript | Курсы от udemy | Перейти |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
selector:nth-last-child(n+6), | |
selector:nth-last-child(n+6) ~ selector{ | |
/* values */ | |
} |
Название | Описание | Ссылка |
---|---|---|
in-view.js | Get notified when a DOM element enters or exits the viewport. | Перейти |
bricks.js | A blazing fast masonry layout generator for fixed width elements | Перейти |
barba.js | Barba.js is a lightweight and dependency free javascript plugin to create fluid and smooth transitions between your site pages. | Перейти |
roll.js | roll and scroll tracking -- a tiny javascript library | Перейти |
layzr.js | A small, fast, and modern library for lazy loading images | Перейти |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * | |
FROM tableA a | |
FULL OUTER JOIN tableB b | |
ON a.column = a.column | |
WHERE a.column IS NULL OR b.column IS NULL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% comment %} | |
Replace all symbols that not listed in `except_symbols` | |
{% endcomment %} | |
{%- assign separator = '%%%' -%} | |
{%- assign except_symbols = '1234567890.' -%} | |
{%- assign international_shipping = settings.international_shipping -%} | |
{%- assign international_shipping_except = except_symbolds | split: '' | uniq | join: separator -%} | |
{%- assign international_shipping_except = international_shipping_except | split: separator -%} | |
{%- assign international_shipping_array = settings.international_shipping | split: "" | uniq -%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign previous_article = nil %} | |
{% assign previous_handle = blog.next_article.handle %} | |
{% if previous_handle %} | |
{% assign previous_article = articles[previous_handle] %} | |
{% endif %} | |
{% assign next_article = nil %} | |
{% assign next_handle = blog.previous_article.handle %} | |
{% if next_handle %} | |
{% assign next_article = articles[next_handle] %} |
OlderNewer