Skip to content

Instantly share code, notes, and snippets.

View awitherow's full-sized avatar
👋
Looking for freelance work!

Austin Witherow awitherow

👋
Looking for freelance work!
  • Remote
View GitHub Profile
@awitherow
awitherow / extract.js
Last active July 17, 2022 22:53
Extract Social Media Profiles and Emails from Web Page
(function () {
const links = Array.prototype.slice.call(document.getElementsByTagName("a")).filter(item =>
["twitter.com/", "facebook.com/", "youtube.com/", "pinterest.com/", "linkedin.com/in", ]
).map(item => item.href).filter(Boolean)
const emails = extractEmails(document.getElementsByTagName('html')[0].innerHTML)
const everything = [...links, ...emails]
const save = function (data, filename) {
if (!data) {
@awitherow
awitherow / CIRCLE_SO_EXTRACTOR.md
Last active May 22, 2022 06:38
Circle.so Member Page Lead Extractor

How to Use:

  1. load all members on a circle.so membership page by scrolling to the bottom
  2. open the dev tools
  3. paste in console
  4. hit enter

Info:

working as of May 22, 2022.

@awitherow
awitherow / stuff.md
Last active January 25, 2018 23:02
buzz compiling related stuff.

making a linux wallet

dependencies and repo

sudo apt-get install libdb-dev libdb++-dev
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libminiupnpc-dev automake
mkdir src
git clone https://github.com/buzzcoin-project/BUZZ.git
@awitherow
awitherow / index.html
Created May 10, 2017 18:44 — forked from liuyanghejerry/index.html
Modern index file in 2017
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#">
<head>
<!-- content-type, which overrides http equivalent header. Because of charset, this meta should be set at first. -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<!-- Overrides http equivalent header. This tells IE to use the most updated engine. -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!-- Tells crawlers how to crawl this page, and the role of this page. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta -->
<meta name="robots" content="index, follow">