I hereby claim:
- I am dannycoates on github.
- I am antiserf (https://keybase.io/antiserf) on keybase.
- I have a public key whose fingerprint is A47A B66F A105 C2FF 7B94 D2A4 2C5D E6D9 E52B D826
To claim this, I am signing this object:
user nginx; | |
worker_processes 1; | |
error_log /var/log/nginx/error.log; | |
#error_log /var/log/nginx/error.log notice; | |
#error_log /var/log/nginx/error.log info; | |
pid /var/run/nginx.pid; | |
-- This Source Code Form is subject to the terms of the Mozilla Public | |
-- License, v. 2.0. If a copy of the MPL was not distributed with this | |
-- file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
require "math" | |
require "string" | |
local alert = require "alert" | |
local message_variable = read_config("message_variable") or error("must specify a 'message_variable'") | |
local max_items = read_config("max_items") or 25000 |
{ | |
"AWSTemplateFormatVersion" : "2010-09-09", | |
"Description" : "Single machine Fxa Dev environment", | |
"Parameters" : { | |
"KeyName": { | |
"Description" : "Name of an existing EC2 KeyPair to enable SSH access to the web server", | |
"Type": "String", | |
"MinLength": "1", |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "hashicorp/precise64" | |
config.vm.network "private_network", type: "dhcp" | |
end |
I hereby claim:
To claim this, I am signing this object:
{ | |
"_index": "alllogs-2014-03-12", | |
"_type": "message", | |
"_id": "842s_JjTRd6B5WIRHAd5jQ", | |
"_score": 0.044194173, | |
"_source": { | |
"Uuid": "4cd5808c-5c7a-48f0-aa0e-ac91e4fc654f", | |
"Timestamp": "2014-03-12T02:11:54.868Z", | |
"Type": "request.summary", | |
"Logger": "fxa-auth-server", |
Mozilla's cloud services need to advance the state of the web in privacy, security, and usability in order to compete and keep the web open. We need a platform that has a user experience closer to mobile where building, signing up, using, and managing apps is easy. We need the cloud to integrate well with our mobile, desktop, and lifestyle devices. We need choice in how our data is used. We need to trust the services we use. To do this we should build a platform that lets us run our cloud apps (service instances) individually, in the cloud or on our own servers.
As technical people, today we can enjoy the benefits of owning some of our web identities and data by running our own services on our own servers. We can register our own domains, manage MX records, setup shared hosting or VPS, make our own blogs, host our own email, and even run our own Firefox Sync service because we own our servers, or at least the data. Even for the most dedicated of us its time consuming and complicated to setup and maintain. It
{"name":"fxa-auth-server","hostname":"ip-10-80-227-43","pid":28040,"level":60,"err":{"message":"You must pass a string or Handlebars AST to Handlebars.compile. You passed undefined","name":"Error","stack":"Error: You must pass a string or Handlebars AST to Handlebars.compile. You passed undefined\n at new Error (<anonymous>)\n at Error.Exception (/home/app/code/node_modules/handlebars/dist/cjs/handlebars/exception.js:13:41)\n at compile (/home/app/code/node_modules/handlebars/dist/cjs/handlebars/compiler/compiler.js:442:11)\n at HandlebarsEnvironment.hb.compile (/home/app/code/node_modules/handlebars/dist/cjs/handlebars.js:19:12)\n at Request._callback (/home/app/code/mailer.js:85:51)\n at Request.self.callback (/home/app/code/node_modules/request/request.js:123:22)\n at Request.EventEmitter.emit (events.js:98:17)\n at Request.<anonymous> (/home/app/code/node_modules/request/request.js:893:14)\n at Request.EventEmitter.emit (events.js:117:20)\n at IncomingMessage.<anonymous> (/ho |
var interval = 500 | |
var maxLag = 70 | |
var lag = 0 | |
var decay = 3 | |
var mark = [] | |
var timer = null | |
function tooslow() { | |
return (lag > maxLag) && | |
Math.random() < ((lag - maxLag) / maxLag) |