Отладка WebAssembly с помощью Chrome DevTools
https://blog.bitsrc.io/debugging-webassembly-with-chrome-devtools-99dbad485451
https://blog.bitsrc.io/debugging-webassembly-with-chrome-devtools-99dbad485451
7 вопросов для собеседования по замыканиям в JavaScript.
https://dmitripavlutin.com/javascript-closures-interview-questions/
https://dmitripavlutin.com/javascript-closures-interview-questions/
Dmitri Pavlutin Blog
7 Interview Questions on JavaScript Closures. Can You Answer Them?
I compiled a list of 7 interesting and increasingly challenging questions on JavaScript closures. Can you answer them?
Пишем сайт/PWA и выкатываем в прод с Github Actions.
Небольшая заметка о том как настроить домен, nginx, https + настройка деплоя.
https://jem-space.ru/pwa_develop_and_deploy/
Небольшая заметка о том как настроить домен, nginx, https + настройка деплоя.
https://jem-space.ru/pwa_develop_and_deploy/
Как сделать прилипающий уменьшающийся хедер при прокрутке без JavaScript
https://css-tricks.com/how-to-create-a-shrinking-header-on-scroll-without-javascript/
https://css-tricks.com/how-to-create-a-shrinking-header-on-scroll-without-javascript/
Обрабатывайте события JavaScript как профессионал
https://js.plainenglish.io/handle-javascript-events-like-a-pro-8bfd67e6b684
https://js.plainenglish.io/handle-javascript-events-like-a-pro-8bfd67e6b684
Medium
Handle JavaScript Events Like A Pro
Handling events is a crucial part of any modern web application. Every developer who wants to write better code should have an in-depth…
Фронт фронтенда и тыл фронтенда в веб-разработке
https://bradfrost.com/blog/post/front-of-the-front-end-and-back-of-the-front-end-web-development/
https://bradfrost.com/blog/post/front-of-the-front-end-and-back-of-the-front-end-web-development/
Изучение Snowpack: высокопроизводительного инструмента для сборки фронтенда
https://www.sitepoint.com/learn-snowpack/
https://www.sitepoint.com/learn-snowpack/
Курс «Tailwind CSS: From Zero to Production» на YouTube
https://blog.tailwindcss.com/tailwindcss-from-zero-to-production
https://blog.tailwindcss.com/tailwindcss-from-zero-to-production
Tailwindcss
"Tailwind CSS: From Zero to Production" on YouTube - Tailwind CSS
Today we're excited to release Tailwind CSS: From Zero to Production, a new screencast series that teaches you everything you need to know to go from zero to production with Tailwind CSS v2.0.
Оптимизация видео по размеру и качеству
https://www.smashingmagazine.com/2021/02/optimizing-video-size-quality/
https://www.smashingmagazine.com/2021/02/optimizing-video-size-quality/
В Brave обнаружен баг, из-за которого браузер оставляет данные onion-сайтов в трафике DNS
https://3dnews.ru/1033119
https://3dnews.ru/1033119
3DNews - Daily Digital Digest
В Brave обнаружен баг, из-за которого браузер оставляет данные onion-сайтов в трафике DNS
С помощью режима Tor пользователи браузера Brave могут получить доступ к onion-сайтам в приватном окне без необходимости устанавливать дополнительное программное обеспечение.
Руководство для начинающих по Debouncing vs Throttling
https://medium.com/javascript-in-plain-english/beginners-guide-to-debouncing-vs-throttling-19d663f0ff43
https://medium.com/javascript-in-plain-english/beginners-guide-to-debouncing-vs-throttling-19d663f0ff43
Medium
Beginner’s Guide to Debouncing vs Throttling
Website performance plays a huge role in improving the user experience of our user. This can be done pretty easily sometimes by limiting…
Реализовать флаги функций в Angular проще, чем вы думали!
https://blog.sreyaj.dev/implementing-feature-flags-in-angular
https://blog.sreyaj.dev/implementing-feature-flags-in-angular
DCode - Learnings by Adithya Sreyaj
Implementing Feature Flags in Angular is easier than you thought it would be!
Feature flags are basically a configuration for your application where we specify which features are enabled/disabled. We would normally just comment out that part of the code which we don't want to be made available and then later come back and unco...