Skip to content

Instantly share code, notes, and snippets.

View rvvvt's full-sized avatar
💭
hail, traveler.

rvvvt rvvvt

💭
hail, traveler.
View GitHub Profile
@rvvvt
rvvvt / Ava.cs
Created February 23, 2021 18:31 — forked from wildbillcat/Ava.cs
using System;
using System.Collections.Generic;
using System.Net;
using HtmlAgilityPack;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
@rvvvt
rvvvt / Scraper.cs
Created February 23, 2021 18:30 — forked from simonmurdock/Scraper.cs
scraper
using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Http;
using HtmlAgilityPack;
namespace scraper
@rvvvt
rvvvt / unfollow.js
Created February 13, 2020 22:10 — forked from JamieMason/unfollow.js.md
Unfollow everyone on twitter.com
// Unfollow everyone on twitter.com, by Jamie Mason (https://twitter.com/fold_left)
// https://gist.github.com/JamieMason/7580315
//
// 1. Go to https://twitter.com/YOUR_USER_NAME/following
// 2. Open the Developer Console. (COMMAND+ALT+I on Mac)
// 3. Paste this into the Developer Console and run it
(() => {
const followButtonQuery = '[data-testid$="-unfollow"]';
const confirmButtonQuery = '[data-testid="confirmationSheetConfirm"]';
const sleep = ({ seconds }) =>
@rvvvt
rvvvt / linkedin-auto-connect.js
Created September 3, 2019 01:27 — forked from phpenterprise/linkedin-auto-connect.js
Linkedin Auto Connect/Invite Script
(Linkedin = {
release: '1.0.5 stable',
data: {},
config: {
autoStart: true,
inspectorSpeed: 5000,
sendSpeed: 4000,
pagerSpeed: 10000,
scrollDownAuto: 600,
debug: true,
@rvvvt
rvvvt / linkedin-loop.js
Created August 29, 2019 07:11 — forked from jaseclamp/linkedin-loop.js
meetup linkedin search
/*
INSTRUCTIONS
1. Open this file in notepad or something similar
2. Paste your list of names where it says replace names
3. Go to linkedin and line up a people search for your city
4. In google chrome. In Windows and Linux hit: Ctrl + Shift + J. On Mac hit: Cmd + Option + J.
5. Copy paste this whole script in to the console and hit enter
6. leave the window active while it collects results
7. You should get a tab seperated CSV that you can open in Excel
# -*- coding: utf-8 -*-
from multiprocessing import Pool
from multiprocessing.dummy import Pool as ThreadPool
import re, os
from urllib2 import urlopen
Path = os.path.dirname(os.path.realpath(__file__))
with open(Path+'\\url.txt', 'r') as file:
urls = file.readlines()
@rvvvt
rvvvt / states_hash.json
Created June 30, 2019 15:01 — forked from mshafrir/states_hash.json
US states in JSON form
{
"AL": "Alabama",
"AK": "Alaska",
"AS": "American Samoa",
"AZ": "Arizona",
"AR": "Arkansas",
"CA": "California",
"CO": "Colorado",
"CT": "Connecticut",
"DE": "Delaware",
@rvvvt
rvvvt / Linkedin_Login.js
Created April 10, 2019 06:26
Linkedin Login
STEPS:
1.- Create an app:
in linkedin: https://www.linkedin.com/developers/apps
2.- Create your linkedin login URL:
Fill the following URL with your developer information: https://www.linkedin.com/oauth/v2/authorization
example with response_type, client_id, redirect_uri, state:
https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=86zig0sfofozk1&redirect_uri=https://localhost:8443/pro&state=aRandomString
3.- Get the user code from linkedin:
var express = require("express");
var app = express();
var port = process.env.PORT || 3700;
var io = require('socket.io').listen(app.listen(port));
var Instagram = require('instagram-node-lib');
var http = require('http');
var request = ('request');
var intervalID;
/**
@rvvvt
rvvvt / spamhaha.py
Created March 19, 2019 03:17 — forked from liveashish/spamhaha.py
Sarahah spam bot: A life saver! 🔥 💪
import time
import requests
users_to_attack = ['USER_NAME', ] #list of users to be attacked
def sarahah_post(user, msg):
s = requests.Session()
homeurl = 'https://' + user + '.sarahah.com/'
home = s.get(homeurl)