This file contains hidden or 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
Get the Garlic Knots at Jerlando's!!! | |
On Franklin | |
Keuka Lake: | |
Keuka Lake Vineyards, https://www.klvineyards.com/, dry rieslings very ageable. Owner is originally from DC. We overbought here but ultimately not that regretful | |
Dr. Konstantin Frank, http://www.drfrankwines.com/, bubbly!! | |
McGregor Vineyard, https://www.mcgregorwinery.com/, stranger varietals from Eastern Europe/Caucasus region very plaid/Scottishy interior - try the Saperavi blends | |
Seneca Lake: |
This file contains hidden or 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
require 'csv' | |
require 'json' | |
require "set" | |
json = JSON.parse(File.open(ARGV[0]).read)["results"] | |
# Pass 1: Collect headings | |
headings = SortedSet.new | |
json.each do |hash| | |
headings.merge(hash.keys) | |
end |
OlderNewer