Skip to content

Instantly share code, notes, and snippets.

View dongarchive's full-sized avatar
👋

DH dongarchive

👋
View GitHub Profile
@dongarchive
dongarchive / DEMOINSTRUCTIONS.md
Created November 27, 2019 20:21
Demo instructions for Ecommerce Order Service - Phase 1 - Nov 29 2019

Demo Instructions

Setup Services

1. Ecommerce Order Service Core & Kafka cluster

(1) In ecommerce_order_service repo startup the core and kafka cluster with an empty db volume

$ docker volume prune
@dongarchive
dongarchive / linkedin-unfollow
Last active June 25, 2018 22:09
linkedin-unfollow
var buttons = $("button"),
interval = setInterval(function(){
var btn = $('.is-following');
console.log("Clicking:", btn);
btn.click();
if (buttons.length === 0) {
clearInterval(interval);
}
}, 1000);
@dongarchive
dongarchive / instagram-follow-unfollow.js
Last active December 21, 2022 14:20
Follow and unfollow instagram script - ApplyBoard
// -------------------
// To mass follow
// -------------------
// 1. Open instagram page (eg. https://www.instagram.com/visatoronto/) utilizing google chrome
// 2. Click 'xxx followers' on instagram page, this will open up a modal containing user's followers
// 3. Open google chrome developer tools by either (1) right clicking on the screen and clicking 'inspect'
// OR (2) Command + Option + J
// 4. Click on the 'console' method in dev tools
// 5. First paste the following code to instantiate jquery and press enter