I get 10 times more traffic from [Google] 1 than from [Yahoo] 2 or [MSN] 3.
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
| <div class=" | |
| sqs-gallery-container | |
| sqs-gallery-block-slideshow | |
| sqs-gallery-has-controls | |
| sqs-gallery-has-thumbnails | |
| sqs-gallery-block-show-meta sqs-gallery-block-meta-position-bottom |
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
| /** | |
| * Use `Array#some` when it is convenient to exit on truthy return values | |
| * Use `lodash.forEach` when it is convenient to exit on false (you can cast if necessary with `!!`) | |
| */ | |
| var _ = require('lodash'); | |
| var numbers = [1, 2, 3, 4, 5, 6]; | |
| console.log('Array#forEach (result not as expected)'); |
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
| # Options For Default Plugins | |
| # =========================== | |
| # API Options | |
| # See https://github.com/gengojs/plugin-api for documentation. | |
| [api] | |
| # 'global' refers to the api use for i18n your phrases. | |
| # ( e.g. __("Hello") ) | |
| global = "__" | |
| # 'localize' refers to the api use for i18n your date, time, and number. |
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
| 'use strict'; | |
| class Source { | |
| constructor(source) { | |
| source = source[source.length - 1] === this.EOF ? | |
| source : source += this.EOF; | |
| this._source = []; | |
| for(var i = 0; i < source.length; i++) { this._source[this._source.length] = source[i]; } | |
| this._line = 1; |
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
| node_modules |
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
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl -k -L https://npmjs.org/install.sh | sh |
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
| { | |
| "options": { | |
| "name": "Mr. Doc", | |
| "url": { | |
| "home": "https://mr-doc.github.io/", | |
| "repo": "https://www.github.com/mr-doc/mr-doc" | |
| } | |
| }, | |
| "comments": [ | |
| { |
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
| var gulp = require('gulp'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var source = require('vinyl-source-stream'); | |
| var buffer = require('vinyl-buffer'); | |
| var browserify = require('browserify'); | |
| var watchify = require('watchify'); | |
| var babel = require('babelify'); | |
| function compile(watch) { | |
| var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel)); |
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 node | |
| const | |
| fs = require('fs'), | |
| path = require('path'), | |
| exec = require('child_process').execSync; | |
| const | |
| cwd = process.cwd, | |
| stat = fs.statSync, | |
| exists = fs.existsSync; | |
| let video = process.argv.slice(2)[0]; |