I hereby claim:
- I am RJ on github.
- I am RJ (https://keybase.io/RJ) on keybase.
- I have the public key with fingerprint 0EDD ED5C 68CB 98A2 222D F327 1CB6 5397 9D96 56FD
To claim this, I am signing this object:
| $ uname -a | |
| Darwin RJ3000.local 12.2.0 Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64 x86_64 | |
| $ launchctl limit | |
| cpu unlimited unlimited | |
| filesize unlimited unlimited | |
| data unlimited unlimited | |
| stack 8388608 67104768 | |
| core 0 unlimited | |
| rss unlimited unlimited |
| %% Boot system extracted from rabbitmq-server source code | |
| %% The RabbitMQ license banner follows: | |
| %% | |
| %% The contents of this file are subject to the Mozilla Public License | |
| %% Version 1.1 (the "License"); you may not use this file except in | |
| %% compliance with the License. You may obtain a copy of the License | |
| %% at http://www.mozilla.org/MPL/ | |
| %% | |
| %% Software distributed under the License is distributed on an "AS IS" | |
| %% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See |
| SSLProxyEngine on | |
| # Graphite URLs that are buried in JS that we can't easily rewrite, we issue an http redirect | |
| # - /content/js/ext/resources/images/default/s.gif | |
| # - /render | |
| RewriteEngine On | |
| RewriteCond %{HTTP_HOST} ^admin\.example\.com [NC] | |
| RewriteRule ^/content/js/ext/resources/images/default/s.gif https://graphite-admin.example.com/content/js/ext/resources/images/default/s.gif [L,R] | |
| RewriteRule ^/render https://graphite-admin.example.com/render [L,R] |
| config defaultToCurrentScreen true | |
| config nudgePercentOf screenSize | |
| config resizePercentOf screenSize | |
| # Shows app icons and background apps, spreads icons in the same place. | |
| config windowHintsShowIcons true | |
| config windowHintsIgnoreHiddenWindows false | |
| config windowHintsSpread true | |
| config windowHintsBackgroundColor 50;53;58;0.6 |
| ## GENERATED BY CHEF, DONT EDIT DIRECTLY | |
| global | |
| log 127.0.0.1 local0 | |
| log 127.0.0.1 local1 notice | |
| maxconn 10000 | |
| user haproxy | |
| daemon | |
| defaults | |
| log global |
| APPDIRS := $(wildcard apps/*) | |
| ## Example hack to filter one out: | |
| ## APPDIRS := $(filter-out apps/fooapp, $(APPDIRS)) | |
| define PROXY_TARGET | |
| $(1): | |
| $(foreach appdir,$(APPDIRS),$(MAKE) -C $(appdir) $(1) ;) | |
| endef |
| #!/usr/bin/env python | |
| import socket | |
| import sys | |
| ## ipv6.google.com: | |
| PING_TARGET = '2604:8300:100:200b:6667:3:0:4d1f' | |
| source_ip = sys.argv[1] | |
| addresses = [addr for addr in socket.getaddrinfo(source_ip, None) if socket.AF_INET6 == addr[0]] | |
| src_address = addresses[0][-1][0] |
I hereby claim:
To claim this, I am signing this object:
| as root: | |
| apt-get install slapd ldap-utils cpu | |
| edit, /etc/cpu/cpu.conf replace these lines: | |
| LDAP_URI = ldap://localhost | |
| BIND_DN = cn=admin,dc=nodomain | |
| BIND_PASS = irccloud | |
| USER_BASE = dc=nodomain |
| gulp.task('flatten-js', function() { | |
| return gulp.src(['app/*.js', './app/**/*.js']) | |
| .pipe(flatten()) | |
| .pipe(gulp.dest('./build/js-app')) | |
| }); | |
| function bundleEntryPoint(entryfile) { | |
| process.env.NODE_PATH = ( process.env.NODE_PATH ? | |
| process.env.NODE_PATH + ':' : '') | |
| + './build/js-app/' |