zgrep 'T18:' -r $PWD >> /tmp/logsawk '{print $2 "\t" $14 "\t" $9 "\t" $10}' /tmp/logs| 'use strict' | |
| var gulp, sass, babelify, browserify, watchify, source, util; | |
| gulp = require('gulp'); | |
| sass = require('gulp-sass'); | |
| babelify = require('babelify') | |
| browserify = require('browserify'); | |
| watchify = require('watchify'); | |
| source = require('vinyl-source-stream'); |
| // Support routines for automatically reporting user timing for common analytics platforms | |
| // Currently supports Google Analytics, Boomerang and SOASTA mPulse | |
| // In the case of boomerang, you will need to map the event names you want reported | |
| // to timer names (for mPulse these need to be custom0, custom1, etc) using a global variable: | |
| // rumMapping = {'aft': 'custom0'}; | |
| (function() { | |
| var wtt = function(n, t, b) { | |
| t = Math.round(t); | |
| if (t >= 0 && t < 3600000) { | |
| // Google Analytics |
| require 'base64' | |
| require 'cgi' | |
| def show_session(cookie) | |
| Marshal.load(Base64.decode64(CGI.unescape(cookie.split("\n").join).split('--').first)) | |
| end |
| require('cosm') | |
| if (!exists('key')) key <- readline('API key: ') | |
| feed <- getFeed(58537, key) | |
| print(feed$description) | |
| t0 <- Sys.time() | |
| duration <- 60 * 60 * 24 * 7 # one week | |
| z <- getDatapoints(feed, key, datastreams='2h', end=t0, start=t0-duration) |
| license: gpl-3.0 | |
| redirect: https://observablehq.com/@d3/diverging-bar-chart |
| /** | |
| * @license The imageloader.js library is licensed under GNU Lesser General Public License v3 or later | |
| */ | |
| (function(){ | |
| /** | |
| * TwitPic Image Loader | |
| * Example: ldr = new TwitPicLoader("http://twitpic.com/asdf123"); | |
| * @param {string} URL of the TwitPic page. Eg. http://twitpic.com/asdf123 | |
| * @constructor | |
| */ |