npm Users By Downloads (git.io/npm-top)
npm users sorted by the monthly downloads of their modules, for the range May 6, 2018 until Jun 6, 2018.
Metrics are calculated using top-npm-users.
# | User | Downloads |
---|
<?php | |
$foo = new Foo(); | |
$foo->id = 1; | |
$foo->text = 'Hello'; | |
echo $foo->id; // 1 | |
echo $foo->text; // Hello World! |
function visit_nodes_iterative(node) { | |
node = node || document; | |
do | |
{ | |
/* Do something with node here */ | |
node = node.firstChild || node.nextSibling || function() { | |
while ((node = node.parentNode) && !node.nextSibling); | |
return node ? node.nextSibling : null; |
# 1.install gource using HomeBrew | |
$ brew install gource | |
# 2.install avconv | |
git clone git://git.libav.org/libav.git | |
cd libav | |
# it will take 3-5 minutes to complie, be patient. | |
./configure --disable-yasm | |
make && make install |
global.find = re => json => [...find(json, re)] | |
function* find(v, regex, path = '') { | |
if (regex.test(path)) { | |
yield path | |
return | |
} | |
if (typeof v === 'undefined' || v === null) { | |
return |
>> | |
>+[[-]+>>>+>++>- >++> ->+>+>+>>+++>+++ ++[<<< < | |
<<<<++ ++++> >+ ++>>>>++>++++++>-] >>+<<, [>> | |
-<<[> +<-]] >[<+>- ]>[<< <[<]<< ->> | |
>[>] >>-]< +++++ ++++[ <<[ | |
>-<- ]>>>+ <<[> >-<<[<+>- ]]<[>+<-]>>> [-<<< <[< ]>[<+>-] >[>]> >>]< <<<[ <]<+>>[>]>[<+>- ]>[<+ >-]<- ]<[ | |
-]+< <[-]> [>-<<<[-]>>[-]]>[ [-]<[ -]<< [> |
server { | |
listen 80; | |
server_name symfony2; | |
root /var/www/symfony2/web; | |
error_log /var/log/nginx/symfony2.error.log; | |
access_log /var/log/nginx/symfony2.access.log; | |
# strip app.php/ prefix if it is present |
/* | |
* I've used blessed to create a textbox at the bottom line in the screen. | |
* The rest of the screen is the 'body' where your code output will be added. | |
* This way, when you type input, your program won't muddle it with output. | |
* | |
* To try this code: | |
* - $ npm install blessed --save | |
* - $ node screen.js | |
* | |
* Key points here are: |
/** | |
* This is ported from Rangy's selection save and restore module and has no dependencies. | |
* Copyright 2019, Tim Down | |
* Licensed under the MIT license. | |
* | |
* Documentation: https://github.com/timdown/rangy/wiki/Selection-Save-Restore-Module | |
* Use "rangeSelectionSaveRestore" instead of "rangy" | |
*/ | |
var rangeSelectionSaveRestore = (function() { | |
var markerTextChar = "\ufeff"; |
<?php | |
/** | |
* Использование: | |
* $v = new VideoThumb($link); | |
* $v->getVideo(); //Ссылка на видео | |
* $v->getTitle(); //Название ролика | |
* $v->fetchImage($path) //Скачать самое большое превью ролика | |
* | |
* Прогнать тест: |
npm users sorted by the monthly downloads of their modules, for the range May 6, 2018 until Jun 6, 2018.
Metrics are calculated using top-npm-users.
# | User | Downloads |
---|