Skip to content

Instantly share code, notes, and snippets.

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

rvvvt rvvvt

💭
hail, traveler.
View GitHub Profile
@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
@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>
@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
@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()
{
@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
@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
@uluQulu
uluQulu / like_util.py
Last active February 5, 2019 00:11
Like util for fellowes
import re
import random
"""Module that handles the like features"""
from math import ceil
from re import findall
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import WebDriverException
from .time_util import sleep
@dixsonhuie
dixsonhuie / app-log.py
Last active November 7, 2024 20:06
python examples
import os
import sys
import csv
import re
import logging
import argparse
import datetime
col_li = ['filename', 'line_number', 'host', 'pid', 'comp', 'id', 'time', 'ms', 'category', 'level', 'logger', 'message']
# Usage: ./dns_check.py <list_of_domain_names.txt>
import dns.resolver
import requests
import re
import json
import sys
resolver = dns.resolver.Resolver()
resolver.timeout = 5
resolver.lifetime = 5
@DmitriyRF
DmitriyRF / change.js
Last active July 22, 2024 18:24
Remove or don't redirect “thank you” page Mailchimp
/* To use this example:
1. Download this html file
2. Replace the form action url with your own from the MailChimp supplied embed code
3. Within the action url, replace "subscribe/post" with "subscribe/post-json"
4. Be sure the action url starts with http://. If it doesn't, the form will hang when testing the html as a local file in your browser.
5. Open this file in a browser on your local machine
*/