ssh 111.111.111.111 -l root
sudo /usr/sbin/groupadd wheel
# This file specifies the build flags for Firefox. You can use it by adding: | |
# . $topsrcdir/browser/config/mozconfig | |
# to the top of your mozconfig file. | |
# export MOZ_DEBUG_SYMBOLS=1 | |
export CFLAGS="-gdwarf-2" | |
export CXXFLAGS="-gdwarf-2" | |
ac_add_options --enable-application=browser | |
ac_add_options --enable-optimize |
#!/bin/bash | |
# $Author: Mihai Sucan <[email protected]>$ | |
# $Date: 2011-05-02 21:10:35 $ | |
# usage: | |
# moztests -hud | |
# runs the HUDService tests | |
# moztests -ws | |
# runs the Workspace tests |
diff --git a/toolkit/components/telemetry/TelemetryPing.js b/toolkit/components/telemetry/TelemetryPing.js | |
--- a/toolkit/components/telemetry/TelemetryPing.js | |
+++ b/toolkit/components/telemetry/TelemetryPing.js | |
@@ -138,16 +138,17 @@ function getMetadata(reason) { | |
let ret = { | |
reason: reason, | |
OS: ai.OS, | |
appID: ai.ID, | |
appVersion: ai.version, | |
appName: ai.name, |
'use strict'; | |
var f = void 0, | |
k = null; | |
function aa() { | |
return function() {} | |
} | |
function ca(a) { | |
return function(b) { | |
this[a] = b | |
} |
upstream gunicorn_frontends { | |
# We define the binding of the gunicorn web server | |
server 127.0.0.1:8000; | |
} | |
# we need to redirect www since browserid thinks www and non-www are different | |
server { | |
listen 80; | |
server_name www.yourdomain.com; | |
rewrite ^ http://yourdomain.com$uri permanent; |
[defaults] | |
diff = -p -U 8 | |
qdiff = -p -U 8 | |
qnew = -U | |
qseries = -s | |
[paths] | |
fx-team = ssh://hg.mozilla.org/integration/fx-team/ | |
mozilla-central = ssh://hg.mozilla.org/mozilla-central/ | |
m-c = ssh://hg.mozilla.org/mozilla-central/ |
# This file specifies the build flags for Firefox. You can use it by adding: | |
# . $topsrcdir/browser/config/mozconfig | |
# to the top of your mozconfig file. | |
mk_add_options AUTOCONF=/usr/local/Cellar/autoconf213/2.13/bin/autoconf213 | |
mk_add_options MOZ_MAKE_FLAGS="-s -j4" | |
ac_add_options --enable-application=browser | |
ac_add_options --enable-optimize | |
#ac_add_options --enable-debug |
<robcee> where's my hat?, | |
------- | |
<robcee> u r teh smartest, | |
------- | |
<robcee> I WILL TAKE THIS BULLET FOR YOU, | |
------- | |
* robcee swears violently | |
* robcee continues swearing, | |
------- | |
<robcee> hey everybody, forget email. Let's all go skiing. (toboggans also acceptable), |
exports.getChannelList = function(client, io, callback) { | |
client.keys('channels:*', function(err, channels) { | |
try { | |
var channelList = []; | |
var counter = 0; | |
function getFunc(errChannel, channel) { | |
var channelHash = { | |
name: channel, | |
userCount: io.sockets.clients(channel).length |