This file contains 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
package main | |
import ( | |
_ "code.google.com/p/gcfg" | |
"code.google.com/p/go.net/ipv4" | |
_ "encoding/json" | |
"fmt" | |
_ "io/ioutil" | |
"net" | |
_ "net/http" |
This file contains 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
brew install --HEAD neovim | |
==> Installing neovim from neovim/neovim | |
==> Cloning https://github.com/neovim/neovim.git | |
Cloning into '/Library/Caches/Homebrew/neovim--git'... | |
remote: Counting objects: 2040, done. | |
remote: Compressing objects: 100% (1894/1894), done. | |
remote: Total 2040 (delta 160), reused 1422 (delta 127), pack-reused 0 | |
Receiving objects: 100% (2040/2040), 7.45 MiB | 902.00 KiB/s, done. | |
Resolving deltas: 100% (160/160), done. | |
Checking connectivity... done. |
This file contains 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
#include <QtCore> | |
#include <QTcpServer> | |
#include <QTcpSocket> | |
#include <QHostAddress> | |
#include "../../lib/external/http-parser/http_parser.h" | |
class Srv | |
{ | |
public: |
This file contains 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 bunyan = require('bunyan'); | |
function InfoStream() {} | |
InfoStream.prototype.write = function(data) { | |
process.stdout.write("INFO: " + data) | |
} | |
function DebugStream() {} |
This file contains 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
launchctl unload /Library/LaunchAgents/org.macosforge.xquartz.startx.plist && \ | |
sudo launchctl unload /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist && \ | |
sudo rm -rf /opt/X11* /Library/Launch*/org.macosforge.xquartz.* /Applications/Utilities/XQuartz.app /etc/*paths.d/*XQuartz && \ | |
sudo pkgutil --forget org.macosforge.xquartz.pkg && \ | |
rm -rf ~/.serverauth* && rm -rf ~/.Xauthorit* && rm -rf ~/.cache && rm -rf ~/.rnd && \ | |
rm -rf ~/Library/Caches/org.macosforge.xquartz.X11 && rm -rf ~/Library/Logs/X11 |
This file contains 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" | |
const assertArgs = require("assert-args") | |
const nats = require("nats") | |
const url = require("url") | |
const handlers = require("./handlers") | |
const utils = require("../utils") | |
module.exports = class ServiceBus |
This file contains 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" | |
const assertArgs = require("assert-args") | |
const nats = require("nats") | |
const url = require("url") | |
const handlers = require("./handlers") | |
const utils = require("../utils") | |
module.exports = class ServiceBus { |
This file contains 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 ws = require("ws") | |
var c = new ws("ws://localhost:3333/rpc/1.0") | |
c.on("open", function() { | |
console.log("opened") | |
c.send(JSON.stringify({ | |
jsonrpc: "2.0", | |
method: "authorize", |
This file contains 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 C = require("rpc-wsc") | |
var c = new C("ws://localhost:8080/rpc/1.0") | |
c.on("open", function() { | |
c.call("funcme", "foo").then(function(result) { | |
console.log(result) | |
c.close() | |
}) | |
}) |
This file contains 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" | |
var C = require("qaap-barge") | |
var co = require('co') | |
var c = new C("ws://localhost:8080/rpc/1.0") | |
c.on("open", function() { | |
co(function*() { | |
let r = null |
OlderNewer