Skip to content

Instantly share code, notes, and snippets.

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

rvvvt rvvvt

💭
hail, traveler.
View GitHub Profile
@lobstrio
lobstrio / linkedin_extract.py
Created April 24, 2018 11:05
Scraping Linkedin profiles information through Selenium Python
# python package
import csv
import time
import random
import sys
import os
# selenium package
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
@jeremydouglass
jeremydouglass / processing-forum-bookmark-export.py
Created May 22, 2018 06:43
Processing Vanilla forum bookmark page link extractor
# -*- coding: utf-8 -*-
"""Processing Vanilla forum bookmark page link extractor
1. Manually save html pages of bookmarks from forum before decomissioned
2. Run this to extract link data
"""
import fnmatch
import os
@andrewpisula
andrewpisula / Engine.cs
Created June 18, 2018 14:16
A Proxy Scraper created by mysterious.
using System;
using System.Net;
using System.Text.RegularExpressions;
namespace Proxy_Scraper
{
class Engine
{
public static string ScrapeProxies()
{
@jaseclamp
jaseclamp / linkedin-loop.js
Last active August 29, 2019 07:11
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
@underdown
underdown / affiliate-tracking.php
Created October 19, 2018 15:02
Affiliate tracking
<?php
foreach($_GET as $k=>$v)
$affline=$affline."&".urlencode($k)."=".urlencode($v);
$affline=substr($affline,1);
?>
//place this at the very top of the page
//decorate links with: <a href="http://mydomain.com/?<?php echo $affline; ?>">link</a>
@abdus
abdus / linkedin-auto-invite.js
Last active September 3, 2019 03:22
Simple script for sending mass invite on linkedin #automation #auto-invite
// ++++++++++++++++++++++++++++++++++++++++++++++++++++
// script for sending auto invite to people in linkedin
// ++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// Simple script for sending mass invite on linkedin
// NOTE: This will send invite to the profiles available in your 'RECOMANDATION' tab
//
//
//
// HOW TO
@milesflo
milesflo / twitter-follow-clicker.js
Last active February 11, 2020 21:41
A tiny GUI-automation script for following accounts on Twitter
/**
Why?:
This script is useful for following a large list of accounts straight from your browser.
There are many reasons to use this... Maybe you want to follow everyone in a community but you
can't be bothered to click on all those buttons... Maybe you want to follow all these accounts
in the hopes that they'll follow you back, giving you lots of free followers for doing nothing
How:
1. Navigate to a twitter page with multiple [Follow] buttons visible...
- Scrolling to the bottom of a page may list more... Do this for maximum efficiency
@ping
ping / Program.cs
Created November 30, 2018 03:10
Async Test
using System;
using System.Net.Http;
using System.Threading.Tasks;
public class Program
{
public static void Main()
{
WriteLine("A: Main");
var googleTask = CallGoogleAsync();
//* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - */
//* */
//* Filename: gist.2d = dataCapture.js */
//* */
//* Copyright (c) 2018-2019 Otto Grajeda. All rights reserved. */
//* Contact info: [email protected]. See additional disclaimers below. */
//* */
//* NOTE 1: Portions of code (mainly API methods) are copyrighted by Google LLC. */
//* NOTE 2: Code is NOT Open Source or Production Ready. It is working sample code. */
//* NOTE 3: For support or code questions search keywords @ Google or Stack Overflow. */
@SourcingDenis
SourcingDenis / linkedin-loop.js
Created January 18, 2019 07:18 — 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