Skip to content

Instantly share code, notes, and snippets.

View Vineshg's full-sized avatar
💭
demo for TGA training

Vineshg

💭
demo for TGA training
View GitHub Profile
@Vineshg
Vineshg / sync_pins.js
Created September 9, 2023 17:09 — forked from Timopheym/sync_pins.js
Small script to download your pinterest boards to your machine. Limit 50 pins per board... but you can download all pins from board using instruction inside ;)
var request = require("request");
var fs = require("fs");
var api_root = 'http://widgets.pinterest.com/v3/pidgets/boards/';
var sync_dir = './images', image_url, image_path, current_user_boards, current_user_name, board_dir;
var users = {
timopheym : [
'skatches',
'home',
@Vineshg
Vineshg / cro.md
Created September 1, 2020 12:39
CRO

Conversion Rate Optimization (CRO)

In internet marketing, conversion optimization, or conversion rate optimization (CRO) is the method of creating an experience for a website or landing page visitor with the goal of increasing the percentage of visitors that convert into customers. It is also commonly referred to as CRO.

https://github.com/passport/express-4.x-local-example
docker run -d --hostname my-rabbit --name some-rabbit -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 25672:25672 -p 15672:15672 rabbitmq:3-management
{
"name": "redis-session-store",
"version": "1.0.0",
"description": "redis session storeage example",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"redis",
const express = require('express');
const redis = require('redis');
const fetch = require("node-fetch");
var process = require('process');
const redisClient = redis.createClient({
host: 'redis-14987.c57.us-east-1-4.ec2.cloud.redislabs.com',
port: 14987
});
redisClient.AUTH("bdap6uQaV37A93V2tWpjbwHkmZcqXWau");