Skip to content

Instantly share code, notes, and snippets.

@jpsoroulas
jpsoroulas / debezium-installation.adoc
Last active March 29, 2024 15:46
Debezium installation procedure for PostgreSQL without docker

Debezium installation

@jpsoroulas
jpsoroulas / q-promises-examples.js
Last active November 20, 2018 21:36
Basic examples of promises using the Q library
'use strict';
var Q = require('q');
/*
Here are some basic examples of promises using the Q library https://github.com/kriskowal/q).
To run a specific scenario, install an execution environment and uncomment the respective
method call (runScenarioX()).
The code is tested using node.js v0.12.7 (https://nodejs.org/en/) and Q v1.4.1 library
(https://www.npmjs.com/package/q).
*/