Skip to content

Instantly share code, notes, and snippets.

@YuxiaZhang-BIT
YuxiaZhang-BIT / free_email_provider_domains.txt
Created January 21, 2019 03:20 — forked from tbrianjones/free_email_provider_domains.txt
A list of free email provider domains. Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
1033edge.com
11mail.com
123.com
123box.net
123india.com
123mail.cl
123qwe.co.uk
126.com
150ml.com
15meg4free.com
@YuxiaZhang-BIT
YuxiaZhang-BIT / openstack_foundation_affiliations.py
Created July 19, 2018 07:55 — forked from oubiwann/openstack_foundation_affiliations.py
A quick hack to tally OpenStack Member affiliations
from pprint import pprint
from urllib2 import urlopen
from bs4 import BeautifulSoup
soup = BeautifulSoup(urlopen("http://www.openstack.org/community/members/").read())
bullets = soup.find_all("li")
affiliations = [x.text.split("(")[1].split(")")[0].lower().strip()
for x in bullets if "(" in x.text]