| Library | Input | Output | Gzip | Stars | 1 emit (ops/sec) | many ons and emits ↓ |
|---|---|---|---|---|---|---|
| chrisdavies/eev | 2.02 KB | 1.00 KB | 457 b | 166 | 9 722 398 | 362 175 |
| alexanderGugel/micro-events | 3.55 KB | 1.53 KB | 611 b | 20 | 8 313 328 | 268 100 |
| primus/eventemitter3 | 8.50 KB | 3.24 KB | 993 b | 1010 | 36 762 683 | 266 752 |
| riot/riot | 8 045 274 | 147 673 | ||||
| Nicolab/evemit | 4.18 KB | 1.16 KB | 494 b | 15 | 3 634 852 | 139 524 |
| Gozala/events | 8.33 KB | 3.94 KB | 1.17 KB | 378 | 48 177 783 | 130 989 |
| developit/mitt | 1.47 KB | 304 (465) B |
This file contains hidden or 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
| <p><a href="javascript:void(function(){var%20a=document.getElementsByTagName('link');for(i=a.length-1;i>=0;i--){if(a[i].getAttribute('itemprop')=='thumbnailUrl'){open(a[i].getAttribute('href'));break;}}})();">YTimage</a></p> | |
| <p>Перетащите <a href="javascript:void(function(){var%20a=document.getElementsByTagName('link');for(i=a.length-1;i>=0;i--){if(a[i].getAttribute('itemprop')=='thumbnailUrl'){open(a[i].getAttribute('href'));break;}}})();">YTimage</a> на панель закладок браузера. Далее откройте видео на ютубе и нажмите YTimage (на панели закладок). В новом окне откроется картинка с эскизом этого видео.</p> |
This file contains hidden or 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
| <head> | |
| <script type="text/javascript" src="https://yandex.st/jquery/1.7.2/jquery.min.js"></script> | |
| <script src="https://code.jquery.com/jquery-migrate-1.2.1.js"></script> | |
| </head> |
This file contains hidden or 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
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "darken(#428bca, 6.5%)", | |
| "@brand-success": "#5cb85c", |
This file contains hidden or 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
| #! /usr/bin/env python | |
| """Script to inspect memcache. | |
| Usage: | |
| python scripts/2011/08/inspect-memcache.py localhost:7060 | |
| """ | |
| import sys | |
| import memcache |
This file contains hidden or 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
| const { | |
| FuseBox, | |
| CSSPlugin, | |
| } = require('fuse-box'); | |
| const fuse = FuseBox.init({ | |
| homeDir: 'styles', | |
| output: 'build/$name.js', | |
| plugins: [ | |
| ["*.css", CSSPlugin({ |
This file contains hidden or 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
| @import (reference) "settings"; // or `@import (multiple) "settings"`? | |
| @color: red; | |
| .hello { | |
| color: @color; | |
| padding: @padding; | |
| } |
This file contains hidden or 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
| @glob-text-color: white; | |
| @glob-bg-color: darkblue; | |
| // кастомизация компонентов | |
| .page-settings() { | |
| @txt-color: @glob-text-color; | |
| @bg-color: @glob-bg-color; | |
| } | |
| .page2-settings() { |
This file contains hidden or 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
| $padding: $global-padding; | |
| .Component-1 { | |
| padding: $padding; | |
| } |