Skip to content

Instantly share code, notes, and snippets.

View mannharleen's full-sized avatar
👽

Harleen Mann mannharleen

👽
View GitHub Profile
https://konvajs.org/

List of cookies names for various social networking websites alt text

const rp = require('request-promise-native')
const cheerio = require('cheerio')
let resP = rp('https://www.keepinspiring.me/famous-quotes/')
resP.then(res => {
let $ = cheerio.load(res)
let quotes = $('div.author-quotes').get()
let toPrint = []
for (quote of quotes) {

Microsoft Grpah API - how to work with it

Replace myorg below with your organization name

Getting to know it

hostname

There is a hostname for each tenant e.g. That can be accessed using:

https://graph.microsoft.com/v1.0/sites/root
@mannharleen
mannharleen / .tg_knex.js
Created June 23, 2019 11:52
Setting up knex - the very basics
// $ knex init
const nodeEnv = process.env.NODE_ENV || 'development'
const knexfileConfig = require('./knexfile')[nodeEnv]
const es = require('event-stream')
var knex = require('knex')(knexfileConfig);
// non stream usage
knex.raw('select * from genres')

No longer maintained. See README.md of the project on github

level 0

  • job.js
  • logger.js

level 1/external dependencies

  • through

level 2 (functionalProgrammingForStream.js)

const net = require('net');
let server = net.createServer();
let clientId = 1;
let sockets = {};
server.on("connection", (cs) => {
// console.log(Object.keys(cs));
console.log("INFO: Client conected!");
todo in nodejs.js
#### to run
node client.js
> only implemented help, add and ls commands
nodejs tg
// atom - works!
sudo docker run -p 9090:9090 -h ds-atom-01 \
-v /home/user/Boomi:/home/boomi/host_dir \
-e URL=https://platform.boomi.com \
-e BOOMI_USERNAME=<> \
-e BOOMI_PASSWORD=<> \
-e BOOMI_ATOMNAME=ds-atom-01 \
-e BOOMI_CONTAINERNAME=ds-atom-01 \
-e BOOMI_ACCOUNTID=<> \