Skip to content

Instantly share code, notes, and snippets.

View coussej's full-sized avatar

Jeroen Coussement coussej

View GitHub Profile
@coussej
coussej / opcua.js
Created March 24, 2016 20:21
Example with deadband on timestamp not working.
/*global require,console,setTimeout */
var opcua = require("node-opcua");
var async = require("async");
var config = {
"server": "opc.tcp://opcua.demo-this.com:51210/UA/SampleServer",
"tags": [{
// "name": "An Int32",
// "nodeId": "ns=2;i=10849",
// "updateInterval": 100
@coussej
coussej / bench.sql
Last active November 20, 2021 06:12
-- clean up database from previous test
DROP SCHEMA public CASCADE;
CREATE SCHEMA public;
-- create EAV tables
CREATE TABLE entity (
id SERIAL PRIMARY KEY,
name TEXT,
description TEXT
);