cookie

Utilizamos cookies para mejorar tu experiencia de navegación. Al hacer clic en "Aceptar todo", aceptas el uso de cookies.

avatar

frontends don't lie

интерфейсы не лгут, фронтэнды не лежат 👩‍💻@ditiashova

Mostrar más
Rusia200 691El idioma no está especificadoLa categoría no está especificada
Publicaciones publicitarias
180
Suscriptores
Sin datos24 horas
Sin datos7 días
Sin datos30 días

Carga de datos en curso...

Tasa de crecimiento de suscriptores

Carga de datos en curso...

For those who are interested in Flash (да и вообще), вот яркое ретро на тему влияния флеша на игры в целом: http://www.flashgamehistory.com/. P.S. поддержка флеша заканчивается в этом году 😒
Mostrar todo...
How Flash games shaped the video game industry

Flash is dead. But the influence of Flash games on modern gameplay is inescapable.

Удачная тема для поста так и не подвернулась за овер полгода (don't ask... 🙄), но сегодня увидела эту классную статью про DI (c TypeScript), где хорошо на простых примерах объясняется смысл понятия и зачем вообще использовать этот паттерн. А еще у автора оч уютный сайт-визитка (так еще говорят?). Теперь захотелось сделать себе такой. Может, и вам захочется 🤟.
Mostrar todo...
DI с TS на практике

В этой статье мы разберём, что такое внедрение зависимостей, зачем оно нужно, а также какие инструменты могут помочь фронтендерам использовать этот шаблон по максимуму.

Кстати, ребята, если вы подписаны где-либо на каких-то классных ребят из фронт-енд комьюнити, которые ведут полезные блоги/онлайн курсы с собственными материалами (как Wes Bos, Todd Motto, и вот эта девушка из последнего материала - Tania Rascia) - покидайте мне, пожалуйста, в лс (👩‍💻@nonemo)? Буду очень благодарна и расшарю здесь список всех, кто понравится - думаю, что многим будет интересно такое.
Mostrar todo...
Похоже, что я становлюсь React разработчицей (знаю, angular, я тоже харт броукен 💔, но рынок...). Начну с этого гайда https://www.taniarascia.com/getting-started-with-react/ (начало уже классное, наконец-то я осознала, что React - это библиотека, а не фреймворк). Буду вас держать в курсе по мере нахождения интересных гайдов/фичей!
Mostrar todo...
React Tutorial: An Overview and Walkthrough

I've been hearing about React since I first started learning JavaScript, but I'll admit I took one look at it and it scared me. I saw what…

Сохраню этот гайд для быстрого повторения почти всего JavaScript: https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript.
Mostrar todo...
A re-introduction to JavaScript (JS tutorial) - JavaScript | MDN

Why a re-introduction? Because JavaScript is notorious for being misunderstood. It is often derided as being a toy, but beneath its layer of deceptive simplicity, powerful language features await. JavaScript is now used by an incredible number of high-profile applications, showing that deeper knowledge of this technology is an important skill for any web or mobile developer.

Runtime concepts & more Собрала для себя и для вас список полезных метариалов о выполнении JavaScript в браузере. Если коротенько, то: 1. Javascript is a single threaded single concurrent language, meaning it can handle one task at a time or a piece of code at a time. 2. Сalling a function creates a new stack frame for that function's use. Call Stack is a data structure which records the function calls, basically where in the program we are. If we call a function to execute , we push something on to the stack, and when we return from a function, we pop off the top of the stack. 3. A queue is a simple data structure that allows elements to be inserted from one end, called the rear (also called tail), and deleted from the other end, called the front (also called head). This behavior is called FIFO (First in First Out). 4. JavaScript has a concurrency model based on an event loop, which is responsible for executing the code, collecting and processing events, and executing queued sub-tasks. 5. The loop gives priority to the call stack, and it first processes everything it finds in the call stack, and once there's nothing in there, it goes to pick up things in the event queue. 6. The processing of functions continues until the stack is once again empty; then the event loop will process the next message in the queue (if there is one). 7. In web browsers, messages are added anytime an event occurs and there is an event listener attached to it. If there is no listener, the event is lost. So a click on an element with a click event handler will add a message--likewise with any other event. The function setTimeout is called with 2 arguments: a message to add to the queue, and a time value (optional; defaults to 0). The time value represents the (minimum) delay after which the message will actually be pushed into the queue. For that reason, the second argument indicates a minimum time and not a guaranteed time. 8. Event loop basic job is to look both at the stack and the task queue, pushing the first thing on the queue to the stack when it see stack as empty. Each message or callback is processed completely before any other message is processed. How JavaScript works in browser and node? Understanding Javascript Function Executions — Call Stack, Event Loop , Tasks & more Concurrency model and the event loop Understanding the JavaScript call stack The Little Guide of Queue in JavaScript Microtasks
Mostrar todo...
Wow hello ребята. 🙊 Long story short: я завела канал, пока искала работу, потом я ее нашла, и еще какое-то время пыталась вести канал с какими-то ВП даже, но особой необходимости в канале для меня больше не было, а на работе много завалов было. "Пришлось" бросить канал. Но вот я снова готовлюсь к собеседованиям и мне понадобится канал для его первоначального предназначения (не собрать как можно больше подписчиков, как вы уже поняли) - хранить краткие и не очень ответы на вопросы к собеседованиям и т.п.. потому что я забываю все очень сильно полностью просто. А так еду в метро - опа, --опять-- узнаю что такое event loop. Не будет никакого графика постов, извините. Но посты будут. Пока не найду работу, наверное. Если у вас (или у меня) не будет лучше идей по поводу канала (советы о закрытии больше не принимаю). Итак, сегодня очень прикольная штука, что функцию можно вызвать, не оборачивая в круглые скобочки. Но только если это template string (то есть ``). И это не бест практика. Но интересно 🧐. Я не встречала такого в списке вопросов к интервью, но я бы, если бы знала про это, то спрашивала бы. https://michelenasti.com/2018/09/19/Javascript-chiamare-funzioni-senza-usare-parentesi-(what!).html
Mostrar todo...

С новым годом, ребята ❤️ Желаю вам сиять еще ярче ✨ Спасибо, что читаете, обещаю, буду лучше. TURN SUPER FUN HAPPY MODE ON! https://codepen.io/rukouen/pen/ddWoyg
Mostrar todo...

Один из самых интересных материалов по JS за последнее время - Little known features of JavaScript. https://medium.com/webbdev/%D0%BC%D0%B0%D0%BB%D0%BE%D0%B8%D0%B7%D0%B2%D0%B5%D1%81%D1%82%D0%BD%D1%8B%D0%B5-%D0%B2%D0%BE%D0%B7%D0%BC%D0%BE%D0%B6%D0%BD%D0%BE%D1%81%D1%82%D0%B8-javascript-6e401ce3a48d - здесь перевод. Есть там кое-что странное, пугающее и неизведанное 😂. Но и полезное есть. Думаю, кое-что вы все же встречали точно. Например, оператор "логическое НЕ" или !! довольно распространен, да и геттеры-сеттеры часто используются. А вот про тегированные шаблонные операторы слышу впервые, но выглядит интересно. Поэтому я очень поддерживаю мысль автора о том, что JavaScript — это всегда что-то новое
Mostrar todo...
Малоизвестные возможности JavaScript

JavaScript часто называют самым простым языком для новичков, в программировании на котором сложнее всего достичь мастерства. Автор…

Elige un Plan Diferente

Tu plan actual sólo permite el análisis de 5 canales. Para obtener más, elige otro plan.