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.
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.
| 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 |