Skip to content

Instantly share code, notes, and snippets.

from __future__ import print_function
import random
from copy import copy
import time
import sys
import cx_Oracle
userName=sys.argv[1]
const oracledb = require('oracledb');
async function runScript() {
const tableName = "TESTING_NODEJS";
let connection;
async function prepareData() {
const statement = `create table ${tableName} AS
WITH users AS (
SELECT 'Roland' AS first_name, 'Higgins' AS last_name, 29 AS age FROM dual
const oracledb = require('oracledb');
async function runScript() {
const tableName = "TESTING_NODEJS";
let connection;
async function prepareData() {
const statement = `create table ${tableName} AS
WITH users AS (
SELECT 'Roland' AS first_name, 'Higgins' AS last_name, 29 AS age FROM dual
from __future__ import print_function
import random
from copy import copy
import time
import sys
import cx_Oracle
userName=sys.argv[1]
const oracledb = require('oracledb');
async function runScript() {
const tableName = "TESTING_NODEJS";
let connection;
async function prepareData() {
const statement = `create table ${tableName} AS
WITH users AS (
SELECT 'Roland' AS first_name, 'Higgins' AS last_name, 29 AS age FROM dual
const oracledb = require('oracledb');
async function runScript() {
const tableName = "TESTING_NODEJS";
let connection;
async function prepareData() {
const statement = `create table ${tableName} AS
WITH users AS (
SELECT 'Roland' AS first_name, 'Higgins' AS last_name, 29 AS age FROM dual
const oracledb = require('oracledb');
async function runScript() {
const tableName = "TESTING_NODEJS";
let connection;
async function prepareData() {
const statement = `create table ${tableName} AS
WITH users AS (
SELECT 'Roland' AS first_name, 'Higgins' AS last_name, 29 AS age FROM dual
@meilechh
meilechh / introrx.md
Created July 1, 2014 11:19 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing

The introduction to Reactive Programming you've been missing

(by @andrestaltz)

So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).

Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:

Rx.Observable.prototype.flatMapLatest(selector, [thisArg])

Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.