- Install GPG tools
- Install GPG tools and setup pin entry by running:
brew install gnupg pinentry-mac mkdir -m 700 -p ~/.gnupg echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf killall gpg-agent
require 'nokogiri' | |
require 'csv' | |
doc = File.open("members.htm") do |f| | |
html = Nokogiri.HTML(f) | |
CSV.open("users.csv", "w") do |csv| | |
csv << ['Name', 'Profile Link'] | |
users = html.css('.uiProfileBlockContent').map do |profile_block| | |
link = profile_block.css('a').first['href'].match(/(https:\/\/www.facebook.com\/.*)\?/)[1] | |
name = profile_block.css('a').first.text.strip |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.