Skip to content

Instantly share code, notes, and snippets.

View mbroadst's full-sized avatar

Matt Broadstone mbroadst

View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:tns="urn:RpcExample" xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope" xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:RpcExample="urn:RpcExample" xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:MIME="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:DIME="http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/" xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" name="urn:RpcExample" targetNamespace="urn:RpcExample">
<types>
<schema xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope" xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:RpcExample="urn:RpcExample" xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:RpcExample" elementFormDefault="unqualified" attributeFormDef
#include <nan.h>
#ifndef _WIN32
#include <unistd.h>
#define Sleep(x) usleep((x)*1000)
#endif
using namespace v8;
class AsyncEmitter : public node::ObjectWrap
Q_GLOBAL_STATIC(QVariantMap, settingsCache);
AgentSettings::AgentSettings()
: QSettings(/* detos.json using JSONSettings */)
{
}
QVariant AgentSettings::value(const QString &key, const QVariant &default)
{
if (settingsCache().contains(key))
return settingsCache().value(key);
<!doctype html>
<html>
<head>
<title>test</title>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var path_group = d3.select(selector + ' .path_group');
var paths = path_group.selectAll("path")
.data(pie(Object.keys(data.status)))
.enter().append("path")
.style("fill", function(d, i) {
console.log(data.status[d.data]);
switch (data.status[d.data]) {
case 'enabled':
return '#98df8a';
case 'disabled':
var Sequelize = require('sequelize'),
DataTypes = Sequelize,
sequelize = new Sequelize('groups_test', 'root', 'password');
var Device = sequelize.define('Device', {
name: DataTypes.STRING
}, {
underscored: true,
timestamps: false
});
var Sequelize = require('sequelize'),
DataTypes = Sequelize,
sequelize = new Sequelize('groups_test', 'root', 'password');
var Device = sequelize.define('Device', {
name: DataTypes.STRING
}, {
underscored: true,
timestamps: false
});
var Sequelize = require('sequelize'),
DataTypes = Sequelize,
sequelize = new Sequelize('groups_test', 'root', 'password');
var Device = sequelize.define('Device', {
name: DataTypes.STRING
}, {
underscored: true,
timestamps: false
});
var label_group = d3.select(selector + ' .label_group');
label_group.selectAll("text").remove();
label_group.selectAll("text")
.data(pie(Object.keys(data.status)))
.enter().append("svg:text")
.attr("dy", "1em")
.attr("dx", "0.5em")
.style("fill", "white")
.style("font", "bold 1.10em Arial")
.style("kerning", "1")
var Benchmark = require('benchmark');
// this outputs nothing
new Benchmark.Suite()
.add("TestBuffer", {
'setup': function() {
this.buffer = new Buffer();
},
'fn': function() {
console.log(this.buffer);