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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> |
How to Use:
- load all members on a circle.so membership page by scrolling to the bottom
- open the dev tools
- paste in console
- hit enter
Info:
working as of May 22, 2022.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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) { |