This gist is updated daily via cron job and lists stats for npm packages:
- Top 1,000 most depended-upon packages
- Top 1,000 packages with largest number of dependencies
- Top 1,000 packages with highest PageRank score
language: ruby | |
rvm: | |
- 2.0.0 | |
env: | |
global: | |
- USER="username" | |
- EMAIL="[email protected]" | |
- REPO="name of target repo" | |
- FILES="README.md foo.txt bar.txt" | |
- GH_REPO="github.com/${USER}/${REPO}.git" |
Doing require extensions correctly is essential, because:
nyc
need it to reliably supply coverage information that takes into account sourcemaps from upstream transforms.curl -L http://bit.ly/10hA8iC | bash |
/*****************************************************************/ | |
/* */ | |
/* CASIO fx-9860G SDK Library */ | |
/* */ | |
/* File name : fxlib.h */ | |
/* */ | |
/* Copyright (c) 2006 CASIO COMPUTER CO., LTD. */ | |
/* */ | |
/*****************************************************************/ | |
#ifndef __FXLIB_H__ |
import json | |
def getJSON(filePathAndName): | |
with open(filePathAndName, 'r') as fp: | |
return json.load(fp) | |
# Example of returning just JSON | |
# jsonFile = getJSON('./test.json') # Uncomment this line | |
# It gets returned as a dictionary. |
> The No-Nonsense Guide to HTML5 Fallbacks | |
So here we're collecting all the shims, fallbacks, and polyfills in order to implant HTML5 functionality in browsers that don't natively support them. | |
The general idea is that: We, as developers, should be able to develop with the HTML5 APIs, and scripts can create the methods and objects that should exist. Developing in this future-proof way means as users upgrade, your code doesn't have to change but users will move to the better, native experience cleanly. | |
--- | |
- **Looking to conditionally load these scripts (client-side), based on feature detects?** | |
See [**Modernizr**](http://www.modernizr.com). |
img[src*="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {display: none;} |
Sub HTTPDownload( myURL, myPath ) | |
Dim i, objFile, objFSO, objHTTP, strFile, strMsg | |
Const ForReading = 1, ForWriting = 2, ForAppending = 8 | |
Set objFSO = CreateObject( "Scripting.FileSystemObject" ) | |
If objFSO.FolderExists( myPath ) Then | |
strFile = objFSO.BuildPath( myPath, Mid( myURL, InStrRev( myURL, "/" ) + 1 ) ) | |
ElseIf objFSO.FolderExists( Left( myPath, InStrRev( myPath, "\" ) - 1 ) ) Then | |
strFile = myPath | |
Else | |
WScript.Echo "ERROR: Target folder not found." |
ffmpeg -i in.mkv -f srt -i in.srt -map 0:0 -map 0:1 -map 1:0 -c:v copy -c:a copy -c:s srt out.mkv |