Skip to content

Instantly share code, notes, and snippets.

View SilentImp's full-sized avatar
💭
ok, now it is social network

SilentImp SilentImp

💭
ok, now it is social network
View GitHub Profile
@SilentImp
SilentImp / dabblet.css
Created March 2, 2013 13:29 — forked from iamstarkov/dabblet.css
Untitled
body{
font-weight: bold;
font-size: 50px;
text-transform: uppercase;
}
body code{
background-color:#d2f2f2;
padding: 0 .5rem;
display: inline-block;
@SilentImp
SilentImp / dabblet.css
Created March 26, 2014 16:09 — forked from LeaVerou/dabblet.css
Анимация по hover (как это делать не нужно)
/**
* Анимация по hover (как это делать не нужно)
*/
div {
width: 9em;
padding: .6em 1em;
margin: 2em auto;
background: yellowgreen;
}
@SilentImp
SilentImp / dabblet.css
Created March 26, 2014 16:16 — forked from LeaVerou/dabblet.css
Анимация по hover (правильная)
/**
* Анимация по hover (правильная)
*/
div {
width: 9em;
padding: .6em 1em;
margin: 2em auto;
background: yellowgreen;
animation: spin 1s linear infinite;

How to facilitate a retrospective

The role of Facilitator is fundamental for almost every meeting. The Facilitator ensures that the whole group is empowered to make decisions and that every individual has their voice heard.

During a retrospective, the Facilitator role is crucial. In a retrospective, it is ideal that everyone has at least some degree of participation, and it is the Facilitator that helps the participants with that.

@SilentImp
SilentImp / web-components-trade-offs.md
Created December 23, 2021 13:49 — forked from just-boris/web-components-trade-offs.md
Web Components trade-offs

Web Components trade-offs

Desired state

Before we begin talking about the trade-offs, let's look at the desired state, why someone should use Web Components and what benefits it provides. This standard allows you to create framework-independent UI components. Instead of re-inventing the same concept of UI component for every framework, there could be a universal solution using Web Components standard. They will also be more simple and lightweight, as the API is already built into browsers and you do not need to load additional runtime to your web page.

Web Components are defined as custom HTML elements where you can attach your custom behavior. You do not need to learn additional proprietary framework conventions, as you can think about using Web Component same way as you would use <button> or <input>.

Now let's check how these expectations match with the real state.