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
| Unicode table - List of most common Unicode characters * | |
| * This summary list contains about 2000 characters for most common ocidental/latin languages and most printable symbols but not chinese, japanese, arab, archaic and some unprintable. | |
| Contains character codes in HEX (hexadecimal), decimal number, name/description and corresponding printable symbol. | |
| What is Unicode? | |
| Unicode is a standard created to define letters of all languages and characters such as punctuation and technical symbols. Today, UNICODE (UTF-8) is the most used character set encoding (used by almost 70% of websites, in 2013). The second most used character set is ISO-8859-1 (about 20% of websites), but this old encoding format is being replaced by Unicode. | |
| How to identify the Unicode number for a character? | |
| Type or paste a character: |
| language: ruby | |
| rvm: | |
| - 2.0.0 | |
| env: | |
| global: | |
| - USER="username" | |
| - EMAIL="username@mail.com" | |
| - 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." |