Skip to content

Instantly share code, notes, and snippets.

View mxswd's full-sized avatar

Maxwell mxswd

View GitHub Profile
@mxswd
mxswd / bookmarks.rb
Created April 7, 2011 14:49
Tells you about your Chrome Bookmarks.
#!/usr/bin/ruby
# Go to chrome tools -> bookmark manager -> organize -> export -> call it bookmarks.html
# Run this from the same directory as the export
File.open('bookmarks.html', 'r') do |f|
urls, dups = [], []
domains = {}
while line = f.gets
url = line.match(/<A HREF="([^"]*)"/)
if url